Skip to content

Commit a511ecd

Browse files
authored
Merge pull request #4743 from PedroVenancio/master
[processing] change resampling methods to be like SAGA default (fix #16646)
2 parents 89aae4d + b49f53b commit a511ecd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

python/plugins/processing/algs/saga/SagaAlgorithm.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ def exportRasterLayer(self, source):
345345
destFilename = getTempFilenameInTempFolder(filename + '.sgrd')
346346
self.exportedLayers[source] = destFilename
347347
sessionExportedLayers[source] = destFilename
348-
return 'io_gdal 0 -TRANSFORM 1 -RESAMPLING 0 -GRIDS "' + destFilename + '" -FILES "' + source + '"'
348+
return 'io_gdal 0 -TRANSFORM 1 -RESAMPLING 3 -GRIDS "' + destFilename + '" -FILES "' + source + '"'
349349

350350
def checkParameterValues(self, parameters, context):
351351
"""

python/plugins/processing/algs/saga/description/GridCalculator.txt

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ AllowUnmatching
44
ParameterRaster|GRIDS|Main input layer|False
55
ParameterMultipleInput|XGRIDS|Additional layers|3|True
66
ParameterString|FORMULA|Formula|
7+
ParameterSelection|RESAMPLING|Resampling Method|[0] Nearest Neighbour;[1] Bilinear Interpolation;[2] Bicubic Spline Interpolation;[3] B-Spline Interpolation|3
78
ParameterBoolean|USE_NODATA|Use NoData|False
89
ParameterSelection|TYPE|Output Data Type|[0] bit;[1] unsigned 1 byte integer;[2] signed 1 byte integer;[3] unsigned 2 byte integer;[4] signed 2 byte integer;[5] unsigned 4 byte integer;[6] signed 4 byte integer;[7] 4 byte floating point number;[8] 8 byte floating point number|7
910
OutputRaster|RESULT|Calculated

0 commit comments

Comments
 (0)