mirror of
https://github.com/qgis/QGIS.git
synced 2025-11-22 00:14:55 -05:00
[processing] fixed saga algorithms when input is an sdat file
This commit is contained in:
parent
848cd44d69
commit
feb8d386a5
@ -111,9 +111,10 @@ class SagaAlgorithm212(GeoAlgorithm):
|
||||
if isinstance(param, ParameterRaster):
|
||||
if param.value is None:
|
||||
continue
|
||||
value = param.value
|
||||
if not value.endswith('sgrd'):
|
||||
exportCommand = self.exportRasterLayer(value)
|
||||
if param.value.endswith('sdat'):
|
||||
param.value = param.value[:-4] + "sgrd"
|
||||
elif not param.value.endswith('sgrd'):
|
||||
exportCommand = self.exportRasterLayer(param.value)
|
||||
if exportCommand is not None:
|
||||
commands.append(exportCommand)
|
||||
if isinstance(param, ParameterVector):
|
||||
@ -143,11 +144,15 @@ class SagaAlgorithm212(GeoAlgorithm):
|
||||
if layers is None or len(layers) == 0:
|
||||
continue
|
||||
if param.datatype == ParameterMultipleInput.TYPE_RASTER:
|
||||
for layerfile in layers:
|
||||
if not layerfile.endswith('sgrd'):
|
||||
for i, layerfile in enumerate(layers):
|
||||
if layerfile.endswith('sdat'):
|
||||
layerfile = param.value[:-4] + "sgrd"
|
||||
layers[i] = layerfile
|
||||
elif not layerfile.endswith('sgrd'):
|
||||
exportCommand = self.exportRasterLayer(layerfile)
|
||||
if exportCommand is not None:
|
||||
commands.append(exportCommand)
|
||||
param.value = ";".join(layers)
|
||||
elif param.datatype == ParameterMultipleInput.TYPE_VECTOR_ANY:
|
||||
for layerfile in layers:
|
||||
layer = dataobjects.getObjectFromUri(layerfile, False)
|
||||
|
||||
@ -61,9 +61,10 @@ class SagaAlgorithm213(SagaAlgorithm212):
|
||||
if isinstance(param, ParameterRaster):
|
||||
if param.value is None:
|
||||
continue
|
||||
value = param.value
|
||||
if not value.endswith('sgrd'):
|
||||
exportCommand = self.exportRasterLayer(value)
|
||||
if param.value.endswith('sdat'):
|
||||
param.value = param.value[:-4] + "sgrd"
|
||||
elif not param.value.endswith('sgrd'):
|
||||
exportCommand = self.exportRasterLayer(param.value)
|
||||
if exportCommand is not None:
|
||||
commands.append(exportCommand)
|
||||
if isinstance(param, ParameterVector):
|
||||
@ -93,11 +94,15 @@ class SagaAlgorithm213(SagaAlgorithm212):
|
||||
if layers is None or len(layers) == 0:
|
||||
continue
|
||||
if param.datatype == ParameterMultipleInput.TYPE_RASTER:
|
||||
for layerfile in layers:
|
||||
if not layerfile.endswith('sgrd'):
|
||||
for i, layerfile in enumerate(layers):
|
||||
if layerfile.endswith('sdat'):
|
||||
layerfile = param.value[:-4] + "sgrd"
|
||||
layers[i] = layerfile
|
||||
elif not layerfile.endswith('sgrd'):
|
||||
exportCommand = self.exportRasterLayer(layerfile)
|
||||
if exportCommand is not None:
|
||||
commands.append(exportCommand)
|
||||
param.value = ";".join(layers)
|
||||
elif param.datatype == ParameterMultipleInput.TYPE_VECTOR_ANY:
|
||||
for layerfile in layers:
|
||||
layer = dataobjects.getObjectFromUri(layerfile, False)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user