From 42b8a96eed7493859ab938e469d29f801003985c Mon Sep 17 00:00:00 2001 From: Giovanni Manghi Date: Sat, 5 Oct 2013 21:58:08 +0100 Subject: [PATCH] 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 --- python/plugins/processing/grass/GrassAlgorithm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/plugins/processing/grass/GrassAlgorithm.py b/python/plugins/processing/grass/GrassAlgorithm.py index 350a02eeb110..c25f90f91a6d 100644 --- a/python/plugins/processing/grass/GrassAlgorithm.py +++ b/python/plugins/processing/grass/GrassAlgorithm.py @@ -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):