@@ -55,7 +55,7 @@ def defineCharacteristics(self):
55
55
self .addAdvancedModifiers ()
56
56
57
57
def processAlgorithm (self , progress ):
58
- commands = [os .path .join (FusionUtils .FusionPath (), 'FilterData .exe' )]
58
+ commands = [os .path .join (FusionUtils .FusionPath (), 'ClipData .exe' )]
59
59
commands .append ('/verbose' )
60
60
self .addAdvancedModifiersToCommand (commands )
61
61
commands .append ('/shape:' + unicode (self .getParameterValue (self .SHAPE )))
@@ -65,16 +65,13 @@ def processAlgorithm(self, progress):
65
65
else :
66
66
FusionUtils .createFileList (files )
67
67
commands .append (FusionUtils .tempFileListFilepath ())
68
- outFile = self .getOutputValue (self .OUTPUT ) + '.lda'
68
+ outFile = self .getOutputValue (self .OUTPUT )
69
69
commands .append (outFile )
70
70
extent = unicode (self .getParameterValue (self .EXTENT )).split (',' )
71
71
commands .append (extent [0 ])
72
72
commands .append (extent [2 ])
73
73
commands .append (extent [1 ])
74
74
commands .append (extent [3 ])
75
75
FusionUtils .runFusion (commands , progress )
76
- commands = [os .path .join (FusionUtils .FusionPath (), 'LDA2LAS.exe' )]
77
- commands .append (outFile )
78
- commands .append (self .getOutputValue (self .OUTPUT ))
79
76
p = subprocess .Popen (commands , shell = True )
80
77
p .wait ()
0 commit comments