Skip to content

Commit

Permalink
Update Cover.py
Browse files Browse the repository at this point in the history
changed TIF to ASCII in order to keep the original cell value
  • Loading branch information
spono committed Nov 15, 2015
1 parent e6d495a commit 11d5f0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/lidar/fusion/Cover.py
Expand Up @@ -87,7 +87,7 @@ def processAlgorithm(self, progress):
FusionUtils.createFileList(files)
commands.append(FusionUtils.tempFileListFilepath())
FusionUtils.runFusion(commands, progress)
commands = [os.path.join(FusionUtils.FusionPath(), 'DTM2TIF.exe')]
commands = [os.path.join(FusionUtils.FusionPath(), 'DTM2ASCII.exe')]
commands.append(outFile)
commands.append(self.getOutputValue(self.OUTPUT))
p = subprocess.Popen(commands, shell=True)
Expand Down

0 comments on commit 11d5f0c

Please sign in to comment.