Navigation Menu

Skip to content

Commit

Permalink
master: fix SAGA LTR mosaiking tool
Browse files Browse the repository at this point in the history
  • Loading branch information
gioman committed Jul 21, 2017
1 parent 0cba29c commit dfc9285
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/saga/SagaAlgorithm.py
Expand Up @@ -181,7 +181,7 @@ def processAlgorithm(self, parameters, context, feedback):
layers = param.value.split(';')
if layers is None or len(layers) == 0:
continue
if param.datatype == dataobjects.TYPE_RASTER:
if param.datatype == ParameterMultipleInput.TYPE_RASTER:
for i, layerfile in enumerate(layers):
if layerfile.endswith('sdat'):
layerfile = param.value[:-4] + "sgrd"
Expand Down Expand Up @@ -358,7 +358,7 @@ def checkParameterValues(self, parameters, context):
if isinstance(param, ParameterRaster):
files = [parameters[param.name()]]
elif (isinstance(param, ParameterMultipleInput) and
param.datatype == dataobjects.TYPE_RASTER):
param.datatype == ParameterMultipleInput.TYPE_RASTER):
if param.value is not None:
files = param.value.split(";")
for f in files:
Expand Down
Expand Up @@ -4,7 +4,7 @@ AllowUnmatching
ParameterMultipleInput|GRIDS|Input Grids|3|False
ParameterString|NAME|Name|Mosaic
ParameterSelection|TYPE|Preferred data storage type|[0] 1 bit;[1] 1 byte unsigned integer;[2] 1 byte signed integer;[3] 2 byte unsigned integer;[4] 2 byte signed integer;[5] 4 byte unsigned integer;[6] 4 byte signed integer;[7] 4 byte floating point;[8] 8 byte floating point|7
ParameterSelection|INTERPOL|Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation|0
ParameterSelection|RESAMPLING|Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation|0
ParameterSelection|OVERLAP|Overlapping Areas|[0] first;[1] last;[2] minimum;[3] maximum;[4] mean;[5] blend boundary;[6] feathering|1
ParameterNumber|BLEND_DIST|Blending Distance|0.0|None|10.0
ParameterSelection|MATCH|Match|[0] none;[1] regression|0
Expand Down

0 comments on commit dfc9285

Please sign in to comment.