We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 5ec337a commit 4f9244dCopy full SHA for 4f9244d
python/plugins/processing/algs/lidar/fusion/TinSurfaceCreate.py
@@ -24,6 +24,7 @@
24
__revision__ = '$Format:%H$'
25
26
import os
27
+import subprocess
28
from processing.core.parameters import ParameterFile
29
from processing.core.parameters import ParameterNumber
30
from processing.core.parameters import ParameterSelection
@@ -92,7 +93,7 @@ def processAlgorithm(self, progress):
92
93
commands.extend(files)
94
FusionUtils.runFusion(commands, progress)
95
commands = [os.path.join(FusionUtils.FusionPath(), 'DTM2ASCII.exe')]
- #commands.append('/raster')
96
+ commands.append('/raster')
97
commands.append(outFile)
98
commands.append(self.getOutputValue(self.OUTPUT))
99
p = subprocess.Popen(commands, shell=True)
0 commit comments