mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-15 00:04:00 -04:00
[processing] Don't round grass7 extent and resolution to integer
fix #14582 See: https://hub.qgis.org/issues/14582 The commit removes the a-flag when the grass region for raster analysis is set. The a-flag causes in some cases unwanted rounding of raster extend / resolution, and should not be set hardcoded in processing. It is usually used in combination with the "res" option. For aligning the pixels of the GRASS region to a specific raster, the align option should be used (and not the a-flag). See: https://grass.osgeo.org/grass70/manuals/g.region.html GRASS 6.4 algs do not use the a-flag either, which explains why this bug appears only for GRASS 7.
This commit is contained in:
parent
726a013222
commit
75c76f51f1
@ -383,7 +383,6 @@ class Grass7Algorithm(GeoAlgorithm):
|
||||
unicode(self.getParameterValue(self.GRASS_REGION_EXTENT_PARAMETER))
|
||||
regionCoords = region.split(',')
|
||||
command = 'g.region'
|
||||
command += ' -a'
|
||||
command += ' n=' + unicode(regionCoords[3])
|
||||
command += ' s=' + unicode(regionCoords[2])
|
||||
command += ' e=' + unicode(regionCoords[1])
|
||||
|
Loading…
x
Reference in New Issue
Block a user