add the -r parameter to r.external (used now to create grass inputs for processing, replacing r.in.gdal) and so fixes grass modules like r.reclass.area and probably many others

This commit is contained in:
Giovanni Manghi 2013-10-05 21:58:08 +01:00
parent 4072e39227
commit 42b8a96eed

View File

@ -483,7 +483,7 @@ class GrassAlgorithm(GeoAlgorithm):
command += ' input="' + layer + '"'
command += ' band=1'
command += ' output=' + destFilename
command += ' --overwrite -o'
command += ' --overwrite -o -r'
return command
def getTempFilename(self):