Skip to content

Commit 4f9244d

Browse files
committedNov 23, 2015
Update TinSurfaceCreate.py
1 parent 5ec337a commit 4f9244d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
__revision__ = '$Format:%H$'
2525

2626
import os
27+
import subprocess
2728
from processing.core.parameters import ParameterFile
2829
from processing.core.parameters import ParameterNumber
2930
from processing.core.parameters import ParameterSelection
@@ -92,7 +93,7 @@ def processAlgorithm(self, progress):
9293
commands.extend(files)
9394
FusionUtils.runFusion(commands, progress)
9495
commands = [os.path.join(FusionUtils.FusionPath(), 'DTM2ASCII.exe')]
95-
#commands.append('/raster')
96+
commands.append('/raster')
9697
commands.append(outFile)
9798
commands.append(self.getOutputValue(self.OUTPUT))
9899
p = subprocess.Popen(commands, shell=True)

0 commit comments

Comments
 (0)
Please sign in to comment.