File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
python/plugins/processing/algs/lidar/fusion Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ def processAlgorithm(self, progress):
73
73
commands .append ('/ground:' + unicode (ground ))
74
74
outFile = self .getOutputValue (self .OUTPUT ) + '.dtm'
75
75
commands .append (outFile )
76
+ commands .append (unicode (self .getParameterValue (self .HEIGHTBREAK )))
76
77
commands .append (unicode (self .getParameterValue (self .CELLSIZE )))
77
78
commands .append (self .UNITS [self .getParameterValue (self .XYUNITS )][0 ])
78
79
commands .append (self .UNITS [self .getParameterValue (self .ZUNITS )][0 ])
@@ -87,7 +88,7 @@ def processAlgorithm(self, progress):
87
88
FusionUtils .createFileList (files )
88
89
commands .append (FusionUtils .tempFileListFilepath ())
89
90
FusionUtils .runFusion (commands , progress )
90
- commands = [os .path .join (FusionUtils .FusionPath (), 'DTM2TIF .exe' )]
91
+ commands = [os .path .join (FusionUtils .FusionPath (), 'DTM2ASCII .exe' )]
91
92
commands .append (outFile )
92
93
commands .append (self .getOutputValue (self .OUTPUT ))
93
94
p = subprocess .Popen (commands , shell = True )
You can’t perform that action at this time.
0 commit comments