Example #1
0
 def processAlgorithm(self, progress):
     MalstroemAlgorithm.processAlgorithm(self, progress)
     command_args = self.getCommand_args()
     success = MalstroemUtils.runMalstroemCommand('depths', command_args,
                                                  progress)
     if success:
         self.createOutput()
 def processAlgorithm(self, progress):
     MalstroemAlgorithm.processAlgorithm(self, progress)
     command_args = self.getCommand_args()
     command_args.append('-vector')
     success = MalstroemUtils.runMalstroemCommand('complete', command_args,
                                                  progress)
     if success:
         self.createOutput()
Example #3
0
 def processAlgorithm(self, progress):
     MalstroemAlgorithm.processAlgorithm(self, progress)
     command_args = self.getCommand_args()
     QDir().mkpath(self.malstroem_outdir + '/vector')
     success = MalstroemUtils.runMalstroemCommand('rain', command_args,
                                                  progress)
     if success:
         self.createOutput()
Example #4
0
 def __init__(self):
     MalstroemAlgorithm.__init__(self)