Skip to content

Commit 25411c7

Browse files
author
Médéric RIBREUX
committed
Fix r.composite
1 parent bb94a17 commit 25411c7

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

python/plugins/processing/algs/grass7/Grass7Algorithm.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -472,11 +472,6 @@ def processOutputs(self):
472472
self.commands.append(command)
473473
self.outputCommands.append(command)
474474

475-
command = 'r.out.gdal --overwrite -c createopt="TFW=YES,COMPRESS=LZW"'
476-
command += ' input='
477-
command += 'correctedoutput' + self.uniqueSufix
478-
command += ' output="' + filename + '"'
479-
elif self.grass7Name == 'r.composite':
480475
command = 'r.out.gdal --overwrite -c createopt="TFW=YES,COMPRESS=LZW"'
481476
command += ' input='
482477
command += 'correctedoutput' + self.uniqueSufix
@@ -487,9 +482,6 @@ def processOutputs(self):
487482

488483
if self.grass7Name == 'r.horizon':
489484
command += out.name + self.uniqueSufix + '_0'
490-
elif self.grass7Name == 'r.composite':
491-
self.commands.append(command)
492-
self.outputCommands.append(command)
493485
elif self.grass7Name == 'r.statistics':
494486
self.commands.append(command)
495487
self.outputCommands.append(command)

0 commit comments

Comments
 (0)