File tree 1 file changed +1
-4
lines changed
python/plugins/processing/algs/lidar/fusion
1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ def processAlgorithm(self, progress):
55
55
commands = [os .path .join (FusionUtils .FusionPath (), 'GroundFilter.exe' )]
56
56
commands .append ('/verbose' )
57
57
self .addAdvancedModifiersToCommand (commands )
58
- outFile = self .getOutputValue (self .OUTPUT ) + '.lda'
58
+ outFile = self .getOutputValue (self .OUTPUT )
59
59
commands .append (unicode (self .getParameterValue (self .CELLSIZE )))
60
60
commands .append (outFile )
61
61
files = self .getParameterValue (self .INPUT ).split (';' )
@@ -65,8 +65,5 @@ def processAlgorithm(self, progress):
65
65
FusionUtils .createFileList (files )
66
66
commands .append (FusionUtils .tempFileListFilepath ())
67
67
FusionUtils .runFusion (commands , progress )
68
- commands = [os .path .join (FusionUtils .FusionPath (), 'LDA2LAS.exe' )]
69
- commands .append (outFile )
70
- commands .append (self .getOutputValue (self .OUTPUT ))
71
68
p = subprocess .Popen (commands , shell = True )
72
69
p .wait ()
You can’t perform that action at this time.
0 commit comments