Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add the -r parameter to r.external (used now to create grass inputs f…
…or processing, replacing r.in.gdal) and so fixes grass modules like r.reclass.area and probably many others
  • Loading branch information
Giovanni Manghi committed Oct 5, 2013
1 parent 4072e39 commit 42b8a96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/grass/GrassAlgorithm.py
Expand Up @@ -483,7 +483,7 @@ def exportRasterLayer(self, layer):
command += ' input="' + layer + '"'
command += ' band=1'
command += ' output=' + destFilename
command += ' --overwrite -o'
command += ' --overwrite -o -r'
return command

def getTempFilename(self):
Expand Down

0 comments on commit 42b8a96

Please sign in to comment.