Skip to content

Commit 7f3cc35

Browse files
committedDec 15, 2015
Merge pull request #2467 from spono/patch-11
[Processing] Update Cover.py
2 parents 34ccc34 + d4ba0c7 commit 7f3cc35

File tree

1 file changed

+2
-1
lines changed
  • python/plugins/processing/algs/lidar/fusion

1 file changed

+2
-1
lines changed
 

‎python/plugins/processing/algs/lidar/fusion/Cover.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ def processAlgorithm(self, progress):
7373
commands.append('/ground:' + unicode(ground))
7474
outFile = self.getOutputValue(self.OUTPUT) + '.dtm'
7575
commands.append(outFile)
76+
commands.append(unicode(self.getParameterValue(self.HEIGHTBREAK)))
7677
commands.append(unicode(self.getParameterValue(self.CELLSIZE)))
7778
commands.append(self.UNITS[self.getParameterValue(self.XYUNITS)][0])
7879
commands.append(self.UNITS[self.getParameterValue(self.ZUNITS)][0])
@@ -87,7 +88,7 @@ def processAlgorithm(self, progress):
8788
FusionUtils.createFileList(files)
8889
commands.append(FusionUtils.tempFileListFilepath())
8990
FusionUtils.runFusion(commands, progress)
90-
commands = [os.path.join(FusionUtils.FusionPath(), 'DTM2TIF.exe')]
91+
commands = [os.path.join(FusionUtils.FusionPath(), 'DTM2ASCII.exe')]
9192
commands.append(outFile)
9293
commands.append(self.getOutputValue(self.OUTPUT))
9394
p = subprocess.Popen(commands, shell=True)

0 commit comments

Comments
 (0)
Please sign in to comment.