diff --git a/python/plugins/processing/algs/saga/CMakeLists.txt b/python/plugins/processing/algs/saga/CMakeLists.txt index ff69a4c2e587..26dcbfd2a4dd 100644 --- a/python/plugins/processing/algs/saga/CMakeLists.txt +++ b/python/plugins/processing/algs/saga/CMakeLists.txt @@ -1,19 +1,7 @@ FILE(GLOB PY_FILES *.py) -FILE(GLOB DESCR212_FILES description/2.1.2/*.txt) -FILE(GLOB DESCR213_FILES description/2.1.3/*.txt) -FILE(GLOB DESCR214_FILES description/2.1.4/*.txt) -FILE(GLOB DESCR220_FILES description/2.2.0/*.txt) -FILE(GLOB DESCR222_FILES description/2.2.2/*.txt) -FILE(GLOB DESCR223_FILES description/2.2.3/*.txt) -FILE(GLOB HELP_FILES help/*.rst) +FILE(GLOB DESCR_FILES description/*.txt) ADD_SUBDIRECTORY(ext) PLUGIN_INSTALL(processing algs/saga ${PY_FILES}) -PLUGIN_INSTALL(processing algs/saga/description/2.1.2 ${DESCR212_FILES}) -PLUGIN_INSTALL(processing algs/saga/description/2.1.3 ${DESCR213_FILES}) -PLUGIN_INSTALL(processing algs/saga/description/2.1.4 ${DESCR214_FILES}) -PLUGIN_INSTALL(processing algs/saga/description/2.2.0 ${DESCR220_FILES}) -PLUGIN_INSTALL(processing algs/saga/description/2.2.2 ${DESCR222_FILES}) -PLUGIN_INSTALL(processing algs/saga/description/2.2.3 ${DESCR223_FILES}) -PLUGIN_INSTALL(processing algs/saga/help ${HELP_FILES}) +PLUGIN_INSTALL(processing algs/saga/description/ ${DESCR_FILES}) diff --git a/python/plugins/processing/algs/saga/SagaAlgorithm212.py b/python/plugins/processing/algs/saga/SagaAlgorithm.py similarity index 99% rename from python/plugins/processing/algs/saga/SagaAlgorithm212.py rename to python/plugins/processing/algs/saga/SagaAlgorithm.py index 70cf70d755bd..d39722e5c7c0 100644 --- a/python/plugins/processing/algs/saga/SagaAlgorithm212.py +++ b/python/plugins/processing/algs/saga/SagaAlgorithm.py @@ -62,7 +62,7 @@ sessionExportedLayers = {} -class SagaAlgorithm212(GeoAlgorithm): +class SagaAlgorithm(GeoAlgorithm): OUTPUT_EXTENT = 'OUTPUT_EXTENT' diff --git a/python/plugins/processing/algs/saga/SagaAlgorithm213.py b/python/plugins/processing/algs/saga/SagaAlgorithm213.py deleted file mode 100644 index 57a6165d9682..000000000000 --- a/python/plugins/processing/algs/saga/SagaAlgorithm213.py +++ /dev/null @@ -1,214 +0,0 @@ -# -*- coding: utf-8 -*- - -""" -*************************************************************************** - SagaAlgorithm213.py - --------------------- - Date : December 2014 - Copyright : (C) 2014 by Victor Olaya - Email : volayaf at gmail dot com -*************************************************************************** -* * -* This program is free software; you can redistribute it and/or modify * -* it under the terms of the GNU General Public License as published by * -* the Free Software Foundation; either version 2 of the License, or * -* (at your option) any later version. * -* * -*************************************************************************** -""" -from future import standard_library -standard_library.install_aliases() -from builtins import str -from builtins import range - -__author__ = 'Victor Olaya' -__date__ = 'December 2014' -__copyright__ = '(C) 2014, Victor Olaya' - -# This will get replaced with a git SHA1 when you do a git archive - -__revision__ = '$Format:%H$' - -import os - -from .SagaAlgorithm212 import SagaAlgorithm212 -from processing.core.ProcessingConfig import ProcessingConfig -from processing.core.ProcessingLog import ProcessingLog -from processing.core.GeoAlgorithmExecutionException import GeoAlgorithmExecutionException -from processing.core.parameters import ParameterRaster -from processing.core.parameters import ParameterVector -from processing.core.parameters import ParameterTable -from processing.core.parameters import ParameterMultipleInput -from processing.core.parameters import ParameterBoolean -from processing.core.parameters import ParameterFixedTable -from processing.core.parameters import ParameterExtent -from processing.core.parameters import ParameterNumber -from processing.core.parameters import ParameterSelection -from processing.core.outputs import OutputRaster -from processing.core.outputs import OutputVector -from . import SagaUtils -from processing.tools import dataobjects -from processing.tools.system import getTempFilename - -sessionExportedLayers = {} - - -class SagaAlgorithm213(SagaAlgorithm212): - - OUTPUT_EXTENT = 'OUTPUT_EXTENT' - - def getCopy(self): - newone = SagaAlgorithm213(self.descriptionFile) - newone.provider = self.provider - return newone - - def processAlgorithm(self, feedback): - commands = list() - self.exportedLayers = {} - - self.preProcessInputs() - - # 1: Export rasters to sgrd and vectors to shp - # Tables must be in dbf format. We check that. - for param in self.parameters: - if isinstance(param, ParameterRaster): - if param.value is None: - continue - 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): - if param.value is None: - continue - layer = dataobjects.getObjectFromUri(param.value, False) - if layer: - filename = dataobjects.exportVectorLayer(layer) - self.exportedLayers[param.value] = filename - elif not param.value.endswith('shp'): - raise GeoAlgorithmExecutionException( - self.tr('Unsupported file format')) - if isinstance(param, ParameterTable): - if param.value is None: - continue - table = dataobjects.getObjectFromUri(param.value, False) - if table: - filename = dataobjects.exportTable(table) - self.exportedLayers[param.value] = filename - elif not param.value.endswith('shp'): - raise GeoAlgorithmExecutionException( - self.tr('Unsupported file format')) - if isinstance(param, ParameterMultipleInput): - if param.value is None: - continue - layers = param.value.split(';') - if layers is None or len(layers) == 0: - continue - if param.datatype == dataobjects.TYPE_RASTER: - 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 in [dataobjects.TYPE_VECTOR_ANY, - dataobjects.TYPE_VECTOR_LINE, - dataobjects.TYPE_VECTOR_POLYGON, - dataobjects.TYPE_VECTOR_POINT]: - for layerfile in layers: - layer = dataobjects.getObjectFromUri(layerfile, False) - if layer: - filename = dataobjects.exportVectorLayer(layer) - self.exportedLayers[layerfile] = filename - elif not layerfile.endswith('shp'): - raise GeoAlgorithmExecutionException( - self.tr('Unsupported file format')) - - # 2: Set parameters and outputs - command = self.undecoratedGroup + ' "' + self.cmdname + '"' - command += ' ' + ' '.join(self.hardcodedStrings) - - for param in self.parameters: - if param.value is None: - continue - if isinstance(param, (ParameterRaster, ParameterVector, - ParameterTable)): - value = param.value - if value in list(self.exportedLayers.keys()): - command += ' -' + param.name + ' "' \ - + self.exportedLayers[value] + '"' - else: - command += ' -' + param.name + ' "' + value + '"' - elif isinstance(param, ParameterMultipleInput): - s = param.value - for layer in list(self.exportedLayers.keys()): - s = s.replace(layer, self.exportedLayers[layer]) - command += ' -' + param.name + ' "' + s + '"' - elif isinstance(param, ParameterBoolean): - if param.value: - command += ' -' + param.name.strip() + " true" - else: - command += ' -' + param.name.strip() + " false" - elif isinstance(param, ParameterFixedTable): - tempTableFile = getTempFilename('txt') - with open(tempTableFile, 'w') as f: - f.write('\t'.join([col for col in param.cols]) + '\n') - values = param.value.split(',') - for i in range(0, len(values), 3): - s = values[i] + '\t' + values[i + 1] + '\t' + values[i - + 2] + '\n' - f.write(s) - command += ' -' + param.name + ' "' + tempTableFile + '"' - elif isinstance(param, ParameterExtent): - # 'We have to substract/add half cell size, since SAGA is - # center based, not corner based - halfcell = self.getOutputCellsize() / 2 - offset = [halfcell, -halfcell, halfcell, -halfcell] - values = param.value.split(',') - for i in range(4): - command += ' -' + self.extentParamNames[i] + ' ' \ - + str(float(values[i]) + offset[i]) - elif isinstance(param, (ParameterNumber, ParameterSelection)): - command += ' -' + param.name + ' ' + str(param.value) - else: - command += ' -' + param.name + ' "' + str(param.value) + '"' - - for out in self.outputs: - command += ' -' + out.name + ' "' + out.getCompatibleFileName(self) + '"' - - commands.append(command) - - # special treatment for RGB algorithm - #TODO: improve this and put this code somewhere else - for out in self.outputs: - if isinstance(out, OutputRaster): - filename = out.getCompatibleFileName(self) - filename2 = filename + '.sgrd' - if self.cmdname == 'RGB Composite': - commands.append('io_grid_image 0 -IS_RGB -GRID:"' + filename2 - + '" -FILE:"' + filename - + '"') - - # 3: Run SAGA - commands = self.editCommands(commands) - SagaUtils.createSagaBatchJobFileFromSagaCommands(commands) - loglines = [] - loglines.append(self.tr('SAGA execution commands')) - for line in commands: - feedback.pushCommandInfo(line) - loglines.append(line) - if ProcessingConfig.getSetting(SagaUtils.SAGA_LOG_COMMANDS): - ProcessingLog.addToLog(ProcessingLog.LOG_INFO, loglines) - SagaUtils.executeSaga(feedback) - - if self.crs is not None: - for out in self.outputs: - if isinstance(out, (OutputVector, OutputRaster)): - prjFile = os.path.splitext(out.getCompatibleFileName(self))[0] + ".prj" - with open(prjFile, "w") as f: - f.write(self.crs.toWkt()) diff --git a/python/plugins/processing/algs/saga/SagaAlgorithm214.py b/python/plugins/processing/algs/saga/SagaAlgorithm214.py deleted file mode 100644 index 42c761fa058b..000000000000 --- a/python/plugins/processing/algs/saga/SagaAlgorithm214.py +++ /dev/null @@ -1,64 +0,0 @@ -# -*- coding: utf-8 -*- - -""" -*************************************************************************** - SagaAlgorithm213.py - --------------------- - Date : December 2014 - Copyright : (C) 2014 by Victor Olaya - Email : volayaf at gmail dot com -*************************************************************************** -* * -* This program is free software; you can redistribute it and/or modify * -* it under the terms of the GNU General Public License as published by * -* the Free Software Foundation; either version 2 of the License, or * -* (at your option) any later version. * -* * -*************************************************************************** -""" - -__author__ = 'Victor Olaya' -__date__ = 'December 2014' -__copyright__ = '(C) 2014, Victor Olaya' - -# This will get replaced with a git SHA1 when you do a git archive - -__revision__ = '$Format:%H$' - -import os -from .SagaAlgorithm213 import SagaAlgorithm213 -from processing.tools import dataobjects -from processing.tools.system import getTempFilenameInTempFolder - -sessionExportedLayers = {} - - -class SagaAlgorithm214(SagaAlgorithm213): - - def getCopy(self): - newone = SagaAlgorithm214(self.descriptionFile) - newone.provider = self.provider - return newone - - def exportRasterLayer(self, source): - global sessionExportedLayers - if source in sessionExportedLayers: - exportedLayer = sessionExportedLayers[source] - if os.path.exists(exportedLayer): - self.exportedLayers[source] = exportedLayer - return None - else: - del sessionExportedLayers[source] - layer = dataobjects.getObjectFromUri(source, False) - if layer: - filename = layer.name() - else: - filename = os.path.basename(source) - validChars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789:' - filename = ''.join(c for c in filename if c in validChars) - if len(filename) == 0: - filename = 'layer' - destFilename = getTempFilenameInTempFolder(filename + '.sgrd') - self.exportedLayers[source] = destFilename - sessionExportedLayers[source] = destFilename - return 'io_gdal 0 -TRANSFORM 1 -INTERPOL 0 -GRIDS "' + destFilename + '" -FILES "' + source + '"' diff --git a/python/plugins/processing/algs/saga/SagaAlgorithmProvider.py b/python/plugins/processing/algs/saga/SagaAlgorithmProvider.py index c492aa1e93a2..f3ac50fe5d33 100644 --- a/python/plugins/processing/algs/saga/SagaAlgorithmProvider.py +++ b/python/plugins/processing/algs/saga/SagaAlgorithmProvider.py @@ -31,13 +31,11 @@ from processing.core.AlgorithmProvider import AlgorithmProvider from processing.core.ProcessingConfig import ProcessingConfig, Setting from processing.core.ProcessingLog import ProcessingLog -from .SagaAlgorithm212 import SagaAlgorithm212 -from .SagaAlgorithm213 import SagaAlgorithm213 -from .SagaAlgorithm214 import SagaAlgorithm214 -from .SplitRGBBands import SplitRGBBands -from . import SagaUtils from processing.tools.system import isWindows, isMac +from .SagaAlgorithm import SagaAlgorithm +from .SplitRGBBands import SplitRGBBands +from . import SagaUtils pluginPath = os.path.normpath(os.path.join( os.path.split(os.path.dirname(__file__))[0], os.pardir)) @@ -45,14 +43,6 @@ class SagaAlgorithmProvider(AlgorithmProvider): - supportedVersions = {"2.1.2": ("2.1.2", SagaAlgorithm212), - "2.1.3": ("2.1.3", SagaAlgorithm213), - "2.1.4": ("2.1.4", SagaAlgorithm214), - "2.2.0": ("2.2.0", SagaAlgorithm214), - "2.2.1": ("2.2.0", SagaAlgorithm214), - "2.2.2": ("2.2.2", SagaAlgorithm214), - "2.2.3": ("2.2.3", SagaAlgorithm214)} - def __init__(self): super().__init__() self.activate = True @@ -91,34 +81,28 @@ def _loadAlgorithms(self): ProcessingLog.addToLog(ProcessingLog.LOG_ERROR, self.tr('Problem with SAGA installation: SAGA was not found or is not correctly installed')) return - if version not in self.supportedVersions: - lastVersion = sorted(self.supportedVersions.keys())[-1] - if version > lastVersion: - version = lastVersion - else: - ProcessingLog.addToLog(ProcessingLog.LOG_ERROR, - self.tr('Problem with SAGA installation: installed SAGA version (%s) is not supported' % version)) - return + + if version not in ['2.3.0', '2.3.1']: + ProcessingLog.addToLog(ProcessingLog.LOG_ERROR, + self.tr('Problem with SAGA installation: unsupported SAGA version found.')) + return folder = SagaUtils.sagaDescriptionPath() - folder = os.path.join(folder, self.supportedVersions[version][0]) for descriptionFile in os.listdir(folder): if descriptionFile.endswith('txt'): f = os.path.join(folder, descriptionFile) - self._loadAlgorithm(f, version) - self.algs.append(SplitRGBBands()) + try: + alg = SagaAlgorithm(os.path.join(folder, descriptionFile)) + if alg.name.strip() != '': + self.algs.append(alg) + else: + ProcessingLog.addToLog(ProcessingLog.LOG_ERROR, + self.tr('Could not open SAGA algorithm: {}'.format(descriptionFile))) + except Exception as e: + ProcessingLog.addToLog(ProcessingLog.LOG_ERROR, + self.tr('Could not open SAGA algorithm: {}\n{}'.format(descriptionFile, str(e)))) - def _loadAlgorithm(self, descriptionFile, version): - try: - alg = self.supportedVersions[version][1](descriptionFile) - if alg.name.strip() != '': - self.algs.append(alg) - else: - ProcessingLog.addToLog(ProcessingLog.LOG_ERROR, - self.tr('Could not open SAGA algorithm: %s' % descriptionFile)) - except Exception as e: - ProcessingLog.addToLog(ProcessingLog.LOG_ERROR, - self.tr('Could not open SAGA algorithm: %s\n%s' % (descriptionFile, str(e)))) + self.algs.append(SplitRGBBands()) def name(self): version = SagaUtils.getInstalledVersion() diff --git a/python/plugins/processing/algs/saga/SagaUtils.py b/python/plugins/processing/algs/saga/SagaUtils.py index 2c088dbbbd76..4a3425c4f86c 100644 --- a/python/plugins/processing/algs/saga/SagaUtils.py +++ b/python/plugins/processing/algs/saga/SagaUtils.py @@ -41,6 +41,9 @@ SAGA_FOLDER = 'SAGA_FOLDER' SAGA_IMPORT_EXPORT_OPTIMIZATION = 'SAGA_IMPORT_EXPORT_OPTIMIZATION' +_installedVersion = None +_installedVersionFound = False + def sagaBatchJobFilename(): if isWindows(): @@ -108,9 +111,6 @@ def createSagaBatchJobFileFromSagaCommands(commands): fout.write('exit') -_installedVersion = None -_installedVersionFound = False - def getInstalledVersion(runSaga=False): global _installedVersion diff --git a/python/plugins/processing/algs/saga/description/2.1.2/AddCoordinatestopoints.txt b/python/plugins/processing/algs/saga/description/2.1.2/AddCoordinatestopoints.txt deleted file mode 100644 index be76e8db5064..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/AddCoordinatestopoints.txt +++ /dev/null @@ -1,4 +0,0 @@ -Add Coordinates to points -shapes_points -ParameterVector|INPUT|Points|0|False -OutputVector|OUTPUT|Output diff --git a/python/plugins/processing/algs/saga/description/2.1.2/B-SplineApproximation.txt b/python/plugins/processing/algs/saga/description/2.1.2/B-SplineApproximation.txt deleted file mode 100644 index 6f474544bf5d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/B-SplineApproximation.txt +++ /dev/null @@ -1,9 +0,0 @@ -B-Spline Approximation -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET 0 -ParameterNumber|LEVEL|Resolution|None|None|1.0 -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -OutputRaster|USER_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.2/CatchmentArea(FlowTracing).txt b/python/plugins/processing/algs/saga/description/2.1.2/CatchmentArea(FlowTracing).txt deleted file mode 100644 index 2ed37da92ca3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/CatchmentArea(FlowTracing).txt +++ /dev/null @@ -1,17 +0,0 @@ -Catchment Area (Flow Tracing) -ta_hydrology -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SINKROUTE|Sink Routes|True -ParameterRaster|WEIGHT|Weight|True -ParameterRaster|MATERIAL|Material|True -ParameterRaster|TARGET|Target|True -ParameterNumber|STEP|Step|None|None|1 -ParameterSelection|Method|Method|[0] Rho 8;[1] Kinematic Routing Algorithm;[2] DEMON -ParameterNumber|MINDQV|DEMON - Min. DQV|None|None|0.0 -ParameterBoolean|CORRECT |Flow Correction|True -OutputRaster|CAREA|Catchment Area -OutputRaster|CHEIGHT|Catchment Height -OutputRaster|CSLOPE|Catchment Slope -OutputRaster|ACCU_TOT|Total accumulated Material -OutputRaster|ACCU_LEFT|Accumulated Material from _left_ side -OutputRaster|ACCU_RIGHT|Accumulated Material from _right_ side diff --git a/python/plugins/processing/algs/saga/description/2.1.2/CatchmentArea(Parallel).txt b/python/plugins/processing/algs/saga/description/2.1.2/CatchmentArea(Parallel).txt deleted file mode 100644 index aeec06060954..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/CatchmentArea(Parallel).txt +++ /dev/null @@ -1,5 +0,0 @@ -Catchment Area|Catchment Area (Parallel) -ta_hydrology -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|Method|Method|[0] Deterministic 8;[1] Rho 8;[2] Braunschweiger Reliefmodell;[3] Deterministic Infinity;[4] Multiple Flow Direction;[5] Multiple Triangular Flow Directon -OutputRaster|CAREA|Catchment Area diff --git a/python/plugins/processing/algs/saga/description/2.1.2/CatchmentArea(Recursive).txt b/python/plugins/processing/algs/saga/description/2.1.2/CatchmentArea(Recursive).txt deleted file mode 100644 index 710d8bcc7972..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/CatchmentArea(Recursive).txt +++ /dev/null @@ -1,18 +0,0 @@ -Catchment Area (Recursive) -ta_hydrology -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SINKROUTE|Sink Routes|True -ParameterRaster|WEIGHT|Weight|True -ParameterRaster|MATERIAL|Material|True -ParameterRaster|TARGET|Target|True -ParameterNumber|STEP|Step|None|None|1 -ParameterRaster|TARGETS|Target Areas|True -ParameterSelection|Method|Method|[0] Deterministic 8;[1] Rho 8;[2] Deterministic Infinity;[3] Multiple Flow Direction -ParameterNumber|CONVERGENCE|Convergence|None|None|1.1 -OutputRaster|CAREA|Catchment Area -OutputRaster|CHEIGHT|Catchment Height -OutputRaster|CSLOPE|Catchment Slope -OutputRaster|ACCU_TOT|Total accumulated Material -OutputRaster|ACCU_LEFT|Accumulated Material from _left_ side -OutputRaster|ACCU_RIGHT|Accumulated Material from _right_ side -OutputRaster|FLOWLEN|Flow Path Length diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ContourLinesfromGrid.txt b/python/plugins/processing/algs/saga/description/2.1.2/ContourLinesfromGrid.txt deleted file mode 100644 index 7db5e9088167..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/ContourLinesfromGrid.txt +++ /dev/null @@ -1,7 +0,0 @@ -Contour Lines from Grid -shapes_grid -ParameterRaster|INPUT|Grid|False -ParameterNumber|ZMIN|Minimum Contour Value|None|None|0.0 -ParameterNumber|ZMAX|Maximum Contour Value|None|None|10000.0 -ParameterNumber|ZSTEP|Equidistance|None|None|100.0 -OutputVector|CONTOUR|Contour Lines diff --git a/python/plugins/processing/algs/saga/description/2.1.2/CreateGraticule.txt b/python/plugins/processing/algs/saga/description/2.1.2/CreateGraticule.txt deleted file mode 100644 index 0e46eeeb6a14..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/CreateGraticule.txt +++ /dev/null @@ -1,8 +0,0 @@ -Create Graticule -shapes_tools -ParameterVector|EXTENT|Extent|-1|True -Extent X_EXTENT_MIN X_EXTENT_MAX Y_EXTENT_MIN Y_EXTENT_MAX -ParameterNumber|DISTX|Division Width|None|None|1.0 -ParameterNumber|DISTY|Division Height|None|None|1.0 -ParameterSelection|TYPE|Type|[0] Lines;[1] Rectangles -OutputVector|GRATICULE|Graticule diff --git a/python/plugins/processing/algs/saga/description/2.1.2/CropToData.txt b/python/plugins/processing/algs/saga/description/2.1.2/CropToData.txt deleted file mode 100644 index 783a31c5758d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/CropToData.txt +++ /dev/null @@ -1,4 +0,0 @@ -Crop to Data -grid_tools -ParameterRaster|INPUT|Input layer|False -OutputRaster|OUTPUT|Cropped layer \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.2/CubicSplineApproximation.txt b/python/plugins/processing/algs/saga/description/2.1.2/CubicSplineApproximation.txt deleted file mode 100644 index 8b8175a4592a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/CubicSplineApproximation.txt +++ /dev/null @@ -1,12 +0,0 @@ -Cubic Spline Approximation -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET 0 -ParameterNumber|NPMIN|Minimal Number of Points|None|None|3 -ParameterNumber|NPMAX|Maximal Number of Points|None|None|20 -ParameterNumber|NPPC|Points per Square|None|None|5 -ParameterNumber|K|Tolerance|None|None|140.0 -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -OutputRaster|USER_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.2/CutShapesLayer.txt b/python/plugins/processing/algs/saga/description/2.1.2/CutShapesLayer.txt deleted file mode 100644 index 48de0340e29a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/CutShapesLayer.txt +++ /dev/null @@ -1,8 +0,0 @@ -Cut Shapes Layer -shapes_tools -ParameterVector|SHAPES|Vector layer to cut|-1|False -ParameterSelection|METHOD|Method|[0] completely contained;[1] intersects;[2] center -Hardcoded|-TARGET 3 -ParameterVector|POLYGONS_POLYGONS|Cutting polygons|-1|False -OutputVector|CUT|Result -OutputVector|EXTENT|Extent diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GeographicallyWeightedMultipleRegression(Points).txt b/python/plugins/processing/algs/saga/description/2.1.2/GeographicallyWeightedMultipleRegression(Points).txt deleted file mode 100644 index cc8c2f5b1cba..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/GeographicallyWeightedMultipleRegression(Points).txt +++ /dev/null @@ -1,15 +0,0 @@ -Geographically Weighted Multiple Regression (Points) -statistics_regression -ParameterVector|POINTS|Points|-1|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterSelection|DISTANCE_WEIGHTING_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1.0 -ParameterSelection|RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|RADIUS|Search Radius|None|None|100 -ParameterSelection|MODE|Search Mode|[0] all directions;[1] quadrants -ParameterSelection|NPOINTS|Number of Points|[0] maximum number of observations;[1] all points -ParameterNumber|MAXPOINTS|Maximum Number of Observations|None|None|10 -ParameterNumber|MINPOINTS|Minimum Number of Observations|None|None|4 -OutputVector|REGRESSION|Regression diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GeographicallyWeightedMultipleRegression(PointsGrids).txt b/python/plugins/processing/algs/saga/description/2.1.2/GeographicallyWeightedMultipleRegression(PointsGrids).txt deleted file mode 100644 index f111a1c93069..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/GeographicallyWeightedMultipleRegression(PointsGrids).txt +++ /dev/null @@ -1,20 +0,0 @@ -Geographically Weighted Multiple Regression (Points/Grids) -statistics_regression -ParameterMultipleInput|PREDICTORS|Predictors|3.0|False -ParameterBoolean|PARAMETERS |Output of Regression Parameters|True -ParameterVector|POINTS|Points|0|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterSelection|DISTANCE_WEIGHTING_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1.0 -ParameterSelection|RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|RADIUS|Search Radius|None|None|100 -ParameterSelection|MODE|Search Mode|[0] all directions;[1] quadrants -ParameterSelection|NPOINTS|Number of Points|[0] maximum number of observations;[1] all points -ParameterNumber|MAXPOINTS|Maximum Number of Observations|None|None|10 -ParameterNumber|MINPOINTS|Minimum Number of Observations|None|None|4 -OutputRaster|REGRESSION|Regression -OutputRaster|QUALITY|Coefficient of Determination -OutputRaster|SLOPES|Regression Parameters -OutputVector|RESIDUALS|Residuals diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GeographicallyWeightedMultipleRegression.txt b/python/plugins/processing/algs/saga/description/2.1.2/GeographicallyWeightedMultipleRegression.txt deleted file mode 100644 index 4b53d520494b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/GeographicallyWeightedMultipleRegression.txt +++ /dev/null @@ -1,21 +0,0 @@ -Geographically Weighted Multiple Regression -statistics_regression -ParameterVector|POINTS|Points|0|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -Hardcoded|-TARGET 0 -ParameterSelection|DISTANCE_WEIGHTING_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1 -ParameterSelection|RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|RADIUS|Search Radius|None|None|100 -ParameterSelection|MODE|Search Mode|[0] all directions;[1] quadrants -ParameterSelection|NPOINTS|Number of Points|[0] maximum number of observations;[1] all points -ParameterNumber|MAXPOINTS|Maximum Number of Observations|None|None|10 -ParameterNumber|MINPOINTS|Minimum Number of Observations|None|None|4 -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -OutputRaster|USER_QUALITY|Quality -OutputRaster|USER_INTERCEPT|Intercept -OutputRaster|GRID_QUALITY|Quality -OutputRaster|GRID_INTERCEPT|Intercept diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GeographicallyWeightedRegression(PointsGrid).txt b/python/plugins/processing/algs/saga/description/2.1.2/GeographicallyWeightedRegression(PointsGrid).txt deleted file mode 100644 index dc45e2bddeb8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/GeographicallyWeightedRegression(PointsGrid).txt +++ /dev/null @@ -1,20 +0,0 @@ -Geographically Weighted Regression (Points/Grid) -statistics_regression -ParameterRaster|PREDICTOR|Predictor|False -ParameterVector|POINTS|Points|0|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterSelection|DISTANCE_WEIGHTING_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1.0 -ParameterSelection|RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|RADIUS|Search Radius|None|None|0 -ParameterSelection|MODE|Search Mode|[0] all directions;[1] quadrants -ParameterSelection|NPOINTS|Number of Points|[0] maximum number of observations;[1] all points -ParameterNumber|MAXPOINTS|Maximum Number of Observations|None|None|10 -ParameterNumber|MINPOINTS|Minimum Number of Observations|None|None|4 -OutputRaster|REGRESSION|Regression -OutputRaster|QUALITY|Coefficient of Determination -OutputRaster|INTERCEPT|Intercept -OutputRaster|SLOPE|Slope -OutputVector|RESIDUALS|Residuals diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GeographicallyWeightedRegression.txt b/python/plugins/processing/algs/saga/description/2.1.2/GeographicallyWeightedRegression.txt deleted file mode 100644 index bef2db4fac3a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/GeographicallyWeightedRegression.txt +++ /dev/null @@ -1,22 +0,0 @@ -Geographically Weighted Regression -statistics_regression -ParameterVector|POINTS|Points|0|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterTableField|PREDICTOR|Predictor|POINTS|-1|False -Hardcoded|-TARGET 0 -ParameterSelection|DISTANCE_WEIGHTING_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_IDW_POWER|Inverse Distance Weighting Power|None|None|0 -ParameterBoolean|DISTANCE_WEIGHTING_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|0.0 -ParameterSelection|RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|RADIUS|Search Radius|None|None|100 -ParameterSelection|MODE|Search Mode|[0] all directions;[1] quadrants -ParameterSelection|NPOINTS|Number of Points|[0] maximum number of observations;[1] all points -ParameterNumber|MAXPOINTS|Maximum Number of Observations|None|None|10 -ParameterNumber|MINPOINTS|Minimum Number of Observations|None|None|4 -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -OutputRaster|USER_GRID|Grid -OutputRaster|USER_QUALITY|Quality -OutputRaster|USER_INTERCEPT|Intercept -OutputRaster|USER_SLOPE|Slope diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GridMasking.txt b/python/plugins/processing/algs/saga/description/2.1.2/GridMasking.txt deleted file mode 100644 index 93233f1d1a19..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/GridMasking.txt +++ /dev/null @@ -1,6 +0,0 @@ -Grid Masking -grid_tools -ParameterRaster|GRID|Grid|False -ParameterRaster|MASK|Mask|False -OutputRaster|MASKED|Masked Grid -AllowUnmatching \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GridStatisticsforPolygons.txt b/python/plugins/processing/algs/saga/description/2.1.2/GridStatisticsforPolygons.txt deleted file mode 100644 index ad76d9ff85f9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/GridStatisticsforPolygons.txt +++ /dev/null @@ -1,14 +0,0 @@ -Grid Statistics for Polygons -shapes_grid -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|COUNT |Number of Cells|True -ParameterBoolean|MIN |Minimum|True -ParameterBoolean|MAX |Maximum|True -ParameterBoolean|RANGE |Range|True -ParameterBoolean|SUM |Sum|True -ParameterBoolean|MEAN |Mean|True -ParameterBoolean|VAR |Variance|True -ParameterBoolean|STDDEV |Standard Deviation|True -ParameterNumber|QUANTILE|Quantiles|None|None|0 -OutputVector|RESULT|Statistics diff --git a/python/plugins/processing/algs/saga/description/2.1.2/InverseDistanceWeighted.txt b/python/plugins/processing/algs/saga/description/2.1.2/InverseDistanceWeighted.txt deleted file mode 100644 index cfa17383a980..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/InverseDistanceWeighted.txt +++ /dev/null @@ -1,16 +0,0 @@ -Inverse Distance Weighted -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET 0 -ParameterSelection|WEIGHTING|Distance Weighting|[0] inverse distance to a power;[1] linearly decreasing within search radius;[2] exponential weighting scheme;[3] gaussian weighting scheme -ParameterNumber|WEIGHT_POWER|Inverse Distance Power|0.0|None|2 -ParameterNumber|WEIGHT_BANDWIDTH|Exponential and Gaussian Weighting Bandwidth|0.0|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100.0 -ParameterSelection|SEARCH_DIRECTION|Search Mode|[0] all directions;[1] quadrants -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points -ParameterNumber|SEARCH_POINTS_MAX|Maximum Number of Points|None|None|10 -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -OutputRaster|USER_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.2/KernelDensityEstimation.txt b/python/plugins/processing/algs/saga/description/2.1.2/KernelDensityEstimation.txt deleted file mode 100644 index d65b682661f6..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/KernelDensityEstimation.txt +++ /dev/null @@ -1,10 +0,0 @@ -Kernel Density Estimation -grid_gridding -ParameterVector|POINTS|Points|0|False -ParameterTableField|POPULATION|Weight|POINTS|-1|False -ParameterNumber|RADIUS|Radius|None|None|10 -ParameterSelection|KERNEL|Kernel|[0] quartic kernel;[1] gaussian kernel -Hardcoded|-TARGET 0 -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -OutputRaster|USER_GRID|Kernel diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ModifiedQuadraticShepard.txt b/python/plugins/processing/algs/saga/description/2.1.2/ModifiedQuadraticShepard.txt deleted file mode 100644 index ffa8bdddd795..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/ModifiedQuadraticShepard.txt +++ /dev/null @@ -1,13 +0,0 @@ -Modified Quadratic Shepard -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET 0 -ParameterNumber|QUADRATIC_NEIGHBORS|Quadratic Neighbors|1.0|None|13 -ParameterNumber|WEIGHTING_NEIGHBORS|Weighting Neighbors|1.0|None|19 -ParameterNumber|USER_XMIN|Left|None|None|0.0 -ParameterNumber|USER_XMAX|Right|None|None|0.0 -ParameterNumber|USER_YMIN|Bottom|None|None|0.0 -ParameterNumber|USER_YMAX|Top|None|None|0.0 -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -OutputRaster|USER_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.2/Mosaicking.txt b/python/plugins/processing/algs/saga/description/2.1.2/Mosaicking.txt deleted file mode 100644 index 8e36d3369ef5..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/Mosaicking.txt +++ /dev/null @@ -1,14 +0,0 @@ -Mosaick raster layers|Mosaicking -grid_tools -AllowUnmatching -ParameterMultipleInput|GRIDS|Input Grids|3|False -ParameterMultipleInput|GRID_GRID|Grid (Optional Input)|3|True -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|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 -Hardcoded|-TARGET 0 -ParameterSelection|USER_FIT|Fit|[0] nodes;[1] cells|0 -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -OutputRaster|USER_GRID|Mosaicked Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.2/MultilevelB-SplineInterpolation(fromGrid).txt b/python/plugins/processing/algs/saga/description/2.1.2/MultilevelB-SplineInterpolation(fromGrid).txt deleted file mode 100644 index 45159390a7c8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/MultilevelB-SplineInterpolation(fromGrid).txt +++ /dev/null @@ -1,11 +0,0 @@ -Multilevel B-Spline Interpolation (from Grid) -grid_spline -ParameterRaster|GRIDPOINTS|Grid|False -Hardcoded|-TARGET 0 -ParameterSelection|METHOD|Method|[0] without B-spline refinement;[1] with B-spline refinement -ParameterNumber|EPSILON|Threshold Error|None|None|0.0001 -ParameterNumber|LEVEL_MAX|Maximum Level|None|None|11.0 -ParameterSelection|DATATYPE|Data Type|[0] same as input grid;[1] floating point -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -OutputRaster|USER_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.2/MultilevelB-SplineInterpolation.txt b/python/plugins/processing/algs/saga/description/2.1.2/MultilevelB-SplineInterpolation.txt deleted file mode 100644 index b4108e079daf..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/MultilevelB-SplineInterpolation.txt +++ /dev/null @@ -1,11 +0,0 @@ -Multilevel B-Spline Interpolation -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET 0 -ParameterSelection|METHOD|Method|[0] without B-spline refinement;[1] with B-spline refinement -ParameterNumber|EPSILON|Threshold Error|None|None|0.0001 -ParameterNumber|LEVEL_MAX|Maximum Level|None|None|11.0 -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -OutputRaster|USER_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.2/NaturalNeighbour.txt b/python/plugins/processing/algs/saga/description/2.1.2/NaturalNeighbour.txt deleted file mode 100644 index be740563a7a7..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/NaturalNeighbour.txt +++ /dev/null @@ -1,9 +0,0 @@ -Natural Neighbour -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET 0 -ParameterBoolean|SIBSON |Sibson|True -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -OutputRaster|USER_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.2/NearestNeighbour.txt b/python/plugins/processing/algs/saga/description/2.1.2/NearestNeighbour.txt deleted file mode 100644 index 1265f80617d7..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/NearestNeighbour.txt +++ /dev/null @@ -1,8 +0,0 @@ -Nearest Neighbour -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET 0 -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -OutputRaster|USER_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.2/OrdinaryKriging(Global).txt b/python/plugins/processing/algs/saga/description/2.1.2/OrdinaryKriging(Global).txt deleted file mode 100644 index 0eee0d1634c0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/OrdinaryKriging(Global).txt +++ /dev/null @@ -1,19 +0,0 @@ -Ordinary Kriging (Global) -statistics_kriging -ParameterVector|POINTS|Points|0|False -ParameterTableField|ZFIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET 0 -ParameterSelection|TQUALITY|Type of Quality Measure|[0] standard deviation;[1] variance -ParameterBoolean|LOG|Logarithmic Transformation|True -ParameterBoolean|BLOCK|Block Kriging|True -ParameterNumber|DBLOCK|Block Size|1|None|100 -ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0 -ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100 -ParameterNumber|VAR_NSKIP|Skip|1|None|1 -ParameterString|VAR_MODEL|Variogram Model|a + b * x -ParameterBoolean|USER_BVARIANCE|Create Quality Grid|True -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Grid Size|0|None|100.0 -ParameterSelection|USER_FIT|Search Direction|[0] nodes;[1] cells -OutputRaster|USER_GRID|Grid -OutputRaster|USER_VARIANCE|Variance \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.2/OrdinaryKriging.txt b/python/plugins/processing/algs/saga/description/2.1.2/OrdinaryKriging.txt deleted file mode 100644 index 71b10a162b54..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/OrdinaryKriging.txt +++ /dev/null @@ -1,25 +0,0 @@ -Ordinary Kriging -statistics_kriging -ParameterVector|POINTS|Points|0|False -ParameterTableField|ZFIELD|Attribute|POINTS|-1|False -Hardcoded|-TARGET 0 -ParameterSelection|TQUALITY|Type of Quality Measure|[0] standard deviation;[1] variance -ParameterBoolean|LOG|Logarithmic Transformation|True -ParameterBoolean|BLOCK|Block Kriging|True -ParameterNumber|DBLOCK|Block Size|0|None|100 -ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0 -ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100 -ParameterNumber|VAR_NSKIP|Skip|1|None|1 -ParameterString|VAR_MODEL|Variogram Model|a + b * x -ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global -ParameterNumber|SEARCH_RADIUS|Maximum Search Distance|0|None|1000 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -ParameterBoolean|USER_BVARIANCE|Create Quality Grid|True -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|0|None|100.0 -ParameterSelection|USER_FIT|Search Direction|[0] nodes;[1] cells -OutputRaster|USER_GRID|Grid -OutputRaster|USER_VARIANCE|Variance \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.2/PolynomialRegression.txt b/python/plugins/processing/algs/saga/description/2.1.2/PolynomialRegression.txt deleted file mode 100644 index 9622a5833768..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/PolynomialRegression.txt +++ /dev/null @@ -1,13 +0,0 @@ -Polynomial Regression -statistics_regression -ParameterVector|POINTS|Points|-1|False -ParameterTableField|ATTRIBUTE|Attribute|POINTS|-1|False -ParameterSelection|POLYNOM|Polynom|[0] simple planar surface;[1] bi-linear saddle;[2] quadratic surface;[3] cubic surface;[4] user defined -ParameterNumber|XORDER|Maximum X Order|None|None|4 -ParameterNumber|YORDER|Maximum Y Order|None|None|4 -ParameterNumber|TORDER|Maximum Total Order|None|None|4 -ParameterSelection|TARGET|Trend Surface|[0] user defined -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -OutputVector|RESIDUALS|Residuals -OutputRaster|USER_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.2/RandomField.txt b/python/plugins/processing/algs/saga/description/2.1.2/RandomField.txt deleted file mode 100644 index d7752066ad93..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/RandomField.txt +++ /dev/null @@ -1,12 +0,0 @@ -Random Field -grid_calculus -Hardcoded|-TARGET 0 -ParameterSelection|METHOD|Method|[0] Uniform;[1] Gaussian -ParameterNumber|RANGE_MIN|Range Min|None|None|0.0 -ParameterNumber|RANGE_MAX|Range Max|None|None|1.0 -ParameterNumber|MEAN|Arithmetic Mean|None|None|0.0 -ParameterNumber|STDDEV|Standard Deviation|None|None|1.0 -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|USER_FIT|Method|[0] nodes;[1] cells -OutputRaster|USER_GRID|Random Field diff --git a/python/plugins/processing/algs/saga/description/2.1.2/Resampling.txt b/python/plugins/processing/algs/saga/description/2.1.2/Resampling.txt deleted file mode 100644 index cf12ddae3654..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/Resampling.txt +++ /dev/null @@ -1,10 +0,0 @@ -Resampling -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterBoolean|KEEP_TYPE |Preserve Data Type|True -Hardcoded|-TARGET 0 -ParameterSelection|SCALE_UP_METHOD|Interpolation Method (Scale Up)|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation;[5] Mean Value;[6] Mean Value (cell area weighted);[7] Minimum Value;[8] Maximum Value;[9] Majority -ParameterSelection|SCALE_DOWN_METHOD|Interpolation Method (Scale Down)|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -OutputRaster|USER_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ResidualAnalysis(Grid).txt b/python/plugins/processing/algs/saga/description/2.1.2/ResidualAnalysis(Grid).txt deleted file mode 100644 index 9000f9eac4d4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/ResidualAnalysis(Grid).txt +++ /dev/null @@ -1,16 +0,0 @@ -Residual analysis|Residual Analysis (Grid) -statistics_grid -ParameterRaster|GRID|Grid|False -ParameterNumber|RADIUS|Radius (Cells)|1.0|None|7 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1.0 -OutputRaster|MEAN|Mean Value -OutputRaster|DIFF|Difference from Mean Value -OutputRaster|STDDEV|Standard Deviation -OutputRaster|RANGE|Value Range -OutputRaster|MIN|Minimum Value -OutputRaster|MAX|Maximum Value -OutputRaster|DEVMEAN|Deviation from Mean Value -OutputRaster|PERCENT|Percentile diff --git a/python/plugins/processing/algs/saga/description/2.1.2/Separatepointsbydirection.txt b/python/plugins/processing/algs/saga/description/2.1.2/Separatepointsbydirection.txt deleted file mode 100644 index 103f2b3a8e38..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/Separatepointsbydirection.txt +++ /dev/null @@ -1,6 +0,0 @@ -Separate points by direction -shapes_points -ParameterVector|POINTS|Points|0|False -ParameterNumber|DIRECTIONS|Number of Directions|1.0|None|4 -ParameterNumber|TOLERANCE|Tolerance (Degree)|0.0|None|5 -OutputVector|OUTPUT|Ouput diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ShapestoGrid.txt b/python/plugins/processing/algs/saga/description/2.1.2/ShapestoGrid.txt deleted file mode 100644 index ae91f8b1ddc1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/ShapestoGrid.txt +++ /dev/null @@ -1,11 +0,0 @@ -Shapes to Grid -grid_gridding -Hardcoded|-TARGET 0 -ParameterVector|INPUT|Shapes|-1|False -ParameterTableField|FIELD|Attribute|INPUT|-1|False -ParameterSelection|MULTIPLE|Method for Multiple Values|[0] first;[1] last;[2] minimum;[3] maximum;[4] mean|4 -ParameterSelection|LINE_TYPE|Method for Lines|[0] thin;[1] thick -ParameterSelection|GRID_TYPE|Preferred Target Grid Type|[0] Integer (1 byte);[1] Integer (2 byte);[2] Integer (4 byte);[3] Floating Point (4 byte);[4] Floating Point (8 byte)|3 -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -OutputRaster|USER_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.2/StatisticsforGrids.txt b/python/plugins/processing/algs/saga/description/2.1.2/StatisticsforGrids.txt deleted file mode 100644 index fa10d25b38e9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/StatisticsforGrids.txt +++ /dev/null @@ -1,10 +0,0 @@ -Statistics for Grids -statistics_grid -ParameterMultipleInput|GRIDS|Grids|3|False -OutputRaster|MEAN|Arithmetic Mean -OutputRaster|MIN|Minimum -OutputRaster|MAX|Maximum -OutputRaster|VAR|Variance -OutputRaster|STDDEV|Standard Deviation -OutputRaster|STDDEVLO|Mean less Standard Deviation -OutputRaster|STDDEVHI|Mean plus Standard Deviation diff --git a/python/plugins/processing/algs/saga/description/2.1.2/TPIBasedLandformClassification.txt b/python/plugins/processing/algs/saga/description/2.1.2/TPIBasedLandformClassification.txt deleted file mode 100644 index b9605fa55edf..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/TPIBasedLandformClassification.txt +++ /dev/null @@ -1,12 +0,0 @@ -TPI Based Landform Classification -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS_A_MIN|Min Radius A|None|None|0 -ParameterNumber|RADIUS_A_MAX|Max Radius A|None|None|100 -ParameterNumber|RADIUS_B_MIN|Min Radius B|None|None|0 -ParameterNumber|RADIUS_B_MAX|Max Radius B|None|None|1000 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|0.0|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|75.0 -OutputRaster|LANDFORMS|Landforms diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ThinPlateSpline(Global).txt b/python/plugins/processing/algs/saga/description/2.1.2/ThinPlateSpline(Global).txt deleted file mode 100644 index 5154c96c5aa8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/ThinPlateSpline(Global).txt +++ /dev/null @@ -1,10 +0,0 @@ -Thin Plate Spline (Global) -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET 0 -ParameterNumber|REGULARISATION|Regularisation|0.0000|None|0.0001 -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|USER_FIT|Method|[0] nodes;[1] cells -OutputRaster|USER_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ThinPlateSpline(Local).txt b/python/plugins/processing/algs/saga/description/2.1.2/ThinPlateSpline(Local).txt deleted file mode 100644 index e71f743ed790..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/ThinPlateSpline(Local).txt +++ /dev/null @@ -1,15 +0,0 @@ -Thin Plate Spline (Local) -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET 0 -ParameterNumber|REGULARISATION|Regularisation|None|None|0.0001 -ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global -ParameterNumber|SEARCH_RADIUS|Search Radius|0.0|None|1000.0 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MAX|Maximum Number of Points|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|USER_FIT|Method|[0] nodes;[1] cells -OutputRaster|USER_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ThinPlateSpline(TIN).txt b/python/plugins/processing/algs/saga/description/2.1.2/ThinPlateSpline(TIN).txt deleted file mode 100644 index 9fc56cd94345..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/ThinPlateSpline(TIN).txt +++ /dev/null @@ -1,12 +0,0 @@ -Thin Plate Spline (TIN) -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET 0 -ParameterNumber|REGULARISATION|Regularisation|0.0000|None|0.0001 -ParameterSelection|LEVEL|Neighbourhood|[0] immediate;[1] level 1;[2] level 2 -ParameterBoolean|FRAME |Add Frame|True -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|USER_FIT|Method|[0] nodes;[1] cells -OutputRaster|USER_GRID|TIN diff --git a/python/plugins/processing/algs/saga/description/2.1.2/TopographicPositionIndex(TPI).txt b/python/plugins/processing/algs/saga/description/2.1.2/TopographicPositionIndex(TPI).txt deleted file mode 100644 index a2629e9685c8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/TopographicPositionIndex(TPI).txt +++ /dev/null @@ -1,11 +0,0 @@ -Topographic Position Index (TPI) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterBoolean|STANDARD |Standardize|True -ParameterNumber|RADIUS_MIN|Min Radius|0.0|None|0.0 -ParameterNumber|RADIUS_MAX|Max Radius|None|None|100.0 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|75.0 -OutputRaster|TPI|Topographic Position Index \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.2/TransformShapes.txt b/python/plugins/processing/algs/saga/description/2.1.2/TransformShapes.txt deleted file mode 100644 index bbfe40987f62..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/TransformShapes.txt +++ /dev/null @@ -1,11 +0,0 @@ -Transform Shapes -shapes_tools -ParameterVector|IN|Shapes|-1|False -ParameterNumber|DX|dX|None|None|0.0 -ParameterNumber|DY|dY|None|None|0.0 -ParameterNumber|ANGLE|Angle|None|None|0.0 -ParameterNumber|SCALEX|Scale Factor X|None|None|1.0 -ParameterNumber|SCALEY|Scale Factor Y|None|None|1.0 -ParameterNumber|ANCHORX|X|None|None|0.0 -ParameterNumber|ANCHORY|Y|None|None|0.0 -OutputVector|OUT|Output diff --git a/python/plugins/processing/algs/saga/description/2.1.2/Triangulation.txt b/python/plugins/processing/algs/saga/description/2.1.2/Triangulation.txt deleted file mode 100644 index 0f7a7d9bc927..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/Triangulation.txt +++ /dev/null @@ -1,8 +0,0 @@ -Triangulation -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET 0 -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -OutputRaster|USER_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.2/UniversalKriging(Global).txt b/python/plugins/processing/algs/saga/description/2.1.2/UniversalKriging(Global).txt deleted file mode 100644 index 8be4054931a3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/UniversalKriging(Global).txt +++ /dev/null @@ -1,22 +0,0 @@ -Universal Kriging (Global) -statistics_kriging -ParameterVector|POINTS|Points|0|False -ParameterTableField|ZFIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET 0 -ParameterSelection|TQUALITY|Type of Quality Measure|[0] standard deviation;[1] variance -ParameterBoolean|LOG|Logarithmic Transformation|True -ParameterBoolean|BLOCK|Block Kriging|True -ParameterNumber|DBLOCK|Block Size|1|None|100 -ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0 -ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100 -ParameterNumber|VAR_NSKIP|Skip|1|None|1 -ParameterString|VAR_MODEL|Variogram Model|a + b * x -ParameterMultipleInput|GRIDS|Input Grids|3|True -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterBoolean|COORDS|Coordinates|False -ParameterBoolean|USER_BVARIANCE|Create Quality Grid|True -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Grid Size|0|None|100.0 -ParameterSelection|USER_FIT|Search Direction|[0] nodes;[1] cells -OutputRaster|USER_GRID|Grid -OutputRaster|USER_VARIANCE|Variance diff --git a/python/plugins/processing/algs/saga/description/2.1.2/UniversalKriging.txt b/python/plugins/processing/algs/saga/description/2.1.2/UniversalKriging.txt deleted file mode 100644 index 62431e7f73de..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/UniversalKriging.txt +++ /dev/null @@ -1,28 +0,0 @@ -Universal Kriging -statistics_kriging -ParameterVector|POINTS|Points|0|False -ParameterTableField|ZFIELD|Attribute|POINTS|-1|False -Hardcoded|-TARGET 0 -ParameterSelection|TQUALITY|Type of Quality Measure|[0] standard deviation;[1] variance -ParameterBoolean|LOG|Logarithmic Transformation|True -ParameterBoolean|BLOCK|Block Kriging|True -ParameterNumber|DBLOCK|Block Size|0|None|100 -ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0 -ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100 -ParameterNumber|VAR_NSKIP|Skip|1|None|1 -ParameterString|VAR_MODEL|Variogram Model|a + b * x -ParameterMultipleInput|GRIDS|Input Grids|3|True -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterBoolean|COORDS|Coordinates|False -ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global -ParameterNumber|SEARCH_RADIUS|Maximum Search Distance|0|None|1000 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -ParameterBoolean|USER_BVARIANCE|Create Quality Grid|True -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Grid Size|0|None|100.0 -ParameterSelection|USER_FIT|Search Direction|[0] nodes;[1] cells -OutputRaster|USER_GRID|Grid -OutputRaster|USER_VARIANCE|Variance diff --git a/python/plugins/processing/algs/saga/description/2.1.2/VectorisingGridClasses.txt b/python/plugins/processing/algs/saga/description/2.1.2/VectorisingGridClasses.txt deleted file mode 100644 index f6b9bc69d589..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.2/VectorisingGridClasses.txt +++ /dev/null @@ -1,7 +0,0 @@ -Vectorising Grid Classes -shapes_grid -ParameterRaster|GRID|Grid|False -ParameterSelection|CLASS_ALL|Class Selection|[0] one single class specified by class identifier;[1] all classes|1 -ParameterNumber|CLASS_ID|Class Identifier|None|None|0 -ParameterSelection|SPLIT|Vectorised class as...|[0] one single (multi-)polygon object;[1] each island as separated polygon|1 -OutputVector|POLYGONS|Polygons diff --git a/python/plugins/processing/algs/saga/description/2.1.3/AccumulatedCost(Anisotropic).txt b/python/plugins/processing/algs/saga/description/2.1.3/AccumulatedCost(Anisotropic).txt deleted file mode 100644 index b50c05a952ac..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/AccumulatedCost(Anisotropic).txt +++ /dev/null @@ -1,8 +0,0 @@ -Accumulated Cost (Anisotropic) -grid_analysis -ParameterRaster|COST|Cost Grid|False -ParameterRaster|DIRECTION|Direction of max cost|False -ParameterRaster|POINTS|Destination Points|False -ParameterNumber|K|k factor|None|None|1 -ParameterNumber|THRESHOLD|Threshold for different route|None|None|0 -OutputRaster|ACCCOST|Accumulated Cost diff --git a/python/plugins/processing/algs/saga/description/2.1.3/AccumulatedCost(Isotropic).txt b/python/plugins/processing/algs/saga/description/2.1.3/AccumulatedCost(Isotropic).txt deleted file mode 100644 index e4d4a49dd502..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/AccumulatedCost(Isotropic).txt +++ /dev/null @@ -1,7 +0,0 @@ -Accumulated Cost (Isotropic) -grid_analysis -ParameterRaster|COST|Cost Grid|False -ParameterRaster|POINTS|Destination Points|False -ParameterNumber|THRESHOLD|Threshold for different route|None|None|0.0 -OutputRaster|ACCCOST|Accumulated Cost -OutputRaster|CLOSESTPT|Closest Point diff --git a/python/plugins/processing/algs/saga/description/2.1.3/AddGridValuestoPoints.txt b/python/plugins/processing/algs/saga/description/2.1.3/AddGridValuestoPoints.txt deleted file mode 100644 index 56164a8c5982..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/AddGridValuestoPoints.txt +++ /dev/null @@ -1,7 +0,0 @@ -Add Grid Values to Points -shapes_grid -ParameterVector|SHAPES|Points|0|False -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|INTERPOL|Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -OutputVector|RESULT|Result -AllowUnmatching \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.3/AddGridValuestoShapes.txt b/python/plugins/processing/algs/saga/description/2.1.3/AddGridValuestoShapes.txt deleted file mode 100644 index 17959756198b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/AddGridValuestoShapes.txt +++ /dev/null @@ -1,7 +0,0 @@ -Add Grid Values to Shapes -shapes_grid -ParameterVector|SHAPES|Shapes|-1|False -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|INTERPOL|Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -OutputVector|RESULT|Result -AllowUnmatching \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.3/AddPolygonAttributestoPoints.txt b/python/plugins/processing/algs/saga/description/2.1.3/AddPolygonAttributestoPoints.txt deleted file mode 100644 index 1515e6a6b9fe..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/AddPolygonAttributestoPoints.txt +++ /dev/null @@ -1,6 +0,0 @@ -Add Polygon Attributes to Points -shapes_points -ParameterVector|INPUT|Points|0|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|FIELDS|Attribute|POLYGONS|-1|False -OutputVector|OUTPUT|Result \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.3/Aggregate.txt b/python/plugins/processing/algs/saga/description/2.1.3/Aggregate.txt deleted file mode 100644 index eec522c48b44..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/Aggregate.txt +++ /dev/null @@ -1,5 +0,0 @@ -Aggregate -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterNumber|SIZE|Aggregation Size|None|None|3 -ParameterSelection|METHOD|Method|[0] Sum;[1] Min;[2] Max diff --git a/python/plugins/processing/algs/saga/description/2.1.3/AggregatePointObservations.txt b/python/plugins/processing/algs/saga/description/2.1.3/AggregatePointObservations.txt deleted file mode 100644 index 98bb0119b53e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/AggregatePointObservations.txt +++ /dev/null @@ -1,14 +0,0 @@ -Aggregate Point Observations -shapes_points -ParameterVector|REFERENCE|Reference Points|-1|False -ParameterTableField|REFERENCE_ID|ID|REFERENCE|-1|False -ParameterTable|OBSERVATIONS|Observations|False -ParameterTableField|X|X|OBSERVATIONS|-1|False -ParameterTableField|Y|Y|OBSERVATIONS|-1|False -ParameterTableField|TRACK|Track|OBSERVATIONS|-1|False -ParameterTableField|DATE|Date|OBSERVATIONS|-1|False -ParameterTableField|TIME|Time|OBSERVATIONS|-1|False -ParameterTableField|PARAMETER|Parameter|OBSERVATIONS|-1|False -ParameterNumber|EPS_TIME|Maximum Time Span (Seconds)|None|None|60.0 -ParameterNumber|EPS_SPACE|Maximum Distance|None|None|0.002 -OutputTable|AGGREGATED|Aggregated diff --git a/python/plugins/processing/algs/saga/description/2.1.3/AggregationIndex.txt b/python/plugins/processing/algs/saga/description/2.1.3/AggregationIndex.txt deleted file mode 100644 index c5338291f3d4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/AggregationIndex.txt +++ /dev/null @@ -1,5 +0,0 @@ -Aggregation Index -grid_analysis -ParameterRaster|INPUT|Input Grid|False -ParameterNumber|MAXNUMCLASS|Max. Number of Classes|None|None|5 -OutputTable|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.1.3/AnalyticalHierarchyProcess.txt b/python/plugins/processing/algs/saga/description/2.1.3/AnalyticalHierarchyProcess.txt deleted file mode 100644 index 426c7817eb0f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/AnalyticalHierarchyProcess.txt +++ /dev/null @@ -1,5 +0,0 @@ -Analytical Hierarchy Process -grid_analysis -ParameterMultipleInput|GRIDS|Input Grids|3|False -ParameterTable|TABLE|Pairwise Comparisons Table|False -OutputRaster|OUTPUT|Output Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/AnalyticalHillshading.txt b/python/plugins/processing/algs/saga/description/2.1.3/AnalyticalHillshading.txt deleted file mode 100644 index 524651cdff4b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/AnalyticalHillshading.txt +++ /dev/null @@ -1,8 +0,0 @@ -Analytical Hillshading -ta_lighting -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Shading Method|[0] Standard;[1] Standard (max. 90Degree);[2] Combined Shading;[3] Ray Tracing -ParameterNumber|AZIMUTH|Azimuth [Degree]|None|None|315.0 -ParameterNumber|DECLINATION|Declination [Degree]|None|None|45.0 -ParameterNumber|EXAGGERATION|Exaggeration|None|None|4.0 -OutputRaster|SHADE|Analytical Hillshading diff --git a/python/plugins/processing/algs/saga/description/2.1.3/BurnStreamNetworkintoDEM.txt b/python/plugins/processing/algs/saga/description/2.1.3/BurnStreamNetworkintoDEM.txt deleted file mode 100644 index 22f289c5682f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/BurnStreamNetworkintoDEM.txt +++ /dev/null @@ -1,8 +0,0 @@ -Burn Stream Network into DEM -ta_preprocessor -ParameterRaster|DEM|DEM|False -ParameterRaster|STREAM|Streams|False -ParameterRaster|FLOWDIR|Flow direction|False -ParameterSelection|METHOD|Method|[0] simply decrease cell's value by epsilon;[1] lower cell's value to neighbours minimum value minus epsilon;[2] trace stream network downstream -ParameterNumber|EPSILON|Epsilon|0.0|None|1.0 -OutputRaster|BURN|Processed DEM \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.3/CatchmentArea(FlowTracing).txt b/python/plugins/processing/algs/saga/description/2.1.3/CatchmentArea(FlowTracing).txt deleted file mode 100644 index 827557d5beeb..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/CatchmentArea(FlowTracing).txt +++ /dev/null @@ -1,17 +0,0 @@ -Catchment Area (Flow Tracing) -ta_hydrology -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SINKROUTE|Sink Routes|True -ParameterRaster|WEIGHT|Weight|True -ParameterRaster|MATERIAL|Material|True -ParameterRaster|VAL_INPUT|Input for Mean over Catchment Calculation|True -ParameterRaster|TARGET|Target|True -ParameterNumber|STEP|Step|None|None|1 -ParameterSelection|METHOD|Method|[0] Rho 8;[1] Kinematic Routing Algorithm;[2] DEMON -ParameterNumber|MINDQV|DEMON - Min. DQV|None|None|0.0 -ParameterBoolean|CORRECT|Flow Correction|True -OutputRaster|CAREA|Catchment Area -OutputRaster|VAL_MEAN|Mean over Catchment -OutputRaster|ACCU_TOT|Total accumulated Material -OutputRaster|ACCU_LEFT|Accumulated Material from left side -OutputRaster|ACCU_RIGHT|Accumulated Material from right side \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.3/CatchmentArea(Parallel).txt b/python/plugins/processing/algs/saga/description/2.1.3/CatchmentArea(Parallel).txt deleted file mode 100644 index a62ad9313047..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/CatchmentArea(Parallel).txt +++ /dev/null @@ -1,5 +0,0 @@ -Catchment Area|Catchment Area (Parallel) -ta_hydrology -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Rho 8;[2] Braunschweiger Reliefmodell;[3] Deterministic Infinity;[4] Multiple Flow Direction;[5] Multiple Triangular Flow Directon -OutputRaster|CAREA|Catchment Area \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.3/CatchmentArea(Recursive).txt b/python/plugins/processing/algs/saga/description/2.1.3/CatchmentArea(Recursive).txt deleted file mode 100644 index d31635f5284d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/CatchmentArea(Recursive).txt +++ /dev/null @@ -1,18 +0,0 @@ -Catchment Area (Recursive) -ta_hydrology -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SINKROUTE|Sink Routes|True -ParameterRaster|WEIGHT|Weight|True -ParameterRaster|MATERIAL|Material|True -ParameterRaster|VAL_INPUT|Input for Mean over Catchment Calculation|True -ParameterRaster|TARGET|Target|True -ParameterNumber|STEP|Step|None|None|1 -ParameterRaster|TARGETS|Target Areas|True -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Rho 8;[2] Deterministic Infinity;[3] Multiple Flow Direction -ParameterNumber|CONVERGENCE|Convergence|None|None|1.1 -OutputRaster|CAREA|Catchment Area -OutputRaster|VAL_MEAN|Mean over Catchment -OutputRaster|ACCU_TOT|Total accumulated Material -OutputRaster|ACCU_LEFT|Accumulated Material from left side -OutputRaster|ACCU_RIGHT|Accumulated Material from right side -OutputRaster|FLOWLEN|Flow Path Length diff --git a/python/plugins/processing/algs/saga/description/2.1.3/CellBalance.txt b/python/plugins/processing/algs/saga/description/2.1.3/CellBalance.txt deleted file mode 100644 index 80edebcf2887..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/CellBalance.txt +++ /dev/null @@ -1,7 +0,0 @@ -Cell Balance -ta_hydrology -ParameterRaster|DEM|Elevation|False -ParameterRaster|WEIGHTS|Parameter|True -ParameterNumber|WEIGHTS_DEFAULT|Default Weight|0.0|None|1.0 -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Multiple Flow Direction -OutputRaster|BALANCE|Cell Balance \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ChangeDateFormat.txt b/python/plugins/processing/algs/saga/description/2.1.3/ChangeDateFormat.txt deleted file mode 100644 index 9adfcd0884d5..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ChangeDateFormat.txt +++ /dev/null @@ -1,7 +0,0 @@ -Change Date Format -table_tools -ParameterTable|TABLE|Table|False -ParameterTableField|FIELD|Date Field|TABLE|-1|False -ParameterSelection|FMT_IN|Input Format|[0] dd.mm.yy;[1] yy.mm.dd;[2] dd:mm:yy;[3] yy:mm:dd;[4] ddmmyyyy, fix size;[5] yyyymmdd, fix size;[6] ddmmyy, fix size;[7] yymmdd, fix size;[8] Julian Day -ParameterSelection|FMT_OUT|Output Format|[0] dd.mm.yy;[1] yy.mm.dd;[2] dd:mm:yy;[3] yy:mm:dd;[4] ddmmyyyy, fix size;[5] yyyymmdd, fix size;[6] ddmmyy, fix size;[7] yymmdd, fix size;[8] Julian Day -OutputTable|OUTPUT|Output diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ChangeDetection.txt b/python/plugins/processing/algs/saga/description/2.1.3/ChangeDetection.txt deleted file mode 100644 index f171b9fd6ddc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ChangeDetection.txt +++ /dev/null @@ -1,16 +0,0 @@ -Change Detection -imagery_classification -ParameterRaster|INITIAL|Initial State|False -ParameterTable|INI_LUT|Look-up Table|True -ParameterTableField|INI_LUT_MIN|Value|INI_LUT|-1|False -ParameterTableField|INI_LUT_MAX|Value (Maximum)|INI_LUT|-1|False -ParameterTableField|INI_LUT_NAM|Name|INI_LUT|-1|False -ParameterRaster|FINAL|Final State|False -ParameterTable|FIN_LUT|Look-up Table|True -ParameterTableField|FIN_LUT_MIN|Value|FIN_LUT|-1|False -ParameterTableField|FIN_LUT_MAX|Value (Maximum)|FIN_LUT|-1|False -ParameterTableField|FIN_LUT_NAM|Name|FIN_LUT|-1|False -ParameterBoolean|NOCHANGE |Report Unchanged Classes|True -ParameterSelection|OUTPUT|Output as...|[0] cells;[1] percent;[2] area -OutputRaster|CHANGE|Changes -OutputTable|CHANGES|Changes diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ChangeGridValues.txt b/python/plugins/processing/algs/saga/description/2.1.3/ChangeGridValues.txt deleted file mode 100644 index 8d3bd69e29ab..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ChangeGridValues.txt +++ /dev/null @@ -1,6 +0,0 @@ -Change Grid Values -grid_tools -ParameterRaster|GRID_IN|Grid|False -ParameterSelection|METHOD|Replace Condition|[0] Grid value equals low value;[1] Low value < grid value < high value;[2] Low value <= grid value < high value -ParameterFixedTable|LOOKUP|Lookup Table|3|Low Value;High Value;Replace with|False -OutputRaster|GRID_OUT|Changed Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ChangeTimeFormat.txt b/python/plugins/processing/algs/saga/description/2.1.3/ChangeTimeFormat.txt deleted file mode 100644 index 0a384af3194d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ChangeTimeFormat.txt +++ /dev/null @@ -1,7 +0,0 @@ -Change Time Format -table_tools -ParameterTable|TABLE|Table|False -ParameterTableField|FIELD|Time Field|TABLE|-1|False -ParameterSelection|FMT_IN|Input Format|[0] hh.mm.ss;[1] hh:mm:ss;[2] hhmmss, fix size;[3] hours;[4] minutes;[5] seconds -ParameterSelection|FMT_OUT|Output Format|[0] hh.mm.ss;[1] hh:mm:ss;[2] hhmmss, fix size;[3] hours;[4] minutes;[5] seconds -OutputTable|OUTPUT|Output diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ChannelNetwork.txt b/python/plugins/processing/algs/saga/description/2.1.3/ChannelNetwork.txt deleted file mode 100644 index b7bf16f1db10..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ChannelNetwork.txt +++ /dev/null @@ -1,14 +0,0 @@ -Channel Network -ta_channels -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SINKROUTE|Flow Direction|True -ParameterRaster|INIT_GRID|Initiation Grid|False -ParameterSelection|INIT_METHOD|Initiation Type|[0] Less than;[1] Equals;[2] Greater than -ParameterNumber|INIT_VALUE|Initiation Threshold|None|None|0.0 -ParameterRaster|DIV_GRID|Divergence|True -ParameterNumber|DIV_CELLS|Tracing: Max. Divergence|None|None|10 -ParameterRaster|TRACE_WEIGHT|Tracing: Weight|True -ParameterNumber|MINLEN|Min. Segment Length|0.0|None|10 -OutputRaster|CHNLNTWRK|Channel Network -OutputRaster|CHNLROUTE|Channel Direction -OutputVector|SHAPES|Channel Network diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ChannelNetworkandDrainageBasins.txt b/python/plugins/processing/algs/saga/description/2.1.3/ChannelNetworkandDrainageBasins.txt deleted file mode 100644 index 17e8ccad2702..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ChannelNetworkandDrainageBasins.txt +++ /dev/null @@ -1,11 +0,0 @@ -Channel Network and Drainage Basins -ta_channels -ParameterRaster|DEM|Elevation|False -ParameterNumber|THRESHOLD|Threshold|None|None|5.0 -OutputRaster|DIRECTION|Flow Direction -OutputRaster|CONNECTION|Flow Connectivity -OutputRaster|ORDER|Strahler Order -OutputRaster|BASIN|Drainage Basins -OutputVector|SEGMENTS|Channels -OutputVector|BASINS|Drainage Basins -OutputVector|NODES|Junctions diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ClipGridwithPolygon.txt b/python/plugins/processing/algs/saga/description/2.1.3/ClipGridwithPolygon.txt deleted file mode 100644 index b76d1a2f7da0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ClipGridwithPolygon.txt +++ /dev/null @@ -1,5 +0,0 @@ -Clip Grid with Polygon -shapes_grid -ParameterRaster|INPUT|Input|False -ParameterVector|POLYGONS|Polygons|2|False -OutputRaster|OUTPUT|Clipped diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ClipPointswithPolygons.txt b/python/plugins/processing/algs/saga/description/2.1.3/ClipPointswithPolygons.txt deleted file mode 100644 index 90b8f12176c8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ClipPointswithPolygons.txt +++ /dev/null @@ -1,7 +0,0 @@ -Clip Points with Polygons -shapes_points -ParameterVector|POINTS|Points|0|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|FIELD|Add Attribute to Clipped Points|POLYGONS|-1|False -ParameterSelection|METHOD|Clipping Options|[0] one layer for all points;[1] separate layer for each polygon -OutputVector|CLIPS|Clipped Points diff --git a/python/plugins/processing/algs/saga/description/2.1.3/CloseGaps.txt b/python/plugins/processing/algs/saga/description/2.1.3/CloseGaps.txt deleted file mode 100644 index ffa217f19916..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/CloseGaps.txt +++ /dev/null @@ -1,6 +0,0 @@ -Close Gaps -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterRaster|MASK|Mask|True -ParameterNumber|THRESHOLD|Tension Threshold|None|None|0.1 -OutputRaster|RESULT|Changed Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/CloseGapswithSpline.txt b/python/plugins/processing/algs/saga/description/2.1.3/CloseGapswithSpline.txt deleted file mode 100644 index cd70312d7fdc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/CloseGapswithSpline.txt +++ /dev/null @@ -1,12 +0,0 @@ -Close Gaps with Spline -grid_tools -ParameterRaster|GRID|Grid|False -ParameterRaster|MASK|Mask|True -ParameterNumber|MAXGAPCELLS|Only Process Gaps with Less Cells|None|None|0 -ParameterNumber|MAXPOINTS|Maximum Points|None|None|1000 -ParameterNumber|LOCALPOINTS|Number of Points for Local Interpolation|None|None|10 -ParameterBoolean|EXTENDED |Extended Neighourhood|True -ParameterSelection|NEIGHBOURS|Neighbourhood|[0] Neumann;[1] Moore -ParameterNumber|RADIUS|Radius (Cells)|None|None|0 -ParameterNumber|RELAXATION|Relaxation|None|None|0.0 -OutputRaster|CLOSED|Closed Gaps Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/CloseOneCellGaps.txt b/python/plugins/processing/algs/saga/description/2.1.3/CloseOneCellGaps.txt deleted file mode 100644 index d3b4aa0318bc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/CloseOneCellGaps.txt +++ /dev/null @@ -1,4 +0,0 @@ -Close One Cell Gaps -grid_tools -ParameterRaster|INPUT|Grid|False -OutputRaster|RESULT|Changed Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ClusterAnalysisforGrids.txt b/python/plugins/processing/algs/saga/description/2.1.3/ClusterAnalysisforGrids.txt deleted file mode 100644 index 0c477e9e46ea..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ClusterAnalysisforGrids.txt +++ /dev/null @@ -1,9 +0,0 @@ -Cluster Analysis for Grids -imagery_classification -ParameterMultipleInput|GRIDS|Grids|3.0|False -ParameterSelection|METHOD|Method|[0] Iterative Minimum Distance (Forgy 1965);[1] Hill-Climbing (Rubin 1967);[2] Combined Minimum Distance / Hillclimbing -ParameterNumber|NCLUSTER|Clusters|None|None|5 -ParameterBoolean|NORMALISE |Normalise|True -ParameterBoolean|OLDVERSION |Old Version|True -OutputRaster|CLUSTER|Clusters -OutputTable|STATISTICS|Statistics diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ConvergenceIndex(SearchRadius).txt b/python/plugins/processing/algs/saga/description/2.1.3/ConvergenceIndex(SearchRadius).txt deleted file mode 100644 index 11730fa638a3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ConvergenceIndex(SearchRadius).txt +++ /dev/null @@ -1,11 +0,0 @@ -Convergence Index (Search Radius) -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterNumber|RADIUS|Radius [Cells]|1.0|None|10.0 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|0.0|None|1.0 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|0.0|None|1.0 -ParameterBoolean|SLOPE|Gradient|True -ParameterSelection|DIFFERENCE|Weighting Function|[0] direction to the center cell;[1] center cell's aspect direction -OutputRaster|CONVERGENCE|Convergence Index \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ConvergenceIndex.txt b/python/plugins/processing/algs/saga/description/2.1.3/ConvergenceIndex.txt deleted file mode 100644 index 7d1649a615dc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ConvergenceIndex.txt +++ /dev/null @@ -1,6 +0,0 @@ -Convergence Index -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Method|[0] Aspect;[1] Gradient -ParameterSelection|NEIGHBOURS|Gradient Calculation|[0] 2 x 2;[1] 3 x 3 -OutputRaster|RESULT|Convergence Index diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ConvertDataStorageType.txt b/python/plugins/processing/algs/saga/description/2.1.3/ConvertDataStorageType.txt deleted file mode 100644 index 51de5d997936..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ConvertDataStorageType.txt +++ /dev/null @@ -1,5 +0,0 @@ -Convert Data Storage Type -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterSelection|TYPE|Data storage 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 -OutputRaster|OUTPUT|Converted Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ConvertLinestoPoints.txt b/python/plugins/processing/algs/saga/description/2.1.3/ConvertLinestoPoints.txt deleted file mode 100644 index 7a4435360903..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ConvertLinestoPoints.txt +++ /dev/null @@ -1,6 +0,0 @@ -Convert Lines to Points -shapes_points -ParameterVector|LINES|Lines|1|False -ParameterBoolean|ADD |Insert Additional Points|True -ParameterNumber|DIST|Insert Distance|0.0|None|1.0 -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ConvertLinestoPolygons.txt b/python/plugins/processing/algs/saga/description/2.1.3/ConvertLinestoPolygons.txt deleted file mode 100644 index 0053420971a9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ConvertLinestoPolygons.txt +++ /dev/null @@ -1,4 +0,0 @@ -Convert Lines to Polygons -shapes_polygons -ParameterVector|LINES|Lines|1|False -OutputVector|POLYGONS|Polygons diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ConvertMultipointstoPoints.txt b/python/plugins/processing/algs/saga/description/2.1.3/ConvertMultipointstoPoints.txt deleted file mode 100644 index 6a0fc9798b0d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ConvertMultipointstoPoints.txt +++ /dev/null @@ -1,4 +0,0 @@ -Convert Multipoints to Points -shapes_points -ParameterVector|MULTIPOINTS|Multipoints|0|False -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ConvertPointstoLine(s).txt b/python/plugins/processing/algs/saga/description/2.1.3/ConvertPointstoLine(s).txt deleted file mode 100644 index f7e8b6bb642c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ConvertPointstoLine(s).txt +++ /dev/null @@ -1,6 +0,0 @@ -Convert Points to Line(s) -shapes_lines -ParameterVector|POINTS|Points|0|False -ParameterTableField|ORDER|Order by...|POINTS|-1|False -ParameterTableField|SEPARATE|Separate by...|POINTS|-1|False -OutputVector|LINES|Lines diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ConvertPolygonLineVerticestoPoints.txt b/python/plugins/processing/algs/saga/description/2.1.3/ConvertPolygonLineVerticestoPoints.txt deleted file mode 100644 index e8e9a68f86d4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ConvertPolygonLineVerticestoPoints.txt +++ /dev/null @@ -1,4 +0,0 @@ -Convert Polygon/Line Vertices to Points -shapes_polygons -ParameterVector|SHAPES|Shapes|-1|False -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ConvertPolygonstoLines.txt b/python/plugins/processing/algs/saga/description/2.1.3/ConvertPolygonstoLines.txt deleted file mode 100644 index def3f0429a5a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ConvertPolygonstoLines.txt +++ /dev/null @@ -1,4 +0,0 @@ -Convert Polygons to Lines -shapes_lines -ParameterVector|POLYGONS|Polygons|2|False -OutputVector|LINES|Lines diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ConvexHull.txt b/python/plugins/processing/algs/saga/description/2.1.3/ConvexHull.txt deleted file mode 100644 index 81084ab7e508..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ConvexHull.txt +++ /dev/null @@ -1,6 +0,0 @@ -Convex Hull -shapes_points -ParameterVector|SHAPES|Points|0|False -ParameterSelection|POLYPOINTS|Hull Construction|[0] one hull for all shapes;[1] one hull per shape;[2] one hull per shape part -OutputVector|HULLS|Convex Hull -OutputVector|BOXES|Minimum Bounding Box diff --git a/python/plugins/processing/algs/saga/description/2.1.3/CreateGraticule.txt b/python/plugins/processing/algs/saga/description/2.1.3/CreateGraticule.txt deleted file mode 100644 index 0e46eeeb6a14..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/CreateGraticule.txt +++ /dev/null @@ -1,8 +0,0 @@ -Create Graticule -shapes_tools -ParameterVector|EXTENT|Extent|-1|True -Extent X_EXTENT_MIN X_EXTENT_MAX Y_EXTENT_MIN Y_EXTENT_MAX -ParameterNumber|DISTX|Division Width|None|None|1.0 -ParameterNumber|DISTY|Division Height|None|None|1.0 -ParameterSelection|TYPE|Type|[0] Lines;[1] Rectangles -OutputVector|GRATICULE|Graticule diff --git a/python/plugins/processing/algs/saga/description/2.1.3/Cross-ClassificationandTabulation.txt b/python/plugins/processing/algs/saga/description/2.1.3/Cross-ClassificationandTabulation.txt deleted file mode 100644 index 19bb607ae29d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/Cross-ClassificationandTabulation.txt +++ /dev/null @@ -1,7 +0,0 @@ -Cross-Classification and Tabulation -grid_analysis -ParameterRaster|INPUT|Input Grid 1|False -ParameterRaster|INPUT2|Input Grid 2|False -ParameterNumber|MAXNUMCLASS|Max. Number of Classes|None|None|5 -OutputRaster|RESULTGRID|Cross-Classification Grid -OutputTable|RESULTTABLE|Cross-Tabulation Table diff --git a/python/plugins/processing/algs/saga/description/2.1.3/CrossProfiles.txt b/python/plugins/processing/algs/saga/description/2.1.3/CrossProfiles.txt deleted file mode 100644 index 149b8920630f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/CrossProfiles.txt +++ /dev/null @@ -1,8 +0,0 @@ -Cross Profiles -ta_profiles -ParameterRaster|DEM|DEM|False -ParameterVector|LINES|Lines|1|False -ParameterNumber|DIST_LINE|Profile Distance|0.0|None|10.0 -ParameterNumber|DIST_PROFILE|Profile Length|0.0|None|10.0 -ParameterNumber|NUM_PROFILE|Profile Samples|1.0|None|10.0 -OutputVector|PROFILES|Cross Profiles diff --git a/python/plugins/processing/algs/saga/description/2.1.3/CurvatureClassification.txt b/python/plugins/processing/algs/saga/description/2.1.3/CurvatureClassification.txt deleted file mode 100644 index aff4b661d617..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/CurvatureClassification.txt +++ /dev/null @@ -1,5 +0,0 @@ -Curvature Classification -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|THRESHOLD|Threshold for plane|0.0000|None|0.0005 -OutputRaster|CLASS|Curvature Classification \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.3/DTMFilter(slope-based).txt b/python/plugins/processing/algs/saga/description/2.1.3/DTMFilter(slope-based).txt deleted file mode 100644 index 73902128994d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/DTMFilter(slope-based).txt +++ /dev/null @@ -1,8 +0,0 @@ -DTM Filter (slope-based) -grid_filter -ParameterRaster|INPUT|Grid to filter|False -ParameterNumber|RADIUS|Search Radius|1.0|None|2 -ParameterNumber|TERRAINSLOPE|Approx. Terrain Slope|None|None|30.0 -ParameterBoolean|STDDEV |Use Confidence Interval|True -OutputRaster|GROUND|Bare Earth -OutputRaster|NONGROUND|Removed Objects diff --git a/python/plugins/processing/algs/saga/description/2.1.3/DirectionalStatisticsforSingleGrid.txt b/python/plugins/processing/algs/saga/description/2.1.3/DirectionalStatisticsforSingleGrid.txt deleted file mode 100644 index 5ed456dda7b4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/DirectionalStatisticsforSingleGrid.txt +++ /dev/null @@ -1,23 +0,0 @@ -Directional Statistics for Single Grid -statistics_grid -ParameterRaster|GRID|Grid|False -ParameterVector|POINTS|Points|-1|True -ParameterNumber|DIRECTION|Direction [Degree]|None|None|0.0 -ParameterNumber|TOLERANCE|Tolerance [Degree]|None|None|0.0 -ParameterNumber|MAXDISTANCE|Maximum Distance [Cells]|None|None|0 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1.0 -OutputRaster|MEAN|Arithmetic Mean -OutputRaster|DIFMEAN|Difference from Arithmetic Mean -OutputRaster|MIN|Minimum -OutputRaster|MAX|Maximum -OutputRaster|RANGE|Range -OutputRaster|VAR|Variance -OutputRaster|STDDEV|Standard Deviation -OutputRaster|STDDEVLO|Mean less Standard Deviation -OutputRaster|STDDEVHI|Mean plus Standard Deviation -OutputRaster|DEVMEAN|Deviation from Arithmetic Mean -OutputRaster|PERCENT|Percentile -OutputVector|POINTS_OUT|Directional Statistics for Points diff --git a/python/plugins/processing/algs/saga/description/2.1.3/DistanceMatrix.txt b/python/plugins/processing/algs/saga/description/2.1.3/DistanceMatrix.txt deleted file mode 100644 index 059d3c209fee..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/DistanceMatrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -Distance Matrix -shapes_points -ParameterVector|POINTS|Points|0|False -OutputTable|TABLE|Distance Matrix Table diff --git a/python/plugins/processing/algs/saga/description/2.1.3/DiurnalAnisotropicHeating.txt b/python/plugins/processing/algs/saga/description/2.1.3/DiurnalAnisotropicHeating.txt deleted file mode 100644 index 5420da99b09a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/DiurnalAnisotropicHeating.txt +++ /dev/null @@ -1,5 +0,0 @@ -Diurnal Anisotropic Heating -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|ALPHA_MAX|Alpha Max (Degree)|None|None|202.5 -OutputRaster|DAH|Diurnal Anisotropic Heating diff --git a/python/plugins/processing/algs/saga/description/2.1.3/DownslopeDistanceGradient.txt b/python/plugins/processing/algs/saga/description/2.1.3/DownslopeDistanceGradient.txt deleted file mode 100644 index 250e199cf6fe..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/DownslopeDistanceGradient.txt +++ /dev/null @@ -1,7 +0,0 @@ -Downslope Distance Gradient -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|DISTANCE|Vertical Distance|None|None|10 -ParameterSelection|OUTPUT|Output|[0] distance;[1] gradient (tangens);[2] gradient (degree) -OutputRaster|GRADIENT|Gradient -OutputRaster|DIFFERENCE|Gradient Difference diff --git a/python/plugins/processing/algs/saga/description/2.1.3/EdgeContamination.txt b/python/plugins/processing/algs/saga/description/2.1.3/EdgeContamination.txt deleted file mode 100644 index 004ca57539db..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/EdgeContamination.txt +++ /dev/null @@ -1,4 +0,0 @@ -Edge Contamination -ta_hydrology -ParameterRaster|DEM|Elevation|False -OutputRaster|CONTAMINATION|Edge Contamination diff --git a/python/plugins/processing/algs/saga/description/2.1.3/EffectiveAirFlowHeights.txt b/python/plugins/processing/algs/saga/description/2.1.3/EffectiveAirFlowHeights.txt deleted file mode 100644 index 70e0479b3a99..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/EffectiveAirFlowHeights.txt +++ /dev/null @@ -1,15 +0,0 @@ -Effective Air Flow Heights -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterRaster|DIR|Wind Direction|True -ParameterRaster|LEN|Wind Speed|True -ParameterNumber|DIR_CONST|Constant Wind Direction [Degree]|None|None|135 -ParameterBoolean|OLDVER |Old Version|True -ParameterNumber|MAXDIST|Search Distance [km]|0.0|None|300 -ParameterNumber|ACCEL|Acceleration|None|None|1.5 -ParameterBoolean|PYRAMIDS |Use Pyramids with New Version|True -ParameterNumber|LEEFACT|Lee Factor|None|None|0.5 -ParameterNumber|LUVFACT|Luv Factor|None|None|1.0 -ParameterSelection|DIR_UNITS|Wind Direction Units|[0] radians;[1] degree -ParameterNumber|LEN_SCALE|Wind Speed Scale Factor|None|None|1.0 -OutputRaster|AFH|Effective Air Flow Heights diff --git a/python/plugins/processing/algs/saga/description/2.1.3/FastRegionGrowingAlgorithm.txt b/python/plugins/processing/algs/saga/description/2.1.3/FastRegionGrowingAlgorithm.txt deleted file mode 100644 index c7922ee2e242..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/FastRegionGrowingAlgorithm.txt +++ /dev/null @@ -1,7 +0,0 @@ -Fast Region Growing Algorithm -imagery_rga -ParameterMultipleInput|INPUT|Input Grids|3|False -ParameterRaster|START|Seeds Grid|False -ParameterRaster|REP|Smooth Rep|True -OutputRaster|RESULT|Segmente -OutputRaster|MEAN|Mean diff --git a/python/plugins/processing/algs/saga/description/2.1.3/FastRepresentativeness.txt b/python/plugins/processing/algs/saga/description/2.1.3/FastRepresentativeness.txt deleted file mode 100644 index b65953be62cd..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/FastRepresentativeness.txt +++ /dev/null @@ -1,7 +0,0 @@ -Fast Representativeness -statistics_grid -ParameterRaster|INPUT|Input|False -ParameterNumber|LOD|Level of Generalisation|None|None|16 -OutputRaster|RESULT|Output -OutputRaster|RESULT_LOD|Output Lod -OutputRaster|SEEDS|Output Seeds diff --git a/python/plugins/processing/algs/saga/description/2.1.3/FillGapsinRecords.txt b/python/plugins/processing/algs/saga/description/2.1.3/FillGapsinRecords.txt deleted file mode 100644 index 31974dcc53d1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/FillGapsinRecords.txt +++ /dev/null @@ -1,6 +0,0 @@ -Fill Gaps in Records -table_calculus -ParameterTable|TABLE|Table|False -ParameterTableField|ORDER|Order|TABLE|-1|False -ParameterSelection|METHOD|Interpolation|[0] Nearest Neighbour;[1] Linear;[2] Spline -OutputTable|NOGAPS|Table without Gaps diff --git a/python/plugins/processing/algs/saga/description/2.1.3/FillSinks(PlanchonDarboux,2001).txt b/python/plugins/processing/algs/saga/description/2.1.3/FillSinks(PlanchonDarboux,2001).txt deleted file mode 100644 index f1a496dc924a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/FillSinks(PlanchonDarboux,2001).txt +++ /dev/null @@ -1,5 +0,0 @@ -Fill Sinks|Fill Sinks (Planchon/Darboux, 2001) -ta_preprocessor -ParameterRaster|DEM|DEM|False -ParameterNumber|MINSLOPE|Minimum Slope [Degree]|0.0|None|0.01 -OutputRaster|RESULT|Filled DEM diff --git a/python/plugins/processing/algs/saga/description/2.1.3/FillSinks(WangLiu).txt b/python/plugins/processing/algs/saga/description/2.1.3/FillSinks(WangLiu).txt deleted file mode 100644 index 2a36e9913ae9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/FillSinks(WangLiu).txt +++ /dev/null @@ -1,7 +0,0 @@ -Fill Sinks (Wang & Liu) -ta_preprocessor -ParameterRaster|ELEV|DEM|False -ParameterNumber|MINSLOPE|Minimum Slope [Degree]|0.0|None|0.01 -OutputRaster|FILLED|Filled DEM -OutputRaster|FDIR|Flow Directions -OutputRaster|WSHED|Watershed Basins diff --git a/python/plugins/processing/algs/saga/description/2.1.3/FillSinksXXL(WangLiu).txt b/python/plugins/processing/algs/saga/description/2.1.3/FillSinksXXL(WangLiu).txt deleted file mode 100644 index bd3bd2194b79..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/FillSinksXXL(WangLiu).txt +++ /dev/null @@ -1,5 +0,0 @@ -Fill Sinks XXL (Wang & Liu) -ta_preprocessor -ParameterRaster|ELEV|DEM|False -ParameterNumber|MINSLOPE|Minimum Slope [Degree]|0.0|None|0.01 -OutputRaster|FILLED|Filled DEM diff --git a/python/plugins/processing/algs/saga/description/2.1.3/FilterClumps.txt b/python/plugins/processing/algs/saga/description/2.1.3/FilterClumps.txt deleted file mode 100644 index 3ac291f4fab9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/FilterClumps.txt +++ /dev/null @@ -1,5 +0,0 @@ -Filter Clumps -grid_filter -ParameterRaster|GRID|Input Grid|False -ParameterNumber|THRESHOLD|Min. Size|1.0|None|10 -OutputRaster|OUTPUT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/FireRiskAnalysis.txt b/python/plugins/processing/algs/saga/description/2.1.3/FireRiskAnalysis.txt deleted file mode 100644 index 7f9788d09851..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/FireRiskAnalysis.txt +++ /dev/null @@ -1,18 +0,0 @@ -Fire Risk Analysis -sim_fire_spreading -ParameterRaster|DEM|DEM|False -ParameterRaster|FUEL|Fuel Model|False -ParameterRaster|WINDSPD|Wind Speed|False -ParameterRaster|WINDDIR|Wind Direction|False -ParameterRaster|M1H|Dead Fuel Moisture 1H|False -ParameterRaster|M10H|Dead Fuel Moisture 10H|False -ParameterRaster|M100H|Dead Fuel Moisture 100H|False -ParameterRaster|MHERB|Herbaceous Fuel Moisture|False -ParameterRaster|MWOOD|Wood Fuel Moisture|False -ParameterRaster|VALUE|Value|True -ParameterRaster|BASEPROB|Base Probability|True -ParameterNumber|MONTECARLO|Number of Events|None|None|1000 -ParameterNumber|INTERVAL|Fire Length|None|None|100 -OutputRaster|DANGER|Danger -OutputRaster|COMPPROB|Compound Probability -OutputRaster|PRIORITY|Priority Index diff --git a/python/plugins/processing/algs/saga/description/2.1.3/FitNPointstoshape.txt b/python/plugins/processing/algs/saga/description/2.1.3/FitNPointstoshape.txt deleted file mode 100644 index 727ebdb56d2e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/FitNPointstoshape.txt +++ /dev/null @@ -1,5 +0,0 @@ -Fit N Points to shape -shapes_points -ParameterVector|SHAPES|Shapes|2|False -ParameterNumber|NUMPOINTS|Number of points|1.0|None|10 -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.1.3/FlatDetection.txt b/python/plugins/processing/algs/saga/description/2.1.3/FlatDetection.txt deleted file mode 100644 index e106c6e11ad7..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/FlatDetection.txt +++ /dev/null @@ -1,6 +0,0 @@ -Flat Detection -ta_preprocessor -ParameterRaster|DEM|DEM|False -ParameterSelection|FLAT_OUTPUT|Flat Area Values|[0] elevation;[1] enumeration -OutputRaster|NOFLATS|No Flats -OutputRaster|FLATS|Flat Areas diff --git a/python/plugins/processing/algs/saga/description/2.1.3/FlowPathLength.txt b/python/plugins/processing/algs/saga/description/2.1.3/FlowPathLength.txt deleted file mode 100644 index da1669996caf..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/FlowPathLength.txt +++ /dev/null @@ -1,8 +0,0 @@ -Flow Path Length -ta_hydrology -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SEED|Seeds|True -ParameterBoolean|SEEDS_ONLY |Seeds Only|True -ParameterSelection|METHOD|Flow Routing Algorithm|[0] Deterministic 8 (D8);[1] Multiple Flow Direction (FD8) -ParameterNumber|CONVERGENCE|Convergence (FD8)|None|None|1.1 -OutputRaster|LENGTH|Flow Path Length diff --git a/python/plugins/processing/algs/saga/description/2.1.3/FlowWidthandSpecificCatchmentArea.txt b/python/plugins/processing/algs/saga/description/2.1.3/FlowWidthandSpecificCatchmentArea.txt deleted file mode 100644 index a8d32a86f617..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/FlowWidthandSpecificCatchmentArea.txt +++ /dev/null @@ -1,7 +0,0 @@ -Flow Width and Specific Catchment Area -ta_hydrology -ParameterRaster|DEM|Elevation|False -ParameterRaster|TCA|Total Catchment Area (TCA)|True -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Multiple Flow Direction (Quinn et al. 1991);[2] Aspect -OutputRaster|WIDTH|Flow Width -OutputRaster|SCA|Specific Catchment Area (SCA) diff --git a/python/plugins/processing/algs/saga/description/2.1.3/Fragmentation(Alternative).txt b/python/plugins/processing/algs/saga/description/2.1.3/Fragmentation(Alternative).txt deleted file mode 100644 index 162d7ae48f5a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/Fragmentation(Alternative).txt +++ /dev/null @@ -1,17 +0,0 @@ -Fragmentation (Alternative) -grid_analysis -ParameterRaster|CLASSES|Classification|False -ParameterNumber|CLASS|Class Identifier|None|None|1 -ParameterNumber|NEIGHBORHOOD_MIN|Neighborhood Min|1.0|None|1 -ParameterNumber|NEIGHBORHOOD_MAX|Neighborhood Max|1.0|None|1 -ParameterSelection|AGGREGATION|Level Aggregation|[0] average;[1] multiplicative -ParameterBoolean|BORDER |Add Border|True -ParameterNumber|WEIGHT|Connectivity Weighting|None|None|1.1 -ParameterNumber|DENSITY_MIN|Minimum Density [Percent]|None|None|10 -ParameterNumber|DENSITY_INT|Minimum Density for Interior Forest [Percent]|None|None|99 -ParameterNumber|LEVEL_GROW|Search Distance Increment|None|None|0.0 -ParameterBoolean|DENSITY_MEAN |Density from Neighbourhood|True -OutputRaster|DENSITY|Density [Percent] -OutputRaster|CONNECTIVITY|Connectivity [Percent] -OutputRaster|FRAGMENTATION|Fragmentation -OutputTable|FRAGSTATS|Summary diff --git a/python/plugins/processing/algs/saga/description/2.1.3/Fragmentation(Standard).txt b/python/plugins/processing/algs/saga/description/2.1.3/Fragmentation(Standard).txt deleted file mode 100644 index 0dc554abcd2c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/Fragmentation(Standard).txt +++ /dev/null @@ -1,17 +0,0 @@ -Fragmentation (Standard) -grid_analysis -ParameterRaster|CLASSES|Classification|False -ParameterNumber|CLASS|Class Identifier|None|None|1 -ParameterNumber|NEIGHBORHOOD_MIN|Neighborhood Min|1.0|None|1 -ParameterNumber|NEIGHBORHOOD_MAX|Neighborhood Max|1.0|None|3 -ParameterSelection|AGGREGATION|Level Aggregation|[0] average;[1] multiplicative -ParameterBoolean|BORDER|Add Border|True -ParameterNumber|WEIGHT|Connectivity Weighting|None|None|1.1 -ParameterNumber|DENSITY_MIN|Minimum Density [Percent]|None|None|10 -ParameterNumber|DENSITY_INT|Minimum Density for Interior Forest [Percent]|None|None|99 -ParameterSelection|CIRCULAR|Neighborhood Type|[0] square;[1] circle -ParameterBoolean|DIAGONAL|Include diagonal neighbour relations|True -OutputRaster|DENSITY|Density [Percent] -OutputRaster|CONNECTIVITY|Connectivity [Percent] -OutputRaster|FRAGMENTATION|Fragmentation -OutputTable|FRAGSTATS|Summary diff --git a/python/plugins/processing/algs/saga/description/2.1.3/FragmentationClassesfromDensityandConnectivity.txt b/python/plugins/processing/algs/saga/description/2.1.3/FragmentationClassesfromDensityandConnectivity.txt deleted file mode 100644 index 99e30c493a4a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/FragmentationClassesfromDensityandConnectivity.txt +++ /dev/null @@ -1,9 +0,0 @@ -Fragmentation Classes from Density and Connectivity -grid_analysis -ParameterRaster|DENSITY|Density [Percent]|False -ParameterRaster|CONNECTIVITY|Connectivity [Percent]|False -ParameterBoolean|BORDER|Add Border|True -ParameterNumber|WEIGHT|Connectivity Weighting|None|None|0 -ParameterNumber|DENSITY_MIN|Minimum Density [Percent]|0.0|100.0|10 -ParameterNumber|DENSITY_INT|Minimum Density for Interior Forest [Percent]|0.0|100.0|99 -OutputRaster|FRAGMENTATION|Fragmentation diff --git a/python/plugins/processing/algs/saga/description/2.1.3/Function.txt b/python/plugins/processing/algs/saga/description/2.1.3/Function.txt deleted file mode 100644 index e058e9b04df0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/Function.txt +++ /dev/null @@ -1,8 +0,0 @@ -Function -grid_calculus -ParameterNumber|XMIN|xmin|None|None|0.0 -ParameterNumber|XMAX|xmax|None|None|0.0 -ParameterNumber|YMIN|ymin|None|None|0.0 -ParameterNumber|YMAX|ymax|None|None|0.0 -ParameterString|FORMUL|Formula| -OutputRaster|RESULT|Function diff --git a/python/plugins/processing/algs/saga/description/2.1.3/Fuzzify.txt b/python/plugins/processing/algs/saga/description/2.1.3/Fuzzify.txt deleted file mode 100644 index d78f12b44318..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/Fuzzify.txt +++ /dev/null @@ -1,10 +0,0 @@ -Fuzzify -grid_calculus -ParameterRaster|INPUT|Grid|False -ParameterNumber|A|A|None|None|0.0 -ParameterNumber|B|B|None|None|0.0 -ParameterNumber|C|C|None|None|0.0 -ParameterNumber|D|D|None|None|0.0 -ParameterSelection|TYPE|Membership Function Type|[0] linear;[1] sigmoidal;[2] j-shaped -ParameterBoolean|AUTOFIT |Adjust to Grid|True -OutputRaster|OUTPUT|Fuzzified Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/FuzzyIntersection(AND).txt b/python/plugins/processing/algs/saga/description/2.1.3/FuzzyIntersection(AND).txt deleted file mode 100644 index a00eff21d7f1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/FuzzyIntersection(AND).txt +++ /dev/null @@ -1,5 +0,0 @@ -Fuzzy Intersection (AND) -grid_calculus -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|TYPE|Operator Type|[0] min(a, b) (non-interactive);[1] a * b;[2] max(0, a + b - 1) -OutputRaster|AND|Intersection diff --git a/python/plugins/processing/algs/saga/description/2.1.3/FuzzyUnion(OR).txt b/python/plugins/processing/algs/saga/description/2.1.3/FuzzyUnion(OR).txt deleted file mode 100644 index 592517943abb..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/FuzzyUnion(OR).txt +++ /dev/null @@ -1,5 +0,0 @@ -Fuzzy Union (OR) -grid_calculus -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|TYPE|Operator Type|[0] max(a, b) (non-interactive);[1] a + b - a * b;[2] min(1, a + b) -OutputRaster|OR|Union diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GaussianFilter.txt b/python/plugins/processing/algs/saga/description/2.1.3/GaussianFilter.txt deleted file mode 100644 index 0cf7e310d150..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GaussianFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Gaussian Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterNumber|SIGMA|Standard Deviation|None|None|1 -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Search Radius|None|None|3 -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GeometricFigures.txt b/python/plugins/processing/algs/saga/description/2.1.3/GeometricFigures.txt deleted file mode 100644 index 09a288dc72c0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GeometricFigures.txt +++ /dev/null @@ -1,7 +0,0 @@ -Geometric Figures -grid_calculus -ParameterNumber|CELL_COUNT|Cell Count|None|None|0 -ParameterNumber|CELL_SIZE|Cell Size|None|None|0 -ParameterSelection|FIGURE|Figure|[0] Cone (up);[1] Cone (down);[2] Plane -ParameterNumber|PLANE|Direction of Plane [Degree]|None|None|0 -OutputRaster|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GetShapesExtents.txt b/python/plugins/processing/algs/saga/description/2.1.3/GetShapesExtents.txt deleted file mode 100644 index 9ef1cc7c3ad0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GetShapesExtents.txt +++ /dev/null @@ -1,5 +0,0 @@ -Get Shapes Extents -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterSelection|OUTPUT|Get Extent for|[0] all shapes;[1] each shape;[2] each shape's part -OutputVector|EXTENTS|Extents diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GlobalMoransIforGrids.txt b/python/plugins/processing/algs/saga/description/2.1.3/GlobalMoransIforGrids.txt deleted file mode 100644 index e5de7f60a3af..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GlobalMoransIforGrids.txt +++ /dev/null @@ -1,5 +0,0 @@ -Global Moran's I for Grids -statistics_grid -ParameterRaster|GRID|Grid|False -ParameterSelection|CONTIGUITY|Case of contiguity|[0] Rook;[1] Queen -OutputTable|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GradientVectorfromCartesiantoPolarCoordinates.txt b/python/plugins/processing/algs/saga/description/2.1.3/GradientVectorfromCartesiantoPolarCoordinates.txt deleted file mode 100644 index 8a725be39c07..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GradientVectorfromCartesiantoPolarCoordinates.txt +++ /dev/null @@ -1,10 +0,0 @@ -Gradient Vector from Cartesian to Polar Coordinates -grid_calculus -ParameterRaster|DX|X Component|False -ParameterRaster|DY|Y Component|False -ParameterSelection|UNITS|Polar Angle Units|[0] radians;[1] degree -ParameterSelection|SYSTEM|Polar Coordinate System|[0] mathematical;[1] geographical;[2] user defined -ParameterNumber|SYSTEM_ZERO|User defined Zero Direction|None|None|0.0 -ParameterSelection|SYSTEM_ORIENT|User defined Orientation|[0] clockwise;[1] counterclockwise -OutputRaster|DIR|Direction -OutputRaster|LEN|Length diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GradientVectorfromPolartoCartesianCoordinates.txt b/python/plugins/processing/algs/saga/description/2.1.3/GradientVectorfromPolartoCartesianCoordinates.txt deleted file mode 100644 index 382aa9e6046b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GradientVectorfromPolartoCartesianCoordinates.txt +++ /dev/null @@ -1,10 +0,0 @@ -Gradient Vector from Polar to Cartesian Coordinates -grid_calculus -ParameterRaster|DIR|Direction|False -ParameterRaster|LEN|Length|False -ParameterSelection|UNITS|Polar Angle Units|[0] radians;[1] degree -ParameterSelection|SYSTEM|Polar Coordinate System|[0] mathematical;[1] geographical;[2] user defined -ParameterNumber|SYSTEM_ZERO|User defined Zero Direction|None|None|0.0 -ParameterSelection|SYSTEM_ORIENT|User defined Orientation|[0] clockwise;[1] counterclockwise -OutputRaster|DX|X Component -OutputRaster|DY|Y Component diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GradientVectorsfromDirectionalComponents.txt b/python/plugins/processing/algs/saga/description/2.1.3/GradientVectorsfromDirectionalComponents.txt deleted file mode 100644 index 1a1abf488830..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GradientVectorsfromDirectionalComponents.txt +++ /dev/null @@ -1,10 +0,0 @@ -Gradient Vectors from Directional Components -shapes_grid -ParameterRaster|X|X Component|False -ParameterRaster|Y|Y Component|False -ParameterNumber|STEP|Step|None|None|1 -ParameterNumber|SIZE_MIN|Size Range Min|None|None|25.0 -ParameterNumber|SIZE_MAX|Size Range Max|None|None|100.0 -ParameterSelection|AGGR|Aggregation|[0] nearest neighbour;[1] mean value -ParameterSelection|STYLE|Style|[0] simple line;[1] arrow;[2] arrow (centered to cell) -OutputVector|VECTORS|Gradient Vectors diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GradientVectorsfromDirectionandLength.txt b/python/plugins/processing/algs/saga/description/2.1.3/GradientVectorsfromDirectionandLength.txt deleted file mode 100644 index 628665a5522b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GradientVectorsfromDirectionandLength.txt +++ /dev/null @@ -1,10 +0,0 @@ -Gradient Vectors from Direction and Length -shapes_grid -ParameterRaster|DIR|Direction|False -ParameterRaster|LEN|Length|False -ParameterNumber|STEP|Step|None|None|1 -ParameterNumber|SIZE_MIN|Size Range Min|None|None|25.0 -ParameterNumber|SIZE_MAX|Size Range Max|None|None|100.0 -ParameterSelection|AGGR|Aggregation|[0] nearest neighbour;[1] mean value -ParameterSelection|STYLE|Style|[0] simple line;[1] arrow;[2] arrow (centered to cell) -OutputVector|VECTORS|Gradient Vectors diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GradientVectorsfromSurface.txt b/python/plugins/processing/algs/saga/description/2.1.3/GradientVectorsfromSurface.txt deleted file mode 100644 index 582bf10c03d5..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GradientVectorsfromSurface.txt +++ /dev/null @@ -1,9 +0,0 @@ -Gradient Vectors from Surface -shapes_grid -ParameterRaster|SURFACE|Surface|False -ParameterNumber|STEP|Step|None|None|1 -ParameterNumber|SIZE_MIN|Size Range Min|None|None|25.0 -ParameterNumber|SIZE_MAX|Size Range Max|None|None|100.0 -ParameterSelection|AGGR|Aggregation|[0] nearest neighbour;[1] mean value -ParameterSelection|STYLE|Style|[0] simple line;[1] arrow;[2] arrow (centered to cell) -OutputVector|VECTORS|Gradient Vectors diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GridBuffer.txt b/python/plugins/processing/algs/saga/description/2.1.3/GridBuffer.txt deleted file mode 100644 index da961e9d8736..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GridBuffer.txt +++ /dev/null @@ -1,6 +0,0 @@ -Grid Buffer -grid_tools -ParameterRaster|FEATURES|Features Grid|False -ParameterNumber|DIST|Distance|None|None|1000 -ParameterSelection|BUFFERTYPE|Buffer Distance|[0] Fixed;[1] Cell value -OutputRaster|BUFFER|Buffer Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GridCalculator.txt b/python/plugins/processing/algs/saga/description/2.1.3/GridCalculator.txt deleted file mode 100644 index e8499488134f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GridCalculator.txt +++ /dev/null @@ -1,9 +0,0 @@ -Raster calculator|Grid Calculator -grid_calculus -AllowUnmatching -ParameterRaster|GRIDS|Main input layer|False -ParameterMultipleInput|XGRIDS|Additional layers|3|True -ParameterString|FORMULA|Formula| -ParameterBoolean|USE_NODATA|Use NoData|False -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 -OutputRaster|RESULT|Calculated diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GridCellIndex.txt b/python/plugins/processing/algs/saga/description/2.1.3/GridCellIndex.txt deleted file mode 100644 index 0b8e3ee81ca4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GridCellIndex.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Cell Index -grid_tools -ParameterRaster|GRID|Input Grid|False -ParameterSelection|ORDER|Index|[0] ascending;[1] descending|0 -OutputRaster|INDEX|Sorted Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GridDifference.txt b/python/plugins/processing/algs/saga/description/2.1.3/GridDifference.txt deleted file mode 100644 index c2fa03dbf7ed..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GridDifference.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Difference -grid_calculus -ParameterRaster|A|A|False -ParameterRaster|B|B|False -OutputRaster|C|Difference (A - B) diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GridDivision.txt b/python/plugins/processing/algs/saga/description/2.1.3/GridDivision.txt deleted file mode 100644 index 718d0109fe4a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GridDivision.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Division -grid_calculus -ParameterRaster|A|Dividend|False -ParameterRaster|B|Divisor|False -OutputRaster|C|Quotient diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GridMasking.txt b/python/plugins/processing/algs/saga/description/2.1.3/GridMasking.txt deleted file mode 100644 index 93233f1d1a19..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GridMasking.txt +++ /dev/null @@ -1,6 +0,0 @@ -Grid Masking -grid_tools -ParameterRaster|GRID|Grid|False -ParameterRaster|MASK|Mask|False -OutputRaster|MASKED|Masked Grid -AllowUnmatching \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GridNormalisation.txt b/python/plugins/processing/algs/saga/description/2.1.3/GridNormalisation.txt deleted file mode 100644 index b16dcabcc8cc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GridNormalisation.txt +++ /dev/null @@ -1,6 +0,0 @@ -Grid Normalisation -grid_calculus -ParameterRaster|INPUT|Grid|False -ParameterNumber|RANGE_MIN|Target Range (min)|None|None|0 -ParameterNumber|RANGE_MAX|Target Range (max)|None|None|1 -OutputRaster|OUTPUT|Normalised Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GridOrientation.txt b/python/plugins/processing/algs/saga/description/2.1.3/GridOrientation.txt deleted file mode 100644 index 2eb0de16a857..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GridOrientation.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Orientation -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterSelection|METHOD|Method|[0] Copy;[1] Flip;[2] Mirror;[3] Invert -OutputRaster|RESULT|Changed Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GridProximityBuffer.txt b/python/plugins/processing/algs/saga/description/2.1.3/GridProximityBuffer.txt deleted file mode 100644 index be5df903a0be..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GridProximityBuffer.txt +++ /dev/null @@ -1,8 +0,0 @@ -Grid Proximity Buffer -grid_tools -ParameterRaster|SOURCE|Source Grid|False -ParameterNumber|DIST|Buffer distance|None|None|500.0 -ParameterNumber|IVAL|Equidistance|None|None|100.0 -OutputRaster|DISTANCE|Distance Grid -OutputRaster|ALLOC|Allocation Grid -OutputRaster|BUFFER|Buffer Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GridSkeletonization.txt b/python/plugins/processing/algs/saga/description/2.1.3/GridSkeletonization.txt deleted file mode 100644 index eacd23ff04c4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GridSkeletonization.txt +++ /dev/null @@ -1,9 +0,0 @@ -Grid Skeletonization -imagery_segmentation -ParameterRaster|INPUT|Grid|False -ParameterSelection|METHOD|Method|[0] Standard;[1] Hilditch's Algorithm;[2] Channel Skeleton -ParameterSelection|INIT_METHOD|Initialisation|[0] Less than;[1] Greater than -ParameterNumber|INIT_THRESHOLD|Threshold (Init.)|None|None|0.0 -ParameterNumber|CONVERGENCE|Convergence|None|None|3.0 -OutputRaster|RESULT|Skeleton -OutputVector|VECTOR|Skeleton diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GridStandardisation.txt b/python/plugins/processing/algs/saga/description/2.1.3/GridStandardisation.txt deleted file mode 100644 index 743f2e0aabf2..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GridStandardisation.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Standardisation -grid_calculus -ParameterRaster|INPUT|Grid|False -ParameterNumber|STRETCH|Stretch Factor|0.0|None|1.0 -OutputRaster|OUTPUT|Standardised Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GridStatisticsforPolygons.txt b/python/plugins/processing/algs/saga/description/2.1.3/GridStatisticsforPolygons.txt deleted file mode 100644 index ad76d9ff85f9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GridStatisticsforPolygons.txt +++ /dev/null @@ -1,14 +0,0 @@ -Grid Statistics for Polygons -shapes_grid -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|COUNT |Number of Cells|True -ParameterBoolean|MIN |Minimum|True -ParameterBoolean|MAX |Maximum|True -ParameterBoolean|RANGE |Range|True -ParameterBoolean|SUM |Sum|True -ParameterBoolean|MEAN |Mean|True -ParameterBoolean|VAR |Variance|True -ParameterBoolean|STDDEV |Standard Deviation|True -ParameterNumber|QUANTILE|Quantiles|None|None|0 -OutputVector|RESULT|Statistics diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GridValuestoPoints(randomly).txt b/python/plugins/processing/algs/saga/description/2.1.3/GridValuestoPoints(randomly).txt deleted file mode 100644 index 1f04323c6a34..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GridValuestoPoints(randomly).txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Values to Points (randomly) -shapes_grid -ParameterRaster|GRID|Grid|False -ParameterNumber|FREQ|Frequency|None|None|100 -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GridValuestoPoints.txt b/python/plugins/processing/algs/saga/description/2.1.3/GridValuestoPoints.txt deleted file mode 100644 index 0e33a303675b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GridValuestoPoints.txt +++ /dev/null @@ -1,7 +0,0 @@ -Grid Values to Points -shapes_grid -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterVector|POLYGONS|Polygons|-1|True -ParameterBoolean|NODATA |Exclude NoData Cells|True -ParameterSelection|TYPE|Type|[0] nodes;[1] cells -OutputVector|SHAPES|Shapes diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GridVolume.txt b/python/plugins/processing/algs/saga/description/2.1.3/GridVolume.txt deleted file mode 100644 index f20c27cc53d0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GridVolume.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Volume -grid_calculus -ParameterRaster|GRID|Grid|False -ParameterSelection|METHOD|Method|[0] Count Only Above Base Level;[1] Count Only Below Base Level;[2] Subtract Volumes Below Base Level;[3] Add Volumes Below Base Level -ParameterNumber|LEVEL|Base Level|None|None|0.0 diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GridsProduct.txt b/python/plugins/processing/algs/saga/description/2.1.3/GridsProduct.txt deleted file mode 100644 index 59d864f4fc9b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GridsProduct.txt +++ /dev/null @@ -1,4 +0,0 @@ -Grids Product -grid_calculus -ParameterMultipleInput|GRIDS|Grids|3|False -OutputRaster|RESULT|Product diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GridsSum.txt b/python/plugins/processing/algs/saga/description/2.1.3/GridsSum.txt deleted file mode 100644 index 60b0beebd9f3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/GridsSum.txt +++ /dev/null @@ -1,4 +0,0 @@ -Grids Sum -grid_calculus -ParameterMultipleInput|GRIDS|Grids|3|False -OutputRaster|RESULT|Sum diff --git a/python/plugins/processing/algs/saga/description/2.1.3/HistogramSurface.txt b/python/plugins/processing/algs/saga/description/2.1.3/HistogramSurface.txt deleted file mode 100644 index bde5571c5d18..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/HistogramSurface.txt +++ /dev/null @@ -1,5 +0,0 @@ -Histogram Surface -grid_visualisation -ParameterRaster|GRID|Grid|False -ParameterSelection|METHOD|Method|[0] rows;[1] columns;[2] circle -OutputRaster|HIST|Histogram diff --git a/python/plugins/processing/algs/saga/description/2.1.3/Hypsometry.txt b/python/plugins/processing/algs/saga/description/2.1.3/Hypsometry.txt deleted file mode 100644 index 2ca4a17709bb..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/Hypsometry.txt +++ /dev/null @@ -1,10 +0,0 @@ -Hypsometry -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterNumber|COUNT|Number of Classes|None|None|100.0 -ParameterSelection|SORTING|Sort|[0] up;[1] down -ParameterSelection|METHOD|Classification Constant|[0] height;[1] area -ParameterBoolean|BZRANGE |Use Z-Range|True -ParameterNumber|ZRANGE_MIN|Z-Range Min|None|None|0.0 -ParameterNumber|ZRANGE_MAX|Z-Range Max|None|None|1000.0 -OutputTable|TABLE|Hypsometry diff --git a/python/plugins/processing/algs/saga/description/2.1.3/InverseDistanceWeighted.txt b/python/plugins/processing/algs/saga/description/2.1.3/InverseDistanceWeighted.txt deleted file mode 100644 index 50ece8a2eceb..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/InverseDistanceWeighted.txt +++ /dev/null @@ -1,17 +0,0 @@ -Inverse Distance Weighted -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -ParameterSelection|WEIGHTING|Distance Weighting|[0] inverse distance to a power;[1] linearly decreasing within search radius;[2] exponential weighting scheme;[3] gaussian weighting scheme -ParameterNumber|WEIGHT_POWER|Inverse Distance Power|0.0|None|2 -ParameterNumber|WEIGHT_BANDWIDTH|Exponential and Gaussian Weighting Bandwidth|0.0|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global)|1 -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100.0 -ParameterSelection|SEARCH_DIRECTION|Search Mode|[0] all directions;[1] quadrants -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points -ParameterNumber|SEARCH_POINTS_MAX|Maximum Number of Points|None|None|10 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_DEFINITION|Target Grid System|[0] user defined;[1] grid or grid system -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.3/InvertDataNo-Data.txt b/python/plugins/processing/algs/saga/description/2.1.3/InvertDataNo-Data.txt deleted file mode 100644 index 79a626fa9482..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/InvertDataNo-Data.txt +++ /dev/null @@ -1,4 +0,0 @@ -Invert Data/No-Data -grid_tools -ParameterRaster|INPUT|Grid|False -OutputRaster|OUTPUT|Result diff --git a/python/plugins/processing/algs/saga/description/2.1.3/LSFactor.txt b/python/plugins/processing/algs/saga/description/2.1.3/LSFactor.txt deleted file mode 100644 index 6522dc4c91c8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/LSFactor.txt +++ /dev/null @@ -1,9 +0,0 @@ -LS Factor -ta_hydrology -ParameterRaster|SLOPE|Slope|False -ParameterRaster|AREA|Catchment Area|False -ParameterSelection|CONV|Area to Length Conversion|[0] no conversion (areas already given as specific catchment area);[1] 1 / cell size (specific catchment area);[2] square root (catchment length) -ParameterSelection|METHOD|Method (LS)|[0] Moore et al. 1991;[1] Desmet & Govers 1996;[2] Boehner & Selige 2006 -ParameterNumber|EROSIVITY|Rill/Interrill Erosivity|None|None|0.0 -ParameterSelection|STABILITY|Stability|[0] stable;[1] instable (thawing) -OutputRaster|LS|LS Factor diff --git a/python/plugins/processing/algs/saga/description/2.1.3/LakeFlood.txt b/python/plugins/processing/algs/saga/description/2.1.3/LakeFlood.txt deleted file mode 100644 index 0328fc6ec474..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/LakeFlood.txt +++ /dev/null @@ -1,7 +0,0 @@ -Lake Flood -ta_hydrology -ParameterRaster|ELEV|DEM|False -ParameterRaster|SEEDS|Seeds|False -ParameterBoolean|LEVEL |Absolute Water Levels|True -OutputRaster|OUTDEPTH|Lake -OutputRaster|OUTLEVEL|Surface diff --git a/python/plugins/processing/algs/saga/description/2.1.3/LandSurfaceTemperature.txt b/python/plugins/processing/algs/saga/description/2.1.3/LandSurfaceTemperature.txt deleted file mode 100644 index 798338997f46..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/LandSurfaceTemperature.txt +++ /dev/null @@ -1,10 +0,0 @@ -Land Surface Temperature -ta_morphometry -ParameterRaster|DEM|Elevation [m]|False -ParameterRaster|SWR|Short Wave Radiation [kW/m2]|False -ParameterRaster|LAI|Leaf Area Index|False -ParameterNumber|Z_REFERENCE|Elevation at Reference Station [m]|None|None|0.0 -ParameterNumber|T_REFERENCE|Temperature at Reference Station [Deg.Celsius]|None|None|0.0 -ParameterNumber|T_GRADIENT|Temperature Gradient [Deg.Celsius/km]|None|None|6.5 -ParameterNumber|C_FACTOR|C Factor|None|None|1.0 -OutputRaster|LST|Land Surface Temperature [Deg.Celsius] diff --git a/python/plugins/processing/algs/saga/description/2.1.3/LaplacianFilter.txt b/python/plugins/processing/algs/saga/description/2.1.3/LaplacianFilter.txt deleted file mode 100644 index e828148a738f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/LaplacianFilter.txt +++ /dev/null @@ -1,8 +0,0 @@ -Laplacian Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|METHOD|Method|[0] standard kernel 1;[1] standard kernel 2;[2] Standard kernel 3;[3] user defined kernel -ParameterNumber|SIGMA|Standard Deviation (Percent of Radius)|None|None|0 -ParameterNumber|RADIUS|Radius|None|None|1 -ParameterSelection|MODE|Search Mode|[0] square;[1] circle -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/Layerofextremevalue.txt b/python/plugins/processing/algs/saga/description/2.1.3/Layerofextremevalue.txt deleted file mode 100644 index 15c6ed213816..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/Layerofextremevalue.txt +++ /dev/null @@ -1,5 +0,0 @@ -Layer of extreme value -grid_analysis -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|CRITERIA|Method|[0] Maximum;[1] Minimum -OutputRaster|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.1.3/LeastCostPaths.txt b/python/plugins/processing/algs/saga/description/2.1.3/LeastCostPaths.txt deleted file mode 100644 index ecbdd4818234..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/LeastCostPaths.txt +++ /dev/null @@ -1,7 +0,0 @@ -Least Cost Paths -grid_analysis -ParameterVector|SOURCE|Source Point(s)|0|False -ParameterRaster|DEM|Accumulated cost|False -ParameterMultipleInput|VALUES|Values|3|True -OutputVector|POINTS|Profile (points) -OutputVector|LINE|Profile (lines) diff --git a/python/plugins/processing/algs/saga/description/2.1.3/Line-PolygonIntersection.txt b/python/plugins/processing/algs/saga/description/2.1.3/Line-PolygonIntersection.txt deleted file mode 100644 index 9c15f2583b07..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/Line-PolygonIntersection.txt +++ /dev/null @@ -1,6 +0,0 @@ -Line-Polygon Intersection -shapes_lines -ParameterVector|LINES|Lines|1|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterSelection|METHOD|Output|[0] one multi-line per polygon;[1] keep original line attributes -OutputVector|INTERSECT|Intersection diff --git a/python/plugins/processing/algs/saga/description/2.1.3/LineDissolve.txt b/python/plugins/processing/algs/saga/description/2.1.3/LineDissolve.txt deleted file mode 100644 index fb704cc7bb38..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/LineDissolve.txt +++ /dev/null @@ -1,8 +0,0 @@ -Line Dissolve -shapes_lines -ParameterVector|LINES|Lines|-1|False -ParameterTableField|FIELD_1|1. Attribute|LINES|-1|False -ParameterTableField|FIELD_2|2. Attribute|LINES|-1|False -ParameterTableField|FIELD_3|3. Attribute|LINES|-1|False -ParameterSelection|ALL|Dissolve...|[0] lines with same attribute value(s);[1] all lines -OutputVector|DISSOLVED|Dissolved Lines diff --git a/python/plugins/processing/algs/saga/description/2.1.3/LineProperties.txt b/python/plugins/processing/algs/saga/description/2.1.3/LineProperties.txt deleted file mode 100644 index d23d392d964f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/LineProperties.txt +++ /dev/null @@ -1,7 +0,0 @@ -Line Properties -shapes_lines -ParameterVector|LINES|Lines|1|False -ParameterBoolean|BPARTS |Number of Parts|True -ParameterBoolean|BPOINTS |Number of Vertices|True -ParameterBoolean|BLENGTH |Length|True -OutputVector|OUTPUT|Lines with Property Attributes diff --git a/python/plugins/processing/algs/saga/description/2.1.3/LineSimplification.txt b/python/plugins/processing/algs/saga/description/2.1.3/LineSimplification.txt deleted file mode 100644 index b1bb26e2b791..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/LineSimplification.txt +++ /dev/null @@ -1,5 +0,0 @@ -Line Simplification -shapes_lines -ParameterVector|LINES|Lines|1|False -ParameterNumber|TOLERANCE|Tolerance|None|None|1.0 -OutputVector|OUTPUT|Simplified Lines diff --git a/python/plugins/processing/algs/saga/description/2.1.3/LocalMinimaandMaxima.txt b/python/plugins/processing/algs/saga/description/2.1.3/LocalMinimaandMaxima.txt deleted file mode 100644 index 4b415bc9a990..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/LocalMinimaandMaxima.txt +++ /dev/null @@ -1,5 +0,0 @@ -Local Minima and Maxima -shapes_grid -ParameterRaster|GRID|Grid|False -OutputVector|MINIMA|Minima -OutputVector|MAXIMA|Maxima diff --git a/python/plugins/processing/algs/saga/description/2.1.3/MajorityFilter.txt b/python/plugins/processing/algs/saga/description/2.1.3/MajorityFilter.txt deleted file mode 100644 index 7cd6fe5291b8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/MajorityFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Majority Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Radius|1.0|None|1 -ParameterNumber|THRESHOLD|Threshold [Percent]|0.0|None|0 -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/MassBalanceIndex.txt b/python/plugins/processing/algs/saga/description/2.1.3/MassBalanceIndex.txt deleted file mode 100644 index e65fabf52d57..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/MassBalanceIndex.txt +++ /dev/null @@ -1,8 +0,0 @@ -Mass Balance Index -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterRaster|HREL|Vertical Distance to Channel Network|True -ParameterNumber|TSLOPE|T Slope|None|None|15.0 -ParameterNumber|TCURVE|T Curvature|None|None|0.01 -ParameterNumber|THREL|T Vertical Distance to Channel Network|None|None|15.0 -OutputRaster|MBI|Mass Balance Index diff --git a/python/plugins/processing/algs/saga/description/2.1.3/MergeLayers.txt b/python/plugins/processing/algs/saga/description/2.1.3/MergeLayers.txt deleted file mode 100644 index f0d5bb7955cc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/MergeLayers.txt +++ /dev/null @@ -1,6 +0,0 @@ -Merge Layers -shapes_tools -ParameterMultipleInput|INPUT|Input Layers|-1|True -ParameterBoolean|SRCINFO|Add source information|True -ParameterBoolean|MATCH|Match Fields by Name|True -OutputVector|MERGED|Merged Layer \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.3/MetricConversions.txt b/python/plugins/processing/algs/saga/description/2.1.3/MetricConversions.txt deleted file mode 100644 index 3501a9e33438..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/MetricConversions.txt +++ /dev/null @@ -1,5 +0,0 @@ -Metric Conversions -grid_calculus -ParameterRaster|GRID|Grid|False -ParameterSelection|CONVERSION|Conversion|[0] radians to degree;[1] degree to radians;[2] Celsius to Fahrenheit;[3] Fahrenheit to Celsius -OutputRaster|CONV|Converted Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/MinimumDistanceAnalysis.txt b/python/plugins/processing/algs/saga/description/2.1.3/MinimumDistanceAnalysis.txt deleted file mode 100644 index 200a565bc533..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/MinimumDistanceAnalysis.txt +++ /dev/null @@ -1,4 +0,0 @@ -Minimum Distance Analysis -statistics_points -ParameterVector|POINTS|Points|0|False -OutputTable|TABLE|Minimum Distance Analysis diff --git a/python/plugins/processing/algs/saga/description/2.1.3/MorphologicalFilter.txt b/python/plugins/processing/algs/saga/description/2.1.3/MorphologicalFilter.txt deleted file mode 100644 index 28dfd3f15bd2..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/MorphologicalFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Morphological Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Radius|None|None|1 -ParameterSelection|METHOD|Method|[0] Dilation;[1] Erosion;[2] Opening;[3] Closing -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/MorphometricProtectionIndex.txt b/python/plugins/processing/algs/saga/description/2.1.3/MorphometricProtectionIndex.txt deleted file mode 100644 index 48d44432cb65..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/MorphometricProtectionIndex.txt +++ /dev/null @@ -1,5 +0,0 @@ -Morphometric Protection Index -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS|Radius|None|None|2000.0 -OutputRaster|PROTECTION|Protection Index diff --git a/python/plugins/processing/algs/saga/description/2.1.3/Mosaicking.txt b/python/plugins/processing/algs/saga/description/2.1.3/Mosaicking.txt deleted file mode 100644 index b8bb1d1f5af4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/Mosaicking.txt +++ /dev/null @@ -1,14 +0,0 @@ -Mosaick raster layers|Mosaicking -grid_tools -AllowUnmatching -ParameterMultipleInput|GRIDS|Input Grids|3|False -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|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 -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.3/Multi-BandVariation.txt b/python/plugins/processing/algs/saga/description/2.1.3/Multi-BandVariation.txt deleted file mode 100644 index 8dcf7d017e09..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/Multi-BandVariation.txt +++ /dev/null @@ -1,11 +0,0 @@ -Multi-Band Variation -statistics_grid -ParameterMultipleInput|BANDS|Grids|3|False -ParameterNumber|RADIUS|Radius [Cells]|None|None|1 -ParameterSelection|DISTANCE_WEIGHTING_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1.0 -OutputRaster|MEAN|Mean Distance -OutputRaster|STDDEV|Standard Deviation -OutputRaster|DIFF|Distance diff --git a/python/plugins/processing/algs/saga/description/2.1.3/MultiDirectionLeeFilter.txt b/python/plugins/processing/algs/saga/description/2.1.3/MultiDirectionLeeFilter.txt deleted file mode 100644 index a768db9522f6..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/MultiDirectionLeeFilter.txt +++ /dev/null @@ -1,10 +0,0 @@ -Multi Direction Lee Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterNumber|NOISE_ABS|Estimated Noise (absolute)|None|None|1.0 -ParameterNumber|NOISE_REL|Estimated Noise (relative)|None|None|1.0 -ParameterBoolean|WEIGHTED |Weighted|True -ParameterSelection|METHOD|Method|[0] noise variance given as absolute value;[1] noise variance given relative to mean standard deviation;[2] original calculation (Ringeler) -OutputRaster|RESULT|Filtered Grid -OutputRaster|STDDEV|Minimum Standard Deviation -OutputRaster|DIR|Direction of Minimum Standard Deviation diff --git a/python/plugins/processing/algs/saga/description/2.1.3/MultilevelB-SplineInterpolation.txt b/python/plugins/processing/algs/saga/description/2.1.3/MultilevelB-SplineInterpolation.txt deleted file mode 100644 index 0f9b3231a78e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/MultilevelB-SplineInterpolation.txt +++ /dev/null @@ -1,12 +0,0 @@ -Multilevel B-Spline Interpolation -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -ParameterSelection|METHOD|Method|[0] without B-spline refinement;[1] with B-spline refinement -ParameterNumber|EPSILON|Threshold Error|0|None|0.0001 -ParameterBoolean|UPDATE|Update View|False -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/MultipleRegressionAnalysis(GridGrids).txt b/python/plugins/processing/algs/saga/description/2.1.3/MultipleRegressionAnalysis(GridGrids).txt deleted file mode 100644 index 32635533abf0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/MultipleRegressionAnalysis(GridGrids).txt +++ /dev/null @@ -1,15 +0,0 @@ -Multiple Regression Analysis (Grid/Grids) -statistics_regression -ParameterRaster|DEPENDENT|Dependent|False -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterBoolean|COORD_X |Include X Coordinate|True -ParameterBoolean|COORD_Y |Include Y Coordinate|True -ParameterSelection|METHOD|Method|[0] include all;[1] forward;[2] backward;[3] stepwise -ParameterNumber|P_IN|P in|None|None|5 -ParameterNumber|P_OUT|P out|None|None|5 -OutputRaster|REGRESSION|Regression -OutputRaster|RESIDUALS|Residuals -OutputTable|INFO_COEFF|Details: Coefficients -OutputTable|INFO_MODEL|Details: Model -OutputTable|INFO_STEPS|Details: Steps diff --git a/python/plugins/processing/algs/saga/description/2.1.3/MultipleRegressionAnalysis(PointsGrids).txt b/python/plugins/processing/algs/saga/description/2.1.3/MultipleRegressionAnalysis(PointsGrids).txt deleted file mode 100644 index c5dbbf03c4f8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/MultipleRegressionAnalysis(PointsGrids).txt +++ /dev/null @@ -1,16 +0,0 @@ -Multiple Regression Analysis (Points/Grids) -statistics_regression -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterVector|SHAPES|Shapes|-1|False -ParameterTableField|ATTRIBUTE|Attribute|SHAPES|-1|False -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterBoolean|COORD_X |Include X Coordinate|True -ParameterBoolean|COORD_Y |Include Y Coordinate|True -ParameterSelection|METHOD|Method|[0] include all;[1] forward;[2] backward;[3] stepwise -ParameterNumber|P_IN|P in|None|None|5 -ParameterNumber|P_OUT|P out|None|None|5 -OutputTable|INFO_COEFF|Details: Coefficients -OutputTable|INFO_MODEL|Details: Model -OutputTable|INFO_STEPS|Details: Steps -OutputVector|RESIDUALS|Residuals -OutputRaster|REGRESSION|Regression diff --git a/python/plugins/processing/algs/saga/description/2.1.3/MultiresolutionIndexofValleyBottomFlatness(MRVBF).txt b/python/plugins/processing/algs/saga/description/2.1.3/MultiresolutionIndexofValleyBottomFlatness(MRVBF).txt deleted file mode 100644 index 04d4c3ccbbdf..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/MultiresolutionIndexofValleyBottomFlatness(MRVBF).txt +++ /dev/null @@ -1,13 +0,0 @@ -Multiresolution Index of Valley Bottom Flatness (MRVBF) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|T_SLOPE|Initial Threshold for Slope|None|None|16 -ParameterNumber|T_PCTL_V|Threshold for Elevation Percentile (Lowness)|None|None|0.4 -ParameterNumber|T_PCTL_R|Threshold for Elevation Percentile (Upness)|None|None|0.35 -ParameterNumber|P_SLOPE|Shape Parameter for Slope|None|None|4.0 -ParameterNumber|P_PCTL|Shape Parameter for Elevation Percentile|None|None|3.0 -ParameterBoolean|UPDATE |Update Views|True -ParameterBoolean|CLASSIFY |Classify|True -ParameterNumber|MAX_RES|Maximum Resolution (Percentage)|None|None|100 -OutputRaster|MRVBF|MRVBF -OutputRaster|MRRTF|MRRTF diff --git a/python/plugins/processing/algs/saga/description/2.1.3/OrderedWeightedAveraging(OWA).txt b/python/plugins/processing/algs/saga/description/2.1.3/OrderedWeightedAveraging(OWA).txt deleted file mode 100644 index 19b0b85a23dc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/OrderedWeightedAveraging(OWA).txt +++ /dev/null @@ -1,5 +0,0 @@ -Ordered Weighted Averaging|Ordered Weighted Averaging (OWA) -grid_analysis -ParameterMultipleInput|GRIDS|Input Grids|3|False -ParameterFixedTable|WEIGHTS|Weights|3|Weight|False -OutputRaster|OUTPUT|Output Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/OrdinaryKriging(Global).txt b/python/plugins/processing/algs/saga/description/2.1.3/OrdinaryKriging(Global).txt deleted file mode 100644 index 91ded9ab823a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/OrdinaryKriging(Global).txt +++ /dev/null @@ -1,18 +0,0 @@ -Ordinary Kriging (Global) -statistics_kriging -ParameterVector|POINTS|Points|0|False -ParameterTableField|ZFIELD|Attribute|POINTS|-1|False -ParameterSelection|TQUALITY|Type of Quality Measure|[0] standard deviation;[1] variance -ParameterBoolean|LOG|Logarithmic Transformation|True -ParameterBoolean|BLOCK|Block Kriging|True -ParameterNumber|DBLOCK|Block Size|0|None|100 -ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0 -ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100 -ParameterNumber|VAR_NSKIP|Skip|1|None|1 -ParameterString|VAR_MODEL|Variogram Model|a + b * x -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_PREDICTION|Prediction -OutputRaster|TARGET_VARIANCE|Quality Measure diff --git a/python/plugins/processing/algs/saga/description/2.1.3/OrdinaryKriging.txt b/python/plugins/processing/algs/saga/description/2.1.3/OrdinaryKriging.txt deleted file mode 100644 index f3517506bd16..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/OrdinaryKriging.txt +++ /dev/null @@ -1,24 +0,0 @@ -Ordinary Kriging -statistics_kriging -ParameterVector|POINTS|Points|0|False -ParameterTableField|ZFIELD|Attribute|POINTS|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterSelection|TQUALITY|Type of Quality Measure|[0] standard deviation;[1] variance -ParameterBoolean|LOG|Logarithmic Transformation|True -ParameterBoolean|BLOCK|Block Kriging|True -ParameterNumber|DBLOCK|Block Size|0|None|100 -ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0 -ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100 -ParameterNumber|VAR_NSKIP|Skip|1|None|1 -ParameterString|VAR_MODEL|Variogram Model|a + b * x -ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global -ParameterNumber|SEARCH_RADIUS|Maximum Search Distance|0|None|1000 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_PREDICTION|Prediction -OutputRaster|TARGET_VARIANCE|Quality Measure diff --git a/python/plugins/processing/algs/saga/description/2.1.3/OverlandFlow-KinematicWaveD8.txt b/python/plugins/processing/algs/saga/description/2.1.3/OverlandFlow-KinematicWaveD8.txt deleted file mode 100644 index 0a287008b818..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/OverlandFlow-KinematicWaveD8.txt +++ /dev/null @@ -1,13 +0,0 @@ -Overland Flow - Kinematic Wave D8 -sim_hydrology -ParameterRaster|DEM|Elevation|False -ParameterVector|GAUGES|Gauges|-1|True -ParameterNumber|TIME_SPAN|Simulation Time [h]|None|None|24 -ParameterNumber|TIME_STEP|Simulation Time Step [h]|None|None|0.1 -ParameterNumber|ROUGHNESS|Manning's Roughness|None|None|0.03 -ParameterNumber|NEWTON_MAXITER|Max. Iterations|None|None|100 -ParameterNumber|NEWTON_EPSILON|Epsilon|None|None|0.0001 -ParameterSelection|PRECIP|Precipitation|[0] Homogenous;[1] Above Elevation;[2] Left Half -ParameterNumber|THRESHOLD|Threshold Elevation|None|None|0.0 -OutputRaster|FLOW|Runoff -OutputTable|GAUGES_FLOW|Flow at Gauges diff --git a/python/plugins/processing/algs/saga/description/2.1.3/OverlandFlowDistancetoChannelNetwork.txt b/python/plugins/processing/algs/saga/description/2.1.3/OverlandFlowDistancetoChannelNetwork.txt deleted file mode 100644 index 58f904431d25..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/OverlandFlowDistancetoChannelNetwork.txt +++ /dev/null @@ -1,8 +0,0 @@ -Overland Flow Distance to Channel Network -ta_channels -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|CHANNELS|Channel Network|False -ParameterSelection|METHOD|Flow Algorithm|[0] D8;[1] MFD -OutputRaster|DISTANCE|Overland Flow Distance -OutputRaster|DISTVERT|Vertical Overland Flow Distance -OutputRaster|DISTHORZ|Horizontal Overland Flow Distance diff --git a/python/plugins/processing/algs/saga/description/2.1.3/Patching.txt b/python/plugins/processing/algs/saga/description/2.1.3/Patching.txt deleted file mode 100644 index 6a70404010f4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/Patching.txt +++ /dev/null @@ -1,6 +0,0 @@ -Patching -grid_tools -ParameterRaster|ORIGINAL|Grid|False -ParameterRaster|ADDITIONAL|Patch Grid|False -ParameterSelection|INTERPOLATION|Interpolation Method|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -OutputRaster|COMPLETED|Completed Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/PatternAnalysis.txt b/python/plugins/processing/algs/saga/description/2.1.3/PatternAnalysis.txt deleted file mode 100644 index 5a6d4de632a2..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/PatternAnalysis.txt +++ /dev/null @@ -1,11 +0,0 @@ -Pattern Analysis -grid_analysis -ParameterRaster|INPUT|Input Grid|False -ParameterSelection|WINSIZE|Size of Analysis Window|[0] 3 X 3;[1] 5 X 5;[2] 7 X 7 -ParameterNumber|MAXNUMCLASS|Max. Number of Classes|None|None|0 -OutputRaster|RELATIVE|Relative Richness -OutputRaster|DIVERSITY|Diversity -OutputRaster|DOMINANCE|Dominance -OutputRaster|FRAGMENTATION|Fragmentation -OutputRaster|NDC|Number of Different Classes -OutputRaster|CVN|Center Versus Neighbours diff --git a/python/plugins/processing/algs/saga/description/2.1.3/PointStatisticsforPolygons.txt b/python/plugins/processing/algs/saga/description/2.1.3/PointStatisticsforPolygons.txt deleted file mode 100644 index 02e0aba55cf1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/PointStatisticsforPolygons.txt +++ /dev/null @@ -1,14 +0,0 @@ -Point Statistics for Polygons -shapes_polygons -ParameterVector|POINTS|Points|0|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|FIELDS|Attribute Table field|POINTS|-1|False -ParameterSelection|FIELD_NAME|Field Naming Choice|[0] variable type + original name;[1] original name + variable type;[2] original name;[3] variable type -ParameterBoolean|SUM |Sum|True -ParameterBoolean|AVG |Mean|True -ParameterBoolean|VAR |Variance|True -ParameterBoolean|DEV |Deviation|True -ParameterBoolean|MIN |Minimum|True -ParameterBoolean|MAX |Maximum|True -ParameterBoolean|NUM |Count|True -OutputVector|STATISTICS|Statistics diff --git a/python/plugins/processing/algs/saga/description/2.1.3/PointsFilter.txt b/python/plugins/processing/algs/saga/description/2.1.3/PointsFilter.txt deleted file mode 100644 index afb3ee99f331..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/PointsFilter.txt +++ /dev/null @@ -1,12 +0,0 @@ -Points Filter -shapes_points -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterNumber|RADIUS|Radius|None|None|1 -ParameterNumber|MINNUM|Minimum Number of Points|None|None|0 -ParameterNumber|MAXNUM|Maximum Number of Points|None|None|0 -ParameterBoolean|QUADRANTS |Quadrants|True -ParameterSelection|METHOD|Filter Criterion|[0] keep maxima (with tolerance);[1] keep minima (with tolerance);[2] remove maxima (with tolerance);[3] remove minima (with tolerance);[4] remove below percentile;[5] remove above percentile -ParameterNumber|TOLERANCE|Tolerance|None|None|0.0 -ParameterNumber|PERCENT|Percentile|None|None|50 -OutputVector|FILTER|Filtered Points diff --git a/python/plugins/processing/algs/saga/description/2.1.3/PointsThinning.txt b/python/plugins/processing/algs/saga/description/2.1.3/PointsThinning.txt deleted file mode 100644 index 00643e842d88..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/PointsThinning.txt +++ /dev/null @@ -1,6 +0,0 @@ -Points Thinning -shapes_points -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterNumber|RESOLUTION|Resolution|0.0|None|1.0 -OutputVector|THINNED|Thinned Points diff --git a/python/plugins/processing/algs/saga/description/2.1.3/PolartoCartesianCoordinates.txt b/python/plugins/processing/algs/saga/description/2.1.3/PolartoCartesianCoordinates.txt deleted file mode 100644 index 8c9b76b316b1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/PolartoCartesianCoordinates.txt +++ /dev/null @@ -1,8 +0,0 @@ -Polar to Cartesian Coordinates -shapes_tools -ParameterVector|POLAR|Polar Coordinates|-1|False -ParameterTableField|F_EXAGG|Exaggeration|POLAR|-1|False -ParameterNumber|D_EXAGG|Exaggeration Factor|None|None|1 -ParameterNumber|RADIUS|Radius|None|None|6371000.0 -ParameterBoolean|DEGREE |Degree|True -OutputVector|CARTES|Cartesian Coordinates diff --git a/python/plugins/processing/algs/saga/description/2.1.3/Polygon-LineIntersection.txt b/python/plugins/processing/algs/saga/description/2.1.3/Polygon-LineIntersection.txt deleted file mode 100644 index cb4dd7e8e530..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/Polygon-LineIntersection.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygon-Line Intersection -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterVector|LINES|Lines|1|False -OutputVector|INTERSECT|Intersection diff --git a/python/plugins/processing/algs/saga/description/2.1.3/PolygonCentroids.txt b/python/plugins/processing/algs/saga/description/2.1.3/PolygonCentroids.txt deleted file mode 100644 index 5672b7e7f33a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/PolygonCentroids.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygon Centroids -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|METHOD |Centroids for each part|True -OutputVector|CENTROIDS|Centroids diff --git a/python/plugins/processing/algs/saga/description/2.1.3/PolygonDifference.txt b/python/plugins/processing/algs/saga/description/2.1.3/PolygonDifference.txt deleted file mode 100644 index ffb19965a883..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/PolygonDifference.txt +++ /dev/null @@ -1,6 +0,0 @@ -Difference -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Difference diff --git a/python/plugins/processing/algs/saga/description/2.1.3/PolygonDissolve.txt b/python/plugins/processing/algs/saga/description/2.1.3/PolygonDissolve.txt deleted file mode 100644 index 31663861e027..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/PolygonDissolve.txt +++ /dev/null @@ -1,8 +0,0 @@ -Polygon dissolve (by attribute)|Polygon Dissolve -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|FIELD_1|1. Attribute|POLYGONS|-1|True -ParameterTableField|FIELD_2|2. Attribute|POLYGONS|-1|True -ParameterTableField|FIELD_3|3. Attribute|POLYGONS|-1|True -ParameterBoolean|BND_KEEP|Keep inner boundaries|True -OutputVector|DISSOLVED|Dissolved diff --git a/python/plugins/processing/algs/saga/description/2.1.3/PolygonDissolveAllPolygs.txt b/python/plugins/processing/algs/saga/description/2.1.3/PolygonDissolveAllPolygs.txt deleted file mode 100644 index 49133566c5d4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/PolygonDissolveAllPolygs.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygon dissolve (all polygons)|Polygon Dissolve -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|BND_KEEP|Keep inner boundaries|True -OutputVector|DISSOLVED|Dissolved diff --git a/python/plugins/processing/algs/saga/description/2.1.3/PolygonIdentity.txt b/python/plugins/processing/algs/saga/description/2.1.3/PolygonIdentity.txt deleted file mode 100644 index 6cb365fbefba..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/PolygonIdentity.txt +++ /dev/null @@ -1,6 +0,0 @@ -Identity -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Identity diff --git a/python/plugins/processing/algs/saga/description/2.1.3/PolygonIntersect.txt b/python/plugins/processing/algs/saga/description/2.1.3/PolygonIntersect.txt deleted file mode 100644 index 2a822db707c3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/PolygonIntersect.txt +++ /dev/null @@ -1,6 +0,0 @@ -Intersect -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Intersection diff --git a/python/plugins/processing/algs/saga/description/2.1.3/PolygonPartstoSeparatePolygons.txt b/python/plugins/processing/algs/saga/description/2.1.3/PolygonPartstoSeparatePolygons.txt deleted file mode 100644 index 1cab12c11a51..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/PolygonPartstoSeparatePolygons.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygon Parts to Separate Polygons -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|LAKES |Ignore Lakes|True -OutputVector|PARTS|Polygon Parts diff --git a/python/plugins/processing/algs/saga/description/2.1.3/PolygonProperties.txt b/python/plugins/processing/algs/saga/description/2.1.3/PolygonProperties.txt deleted file mode 100644 index eeb063b1e570..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/PolygonProperties.txt +++ /dev/null @@ -1,8 +0,0 @@ -Polygon Properties -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|BPARTS |Number of Parts|True -ParameterBoolean|BPOINTS |Number of Vertices|True -ParameterBoolean|BLENGTH |Perimeter|True -ParameterBoolean|BAREA |Area|True -OutputVector|OUTPUT|Polygons with Property Attributes diff --git a/python/plugins/processing/algs/saga/description/2.1.3/PolygonShapeIndices.txt b/python/plugins/processing/algs/saga/description/2.1.3/PolygonShapeIndices.txt deleted file mode 100644 index 468ac18c9956..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/PolygonShapeIndices.txt +++ /dev/null @@ -1,4 +0,0 @@ -Polygon Shape Indices -shapes_polygons -ParameterVector|SHAPES|Shapes|2|False -OutputVector|INDEX|Shape Index diff --git a/python/plugins/processing/algs/saga/description/2.1.3/PolygonSymmetricalDifference.txt b/python/plugins/processing/algs/saga/description/2.1.3/PolygonSymmetricalDifference.txt deleted file mode 100644 index d1e4e3dc584e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/PolygonSymmetricalDifference.txt +++ /dev/null @@ -1,6 +0,0 @@ -Symmetrical Difference -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Symmetrical Difference diff --git a/python/plugins/processing/algs/saga/description/2.1.3/PolygonUnion.txt b/python/plugins/processing/algs/saga/description/2.1.3/PolygonUnion.txt deleted file mode 100644 index 8dd3e56c6d1f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/PolygonUnion.txt +++ /dev/null @@ -1,6 +0,0 @@ -Union -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Union diff --git a/python/plugins/processing/algs/saga/description/2.1.3/PolygonUpdate.txt b/python/plugins/processing/algs/saga/description/2.1.3/PolygonUpdate.txt deleted file mode 100644 index 71914cdc8dfe..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/PolygonUpdate.txt +++ /dev/null @@ -1,6 +0,0 @@ -Update -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Updated polygons diff --git a/python/plugins/processing/algs/saga/description/2.1.3/PolygonstoEdgesandNodes.txt b/python/plugins/processing/algs/saga/description/2.1.3/PolygonstoEdgesandNodes.txt deleted file mode 100644 index e9f4628f40a8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/PolygonstoEdgesandNodes.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygons to Edges and Nodes -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -OutputVector|EDGES|Edges -OutputVector|NODES|Nodes diff --git a/python/plugins/processing/algs/saga/description/2.1.3/PrincipleComponentsAnalysis.txt b/python/plugins/processing/algs/saga/description/2.1.3/PrincipleComponentsAnalysis.txt deleted file mode 100644 index f43035a1cc7a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/PrincipleComponentsAnalysis.txt +++ /dev/null @@ -1,6 +0,0 @@ -Principle Components Analysis -table_calculus -ParameterTable|TABLE|Table|False -ParameterSelection|METHOD|Method|[0] correlation matrix;[1] variance-covariance matrix;[2] sums-of-squares-and-cross-products matrix -ParameterNumber|NFIRST|Number of Components|None|None|3 -OutputTable|PCA|Principle Components diff --git a/python/plugins/processing/algs/saga/description/2.1.3/Profilefrompoints.txt b/python/plugins/processing/algs/saga/description/2.1.3/Profilefrompoints.txt deleted file mode 100644 index 9e21d5fa3540..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/Profilefrompoints.txt +++ /dev/null @@ -1,7 +0,0 @@ -Profile from points table|Profile from points -ta_profiles -ParameterRaster|GRID|Grid|False -ParameterTable|TABLE|Input|False -ParameterTableField|X|X|TABLE|-1|False -ParameterTableField|Y|Y|TABLE|-1|False -OutputTable|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ProfilesfromLines.txt b/python/plugins/processing/algs/saga/description/2.1.3/ProfilesfromLines.txt deleted file mode 100644 index bc32a9f8b05f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ProfilesfromLines.txt +++ /dev/null @@ -1,9 +0,0 @@ -Profiles from Lines -ta_profiles -ParameterRaster|DEM|DEM|False -ParameterMultipleInput|VALUES|Values|3|True -ParameterVector|LINES|Lines|1|False -ParameterTableField|NAME|Name|LINES|-1|False -ParameterBoolean|SPLIT |Each Line as new Profile|True -OutputVector|PROFILE|Profiles -OutputVector|PROFILES|Profiles diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ProximityGrid.txt b/python/plugins/processing/algs/saga/description/2.1.3/ProximityGrid.txt deleted file mode 100644 index b78dad39d795..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ProximityGrid.txt +++ /dev/null @@ -1,6 +0,0 @@ -Proximity Grid -grid_tools -ParameterRaster|FEATURES|Features|False -OutputRaster|DISTANCE|Distance -OutputRaster|DIRECTION|Direction -OutputRaster|ALLOCATION|Allocation diff --git a/python/plugins/processing/algs/saga/description/2.1.3/QuadTreeStructuretoShapes.txt b/python/plugins/processing/algs/saga/description/2.1.3/QuadTreeStructuretoShapes.txt deleted file mode 100644 index 14d3cb722d11..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/QuadTreeStructuretoShapes.txt +++ /dev/null @@ -1,7 +0,0 @@ -QuadTree Structure to Shapes -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterTableField|ATTRIBUTE|Attribute|SHAPES|-1|False -OutputVector|POLYGONS|Polygons -OutputVector|LINES|Lines -OutputVector|POINTS|Duplicated Points diff --git a/python/plugins/processing/algs/saga/description/2.1.3/RGBComposite.txt b/python/plugins/processing/algs/saga/description/2.1.3/RGBComposite.txt deleted file mode 100644 index 271bbc60c10e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/RGBComposite.txt +++ /dev/null @@ -1,24 +0,0 @@ -RGB Composite -grid_visualisation -ParameterRaster|GRID_R|R|False -ParameterRaster|GRID_G|G|False -ParameterRaster|GRID_B|B|False -ParameterSelection|R_METHOD|Method for R value|0 - 255;Rescale to 0 - 255;User defined rescale;Percentiles;Percentage of standard deviation -ParameterSelection|G_METHOD|Method for G value|0 - 255;Rescale to 0 - 255;User defined rescale;Percentiles;Percentage of standard deviation -ParameterSelection|B_METHOD|Method for B value|0 - 255;Rescale to 0 - 255;User defined rescale;Percentiles;Percentage of standard deviation -ParameterNumber|R_RANGE_MIN|Rescale Range for RED min|0|255|0 -ParameterNumber|R_RANGE_MAX|Rescale Range for RED max|0|255|255 -ParameterNumber|R_PERCTL_MIN|Percentiles Range for RED max|1|99|1 -ParameterNumber|R_PERCTL_MAX|Percentiles Range for RED max|1|99|99 -ParameterNumber|R_PERCENT|Percentage of standard deviation for RED|0|None|150.0 -ParameterNumber|G_RANGE_MIN|Rescale Range for GREEN min|0|255|0 -ParameterNumber|G_RANGE_MAX|Rescale Range for GREEN max|0|255|255 -ParameterNumber|G_PERCTL_MIN|Percentiles Range for GREEN max|1|99|1 -ParameterNumber|G_PERCTL_MAX|Percentiles Range for GREEN max|1|99|99 -ParameterNumber|G_PERCENT|Percentage of standard deviation for GREEN|0|None|150.0 -ParameterNumber|B_RANGE_MIN|Rescale Range for BLUE min|0|255|0 -ParameterNumber|B_RANGE_MAX|Rescale Range for BLUE max|0|255|255 -ParameterNumber|B_PERCTL_MIN|Percentiles Range for BLUE max|1|99|1 -ParameterNumber|B_PERCTL_MAX|Percentiles Range for BLUE max|1|99|99 -ParameterNumber|B_PERCENT|Percentage of standard deviation for BLUE|0|None|150.0 -OutputRaster|GRID_RGB|Output RGB diff --git a/python/plugins/processing/algs/saga/description/2.1.3/RadiusofVariance(Grid).txt b/python/plugins/processing/algs/saga/description/2.1.3/RadiusofVariance(Grid).txt deleted file mode 100644 index 6e6d3edaf469..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/RadiusofVariance(Grid).txt +++ /dev/null @@ -1,7 +0,0 @@ -Radius of Variance (Grid) -statistics_grid -ParameterRaster|INPUT|Grid|False -ParameterNumber|VARIANCE|Standard Deviation|0.0|None|1.0 -ParameterNumber|RADIUS|Maximum Search Radius (cells)|0.0|None|20 -ParameterSelection|OUTPUT|Type of Output|[0] Cells;[1] Map Units -OutputRaster|RESULT|Variance Radius diff --git a/python/plugins/processing/algs/saga/description/2.1.3/RandomTerrainGeneration.txt b/python/plugins/processing/algs/saga/description/2.1.3/RandomTerrainGeneration.txt deleted file mode 100644 index 18043bf01b5b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/RandomTerrainGeneration.txt +++ /dev/null @@ -1,9 +0,0 @@ -Random Terrain Generation -grid_calculus -ParameterNumber|RADIUS|Radius (cells)|None|None|10 -ParameterNumber|ITERATIONS|Iterations|None|None|10 -ParameterSelection|TARGET_TYPE|Target Dimensions|[0] User defined -ParameterNumber|USER_CELL_SIZE|Grid Size|0.0|None|1.0 -ParameterNumber|USER_COLS|Cols|1.0|None|100 -ParameterNumber|USER_ROWS|Rows|1.0|None|100 -OutputRaster|TARGET_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/RankFilter.txt b/python/plugins/processing/algs/saga/description/2.1.3/RankFilter.txt deleted file mode 100644 index b676b15fc287..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/RankFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Rank Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Radius|1.0|None|1 -ParameterNumber|RANK|Rank [Percent]|None|None|50 -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/RealSurfaceArea.txt b/python/plugins/processing/algs/saga/description/2.1.3/RealSurfaceArea.txt deleted file mode 100644 index 065c34e79f04..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/RealSurfaceArea.txt +++ /dev/null @@ -1,4 +0,0 @@ -Real Surface Area -ta_morphometry -ParameterRaster|DEM|Elevation|False -OutputRaster|AREA|Surface Area diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ReclassifyGridValues.txt b/python/plugins/processing/algs/saga/description/2.1.3/ReclassifyGridValues.txt deleted file mode 100644 index d76e5a594793..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ReclassifyGridValues.txt +++ /dev/null @@ -1,18 +0,0 @@ -Reclassify Grid Values -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterSelection|METHOD|Method|[0] single;[1] range;[2] simple table -ParameterNumber|OLD|old value (for single value change)|None|None|0.0 -ParameterNumber|NEW|new value (for single value change)|None|None|1.0 -ParameterSelection|SOPERATOR|operator (for single value change)|[0] =;[1] <;[2] <=;[3] >=;[4] > -ParameterNumber|MIN|minimum value (for range)|None|None|0.0 -ParameterNumber|MAX|maximum value (for range)|None|None|1.0 -ParameterNumber|RNEW|new value(for range)|None|None|2.0 -ParameterSelection|ROPERATOR|operator (for range)|[0] <=;[1] < -ParameterFixedTable|RETAB|Lookup Table|3|minimum;maximum;new|False -ParameterSelection|TOPERATOR|operator (for table)|[0] min <= value < max;[1] min <= value <= max;[2] min < value <= max;[3] min < value < max -ParameterBoolean|NODATAOPT |replace no data values|True -ParameterNumber|NODATA|new value for no data values|None|None|0.0 -ParameterBoolean|OTHEROPT |replace other values|True -ParameterNumber|OTHERS|new value for other values|None|None|0.0 -OutputRaster|RESULT|Reclassified Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/RegressionAnalysis(PointsGrid).txt b/python/plugins/processing/algs/saga/description/2.1.3/RegressionAnalysis(PointsGrid).txt deleted file mode 100644 index fd4134084d40..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/RegressionAnalysis(PointsGrid).txt +++ /dev/null @@ -1,9 +0,0 @@ -Regression analysis|Regression Analysis (Points/Grid) -statistics_regression -ParameterRaster|GRID|Grid|False -ParameterVector|SHAPES|Shapes|-1|False -ParameterTableField|ATTRIBUTE|Attribute|SHAPES|-1|False -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterSelection|METHOD|Regression Function|[0] Y = a + b * X (linear);[1] Y = a + b / X;[2] Y = a / (b - X);[3] Y = a * X^b (power);[4] Y = a e^(b * X) (exponential);[5] Y = a + b * ln(X) (logarithmic) -OutputRaster|REGRESSION|Regression -OutputVector|RESIDUAL|Residuals diff --git a/python/plugins/processing/algs/saga/description/2.1.3/RelativeHeightsandSlopePositions.txt b/python/plugins/processing/algs/saga/description/2.1.3/RelativeHeightsandSlopePositions.txt deleted file mode 100644 index ab3c30b1953e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/RelativeHeightsandSlopePositions.txt +++ /dev/null @@ -1,11 +0,0 @@ -Relative Heights and Slope Positions -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|W|w|None|None|0.5 -ParameterNumber|T|t|None|None|10.0 -ParameterNumber|E|e|None|None|2.0 -OutputRaster|HO|Slope Height -OutputRaster|HU|Valley Depth -OutputRaster|NH|Normalized Height -OutputRaster|SH|Standardized Height -OutputRaster|MS|Mid-Slope Positon diff --git a/python/plugins/processing/algs/saga/description/2.1.3/RemoveDuplicatePoints.txt b/python/plugins/processing/algs/saga/description/2.1.3/RemoveDuplicatePoints.txt deleted file mode 100644 index 5a4d4c1b54ea..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/RemoveDuplicatePoints.txt +++ /dev/null @@ -1,7 +0,0 @@ -Remove Duplicate Points -shapes_points -ParameterVector|POINTS|Points|-1|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterSelection|METHOD|Point to Keep|[0] first point;[1] last point;[2] point with minimum attribute value;[3] point with maximum attribute value -ParameterSelection|NUMERIC|Numeric Attribute Values|[0] take value from the point to be kept;[1] minimum value of all duplicates;[2] maximum value of all duplicates;[3] mean value of all duplicates -OutputVector|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.1.3/Representativeness(Grid).txt b/python/plugins/processing/algs/saga/description/2.1.3/Representativeness(Grid).txt deleted file mode 100644 index 35a19a47a222..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/Representativeness(Grid).txt +++ /dev/null @@ -1,6 +0,0 @@ -Representativeness|Representativeness (Grid) -statistics_grid -ParameterRaster|INPUT|Grid|False -ParameterNumber|RADIUS|Radius (Cells)|1.0|None|10 -ParameterNumber|EXPONENT|Exponent|None|None|1 -OutputRaster|RESULT|Representativeness diff --git a/python/plugins/processing/algs/saga/description/2.1.3/Resampling.txt b/python/plugins/processing/algs/saga/description/2.1.3/Resampling.txt deleted file mode 100644 index 3b8096c5fad6..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/Resampling.txt +++ /dev/null @@ -1,11 +0,0 @@ -Resampling -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterBoolean|KEEP_TYPE|Preserve Data Type|True -Hardcoded|-TARGET_DEFINITION 0 -ParameterSelection|SCALE_UP_METHOD|Interpolation Method (Scale Up)|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation;[5] Mean Value;[6] Mean Value (cell area weighted);[7] Minimum Value;[8] Maximum Value;[9] Majority -ParameterSelection|SCALE_DOWN_METHOD|Interpolation Method (Scale Down)|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ResidualAnalysis(Grid).txt b/python/plugins/processing/algs/saga/description/2.1.3/ResidualAnalysis(Grid).txt deleted file mode 100644 index 9000f9eac4d4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ResidualAnalysis(Grid).txt +++ /dev/null @@ -1,16 +0,0 @@ -Residual analysis|Residual Analysis (Grid) -statistics_grid -ParameterRaster|GRID|Grid|False -ParameterNumber|RADIUS|Radius (Cells)|1.0|None|7 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1.0 -OutputRaster|MEAN|Mean Value -OutputRaster|DIFF|Difference from Mean Value -OutputRaster|STDDEV|Standard Deviation -OutputRaster|RANGE|Value Range -OutputRaster|MIN|Minimum Value -OutputRaster|MAX|Maximum Value -OutputRaster|DEVMEAN|Deviation from Mean Value -OutputRaster|PERCENT|Percentile diff --git a/python/plugins/processing/algs/saga/description/2.1.3/RunningAverage.txt b/python/plugins/processing/algs/saga/description/2.1.3/RunningAverage.txt deleted file mode 100644 index c0e23d752241..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/RunningAverage.txt +++ /dev/null @@ -1,6 +0,0 @@ -Running Average -table_calculus -ParameterTable|INPUT|Input|False -ParameterTableField|FIELD|Attribute|INPUT|-1|False -ParameterNumber|COUNT|Number of Records|0.0|None|10 -OutputTable|OUTPUT|Output diff --git a/python/plugins/processing/algs/saga/description/2.1.3/SAGAWetnessIndex.txt b/python/plugins/processing/algs/saga/description/2.1.3/SAGAWetnessIndex.txt deleted file mode 100644 index 564f34bd3efd..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/SAGAWetnessIndex.txt +++ /dev/null @@ -1,13 +0,0 @@ -SAGA Wetness Index -ta_hydrology -ParameterRaster|DEM|Elevation|False -ParameterNumber|SUCTION|Suction|0.0|None|10.0 -ParameterSelection|AREA_TYPE|Type of Area|[0] absolute catchment area;[1] square root of catchment area;[2] specific catchment area -ParameterSelection|SLOPE_TYPE|Type of Slope|[0] local slope;[1] catchment slope -ParameterNumber|SLOPE_MIN|Suction|0.0|None|0.0 -ParameterNumber|SLOPE_OFF|Suction|0.0|None|0.1 -ParameterNumber|SLOPE_WEIGHT|Suction|0.0|None|1.0 -OutputRaster|AREA|Catchment area -OutputRaster|SLOPE|Catchment slope -OutputRaster|AREA_MOD|Modified catchment area -OutputRaster|TWI|Topographic Wetness Index diff --git a/python/plugins/processing/algs/saga/description/2.1.3/SeedGeneration.txt b/python/plugins/processing/algs/saga/description/2.1.3/SeedGeneration.txt deleted file mode 100644 index be4f35778ec1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/SeedGeneration.txt +++ /dev/null @@ -1,11 +0,0 @@ -Seed Generation -imagery_segmentation -ParameterMultipleInput|GRIDS|Features|3|False -ParameterNumber|FACTOR|Bandwidth (Cells)|0.0|None|2 -ParameterSelection|TYPE_SURFACE|Type of Surface|[0] smoothed surface;[1] variance (a);[2] variance (b) -ParameterSelection|TYPE_SEEDS|Extraction of...|[0] minima;[1] maxima;[2] minima and maxima -ParameterSelection|TYPE_MERGE|Feature Aggregation|[0] additive;[1] multiplicative -ParameterBoolean|NORMALIZE |Normalized|True -OutputRaster|SURFACE|Surface -OutputRaster|SEEDS_GRID|Seeds Grid -OutputVector|SEEDS|Seeds diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ShapesBuffer.txt b/python/plugins/processing/algs/saga/description/2.1.3/ShapesBuffer.txt deleted file mode 100644 index 57e0051d0fce..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ShapesBuffer.txt +++ /dev/null @@ -1,10 +0,0 @@ -Shapes Buffer (Attribute distance)|Shapes Buffer -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterTableField|DIST_FIELD|Buffer Distance|SHAPES|-1|False -ParameterNumber|DIST_SCALE|Scaling Factor for Attribute Value|None|None|1.0 -ParameterNumber|NZONES|Number of Buffer Zones|1.0|None|1.0 -ParameterNumber|DARC|Arc Vertex Distance [Degree]|0.01|45.0|5.0 -ParameterBoolean|DISSOLVE |Dissolve Buffers|True -ParameterBoolean|POLY_INNER |Inner Buffer|False -OutputVector|BUFFER|Buffer \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ShapesBufferFixed.txt b/python/plugins/processing/algs/saga/description/2.1.3/ShapesBufferFixed.txt deleted file mode 100644 index c8c3878f6374..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ShapesBufferFixed.txt +++ /dev/null @@ -1,9 +0,0 @@ -Shapes Buffer (Fixed distance)|Shapes Buffer -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterNumber|DIST_FIELD_DEFAULT|Buffer distance|0.0|None|100.0 -ParameterNumber|NZONES|Number of Buffer Zones|1.0|None|1.0 -ParameterNumber|DARC|Arc Vertex Distance [Degree]|0.01|45.0|5.0 -ParameterBoolean|DISSOLVE |Dissolve Buffers|True -ParameterBoolean|POLY_INNER |Inner Buffer|False -OutputVector|BUFFER|Buffer \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ShapestoGrid.txt b/python/plugins/processing/algs/saga/description/2.1.3/ShapestoGrid.txt deleted file mode 100644 index 304359ef9ff6..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ShapestoGrid.txt +++ /dev/null @@ -1,14 +0,0 @@ -Shapes to Grid -grid_gridding -Hardcoded|-TARGET_DEFINITION 0 -ParameterVector|INPUT|Shapes|-1|False -ParameterTableField|FIELD|Attribute|INPUT|-1|False -ParameterSelection|OUTPUT|Output Values|[0] data / no-data;[1] index number;[2] attribute|2 -ParameterSelection|MULTIPLE|Method for Multiple Values|[0] first;[1] last;[2] minimum;[3] maximum;[4] mean|4 -ParameterSelection|LINE_TYPE|Method for Lines|[0] thin;[1] thick -ParameterSelection|POLY_TYPE|Method for Lines|[0] node;[1] cell -ParameterSelection|GRID_TYPE|Preferred Target Grid Type|[0] Integer (1 byte);[1] Integer (2 byte);[2] Integer (4 byte);[3] Floating Point (4 byte);[4] Floating Point (8 byte)|3 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ShrinkAndExpand.txt b/python/plugins/processing/algs/saga/description/2.1.3/ShrinkAndExpand.txt deleted file mode 100644 index 89675454d4ea..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ShrinkAndExpand.txt +++ /dev/null @@ -1,8 +0,0 @@ -Shrink and Expand -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterSelection|OPERATION|Operation|[0] Shrink;[1] Expand;[2] shrink and expand;[3] expand and shrink|3 -ParameterSelection|CIRCLE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Radius|1|None|1 -ParameterSelection|EXPAND|Method|[0] min;[1] max;[2] mean;[3] majority|3 -OutputRaster|RESULT|Result Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.3/SimpleFilter.txt b/python/plugins/processing/algs/saga/description/2.1.3/SimpleFilter.txt deleted file mode 100644 index 580d42ae9f3d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/SimpleFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Simple Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterSelection|METHOD|Filter|[0] Smooth;[1] Sharpen;[2] Edge -ParameterNumber|RADIUS|Radius|None|None|2 -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/SimpleRegionGrowing.txt b/python/plugins/processing/algs/saga/description/2.1.3/SimpleRegionGrowing.txt deleted file mode 100644 index 9fd3d0adb4fb..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/SimpleRegionGrowing.txt +++ /dev/null @@ -1,14 +0,0 @@ -Simple Region Growing -imagery_segmentation -ParameterRaster|SEEDS|Seeds|False -ParameterMultipleInput|FEATURES|Features|3|False -ParameterSelection|METHOD|Method|[0] feature space and position;[1] feature space -ParameterSelection|NEIGHBOUR|Neighbourhood|[0] 4 (von Neumann);[1] 8 (Moore) -ParameterNumber|SIG_1|Variance in Feature Space|None|None|1.0 -ParameterNumber|SIG_2|Variance in Position Space|None|None|1.0 -ParameterNumber|THRESHOLD|Threshold - Similarity|None|None|0.0 -ParameterBoolean|REFRESH |Refresh|True -ParameterNumber|LEAFSIZE|Leaf Size (for Speed Optimisation)|None|None|256 -OutputRaster|SEGMENTS|Segments -OutputRaster|SIMILARITY|Similarity -OutputTable|TABLE|Seeds diff --git a/python/plugins/processing/algs/saga/description/2.1.3/Simulation.txt b/python/plugins/processing/algs/saga/description/2.1.3/Simulation.txt deleted file mode 100644 index 61e9234afa6d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/Simulation.txt +++ /dev/null @@ -1,16 +0,0 @@ -Simulation -sim_fire_spreading -ParameterRaster|DEM|DEM|False -ParameterRaster|FUEL|Fuel Model|False -ParameterRaster|WINDSPD|Wind Speed|False -ParameterRaster|WINDDIR|Wind Direction|False -ParameterRaster|M1H|Dead Fuel Moisture 1H|False -ParameterRaster|M10H|Dead Fuel Moisture 10H|False -ParameterRaster|M100H|Dead Fuel Moisture 100H|False -ParameterRaster|MHERB|Herbaceous Fuel Moisture|False -ParameterRaster|MWOOD|Wood Fuel Moisture|False -ParameterRaster|IGNITION|Ignition Points|False -ParameterBoolean|UPDATEVIEW |Update View|True -OutputRaster|TIME|Time -OutputRaster|FLAME|Flame Length -OutputRaster|INTENSITY|Intensity diff --git a/python/plugins/processing/algs/saga/description/2.1.3/SinkDrainageRouteDetection.txt b/python/plugins/processing/algs/saga/description/2.1.3/SinkDrainageRouteDetection.txt deleted file mode 100644 index c9fc911ade9c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/SinkDrainageRouteDetection.txt +++ /dev/null @@ -1,6 +0,0 @@ -Sink Drainage Route Detection -ta_preprocessor -ParameterRaster|ELEVATION|Elevation|False -ParameterBoolean|THRESHOLD |Threshold|True -ParameterNumber|THRSHEIGHT|Threshold Height|None|None|100.0 -OutputRaster|SINKROUTE|Sink Route diff --git a/python/plugins/processing/algs/saga/description/2.1.3/SinkRemoval.txt b/python/plugins/processing/algs/saga/description/2.1.3/SinkRemoval.txt deleted file mode 100644 index 16ccd4d7468f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/SinkRemoval.txt +++ /dev/null @@ -1,8 +0,0 @@ -Sink Removal -ta_preprocessor -ParameterRaster|DEM|DEM|False -ParameterRaster|SINKROUTE|Sink Route|True -ParameterSelection|METHOD|Method|[0] Deepen Drainage Routes;[1] Fill Sinks -ParameterBoolean|THRESHOLD |Threshold|True -ParameterNumber|THRSHEIGHT|Threshold Height|None|None|100.0 -OutputRaster|DEM_PREPROC|Preprocessed DEM diff --git a/python/plugins/processing/algs/saga/description/2.1.3/SkyViewFactor.txt b/python/plugins/processing/algs/saga/description/2.1.3/SkyViewFactor.txt deleted file mode 100644 index 2114c288ebbc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/SkyViewFactor.txt +++ /dev/null @@ -1,12 +0,0 @@ -Sky View Factor -ta_lighting -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS|Maximum Search Radius|0.0|None|10000 -ParameterSelection|METHOD|Method|[0] multi scale;[1] sectors -ParameterNumber|DLEVEL|Multi Scale Factor|1.25|None|3.00 -ParameterNumber|NDIRS|Number of Sectors|3|None|8 -OutputRaster|VISIBLE|Visible Sky -OutputRaster|SVF|Sky View Factor -OutputRaster|SIMPLE|Sky View Factor (Simplified) -OutputRaster|TERRAIN|Terrain View Factor -OutputRaster|DISTANCE|Terrain View Factor diff --git a/python/plugins/processing/algs/saga/description/2.1.3/Slope,Aspect,Curvature.txt b/python/plugins/processing/algs/saga/description/2.1.3/Slope,Aspect,Curvature.txt deleted file mode 100644 index e9d707c6d0bc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/Slope,Aspect,Curvature.txt +++ /dev/null @@ -1,18 +0,0 @@ -Slope, Aspect, Curvature -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Method|[0] Maximum Slope (Travis et al. 1975);[1] Maximum Triangle Slope (Tarboton 1997);[2] Least Squares Fitted Plane (Horn 1981, Costa-Cabral & Burgess 1996);[3] 6 parameter 2nd order polynom (Evans 1979);[4] 6 parameter 2nd order polynom (Heerdegen & Beran 1982);[5] 6 parameter 2nd order polynom (Bauer, Rohdenburg, Bork 1985);[6] 9 parameter 2nd order polynom (Zevenbergen & Thorne 1987);[7]10 parameter 3rd order polynom (Haralick 1983)|6 -ParameterSelection|UNIT_SLOPE|Slope Units|[0] radians;[1] degree;[2] percent|1 -ParameterSelection|UNIT_ASPECT|Aspect Units|[0] radians;[1] degree|1 -OutputRaster|SLOPE|Slope -OutputRaster|ASPECT|Aspect -OutputRaster|C_GENE|General Curvature -OutputRaster|C_PLAN|Plan Curvature -OutputRaster|C_PROF|Profile Curvature -OutputRaster|C_TANG|Tangential Curvature -OutputRaster|C_LONG|Longitudinal Curvature -OutputRaster|C_CROS|Cross-Sectional Curvature -OutputRaster|C_MINI|Minimal Curvature -OutputRaster|C_MAXI|Maximal Curvature -OutputRaster|C_TOTA|Total Curvature -OutputRaster|C_ROTO|Flow-Line Curvature diff --git a/python/plugins/processing/algs/saga/description/2.1.3/SlopeLength.txt b/python/plugins/processing/algs/saga/description/2.1.3/SlopeLength.txt deleted file mode 100644 index f0e8d3384acc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/SlopeLength.txt +++ /dev/null @@ -1,4 +0,0 @@ -Slope Length -ta_hydrology -ParameterRaster|DEM|Elevation|False -OutputRaster|LENGTH|Slope Length diff --git a/python/plugins/processing/algs/saga/description/2.1.3/SoilTextureClassification.txt b/python/plugins/processing/algs/saga/description/2.1.3/SoilTextureClassification.txt deleted file mode 100644 index 9752948d7c3d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/SoilTextureClassification.txt +++ /dev/null @@ -1,7 +0,0 @@ -Soil Texture Classification -grid_analysis -ParameterRaster|SAND|Sand|True -ParameterRaster|SILT|Silt|True -ParameterRaster|CLAY|Clay|True -OutputRaster|TEXTURE|Soil Texture -OutputRaster|SUM|Sum diff --git a/python/plugins/processing/algs/saga/description/2.1.3/SpatialPointPatternAnalysis.txt b/python/plugins/processing/algs/saga/description/2.1.3/SpatialPointPatternAnalysis.txt deleted file mode 100644 index 4a90797d8d5b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/SpatialPointPatternAnalysis.txt +++ /dev/null @@ -1,7 +0,0 @@ -Spatial Point Pattern Analysis -statistics_points -ParameterVector|POINTS|Points|0|False -ParameterNumber|STEP|Vertex Distance [Degree]|None|None|5 -OutputVector|CENTRE|Mean Centre -OutputVector|STDDIST|Standard Distance -OutputVector|BBOX|Bounding Box diff --git a/python/plugins/processing/algs/saga/description/2.1.3/SplitShapesLayerRandomly.txt b/python/plugins/processing/algs/saga/description/2.1.3/SplitShapesLayerRandomly.txt deleted file mode 100644 index 8d2648b4f40d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/SplitShapesLayerRandomly.txt +++ /dev/null @@ -1,7 +0,0 @@ -Split Shapes Layer Randomly -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterNumber|PERCENT|Split ratio (%)|0|100|50 -ParameterBoolean|EXACT |Split exactly|True -OutputVector|A|Group A -OutputVector|B|Group B diff --git a/python/plugins/processing/algs/saga/description/2.1.3/StrahlerOrder.txt b/python/plugins/processing/algs/saga/description/2.1.3/StrahlerOrder.txt deleted file mode 100644 index 87d914794682..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/StrahlerOrder.txt +++ /dev/null @@ -1,4 +0,0 @@ -Strahler Order -ta_channels -ParameterRaster|DEM|Elevation|False -OutputRaster|STRAHLER|Strahler Order diff --git a/python/plugins/processing/algs/saga/description/2.1.3/StreamPowerIndex.txt b/python/plugins/processing/algs/saga/description/2.1.3/StreamPowerIndex.txt deleted file mode 100644 index e33da9b0f9f3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/StreamPowerIndex.txt +++ /dev/null @@ -1,6 +0,0 @@ -Stream Power Index -ta_hydrology -ParameterRaster|SLOPE|Slope|False -ParameterRaster|AREA|Catchment Area|False -ParameterSelection|CONV|Area Conversion|[0] no conversion (areas already given as specific catchment area);[1] 1 / cell size (pseudo specific catchment area) -OutputRaster|SPI|Stream Power Index diff --git a/python/plugins/processing/algs/saga/description/2.1.3/SupervisedClassification.txt b/python/plugins/processing/algs/saga/description/2.1.3/SupervisedClassification.txt deleted file mode 100644 index 96afab5c993b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/SupervisedClassification.txt +++ /dev/null @@ -1,22 +0,0 @@ -Supervised Classification -imagery_classification -ParameterMultipleInput|GRIDS|Grids|3.0|False -ParameterVector|ROI|Training Areas|2|False -ParameterTableField|ROI_ID|Class Identifier|ROI|-1|False -ParameterTable|STATS|Class Statistics|False -ParameterSelection|STATS_SRC|Get Class Statistics from...|[0] training areas;[1] table -ParameterSelection|METHOD|Method|[0] Binary Encoding;[1] Parallelepiped;[2] Minimum Distance;[3] Mahalanobis Distance;[4] Maximum Likelihood;[5] Spectral Angle Mapping; [6] Winner Takes All -ParameterBoolean|NORMALISE|Normalise|False -ParameterNumber|THRESHOLD_DIST|Distance Threshold|0.0|None|0.0 -ParameterNumber|THRESHOLD_PROB|Probability Threshold (Percent)|0.0|100.0|0.0 -ParameterSelection|RELATIVE_PROB|Probability Reference|[0] absolute;[1] relative -ParameterNumber|THRESHOLD_ANGLE|Spectral Angle Threshold (Degree)|0.0|90.0|0.0 -ParameterBoolean|WTA_0|Binary Encoding|False -ParameterBoolean|WTA_1|Parallelepiped|False -ParameterBoolean|WTA_2|Minimum Distance|False -ParameterBoolean|WTA_3|Mahalanobis Distance|False -ParameterBoolean|WTA_4|Maximum Likelihood|False -ParameterBoolean|WTA_5|Spectral Angle Mapping|False -OutputTable|CLASS_INFO|Class Information -OutputRaster|CLASSES|Classification -OutputRaster|QUALITY|Quality \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.3/SurfaceSpecificPoints.txt b/python/plugins/processing/algs/saga/description/2.1.3/SurfaceSpecificPoints.txt deleted file mode 100644 index b0762ce1320b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/SurfaceSpecificPoints.txt +++ /dev/null @@ -1,6 +0,0 @@ -Surface Specific Points -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Method|[0] Mark Highest Neighbour;[1] Opposite Neighbours;[2] Flow Direction;[3] Flow Direction (up and down);[4] Peucker & Douglas -ParameterNumber|THRESHOLD|Threshold|None|None|2.0 -OutputRaster|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.1.3/TerrainRuggednessIndex(TRI).txt b/python/plugins/processing/algs/saga/description/2.1.3/TerrainRuggednessIndex(TRI).txt deleted file mode 100644 index bec50e9d3124..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/TerrainRuggednessIndex(TRI).txt +++ /dev/null @@ -1,9 +0,0 @@ -Terrain Ruggedness Index (TRI) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS|Radius (Cells)|1.0|None|1 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|0.0|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|0.0|None|1.0 -OutputRaster|TRI|Terrain Ruggedness Index (TRI) \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ThinPlateSpline(Global).txt b/python/plugins/processing/algs/saga/description/2.1.3/ThinPlateSpline(Global).txt deleted file mode 100644 index 69d1337d01a5..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ThinPlateSpline(Global).txt +++ /dev/null @@ -1,10 +0,0 @@ -Thin Plate Spline (Global) -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterNumber|REGULARISATION|Regularisation|0.0000|None|0.0001 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ThinPlateSpline(Local).txt b/python/plugins/processing/algs/saga/description/2.1.3/ThinPlateSpline(Local).txt deleted file mode 100644 index 4cd6388b4936..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ThinPlateSpline(Local).txt +++ /dev/null @@ -1,15 +0,0 @@ -Thin Plate Spline (Local) -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterNumber|REGULARISATION|Regularisation|0.0000|None|0.0001 -ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global -ParameterNumber|SEARCH_RADIUS|Search Radius|0.0|None|1000.0 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MAX|Maximum Number of Points|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ThresholdBuffer.txt b/python/plugins/processing/algs/saga/description/2.1.3/ThresholdBuffer.txt deleted file mode 100644 index ef26b40a4852..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ThresholdBuffer.txt +++ /dev/null @@ -1,8 +0,0 @@ -Threshold Buffer -grid_tools -ParameterRaster|FEATURES|Features Grid|False -ParameterRaster|VALUE|Value Grid|False -ParameterRaster|THRESHOLDGRID|Threshold Grid|True -ParameterNumber|THRESHOLD|Threshold|None|None|0.0 -ParameterSelection|THRESHOLDTYPE|Threshold Type|[0] Absolute;[1] Relative from cell value -OutputRaster|BUFFER|Buffer Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/TopographicCorrection.txt b/python/plugins/processing/algs/saga/description/2.1.3/TopographicCorrection.txt deleted file mode 100644 index 7f80c2469572..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/TopographicCorrection.txt +++ /dev/null @@ -1,11 +0,0 @@ -Topographic Correction -ta_lighting -ParameterRaster|DEM|Elevation|False -ParameterRaster|ORIGINAL|Original Image|False -ParameterNumber|AZI|Azimuth|None|None|180.0 -ParameterNumber|HGT|Height|None|None|45.0 -ParameterSelection|METHOD|Method|[0] Cosine Correction (Teillet et al. 1982);[1] Cosine Correction (Civco 1989);[2] Minnaert Correction;[3] Minnaert Correction with Slope (Riano et al. 2003);[4] Minnaert Correction with Slope (Law & Nichol 2004);[5] C Correction;[6] Normalization (after Civco, modified by Law & Nichol) -ParameterNumber|MINNAERT|Minnaert Correction|None|None|0.5 -ParameterNumber|MAXCELLS|Maximum Cells (C Correction Analysis)|None|None|1000 -ParameterSelection|MAXVALUE|Value Range|[0] 1 byte (0-255);[1] 2 byte (0-65535) -OutputRaster|CORRECTED|Corrected Image diff --git a/python/plugins/processing/algs/saga/description/2.1.3/TopographicWetnessIndex(TWI).txt b/python/plugins/processing/algs/saga/description/2.1.3/TopographicWetnessIndex(TWI).txt deleted file mode 100644 index b2d63ccea8d5..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/TopographicWetnessIndex(TWI).txt +++ /dev/null @@ -1,8 +0,0 @@ -Topographic Wetness Index (TWI) -ta_hydrology -ParameterRaster|SLOPE|Slope|False -ParameterRaster|AREA|Catchment Area|False -ParameterRaster|TRANS|Transmissivity|True -ParameterSelection|CONV|Area Conversion|[0] no conversion (areas already given as specific catchment area);[1] 1 / cell size (pseudo specific catchment area)|1 -ParameterSelection|METHOD|Method (TWI)|[0] Standard;[1] TOPMODEL -OutputRaster|TWI|Topographic Wetness Index diff --git a/python/plugins/processing/algs/saga/description/2.1.3/Transectthroughpolygonshapefile.txt b/python/plugins/processing/algs/saga/description/2.1.3/Transectthroughpolygonshapefile.txt deleted file mode 100644 index 99eb6654f605..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/Transectthroughpolygonshapefile.txt +++ /dev/null @@ -1,6 +0,0 @@ -Transect through polygon shapefile -shapes_transect -ParameterVector|TRANSECT|Line Transect(s)|1|False -ParameterVector|THEME|Theme|-1|False -ParameterTableField|THEME_FIELD|Theme Field|THEME|-1|False -OutputTable|TRANSECT_RESULT|Result table diff --git a/python/plugins/processing/algs/saga/description/2.1.3/TransposeGrids.txt b/python/plugins/processing/algs/saga/description/2.1.3/TransposeGrids.txt deleted file mode 100644 index 8ff6bff31e87..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/TransposeGrids.txt +++ /dev/null @@ -1,6 +0,0 @@ -Transpose Grids -grid_tools -ParameterRaster|GRIDS|Input Grid|False -ParameterBoolean|MIRROR_X|Mirror Horizontally|False -ParameterBoolean|MIRROR_Y|Mirror Vertically|False -OutputRaster|TRANSPOSED|Transposed Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.3/UniversalKriging(Global).txt b/python/plugins/processing/algs/saga/description/2.1.3/UniversalKriging(Global).txt deleted file mode 100644 index 343f13b5ca02..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/UniversalKriging(Global).txt +++ /dev/null @@ -1,21 +0,0 @@ -Universal Kriging (Global) -statistics_kriging -ParameterVector|POINTS|Points|0|False -ParameterTableField|ZFIELD|Attribute|POINTS|-1|False -ParameterSelection|TQUALITY|Type of Quality Measure|[0] standard deviation;[1] variance -ParameterBoolean|LOG|Logarithmic Transformation|True -ParameterBoolean|BLOCK|Block Kriging|True -ParameterNumber|DBLOCK|Block Size|0|None|100 -ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0 -ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100 -ParameterNumber|VAR_NSKIP|Skip|1|None|1 -ParameterString|VAR_MODEL|Variogram Model|a + b * x -ParameterMultipleInput|GRIDS|Input Grids|3|True -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterBoolean|COORDS|Coordinates|False -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_PREDICTION|Prediction -OutputRaster|TARGET_VARIANCE|Quality Measure \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.3/UniversalKriging.txt b/python/plugins/processing/algs/saga/description/2.1.3/UniversalKriging.txt deleted file mode 100644 index 7ae163f785cf..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/UniversalKriging.txt +++ /dev/null @@ -1,27 +0,0 @@ -Universal Kriging -statistics_kriging -ParameterVector|POINTS|Points|0|False -ParameterTableField|ZFIELD|Attribute|POINTS|-1|False -ParameterSelection|TQUALITY|Type of Quality Measure|[0] standard deviation;[1] variance -ParameterBoolean|LOG|Logarithmic Transformation|True -ParameterBoolean|BLOCK|Block Kriging|True -ParameterNumber|DBLOCK|Block Size|0|None|100 -ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0 -ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100 -ParameterNumber|VAR_NSKIP|Skip|1|None|1 -ParameterString|VAR_MODEL|Variogram Model|a + b * x -ParameterMultipleInput|GRIDS|Input Grids|3|True -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterBoolean|COORDS|Coordinates|False -ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global -ParameterNumber|SEARCH_RADIUS|Maximum Search Distance|0|None|1000 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_PREDICTION|Prediction -OutputRaster|TARGET_VARIANCE|Quality Measure diff --git a/python/plugins/processing/algs/saga/description/2.1.3/UpslopeArea.txt b/python/plugins/processing/algs/saga/description/2.1.3/UpslopeArea.txt deleted file mode 100644 index 903e4ba30111..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/UpslopeArea.txt +++ /dev/null @@ -1,10 +0,0 @@ -Upslope Area|4 -ta_hydrology -ParameterRaster|TARGET|Target Area|True -ParameterNumber|TARGET_PT_X|Target X coordinate|None|None|0.0 -ParameterNumber|TARGET_PT_Y|Target Y coordinate|None|None|0.0 -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SINKROUTE|Sink Routes|True -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Deterministic Infinity;[2] Multiple Flow Direction -ParameterNumber|CONVERGE|Convergence|None|None|1.1 -OutputRaster|AREA|Upslope Area diff --git a/python/plugins/processing/algs/saga/description/2.1.3/UserDefinedFilter.txt b/python/plugins/processing/algs/saga/description/2.1.3/UserDefinedFilter.txt deleted file mode 100644 index e28c9e4eac0e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/UserDefinedFilter.txt +++ /dev/null @@ -1,6 +0,0 @@ -User Defined Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterTable|FILTER|Filter Matrix|True -ParameterFixedTable|FILTER_3X3|Default Filter Matrix (3x3)|3|1;2;3|True -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.3/VariogramCloud.txt b/python/plugins/processing/algs/saga/description/2.1.3/VariogramCloud.txt deleted file mode 100644 index 74d1463978cc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/VariogramCloud.txt +++ /dev/null @@ -1,7 +0,0 @@ -Variogram Cloud -statistics_points -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterNumber|DISTMAX|Maximum Distance|None|None|0.0 -ParameterNumber|NSKIP|Skip Number|None|None|1 -OutputTable|RESULT|Variogram Cloud diff --git a/python/plugins/processing/algs/saga/description/2.1.3/VariogramSurface.txt b/python/plugins/processing/algs/saga/description/2.1.3/VariogramSurface.txt deleted file mode 100644 index 4f09961aab9c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/VariogramSurface.txt +++ /dev/null @@ -1,9 +0,0 @@ -Variogram Surface -statistics_points -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterNumber|DISTCOUNT|Number of Distance Classes|1.0|None|10 -ParameterNumber|NSKIP|Skip Number|None|None|1 -OutputRaster|COUNT|Number of Pairs -OutputRaster|VARIANCE|Variogram Surface -OutputRaster|COVARIANCE|Covariance Surface diff --git a/python/plugins/processing/algs/saga/description/2.1.3/VectorRuggednessMeasure(VRM).txt b/python/plugins/processing/algs/saga/description/2.1.3/VectorRuggednessMeasure(VRM).txt deleted file mode 100644 index 072311d5aaf6..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/VectorRuggednessMeasure(VRM).txt +++ /dev/null @@ -1,9 +0,0 @@ -Vector Ruggedness Measure (VRM) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS|Radius (Cells)|None|None|1 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|0.0|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|0.0|None|1 -OutputRaster|VRM|Vector Terrain Ruggedness (VRM) diff --git a/python/plugins/processing/algs/saga/description/2.1.3/VectorisingGridClasses.txt b/python/plugins/processing/algs/saga/description/2.1.3/VectorisingGridClasses.txt deleted file mode 100644 index 0057f58f504b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/VectorisingGridClasses.txt +++ /dev/null @@ -1,7 +0,0 @@ -Vectorising Grid Classes -shapes_grid -ParameterRaster|GRID|Grid|False -ParameterSelection|CLASS_ALL|Class Selection|[0] one single class specified by class identifier;[1] all classes|1 -ParameterNumber|CLASS_ID|Class Identifier|None|None|0 -ParameterSelection|SPLIT|Vectorised class as...|[0] one single (multi-)polygon object;[1] each island as separated polygon|1 -OutputVector|POLYGONS|Vectorized diff --git a/python/plugins/processing/algs/saga/description/2.1.3/VegetationIndex(SlopeBased).txt b/python/plugins/processing/algs/saga/description/2.1.3/VegetationIndex(SlopeBased).txt deleted file mode 100644 index fd89e6a18416..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/VegetationIndex(SlopeBased).txt +++ /dev/null @@ -1,13 +0,0 @@ -Vegetation Index (Slope Based) -imagery_tools -ParameterRaster|NIR|Near Infrared Reflectance|False -ParameterRaster|RED|Red Reflectance|False -ParameterNumber|SOIL|Soil Adjustment Factor|0.0|1.0|0.5 -OutputRaster|DVI|Difference Vegetation Index -OutputRaster|NDVI|Normalized Difference Vegetation Index -OutputRaster|RVI|Ratio Vegetation Index -OutputRaster|NRVI|Normalized Ratio Vegetation Index -OutputRaster|TVI|Transformed Vegetation Index -OutputRaster|CTVI|Corrected Transformed Vegetation Index -OutputRaster|TTVI|Thiam's Transformed Vegetation Index -OutputRaster|SAVI|Soil Adjusted Vegetation Index diff --git a/python/plugins/processing/algs/saga/description/2.1.3/VerticalDistancetoChannelNetwork.txt b/python/plugins/processing/algs/saga/description/2.1.3/VerticalDistancetoChannelNetwork.txt deleted file mode 100644 index 5e1c7b29b27b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/VerticalDistancetoChannelNetwork.txt +++ /dev/null @@ -1,8 +0,0 @@ -Vertical Distance to Channel Network -ta_channels -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|CHANNELS|Channel Network|False -ParameterNumber|THRESHOLD|Tension Threshold [Percentage of Cell Size]|None|None|1 -ParameterBoolean|NOUNDERGROUND |Keep Base Level below Surface|True -OutputRaster|DISTANCE|Vertical Distance to Channel Network -OutputRaster|BASELEVEL|Channel Network Base Level diff --git a/python/plugins/processing/algs/saga/description/2.1.3/WaterRetentionCapacity.txt b/python/plugins/processing/algs/saga/description/2.1.3/WaterRetentionCapacity.txt deleted file mode 100644 index ccc8c6c4b12f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/WaterRetentionCapacity.txt +++ /dev/null @@ -1,6 +0,0 @@ -Water Retention Capacity -sim_hydrology -ParameterVector|SHAPES|Plot Holes|-1|False -ParameterRaster|DEM|DEM|False -OutputVector|OUTPUT|Final Parameters -OutputRaster|RETENTION|Water Retention Capacity diff --git a/python/plugins/processing/algs/saga/description/2.1.3/WatershedBasins.txt b/python/plugins/processing/algs/saga/description/2.1.3/WatershedBasins.txt deleted file mode 100644 index d79f537ba368..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/WatershedBasins.txt +++ /dev/null @@ -1,7 +0,0 @@ -Watershed Basins -ta_channels -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|CHANNELS|Channel Network|False -ParameterRaster|SINKROUTE|Sink Route|True -ParameterNumber|MINSIZE|Min. Size|None|None|0 -OutputRaster|BASINS|Watershed Basins diff --git a/python/plugins/processing/algs/saga/description/2.1.3/WatershedSegmentation.txt b/python/plugins/processing/algs/saga/description/2.1.3/WatershedSegmentation.txt deleted file mode 100644 index 02edfa11f2e4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/WatershedSegmentation.txt +++ /dev/null @@ -1,12 +0,0 @@ -Watershed Segmentation -imagery_segmentation -ParameterRaster|GRID|Grid|False -ParameterSelection|OUTPUT|Output|[0] Seed Value;[1] Segment ID -ParameterSelection|DOWN|Method|[0] Minima;[1] Maxima -ParameterSelection|JOIN|Join Segments based on Threshold Value|[0] do not join;[1] seed to saddle difference;[2] seeds difference -ParameterNumber|THRESHOLD|Threshold|None|None|0 -ParameterBoolean|EDGE |Allow Edge Pixels to be Seeds|True -ParameterBoolean|BBORDERS |Borders|True -OutputRaster|SEGMENTS|Segments -OutputVector|SEEDS|Seed Points -OutputRaster|BORDERS|Borders diff --git a/python/plugins/processing/algs/saga/description/2.1.3/WindEffect(WindwardLeewardIndex).txt b/python/plugins/processing/algs/saga/description/2.1.3/WindEffect(WindwardLeewardIndex).txt deleted file mode 100644 index 57495dc57ce9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/WindEffect(WindwardLeewardIndex).txt +++ /dev/null @@ -1,15 +0,0 @@ -Wind effect|Wind Effect (Windward / Leeward Index) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterRaster|DIR|Wind Direction|True -ParameterRaster|LEN|Wind Speed|True -ParameterNumber|DIR_CONST|Constant Wind Direction [Degree]|None|None|135 -ParameterBoolean|OLDVER |Old Version|True -ParameterNumber|MAXDIST|Search Distance [km]|0.0|None|300.0 -ParameterNumber|ACCEL|Acceleration|0.0|None|1.5 -ParameterBoolean|PYRAMIDS |Use Pyramids|True -ParameterSelection|DIR_UNITS|Wind Direction Units|[0] radians;[1] degree -ParameterNumber|LEN_SCALE|Wind Speed Scale Factor|0.0|None|1.0 -OutputRaster|EFFECT|Wind Effect -OutputRaster|LUV|Windward Effect -OutputRaster|LEE|Leeward Effect diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ZonalGridStatistics.txt b/python/plugins/processing/algs/saga/description/2.1.3/ZonalGridStatistics.txt deleted file mode 100644 index 10d91c892d4d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.3/ZonalGridStatistics.txt +++ /dev/null @@ -1,8 +0,0 @@ -Zonal Grid Statistics -statistics_grid -ParameterRaster|ZONES|Zone Grid|False -ParameterMultipleInput|CATLIST|Categorial Grids|3|True -ParameterMultipleInput|STATLIST|Grids to analyse|3|True -ParameterRaster|ASPECT|Aspect|True -ParameterBoolean|SHORTNAMES|Short Field Names|True -OutputTable|OUTTAB|Zonal Statistics diff --git a/python/plugins/processing/algs/saga/description/2.1.4/AccumulatedCost(Anisotropic).txt b/python/plugins/processing/algs/saga/description/2.1.4/AccumulatedCost(Anisotropic).txt deleted file mode 100644 index b50c05a952ac..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/AccumulatedCost(Anisotropic).txt +++ /dev/null @@ -1,8 +0,0 @@ -Accumulated Cost (Anisotropic) -grid_analysis -ParameterRaster|COST|Cost Grid|False -ParameterRaster|DIRECTION|Direction of max cost|False -ParameterRaster|POINTS|Destination Points|False -ParameterNumber|K|k factor|None|None|1 -ParameterNumber|THRESHOLD|Threshold for different route|None|None|0 -OutputRaster|ACCCOST|Accumulated Cost diff --git a/python/plugins/processing/algs/saga/description/2.1.4/AccumulatedCost(Isotropic).txt b/python/plugins/processing/algs/saga/description/2.1.4/AccumulatedCost(Isotropic).txt deleted file mode 100644 index e4d4a49dd502..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/AccumulatedCost(Isotropic).txt +++ /dev/null @@ -1,7 +0,0 @@ -Accumulated Cost (Isotropic) -grid_analysis -ParameterRaster|COST|Cost Grid|False -ParameterRaster|POINTS|Destination Points|False -ParameterNumber|THRESHOLD|Threshold for different route|None|None|0.0 -OutputRaster|ACCCOST|Accumulated Cost -OutputRaster|CLOSESTPT|Closest Point diff --git a/python/plugins/processing/algs/saga/description/2.1.4/AddCoordinatestopoints.txt b/python/plugins/processing/algs/saga/description/2.1.4/AddCoordinatestopoints.txt deleted file mode 100644 index d4f6a0efc417..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/AddCoordinatestopoints.txt +++ /dev/null @@ -1,4 +0,0 @@ -Add Coordinates to points -shapes_points -ParameterVector|INPUT|Points|0|False -OutputVector|OUTPUT|Points with coordinates diff --git a/python/plugins/processing/algs/saga/description/2.1.4/AddGridValuestoPoints.txt b/python/plugins/processing/algs/saga/description/2.1.4/AddGridValuestoPoints.txt deleted file mode 100644 index 56164a8c5982..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/AddGridValuestoPoints.txt +++ /dev/null @@ -1,7 +0,0 @@ -Add Grid Values to Points -shapes_grid -ParameterVector|SHAPES|Points|0|False -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|INTERPOL|Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -OutputVector|RESULT|Result -AllowUnmatching \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/AddGridValuestoShapes.txt b/python/plugins/processing/algs/saga/description/2.1.4/AddGridValuestoShapes.txt deleted file mode 100644 index 17959756198b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/AddGridValuestoShapes.txt +++ /dev/null @@ -1,7 +0,0 @@ -Add Grid Values to Shapes -shapes_grid -ParameterVector|SHAPES|Shapes|-1|False -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|INTERPOL|Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -OutputVector|RESULT|Result -AllowUnmatching \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/AddPolygonAttributestoPoints.txt b/python/plugins/processing/algs/saga/description/2.1.4/AddPolygonAttributestoPoints.txt deleted file mode 100644 index 1515e6a6b9fe..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/AddPolygonAttributestoPoints.txt +++ /dev/null @@ -1,6 +0,0 @@ -Add Polygon Attributes to Points -shapes_points -ParameterVector|INPUT|Points|0|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|FIELDS|Attribute|POLYGONS|-1|False -OutputVector|OUTPUT|Result \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/Aggregate.txt b/python/plugins/processing/algs/saga/description/2.1.4/Aggregate.txt deleted file mode 100644 index eec522c48b44..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/Aggregate.txt +++ /dev/null @@ -1,5 +0,0 @@ -Aggregate -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterNumber|SIZE|Aggregation Size|None|None|3 -ParameterSelection|METHOD|Method|[0] Sum;[1] Min;[2] Max diff --git a/python/plugins/processing/algs/saga/description/2.1.4/AggregatePointObservations.txt b/python/plugins/processing/algs/saga/description/2.1.4/AggregatePointObservations.txt deleted file mode 100644 index 98bb0119b53e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/AggregatePointObservations.txt +++ /dev/null @@ -1,14 +0,0 @@ -Aggregate Point Observations -shapes_points -ParameterVector|REFERENCE|Reference Points|-1|False -ParameterTableField|REFERENCE_ID|ID|REFERENCE|-1|False -ParameterTable|OBSERVATIONS|Observations|False -ParameterTableField|X|X|OBSERVATIONS|-1|False -ParameterTableField|Y|Y|OBSERVATIONS|-1|False -ParameterTableField|TRACK|Track|OBSERVATIONS|-1|False -ParameterTableField|DATE|Date|OBSERVATIONS|-1|False -ParameterTableField|TIME|Time|OBSERVATIONS|-1|False -ParameterTableField|PARAMETER|Parameter|OBSERVATIONS|-1|False -ParameterNumber|EPS_TIME|Maximum Time Span (Seconds)|None|None|60.0 -ParameterNumber|EPS_SPACE|Maximum Distance|None|None|0.002 -OutputTable|AGGREGATED|Aggregated diff --git a/python/plugins/processing/algs/saga/description/2.1.4/AggregationIndex.txt b/python/plugins/processing/algs/saga/description/2.1.4/AggregationIndex.txt deleted file mode 100644 index c5338291f3d4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/AggregationIndex.txt +++ /dev/null @@ -1,5 +0,0 @@ -Aggregation Index -grid_analysis -ParameterRaster|INPUT|Input Grid|False -ParameterNumber|MAXNUMCLASS|Max. Number of Classes|None|None|5 -OutputTable|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.1.4/AnalyticalHierarchyProcess.txt b/python/plugins/processing/algs/saga/description/2.1.4/AnalyticalHierarchyProcess.txt deleted file mode 100644 index 426c7817eb0f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/AnalyticalHierarchyProcess.txt +++ /dev/null @@ -1,5 +0,0 @@ -Analytical Hierarchy Process -grid_analysis -ParameterMultipleInput|GRIDS|Input Grids|3|False -ParameterTable|TABLE|Pairwise Comparisons Table|False -OutputRaster|OUTPUT|Output Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/AnalyticalHillshading.txt b/python/plugins/processing/algs/saga/description/2.1.4/AnalyticalHillshading.txt deleted file mode 100644 index 524651cdff4b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/AnalyticalHillshading.txt +++ /dev/null @@ -1,8 +0,0 @@ -Analytical Hillshading -ta_lighting -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Shading Method|[0] Standard;[1] Standard (max. 90Degree);[2] Combined Shading;[3] Ray Tracing -ParameterNumber|AZIMUTH|Azimuth [Degree]|None|None|315.0 -ParameterNumber|DECLINATION|Declination [Degree]|None|None|45.0 -ParameterNumber|EXAGGERATION|Exaggeration|None|None|4.0 -OutputRaster|SHADE|Analytical Hillshading diff --git a/python/plugins/processing/algs/saga/description/2.1.4/B-SplineApproximation.txt b/python/plugins/processing/algs/saga/description/2.1.4/B-SplineApproximation.txt deleted file mode 100644 index 79a2bf5a6929..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/B-SplineApproximation.txt +++ /dev/null @@ -1,10 +0,0 @@ -B-Spline Approximation -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterNumber|LEVEL|Resolution|0.001|None|1.0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/BurnStreamNetworkintoDEM.txt b/python/plugins/processing/algs/saga/description/2.1.4/BurnStreamNetworkintoDEM.txt deleted file mode 100644 index 22f289c5682f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/BurnStreamNetworkintoDEM.txt +++ /dev/null @@ -1,8 +0,0 @@ -Burn Stream Network into DEM -ta_preprocessor -ParameterRaster|DEM|DEM|False -ParameterRaster|STREAM|Streams|False -ParameterRaster|FLOWDIR|Flow direction|False -ParameterSelection|METHOD|Method|[0] simply decrease cell's value by epsilon;[1] lower cell's value to neighbours minimum value minus epsilon;[2] trace stream network downstream -ParameterNumber|EPSILON|Epsilon|0.0|None|1.0 -OutputRaster|BURN|Processed DEM \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/CatchmentArea(FlowTracing).txt b/python/plugins/processing/algs/saga/description/2.1.4/CatchmentArea(FlowTracing).txt deleted file mode 100644 index 827557d5beeb..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/CatchmentArea(FlowTracing).txt +++ /dev/null @@ -1,17 +0,0 @@ -Catchment Area (Flow Tracing) -ta_hydrology -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SINKROUTE|Sink Routes|True -ParameterRaster|WEIGHT|Weight|True -ParameterRaster|MATERIAL|Material|True -ParameterRaster|VAL_INPUT|Input for Mean over Catchment Calculation|True -ParameterRaster|TARGET|Target|True -ParameterNumber|STEP|Step|None|None|1 -ParameterSelection|METHOD|Method|[0] Rho 8;[1] Kinematic Routing Algorithm;[2] DEMON -ParameterNumber|MINDQV|DEMON - Min. DQV|None|None|0.0 -ParameterBoolean|CORRECT|Flow Correction|True -OutputRaster|CAREA|Catchment Area -OutputRaster|VAL_MEAN|Mean over Catchment -OutputRaster|ACCU_TOT|Total accumulated Material -OutputRaster|ACCU_LEFT|Accumulated Material from left side -OutputRaster|ACCU_RIGHT|Accumulated Material from right side \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/CatchmentArea(Parallel).txt b/python/plugins/processing/algs/saga/description/2.1.4/CatchmentArea(Parallel).txt deleted file mode 100644 index a62ad9313047..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/CatchmentArea(Parallel).txt +++ /dev/null @@ -1,5 +0,0 @@ -Catchment Area|Catchment Area (Parallel) -ta_hydrology -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Rho 8;[2] Braunschweiger Reliefmodell;[3] Deterministic Infinity;[4] Multiple Flow Direction;[5] Multiple Triangular Flow Directon -OutputRaster|CAREA|Catchment Area \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/CatchmentArea(Recursive).txt b/python/plugins/processing/algs/saga/description/2.1.4/CatchmentArea(Recursive).txt deleted file mode 100644 index d31635f5284d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/CatchmentArea(Recursive).txt +++ /dev/null @@ -1,18 +0,0 @@ -Catchment Area (Recursive) -ta_hydrology -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SINKROUTE|Sink Routes|True -ParameterRaster|WEIGHT|Weight|True -ParameterRaster|MATERIAL|Material|True -ParameterRaster|VAL_INPUT|Input for Mean over Catchment Calculation|True -ParameterRaster|TARGET|Target|True -ParameterNumber|STEP|Step|None|None|1 -ParameterRaster|TARGETS|Target Areas|True -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Rho 8;[2] Deterministic Infinity;[3] Multiple Flow Direction -ParameterNumber|CONVERGENCE|Convergence|None|None|1.1 -OutputRaster|CAREA|Catchment Area -OutputRaster|VAL_MEAN|Mean over Catchment -OutputRaster|ACCU_TOT|Total accumulated Material -OutputRaster|ACCU_LEFT|Accumulated Material from left side -OutputRaster|ACCU_RIGHT|Accumulated Material from right side -OutputRaster|FLOWLEN|Flow Path Length diff --git a/python/plugins/processing/algs/saga/description/2.1.4/CellBalance.txt b/python/plugins/processing/algs/saga/description/2.1.4/CellBalance.txt deleted file mode 100644 index 80edebcf2887..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/CellBalance.txt +++ /dev/null @@ -1,7 +0,0 @@ -Cell Balance -ta_hydrology -ParameterRaster|DEM|Elevation|False -ParameterRaster|WEIGHTS|Parameter|True -ParameterNumber|WEIGHTS_DEFAULT|Default Weight|0.0|None|1.0 -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Multiple Flow Direction -OutputRaster|BALANCE|Cell Balance \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ChangeDateFormat.txt b/python/plugins/processing/algs/saga/description/2.1.4/ChangeDateFormat.txt deleted file mode 100644 index 9adfcd0884d5..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ChangeDateFormat.txt +++ /dev/null @@ -1,7 +0,0 @@ -Change Date Format -table_tools -ParameterTable|TABLE|Table|False -ParameterTableField|FIELD|Date Field|TABLE|-1|False -ParameterSelection|FMT_IN|Input Format|[0] dd.mm.yy;[1] yy.mm.dd;[2] dd:mm:yy;[3] yy:mm:dd;[4] ddmmyyyy, fix size;[5] yyyymmdd, fix size;[6] ddmmyy, fix size;[7] yymmdd, fix size;[8] Julian Day -ParameterSelection|FMT_OUT|Output Format|[0] dd.mm.yy;[1] yy.mm.dd;[2] dd:mm:yy;[3] yy:mm:dd;[4] ddmmyyyy, fix size;[5] yyyymmdd, fix size;[6] ddmmyy, fix size;[7] yymmdd, fix size;[8] Julian Day -OutputTable|OUTPUT|Output diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ChangeDetection.txt b/python/plugins/processing/algs/saga/description/2.1.4/ChangeDetection.txt deleted file mode 100644 index f171b9fd6ddc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ChangeDetection.txt +++ /dev/null @@ -1,16 +0,0 @@ -Change Detection -imagery_classification -ParameterRaster|INITIAL|Initial State|False -ParameterTable|INI_LUT|Look-up Table|True -ParameterTableField|INI_LUT_MIN|Value|INI_LUT|-1|False -ParameterTableField|INI_LUT_MAX|Value (Maximum)|INI_LUT|-1|False -ParameterTableField|INI_LUT_NAM|Name|INI_LUT|-1|False -ParameterRaster|FINAL|Final State|False -ParameterTable|FIN_LUT|Look-up Table|True -ParameterTableField|FIN_LUT_MIN|Value|FIN_LUT|-1|False -ParameterTableField|FIN_LUT_MAX|Value (Maximum)|FIN_LUT|-1|False -ParameterTableField|FIN_LUT_NAM|Name|FIN_LUT|-1|False -ParameterBoolean|NOCHANGE |Report Unchanged Classes|True -ParameterSelection|OUTPUT|Output as...|[0] cells;[1] percent;[2] area -OutputRaster|CHANGE|Changes -OutputTable|CHANGES|Changes diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ChangeGridValues.txt b/python/plugins/processing/algs/saga/description/2.1.4/ChangeGridValues.txt deleted file mode 100644 index 8d3bd69e29ab..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ChangeGridValues.txt +++ /dev/null @@ -1,6 +0,0 @@ -Change Grid Values -grid_tools -ParameterRaster|GRID_IN|Grid|False -ParameterSelection|METHOD|Replace Condition|[0] Grid value equals low value;[1] Low value < grid value < high value;[2] Low value <= grid value < high value -ParameterFixedTable|LOOKUP|Lookup Table|3|Low Value;High Value;Replace with|False -OutputRaster|GRID_OUT|Changed Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ChangeTimeFormat.txt b/python/plugins/processing/algs/saga/description/2.1.4/ChangeTimeFormat.txt deleted file mode 100644 index 0a384af3194d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ChangeTimeFormat.txt +++ /dev/null @@ -1,7 +0,0 @@ -Change Time Format -table_tools -ParameterTable|TABLE|Table|False -ParameterTableField|FIELD|Time Field|TABLE|-1|False -ParameterSelection|FMT_IN|Input Format|[0] hh.mm.ss;[1] hh:mm:ss;[2] hhmmss, fix size;[3] hours;[4] minutes;[5] seconds -ParameterSelection|FMT_OUT|Output Format|[0] hh.mm.ss;[1] hh:mm:ss;[2] hhmmss, fix size;[3] hours;[4] minutes;[5] seconds -OutputTable|OUTPUT|Output diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ChannelNetwork.txt b/python/plugins/processing/algs/saga/description/2.1.4/ChannelNetwork.txt deleted file mode 100644 index b7bf16f1db10..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ChannelNetwork.txt +++ /dev/null @@ -1,14 +0,0 @@ -Channel Network -ta_channels -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SINKROUTE|Flow Direction|True -ParameterRaster|INIT_GRID|Initiation Grid|False -ParameterSelection|INIT_METHOD|Initiation Type|[0] Less than;[1] Equals;[2] Greater than -ParameterNumber|INIT_VALUE|Initiation Threshold|None|None|0.0 -ParameterRaster|DIV_GRID|Divergence|True -ParameterNumber|DIV_CELLS|Tracing: Max. Divergence|None|None|10 -ParameterRaster|TRACE_WEIGHT|Tracing: Weight|True -ParameterNumber|MINLEN|Min. Segment Length|0.0|None|10 -OutputRaster|CHNLNTWRK|Channel Network -OutputRaster|CHNLROUTE|Channel Direction -OutputVector|SHAPES|Channel Network diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ChannelNetworkandDrainageBasins.txt b/python/plugins/processing/algs/saga/description/2.1.4/ChannelNetworkandDrainageBasins.txt deleted file mode 100644 index 17e8ccad2702..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ChannelNetworkandDrainageBasins.txt +++ /dev/null @@ -1,11 +0,0 @@ -Channel Network and Drainage Basins -ta_channels -ParameterRaster|DEM|Elevation|False -ParameterNumber|THRESHOLD|Threshold|None|None|5.0 -OutputRaster|DIRECTION|Flow Direction -OutputRaster|CONNECTION|Flow Connectivity -OutputRaster|ORDER|Strahler Order -OutputRaster|BASIN|Drainage Basins -OutputVector|SEGMENTS|Channels -OutputVector|BASINS|Drainage Basins -OutputVector|NODES|Junctions diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ClipGridwithPolygon.txt b/python/plugins/processing/algs/saga/description/2.1.4/ClipGridwithPolygon.txt deleted file mode 100644 index b76d1a2f7da0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ClipGridwithPolygon.txt +++ /dev/null @@ -1,5 +0,0 @@ -Clip Grid with Polygon -shapes_grid -ParameterRaster|INPUT|Input|False -ParameterVector|POLYGONS|Polygons|2|False -OutputRaster|OUTPUT|Clipped diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ClipPointswithPolygons.txt b/python/plugins/processing/algs/saga/description/2.1.4/ClipPointswithPolygons.txt deleted file mode 100644 index 90b8f12176c8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ClipPointswithPolygons.txt +++ /dev/null @@ -1,7 +0,0 @@ -Clip Points with Polygons -shapes_points -ParameterVector|POINTS|Points|0|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|FIELD|Add Attribute to Clipped Points|POLYGONS|-1|False -ParameterSelection|METHOD|Clipping Options|[0] one layer for all points;[1] separate layer for each polygon -OutputVector|CLIPS|Clipped Points diff --git a/python/plugins/processing/algs/saga/description/2.1.4/CloseGaps.txt b/python/plugins/processing/algs/saga/description/2.1.4/CloseGaps.txt deleted file mode 100644 index ffa217f19916..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/CloseGaps.txt +++ /dev/null @@ -1,6 +0,0 @@ -Close Gaps -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterRaster|MASK|Mask|True -ParameterNumber|THRESHOLD|Tension Threshold|None|None|0.1 -OutputRaster|RESULT|Changed Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/CloseGapswithSpline.txt b/python/plugins/processing/algs/saga/description/2.1.4/CloseGapswithSpline.txt deleted file mode 100644 index cd70312d7fdc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/CloseGapswithSpline.txt +++ /dev/null @@ -1,12 +0,0 @@ -Close Gaps with Spline -grid_tools -ParameterRaster|GRID|Grid|False -ParameterRaster|MASK|Mask|True -ParameterNumber|MAXGAPCELLS|Only Process Gaps with Less Cells|None|None|0 -ParameterNumber|MAXPOINTS|Maximum Points|None|None|1000 -ParameterNumber|LOCALPOINTS|Number of Points for Local Interpolation|None|None|10 -ParameterBoolean|EXTENDED |Extended Neighourhood|True -ParameterSelection|NEIGHBOURS|Neighbourhood|[0] Neumann;[1] Moore -ParameterNumber|RADIUS|Radius (Cells)|None|None|0 -ParameterNumber|RELAXATION|Relaxation|None|None|0.0 -OutputRaster|CLOSED|Closed Gaps Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/CloseOneCellGaps.txt b/python/plugins/processing/algs/saga/description/2.1.4/CloseOneCellGaps.txt deleted file mode 100644 index d3b4aa0318bc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/CloseOneCellGaps.txt +++ /dev/null @@ -1,4 +0,0 @@ -Close One Cell Gaps -grid_tools -ParameterRaster|INPUT|Grid|False -OutputRaster|RESULT|Changed Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ClusterAnalysisforGrids.txt b/python/plugins/processing/algs/saga/description/2.1.4/ClusterAnalysisforGrids.txt deleted file mode 100644 index 0c477e9e46ea..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ClusterAnalysisforGrids.txt +++ /dev/null @@ -1,9 +0,0 @@ -Cluster Analysis for Grids -imagery_classification -ParameterMultipleInput|GRIDS|Grids|3.0|False -ParameterSelection|METHOD|Method|[0] Iterative Minimum Distance (Forgy 1965);[1] Hill-Climbing (Rubin 1967);[2] Combined Minimum Distance / Hillclimbing -ParameterNumber|NCLUSTER|Clusters|None|None|5 -ParameterBoolean|NORMALISE |Normalise|True -ParameterBoolean|OLDVERSION |Old Version|True -OutputRaster|CLUSTER|Clusters -OutputTable|STATISTICS|Statistics diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ContourLinesfromGrid.txt b/python/plugins/processing/algs/saga/description/2.1.4/ContourLinesfromGrid.txt deleted file mode 100644 index d0924e0d6a9f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ContourLinesfromGrid.txt +++ /dev/null @@ -1,8 +0,0 @@ -Contour Lines from Grid -shapes_grid -ParameterRaster|GRID|Grid|False -ParameterSelection|VERTEX|Vertex type|[0] x,y;[1] x,y,z -ParameterNumber|ZMIN|Minimum Contour Value|None|None|0.0 -ParameterNumber|ZMAX|Maximum Contour Value|None|None|10000.0 -ParameterNumber|ZSTEP|Equidistance|None|None|100.0 -OutputVector|CONTOUR|Contour Lines diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ConvergenceIndex(SearchRadius).txt b/python/plugins/processing/algs/saga/description/2.1.4/ConvergenceIndex(SearchRadius).txt deleted file mode 100644 index 11730fa638a3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ConvergenceIndex(SearchRadius).txt +++ /dev/null @@ -1,11 +0,0 @@ -Convergence Index (Search Radius) -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterNumber|RADIUS|Radius [Cells]|1.0|None|10.0 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|0.0|None|1.0 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|0.0|None|1.0 -ParameterBoolean|SLOPE|Gradient|True -ParameterSelection|DIFFERENCE|Weighting Function|[0] direction to the center cell;[1] center cell's aspect direction -OutputRaster|CONVERGENCE|Convergence Index \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ConvergenceIndex.txt b/python/plugins/processing/algs/saga/description/2.1.4/ConvergenceIndex.txt deleted file mode 100644 index 7d1649a615dc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ConvergenceIndex.txt +++ /dev/null @@ -1,6 +0,0 @@ -Convergence Index -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Method|[0] Aspect;[1] Gradient -ParameterSelection|NEIGHBOURS|Gradient Calculation|[0] 2 x 2;[1] 3 x 3 -OutputRaster|RESULT|Convergence Index diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ConvertDataStorageType.txt b/python/plugins/processing/algs/saga/description/2.1.4/ConvertDataStorageType.txt deleted file mode 100644 index 51de5d997936..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ConvertDataStorageType.txt +++ /dev/null @@ -1,5 +0,0 @@ -Convert Data Storage Type -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterSelection|TYPE|Data storage 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 -OutputRaster|OUTPUT|Converted Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ConvertLinestoPoints.txt b/python/plugins/processing/algs/saga/description/2.1.4/ConvertLinestoPoints.txt deleted file mode 100644 index 7a4435360903..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ConvertLinestoPoints.txt +++ /dev/null @@ -1,6 +0,0 @@ -Convert Lines to Points -shapes_points -ParameterVector|LINES|Lines|1|False -ParameterBoolean|ADD |Insert Additional Points|True -ParameterNumber|DIST|Insert Distance|0.0|None|1.0 -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ConvertLinestoPolygons.txt b/python/plugins/processing/algs/saga/description/2.1.4/ConvertLinestoPolygons.txt deleted file mode 100644 index 0053420971a9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ConvertLinestoPolygons.txt +++ /dev/null @@ -1,4 +0,0 @@ -Convert Lines to Polygons -shapes_polygons -ParameterVector|LINES|Lines|1|False -OutputVector|POLYGONS|Polygons diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ConvertMultipointstoPoints.txt b/python/plugins/processing/algs/saga/description/2.1.4/ConvertMultipointstoPoints.txt deleted file mode 100644 index 6a0fc9798b0d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ConvertMultipointstoPoints.txt +++ /dev/null @@ -1,4 +0,0 @@ -Convert Multipoints to Points -shapes_points -ParameterVector|MULTIPOINTS|Multipoints|0|False -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ConvertPointstoLine(s).txt b/python/plugins/processing/algs/saga/description/2.1.4/ConvertPointstoLine(s).txt deleted file mode 100644 index f7e8b6bb642c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ConvertPointstoLine(s).txt +++ /dev/null @@ -1,6 +0,0 @@ -Convert Points to Line(s) -shapes_lines -ParameterVector|POINTS|Points|0|False -ParameterTableField|ORDER|Order by...|POINTS|-1|False -ParameterTableField|SEPARATE|Separate by...|POINTS|-1|False -OutputVector|LINES|Lines diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ConvertPolygonLineVerticestoPoints.txt b/python/plugins/processing/algs/saga/description/2.1.4/ConvertPolygonLineVerticestoPoints.txt deleted file mode 100644 index e8e9a68f86d4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ConvertPolygonLineVerticestoPoints.txt +++ /dev/null @@ -1,4 +0,0 @@ -Convert Polygon/Line Vertices to Points -shapes_polygons -ParameterVector|SHAPES|Shapes|-1|False -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ConvertPolygonstoLines.txt b/python/plugins/processing/algs/saga/description/2.1.4/ConvertPolygonstoLines.txt deleted file mode 100644 index def3f0429a5a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ConvertPolygonstoLines.txt +++ /dev/null @@ -1,4 +0,0 @@ -Convert Polygons to Lines -shapes_lines -ParameterVector|POLYGONS|Polygons|2|False -OutputVector|LINES|Lines diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ConvexHull.txt b/python/plugins/processing/algs/saga/description/2.1.4/ConvexHull.txt deleted file mode 100644 index 81084ab7e508..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ConvexHull.txt +++ /dev/null @@ -1,6 +0,0 @@ -Convex Hull -shapes_points -ParameterVector|SHAPES|Points|0|False -ParameterSelection|POLYPOINTS|Hull Construction|[0] one hull for all shapes;[1] one hull per shape;[2] one hull per shape part -OutputVector|HULLS|Convex Hull -OutputVector|BOXES|Minimum Bounding Box diff --git a/python/plugins/processing/algs/saga/description/2.1.4/CreateGraticule.txt b/python/plugins/processing/algs/saga/description/2.1.4/CreateGraticule.txt deleted file mode 100644 index 0e46eeeb6a14..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/CreateGraticule.txt +++ /dev/null @@ -1,8 +0,0 @@ -Create Graticule -shapes_tools -ParameterVector|EXTENT|Extent|-1|True -Extent X_EXTENT_MIN X_EXTENT_MAX Y_EXTENT_MIN Y_EXTENT_MAX -ParameterNumber|DISTX|Division Width|None|None|1.0 -ParameterNumber|DISTY|Division Height|None|None|1.0 -ParameterSelection|TYPE|Type|[0] Lines;[1] Rectangles -OutputVector|GRATICULE|Graticule diff --git a/python/plugins/processing/algs/saga/description/2.1.4/CropToData.txt b/python/plugins/processing/algs/saga/description/2.1.4/CropToData.txt deleted file mode 100644 index e87ea99f1881..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/CropToData.txt +++ /dev/null @@ -1,4 +0,0 @@ -Crop to Data -grid_tools -ParameterRaster|INPUT|Input layer|False -OutputRaster|OUTPUT|Cropped diff --git a/python/plugins/processing/algs/saga/description/2.1.4/Cross-ClassificationandTabulation.txt b/python/plugins/processing/algs/saga/description/2.1.4/Cross-ClassificationandTabulation.txt deleted file mode 100644 index 19bb607ae29d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/Cross-ClassificationandTabulation.txt +++ /dev/null @@ -1,7 +0,0 @@ -Cross-Classification and Tabulation -grid_analysis -ParameterRaster|INPUT|Input Grid 1|False -ParameterRaster|INPUT2|Input Grid 2|False -ParameterNumber|MAXNUMCLASS|Max. Number of Classes|None|None|5 -OutputRaster|RESULTGRID|Cross-Classification Grid -OutputTable|RESULTTABLE|Cross-Tabulation Table diff --git a/python/plugins/processing/algs/saga/description/2.1.4/CrossProfiles.txt b/python/plugins/processing/algs/saga/description/2.1.4/CrossProfiles.txt deleted file mode 100644 index 149b8920630f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/CrossProfiles.txt +++ /dev/null @@ -1,8 +0,0 @@ -Cross Profiles -ta_profiles -ParameterRaster|DEM|DEM|False -ParameterVector|LINES|Lines|1|False -ParameterNumber|DIST_LINE|Profile Distance|0.0|None|10.0 -ParameterNumber|DIST_PROFILE|Profile Length|0.0|None|10.0 -ParameterNumber|NUM_PROFILE|Profile Samples|1.0|None|10.0 -OutputVector|PROFILES|Cross Profiles diff --git a/python/plugins/processing/algs/saga/description/2.1.4/CubicSplineApproximation.txt b/python/plugins/processing/algs/saga/description/2.1.4/CubicSplineApproximation.txt deleted file mode 100644 index c60b70060924..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/CubicSplineApproximation.txt +++ /dev/null @@ -1,13 +0,0 @@ -Cubic Spline Approximation -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterNumber|NPMIN|Minimal Number of Points|0|None|3 -ParameterNumber|NPMAX|Maximal Number of Points|11|59|20 -ParameterNumber|NPPC|Points per Square|1|None|5 -ParameterNumber|K|Tolerance|0|None|140.0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/CurvatureClassification.txt b/python/plugins/processing/algs/saga/description/2.1.4/CurvatureClassification.txt deleted file mode 100644 index aff4b661d617..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/CurvatureClassification.txt +++ /dev/null @@ -1,5 +0,0 @@ -Curvature Classification -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|THRESHOLD|Threshold for plane|0.0000|None|0.0005 -OutputRaster|CLASS|Curvature Classification \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/CutShapesLayer.txt b/python/plugins/processing/algs/saga/description/2.1.4/CutShapesLayer.txt deleted file mode 100644 index f60347ab4f7c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/CutShapesLayer.txt +++ /dev/null @@ -1,7 +0,0 @@ -Cut Shapes Layer -shapes_tools -ParameterVector|SHAPES|Vector layer to cut|-1|False -ParameterSelection|METHOD|Method|[0] completely contained;[1] intersects;[2] center -Hardcoded|-TARGET 3 -ParameterVector|POLYGONS_POLYGONS|Cutting polygons|2|False -OutputVector|CUT|Result \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/DTMFilter(slope-based).txt b/python/plugins/processing/algs/saga/description/2.1.4/DTMFilter(slope-based).txt deleted file mode 100644 index 73902128994d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/DTMFilter(slope-based).txt +++ /dev/null @@ -1,8 +0,0 @@ -DTM Filter (slope-based) -grid_filter -ParameterRaster|INPUT|Grid to filter|False -ParameterNumber|RADIUS|Search Radius|1.0|None|2 -ParameterNumber|TERRAINSLOPE|Approx. Terrain Slope|None|None|30.0 -ParameterBoolean|STDDEV |Use Confidence Interval|True -OutputRaster|GROUND|Bare Earth -OutputRaster|NONGROUND|Removed Objects diff --git a/python/plugins/processing/algs/saga/description/2.1.4/DirectionalStatisticsforSingleGrid.txt b/python/plugins/processing/algs/saga/description/2.1.4/DirectionalStatisticsforSingleGrid.txt deleted file mode 100644 index 5ed456dda7b4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/DirectionalStatisticsforSingleGrid.txt +++ /dev/null @@ -1,23 +0,0 @@ -Directional Statistics for Single Grid -statistics_grid -ParameterRaster|GRID|Grid|False -ParameterVector|POINTS|Points|-1|True -ParameterNumber|DIRECTION|Direction [Degree]|None|None|0.0 -ParameterNumber|TOLERANCE|Tolerance [Degree]|None|None|0.0 -ParameterNumber|MAXDISTANCE|Maximum Distance [Cells]|None|None|0 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1.0 -OutputRaster|MEAN|Arithmetic Mean -OutputRaster|DIFMEAN|Difference from Arithmetic Mean -OutputRaster|MIN|Minimum -OutputRaster|MAX|Maximum -OutputRaster|RANGE|Range -OutputRaster|VAR|Variance -OutputRaster|STDDEV|Standard Deviation -OutputRaster|STDDEVLO|Mean less Standard Deviation -OutputRaster|STDDEVHI|Mean plus Standard Deviation -OutputRaster|DEVMEAN|Deviation from Arithmetic Mean -OutputRaster|PERCENT|Percentile -OutputVector|POINTS_OUT|Directional Statistics for Points diff --git a/python/plugins/processing/algs/saga/description/2.1.4/DistanceMatrix.txt b/python/plugins/processing/algs/saga/description/2.1.4/DistanceMatrix.txt deleted file mode 100644 index 059d3c209fee..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/DistanceMatrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -Distance Matrix -shapes_points -ParameterVector|POINTS|Points|0|False -OutputTable|TABLE|Distance Matrix Table diff --git a/python/plugins/processing/algs/saga/description/2.1.4/DiurnalAnisotropicHeating.txt b/python/plugins/processing/algs/saga/description/2.1.4/DiurnalAnisotropicHeating.txt deleted file mode 100644 index 5420da99b09a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/DiurnalAnisotropicHeating.txt +++ /dev/null @@ -1,5 +0,0 @@ -Diurnal Anisotropic Heating -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|ALPHA_MAX|Alpha Max (Degree)|None|None|202.5 -OutputRaster|DAH|Diurnal Anisotropic Heating diff --git a/python/plugins/processing/algs/saga/description/2.1.4/DownslopeDistanceGradient.txt b/python/plugins/processing/algs/saga/description/2.1.4/DownslopeDistanceGradient.txt deleted file mode 100644 index 250e199cf6fe..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/DownslopeDistanceGradient.txt +++ /dev/null @@ -1,7 +0,0 @@ -Downslope Distance Gradient -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|DISTANCE|Vertical Distance|None|None|10 -ParameterSelection|OUTPUT|Output|[0] distance;[1] gradient (tangens);[2] gradient (degree) -OutputRaster|GRADIENT|Gradient -OutputRaster|DIFFERENCE|Gradient Difference diff --git a/python/plugins/processing/algs/saga/description/2.1.4/EdgeContamination.txt b/python/plugins/processing/algs/saga/description/2.1.4/EdgeContamination.txt deleted file mode 100644 index 004ca57539db..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/EdgeContamination.txt +++ /dev/null @@ -1,4 +0,0 @@ -Edge Contamination -ta_hydrology -ParameterRaster|DEM|Elevation|False -OutputRaster|CONTAMINATION|Edge Contamination diff --git a/python/plugins/processing/algs/saga/description/2.1.4/EffectiveAirFlowHeights.txt b/python/plugins/processing/algs/saga/description/2.1.4/EffectiveAirFlowHeights.txt deleted file mode 100644 index 70e0479b3a99..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/EffectiveAirFlowHeights.txt +++ /dev/null @@ -1,15 +0,0 @@ -Effective Air Flow Heights -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterRaster|DIR|Wind Direction|True -ParameterRaster|LEN|Wind Speed|True -ParameterNumber|DIR_CONST|Constant Wind Direction [Degree]|None|None|135 -ParameterBoolean|OLDVER |Old Version|True -ParameterNumber|MAXDIST|Search Distance [km]|0.0|None|300 -ParameterNumber|ACCEL|Acceleration|None|None|1.5 -ParameterBoolean|PYRAMIDS |Use Pyramids with New Version|True -ParameterNumber|LEEFACT|Lee Factor|None|None|0.5 -ParameterNumber|LUVFACT|Luv Factor|None|None|1.0 -ParameterSelection|DIR_UNITS|Wind Direction Units|[0] radians;[1] degree -ParameterNumber|LEN_SCALE|Wind Speed Scale Factor|None|None|1.0 -OutputRaster|AFH|Effective Air Flow Heights diff --git a/python/plugins/processing/algs/saga/description/2.1.4/FastRegionGrowingAlgorithm.txt b/python/plugins/processing/algs/saga/description/2.1.4/FastRegionGrowingAlgorithm.txt deleted file mode 100644 index c7922ee2e242..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/FastRegionGrowingAlgorithm.txt +++ /dev/null @@ -1,7 +0,0 @@ -Fast Region Growing Algorithm -imagery_rga -ParameterMultipleInput|INPUT|Input Grids|3|False -ParameterRaster|START|Seeds Grid|False -ParameterRaster|REP|Smooth Rep|True -OutputRaster|RESULT|Segmente -OutputRaster|MEAN|Mean diff --git a/python/plugins/processing/algs/saga/description/2.1.4/FastRepresentativeness.txt b/python/plugins/processing/algs/saga/description/2.1.4/FastRepresentativeness.txt deleted file mode 100644 index b65953be62cd..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/FastRepresentativeness.txt +++ /dev/null @@ -1,7 +0,0 @@ -Fast Representativeness -statistics_grid -ParameterRaster|INPUT|Input|False -ParameterNumber|LOD|Level of Generalisation|None|None|16 -OutputRaster|RESULT|Output -OutputRaster|RESULT_LOD|Output Lod -OutputRaster|SEEDS|Output Seeds diff --git a/python/plugins/processing/algs/saga/description/2.1.4/FillGapsinRecords.txt b/python/plugins/processing/algs/saga/description/2.1.4/FillGapsinRecords.txt deleted file mode 100644 index 31974dcc53d1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/FillGapsinRecords.txt +++ /dev/null @@ -1,6 +0,0 @@ -Fill Gaps in Records -table_calculus -ParameterTable|TABLE|Table|False -ParameterTableField|ORDER|Order|TABLE|-1|False -ParameterSelection|METHOD|Interpolation|[0] Nearest Neighbour;[1] Linear;[2] Spline -OutputTable|NOGAPS|Table without Gaps diff --git a/python/plugins/processing/algs/saga/description/2.1.4/FillSinks(PlanchonDarboux,2001).txt b/python/plugins/processing/algs/saga/description/2.1.4/FillSinks(PlanchonDarboux,2001).txt deleted file mode 100644 index f1a496dc924a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/FillSinks(PlanchonDarboux,2001).txt +++ /dev/null @@ -1,5 +0,0 @@ -Fill Sinks|Fill Sinks (Planchon/Darboux, 2001) -ta_preprocessor -ParameterRaster|DEM|DEM|False -ParameterNumber|MINSLOPE|Minimum Slope [Degree]|0.0|None|0.01 -OutputRaster|RESULT|Filled DEM diff --git a/python/plugins/processing/algs/saga/description/2.1.4/FillSinks(WangLiu).txt b/python/plugins/processing/algs/saga/description/2.1.4/FillSinks(WangLiu).txt deleted file mode 100644 index 2a36e9913ae9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/FillSinks(WangLiu).txt +++ /dev/null @@ -1,7 +0,0 @@ -Fill Sinks (Wang & Liu) -ta_preprocessor -ParameterRaster|ELEV|DEM|False -ParameterNumber|MINSLOPE|Minimum Slope [Degree]|0.0|None|0.01 -OutputRaster|FILLED|Filled DEM -OutputRaster|FDIR|Flow Directions -OutputRaster|WSHED|Watershed Basins diff --git a/python/plugins/processing/algs/saga/description/2.1.4/FillSinksXXL(WangLiu).txt b/python/plugins/processing/algs/saga/description/2.1.4/FillSinksXXL(WangLiu).txt deleted file mode 100644 index bd3bd2194b79..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/FillSinksXXL(WangLiu).txt +++ /dev/null @@ -1,5 +0,0 @@ -Fill Sinks XXL (Wang & Liu) -ta_preprocessor -ParameterRaster|ELEV|DEM|False -ParameterNumber|MINSLOPE|Minimum Slope [Degree]|0.0|None|0.01 -OutputRaster|FILLED|Filled DEM diff --git a/python/plugins/processing/algs/saga/description/2.1.4/FilterClumps.txt b/python/plugins/processing/algs/saga/description/2.1.4/FilterClumps.txt deleted file mode 100644 index 3ac291f4fab9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/FilterClumps.txt +++ /dev/null @@ -1,5 +0,0 @@ -Filter Clumps -grid_filter -ParameterRaster|GRID|Input Grid|False -ParameterNumber|THRESHOLD|Min. Size|1.0|None|10 -OutputRaster|OUTPUT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/FireRiskAnalysis.txt b/python/plugins/processing/algs/saga/description/2.1.4/FireRiskAnalysis.txt deleted file mode 100644 index 7f9788d09851..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/FireRiskAnalysis.txt +++ /dev/null @@ -1,18 +0,0 @@ -Fire Risk Analysis -sim_fire_spreading -ParameterRaster|DEM|DEM|False -ParameterRaster|FUEL|Fuel Model|False -ParameterRaster|WINDSPD|Wind Speed|False -ParameterRaster|WINDDIR|Wind Direction|False -ParameterRaster|M1H|Dead Fuel Moisture 1H|False -ParameterRaster|M10H|Dead Fuel Moisture 10H|False -ParameterRaster|M100H|Dead Fuel Moisture 100H|False -ParameterRaster|MHERB|Herbaceous Fuel Moisture|False -ParameterRaster|MWOOD|Wood Fuel Moisture|False -ParameterRaster|VALUE|Value|True -ParameterRaster|BASEPROB|Base Probability|True -ParameterNumber|MONTECARLO|Number of Events|None|None|1000 -ParameterNumber|INTERVAL|Fire Length|None|None|100 -OutputRaster|DANGER|Danger -OutputRaster|COMPPROB|Compound Probability -OutputRaster|PRIORITY|Priority Index diff --git a/python/plugins/processing/algs/saga/description/2.1.4/FitNPointstoshape.txt b/python/plugins/processing/algs/saga/description/2.1.4/FitNPointstoshape.txt deleted file mode 100644 index 727ebdb56d2e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/FitNPointstoshape.txt +++ /dev/null @@ -1,5 +0,0 @@ -Fit N Points to shape -shapes_points -ParameterVector|SHAPES|Shapes|2|False -ParameterNumber|NUMPOINTS|Number of points|1.0|None|10 -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.1.4/FlatDetection.txt b/python/plugins/processing/algs/saga/description/2.1.4/FlatDetection.txt deleted file mode 100644 index e106c6e11ad7..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/FlatDetection.txt +++ /dev/null @@ -1,6 +0,0 @@ -Flat Detection -ta_preprocessor -ParameterRaster|DEM|DEM|False -ParameterSelection|FLAT_OUTPUT|Flat Area Values|[0] elevation;[1] enumeration -OutputRaster|NOFLATS|No Flats -OutputRaster|FLATS|Flat Areas diff --git a/python/plugins/processing/algs/saga/description/2.1.4/FlowPathLength.txt b/python/plugins/processing/algs/saga/description/2.1.4/FlowPathLength.txt deleted file mode 100644 index da1669996caf..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/FlowPathLength.txt +++ /dev/null @@ -1,8 +0,0 @@ -Flow Path Length -ta_hydrology -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SEED|Seeds|True -ParameterBoolean|SEEDS_ONLY |Seeds Only|True -ParameterSelection|METHOD|Flow Routing Algorithm|[0] Deterministic 8 (D8);[1] Multiple Flow Direction (FD8) -ParameterNumber|CONVERGENCE|Convergence (FD8)|None|None|1.1 -OutputRaster|LENGTH|Flow Path Length diff --git a/python/plugins/processing/algs/saga/description/2.1.4/FlowWidthandSpecificCatchmentArea.txt b/python/plugins/processing/algs/saga/description/2.1.4/FlowWidthandSpecificCatchmentArea.txt deleted file mode 100644 index a8d32a86f617..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/FlowWidthandSpecificCatchmentArea.txt +++ /dev/null @@ -1,7 +0,0 @@ -Flow Width and Specific Catchment Area -ta_hydrology -ParameterRaster|DEM|Elevation|False -ParameterRaster|TCA|Total Catchment Area (TCA)|True -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Multiple Flow Direction (Quinn et al. 1991);[2] Aspect -OutputRaster|WIDTH|Flow Width -OutputRaster|SCA|Specific Catchment Area (SCA) diff --git a/python/plugins/processing/algs/saga/description/2.1.4/Fragmentation(Alternative).txt b/python/plugins/processing/algs/saga/description/2.1.4/Fragmentation(Alternative).txt deleted file mode 100644 index 162d7ae48f5a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/Fragmentation(Alternative).txt +++ /dev/null @@ -1,17 +0,0 @@ -Fragmentation (Alternative) -grid_analysis -ParameterRaster|CLASSES|Classification|False -ParameterNumber|CLASS|Class Identifier|None|None|1 -ParameterNumber|NEIGHBORHOOD_MIN|Neighborhood Min|1.0|None|1 -ParameterNumber|NEIGHBORHOOD_MAX|Neighborhood Max|1.0|None|1 -ParameterSelection|AGGREGATION|Level Aggregation|[0] average;[1] multiplicative -ParameterBoolean|BORDER |Add Border|True -ParameterNumber|WEIGHT|Connectivity Weighting|None|None|1.1 -ParameterNumber|DENSITY_MIN|Minimum Density [Percent]|None|None|10 -ParameterNumber|DENSITY_INT|Minimum Density for Interior Forest [Percent]|None|None|99 -ParameterNumber|LEVEL_GROW|Search Distance Increment|None|None|0.0 -ParameterBoolean|DENSITY_MEAN |Density from Neighbourhood|True -OutputRaster|DENSITY|Density [Percent] -OutputRaster|CONNECTIVITY|Connectivity [Percent] -OutputRaster|FRAGMENTATION|Fragmentation -OutputTable|FRAGSTATS|Summary diff --git a/python/plugins/processing/algs/saga/description/2.1.4/Fragmentation(Standard).txt b/python/plugins/processing/algs/saga/description/2.1.4/Fragmentation(Standard).txt deleted file mode 100644 index 0dc554abcd2c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/Fragmentation(Standard).txt +++ /dev/null @@ -1,17 +0,0 @@ -Fragmentation (Standard) -grid_analysis -ParameterRaster|CLASSES|Classification|False -ParameterNumber|CLASS|Class Identifier|None|None|1 -ParameterNumber|NEIGHBORHOOD_MIN|Neighborhood Min|1.0|None|1 -ParameterNumber|NEIGHBORHOOD_MAX|Neighborhood Max|1.0|None|3 -ParameterSelection|AGGREGATION|Level Aggregation|[0] average;[1] multiplicative -ParameterBoolean|BORDER|Add Border|True -ParameterNumber|WEIGHT|Connectivity Weighting|None|None|1.1 -ParameterNumber|DENSITY_MIN|Minimum Density [Percent]|None|None|10 -ParameterNumber|DENSITY_INT|Minimum Density for Interior Forest [Percent]|None|None|99 -ParameterSelection|CIRCULAR|Neighborhood Type|[0] square;[1] circle -ParameterBoolean|DIAGONAL|Include diagonal neighbour relations|True -OutputRaster|DENSITY|Density [Percent] -OutputRaster|CONNECTIVITY|Connectivity [Percent] -OutputRaster|FRAGMENTATION|Fragmentation -OutputTable|FRAGSTATS|Summary diff --git a/python/plugins/processing/algs/saga/description/2.1.4/FragmentationClassesfromDensityandConnectivity.txt b/python/plugins/processing/algs/saga/description/2.1.4/FragmentationClassesfromDensityandConnectivity.txt deleted file mode 100644 index 99e30c493a4a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/FragmentationClassesfromDensityandConnectivity.txt +++ /dev/null @@ -1,9 +0,0 @@ -Fragmentation Classes from Density and Connectivity -grid_analysis -ParameterRaster|DENSITY|Density [Percent]|False -ParameterRaster|CONNECTIVITY|Connectivity [Percent]|False -ParameterBoolean|BORDER|Add Border|True -ParameterNumber|WEIGHT|Connectivity Weighting|None|None|0 -ParameterNumber|DENSITY_MIN|Minimum Density [Percent]|0.0|100.0|10 -ParameterNumber|DENSITY_INT|Minimum Density for Interior Forest [Percent]|0.0|100.0|99 -OutputRaster|FRAGMENTATION|Fragmentation diff --git a/python/plugins/processing/algs/saga/description/2.1.4/Function.txt b/python/plugins/processing/algs/saga/description/2.1.4/Function.txt deleted file mode 100644 index e058e9b04df0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/Function.txt +++ /dev/null @@ -1,8 +0,0 @@ -Function -grid_calculus -ParameterNumber|XMIN|xmin|None|None|0.0 -ParameterNumber|XMAX|xmax|None|None|0.0 -ParameterNumber|YMIN|ymin|None|None|0.0 -ParameterNumber|YMAX|ymax|None|None|0.0 -ParameterString|FORMUL|Formula| -OutputRaster|RESULT|Function diff --git a/python/plugins/processing/algs/saga/description/2.1.4/Fuzzify.txt b/python/plugins/processing/algs/saga/description/2.1.4/Fuzzify.txt deleted file mode 100644 index d78f12b44318..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/Fuzzify.txt +++ /dev/null @@ -1,10 +0,0 @@ -Fuzzify -grid_calculus -ParameterRaster|INPUT|Grid|False -ParameterNumber|A|A|None|None|0.0 -ParameterNumber|B|B|None|None|0.0 -ParameterNumber|C|C|None|None|0.0 -ParameterNumber|D|D|None|None|0.0 -ParameterSelection|TYPE|Membership Function Type|[0] linear;[1] sigmoidal;[2] j-shaped -ParameterBoolean|AUTOFIT |Adjust to Grid|True -OutputRaster|OUTPUT|Fuzzified Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/FuzzyIntersection(AND).txt b/python/plugins/processing/algs/saga/description/2.1.4/FuzzyIntersection(AND).txt deleted file mode 100644 index a00eff21d7f1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/FuzzyIntersection(AND).txt +++ /dev/null @@ -1,5 +0,0 @@ -Fuzzy Intersection (AND) -grid_calculus -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|TYPE|Operator Type|[0] min(a, b) (non-interactive);[1] a * b;[2] max(0, a + b - 1) -OutputRaster|AND|Intersection diff --git a/python/plugins/processing/algs/saga/description/2.1.4/FuzzyUnion(OR).txt b/python/plugins/processing/algs/saga/description/2.1.4/FuzzyUnion(OR).txt deleted file mode 100644 index 592517943abb..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/FuzzyUnion(OR).txt +++ /dev/null @@ -1,5 +0,0 @@ -Fuzzy Union (OR) -grid_calculus -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|TYPE|Operator Type|[0] max(a, b) (non-interactive);[1] a + b - a * b;[2] min(1, a + b) -OutputRaster|OR|Union diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GaussianFilter.txt b/python/plugins/processing/algs/saga/description/2.1.4/GaussianFilter.txt deleted file mode 100644 index 0cf7e310d150..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GaussianFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Gaussian Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterNumber|SIGMA|Standard Deviation|None|None|1 -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Search Radius|None|None|3 -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GeographicallyWeightedMultipleRegression(Points).txt b/python/plugins/processing/algs/saga/description/2.1.4/GeographicallyWeightedMultipleRegression(Points).txt deleted file mode 100644 index fd483f192f1a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GeographicallyWeightedMultipleRegression(Points).txt +++ /dev/null @@ -1,16 +0,0 @@ -GWR for Multiple Predictors -statistics_regression -ParameterVector|POINTS|Points|-1|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterTableField|PREDICTORS|Predictor|POINTS|-1|False -ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -OutputVector|REGRESSION|Regression \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GeographicallyWeightedMultipleRegression(PointsGrids).txt b/python/plugins/processing/algs/saga/description/2.1.4/GeographicallyWeightedMultipleRegression(PointsGrids).txt deleted file mode 100644 index 1573751dfe6e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GeographicallyWeightedMultipleRegression(PointsGrids).txt +++ /dev/null @@ -1,20 +0,0 @@ -GWR for Multiple Predictor Grids -statistics_regression -ParameterMultipleInput|PREDICTORS|Predictors|3.0|False -ParameterVector|POINTS|Points|0|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterSelection|RESOLUTION|Model Resolution|[0] same as predictors;[1] user defined|1 -ParameterNumber|RESOLUTION_VAL|Resolution|0|None|1 -ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -OutputRaster|REGRESSION|Regression -OutputRaster|QUALITY|Coefficient of Determination -OutputVector|RESIDUALS|Residuals diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GeographicallyWeightedMultipleRegression.txt b/python/plugins/processing/algs/saga/description/2.1.4/GeographicallyWeightedMultipleRegression.txt deleted file mode 100644 index e4f8a0e5ac69..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GeographicallyWeightedMultipleRegression.txt +++ /dev/null @@ -1,23 +0,0 @@ -GWR for Multiple Predictors (Gridded Model Output) -statistics_regression -ParameterVector|POINTS|Points|0|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterTableField|PREDICTORS|Predictor|POINTS|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputVector|REGRESSION|Regression -OutputRaster|SLOPES|Slopes -OutputRaster|TARGET_INTERCEPT|Intercept -OutputRaster|TARGET_QUALITY|Quality \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GeographicallyWeightedRegression(PointsGrid).txt b/python/plugins/processing/algs/saga/description/2.1.4/GeographicallyWeightedRegression(PointsGrid).txt deleted file mode 100644 index 77d54b117626..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GeographicallyWeightedRegression(PointsGrid).txt +++ /dev/null @@ -1,20 +0,0 @@ -GWR for Single Predictor Grid -statistics_regression -ParameterRaster|PREDICTOR|Predictor|False -ParameterVector|POINTS|Points|0|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -OutputRaster|REGRESSION|Regression -OutputRaster|QUALITY|Coefficient of Determination -OutputRaster|INTERCEPT|Intercept -OutputRaster|SLOPE|Slope -OutputVector|RESIDUALS|Residuals diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GeographicallyWeightedRegression.txt b/python/plugins/processing/algs/saga/description/2.1.4/GeographicallyWeightedRegression.txt deleted file mode 100644 index f8ac07c28aa1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GeographicallyWeightedRegression.txt +++ /dev/null @@ -1,23 +0,0 @@ -GWR for Single Predictor (Gridded Model Output) -statistics_regression -ParameterVector|POINTS|Points|0|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterTableField|PREDICTOR|Predictor|POINTS|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid -OutputRaster|TARGET_INTERCEPT|Intercept -OutputRaster|TARGET_SLOPE|Slope -OutputRaster|TARGET_QUALITY|Quality \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GeometricFigures.txt b/python/plugins/processing/algs/saga/description/2.1.4/GeometricFigures.txt deleted file mode 100644 index 09a288dc72c0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GeometricFigures.txt +++ /dev/null @@ -1,7 +0,0 @@ -Geometric Figures -grid_calculus -ParameterNumber|CELL_COUNT|Cell Count|None|None|0 -ParameterNumber|CELL_SIZE|Cell Size|None|None|0 -ParameterSelection|FIGURE|Figure|[0] Cone (up);[1] Cone (down);[2] Plane -ParameterNumber|PLANE|Direction of Plane [Degree]|None|None|0 -OutputRaster|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GetShapesExtents.txt b/python/plugins/processing/algs/saga/description/2.1.4/GetShapesExtents.txt deleted file mode 100644 index 9ef1cc7c3ad0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GetShapesExtents.txt +++ /dev/null @@ -1,5 +0,0 @@ -Get Shapes Extents -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterSelection|OUTPUT|Get Extent for|[0] all shapes;[1] each shape;[2] each shape's part -OutputVector|EXTENTS|Extents diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GlobalMoransIforGrids.txt b/python/plugins/processing/algs/saga/description/2.1.4/GlobalMoransIforGrids.txt deleted file mode 100644 index e5de7f60a3af..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GlobalMoransIforGrids.txt +++ /dev/null @@ -1,5 +0,0 @@ -Global Moran's I for Grids -statistics_grid -ParameterRaster|GRID|Grid|False -ParameterSelection|CONTIGUITY|Case of contiguity|[0] Rook;[1] Queen -OutputTable|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GradientVectorfromCartesiantoPolarCoordinates.txt b/python/plugins/processing/algs/saga/description/2.1.4/GradientVectorfromCartesiantoPolarCoordinates.txt deleted file mode 100644 index 8a725be39c07..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GradientVectorfromCartesiantoPolarCoordinates.txt +++ /dev/null @@ -1,10 +0,0 @@ -Gradient Vector from Cartesian to Polar Coordinates -grid_calculus -ParameterRaster|DX|X Component|False -ParameterRaster|DY|Y Component|False -ParameterSelection|UNITS|Polar Angle Units|[0] radians;[1] degree -ParameterSelection|SYSTEM|Polar Coordinate System|[0] mathematical;[1] geographical;[2] user defined -ParameterNumber|SYSTEM_ZERO|User defined Zero Direction|None|None|0.0 -ParameterSelection|SYSTEM_ORIENT|User defined Orientation|[0] clockwise;[1] counterclockwise -OutputRaster|DIR|Direction -OutputRaster|LEN|Length diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GradientVectorfromPolartoCartesianCoordinates.txt b/python/plugins/processing/algs/saga/description/2.1.4/GradientVectorfromPolartoCartesianCoordinates.txt deleted file mode 100644 index 382aa9e6046b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GradientVectorfromPolartoCartesianCoordinates.txt +++ /dev/null @@ -1,10 +0,0 @@ -Gradient Vector from Polar to Cartesian Coordinates -grid_calculus -ParameterRaster|DIR|Direction|False -ParameterRaster|LEN|Length|False -ParameterSelection|UNITS|Polar Angle Units|[0] radians;[1] degree -ParameterSelection|SYSTEM|Polar Coordinate System|[0] mathematical;[1] geographical;[2] user defined -ParameterNumber|SYSTEM_ZERO|User defined Zero Direction|None|None|0.0 -ParameterSelection|SYSTEM_ORIENT|User defined Orientation|[0] clockwise;[1] counterclockwise -OutputRaster|DX|X Component -OutputRaster|DY|Y Component diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GradientVectorsfromDirectionalComponents.txt b/python/plugins/processing/algs/saga/description/2.1.4/GradientVectorsfromDirectionalComponents.txt deleted file mode 100644 index 1a1abf488830..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GradientVectorsfromDirectionalComponents.txt +++ /dev/null @@ -1,10 +0,0 @@ -Gradient Vectors from Directional Components -shapes_grid -ParameterRaster|X|X Component|False -ParameterRaster|Y|Y Component|False -ParameterNumber|STEP|Step|None|None|1 -ParameterNumber|SIZE_MIN|Size Range Min|None|None|25.0 -ParameterNumber|SIZE_MAX|Size Range Max|None|None|100.0 -ParameterSelection|AGGR|Aggregation|[0] nearest neighbour;[1] mean value -ParameterSelection|STYLE|Style|[0] simple line;[1] arrow;[2] arrow (centered to cell) -OutputVector|VECTORS|Gradient Vectors diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GradientVectorsfromDirectionandLength.txt b/python/plugins/processing/algs/saga/description/2.1.4/GradientVectorsfromDirectionandLength.txt deleted file mode 100644 index 628665a5522b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GradientVectorsfromDirectionandLength.txt +++ /dev/null @@ -1,10 +0,0 @@ -Gradient Vectors from Direction and Length -shapes_grid -ParameterRaster|DIR|Direction|False -ParameterRaster|LEN|Length|False -ParameterNumber|STEP|Step|None|None|1 -ParameterNumber|SIZE_MIN|Size Range Min|None|None|25.0 -ParameterNumber|SIZE_MAX|Size Range Max|None|None|100.0 -ParameterSelection|AGGR|Aggregation|[0] nearest neighbour;[1] mean value -ParameterSelection|STYLE|Style|[0] simple line;[1] arrow;[2] arrow (centered to cell) -OutputVector|VECTORS|Gradient Vectors diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GradientVectorsfromSurface.txt b/python/plugins/processing/algs/saga/description/2.1.4/GradientVectorsfromSurface.txt deleted file mode 100644 index 582bf10c03d5..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GradientVectorsfromSurface.txt +++ /dev/null @@ -1,9 +0,0 @@ -Gradient Vectors from Surface -shapes_grid -ParameterRaster|SURFACE|Surface|False -ParameterNumber|STEP|Step|None|None|1 -ParameterNumber|SIZE_MIN|Size Range Min|None|None|25.0 -ParameterNumber|SIZE_MAX|Size Range Max|None|None|100.0 -ParameterSelection|AGGR|Aggregation|[0] nearest neighbour;[1] mean value -ParameterSelection|STYLE|Style|[0] simple line;[1] arrow;[2] arrow (centered to cell) -OutputVector|VECTORS|Gradient Vectors diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GridBuffer.txt b/python/plugins/processing/algs/saga/description/2.1.4/GridBuffer.txt deleted file mode 100644 index da961e9d8736..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GridBuffer.txt +++ /dev/null @@ -1,6 +0,0 @@ -Grid Buffer -grid_tools -ParameterRaster|FEATURES|Features Grid|False -ParameterNumber|DIST|Distance|None|None|1000 -ParameterSelection|BUFFERTYPE|Buffer Distance|[0] Fixed;[1] Cell value -OutputRaster|BUFFER|Buffer Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GridCalculator.txt b/python/plugins/processing/algs/saga/description/2.1.4/GridCalculator.txt deleted file mode 100644 index e8499488134f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GridCalculator.txt +++ /dev/null @@ -1,9 +0,0 @@ -Raster calculator|Grid Calculator -grid_calculus -AllowUnmatching -ParameterRaster|GRIDS|Main input layer|False -ParameterMultipleInput|XGRIDS|Additional layers|3|True -ParameterString|FORMULA|Formula| -ParameterBoolean|USE_NODATA|Use NoData|False -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 -OutputRaster|RESULT|Calculated diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GridCellIndex.txt b/python/plugins/processing/algs/saga/description/2.1.4/GridCellIndex.txt deleted file mode 100644 index 0b8e3ee81ca4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GridCellIndex.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Cell Index -grid_tools -ParameterRaster|GRID|Input Grid|False -ParameterSelection|ORDER|Index|[0] ascending;[1] descending|0 -OutputRaster|INDEX|Sorted Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GridDifference.txt b/python/plugins/processing/algs/saga/description/2.1.4/GridDifference.txt deleted file mode 100644 index c2fa03dbf7ed..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GridDifference.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Difference -grid_calculus -ParameterRaster|A|A|False -ParameterRaster|B|B|False -OutputRaster|C|Difference (A - B) diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GridDivision.txt b/python/plugins/processing/algs/saga/description/2.1.4/GridDivision.txt deleted file mode 100644 index 718d0109fe4a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GridDivision.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Division -grid_calculus -ParameterRaster|A|Dividend|False -ParameterRaster|B|Divisor|False -OutputRaster|C|Quotient diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GridMasking.txt b/python/plugins/processing/algs/saga/description/2.1.4/GridMasking.txt deleted file mode 100644 index 93233f1d1a19..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GridMasking.txt +++ /dev/null @@ -1,6 +0,0 @@ -Grid Masking -grid_tools -ParameterRaster|GRID|Grid|False -ParameterRaster|MASK|Mask|False -OutputRaster|MASKED|Masked Grid -AllowUnmatching \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GridNormalisation.txt b/python/plugins/processing/algs/saga/description/2.1.4/GridNormalisation.txt deleted file mode 100644 index b16dcabcc8cc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GridNormalisation.txt +++ /dev/null @@ -1,6 +0,0 @@ -Grid Normalisation -grid_calculus -ParameterRaster|INPUT|Grid|False -ParameterNumber|RANGE_MIN|Target Range (min)|None|None|0 -ParameterNumber|RANGE_MAX|Target Range (max)|None|None|1 -OutputRaster|OUTPUT|Normalised Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GridOrientation.txt b/python/plugins/processing/algs/saga/description/2.1.4/GridOrientation.txt deleted file mode 100644 index 2eb0de16a857..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GridOrientation.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Orientation -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterSelection|METHOD|Method|[0] Copy;[1] Flip;[2] Mirror;[3] Invert -OutputRaster|RESULT|Changed Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GridProximityBuffer.txt b/python/plugins/processing/algs/saga/description/2.1.4/GridProximityBuffer.txt deleted file mode 100644 index be5df903a0be..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GridProximityBuffer.txt +++ /dev/null @@ -1,8 +0,0 @@ -Grid Proximity Buffer -grid_tools -ParameterRaster|SOURCE|Source Grid|False -ParameterNumber|DIST|Buffer distance|None|None|500.0 -ParameterNumber|IVAL|Equidistance|None|None|100.0 -OutputRaster|DISTANCE|Distance Grid -OutputRaster|ALLOC|Allocation Grid -OutputRaster|BUFFER|Buffer Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GridSkeletonization.txt b/python/plugins/processing/algs/saga/description/2.1.4/GridSkeletonization.txt deleted file mode 100644 index eacd23ff04c4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GridSkeletonization.txt +++ /dev/null @@ -1,9 +0,0 @@ -Grid Skeletonization -imagery_segmentation -ParameterRaster|INPUT|Grid|False -ParameterSelection|METHOD|Method|[0] Standard;[1] Hilditch's Algorithm;[2] Channel Skeleton -ParameterSelection|INIT_METHOD|Initialisation|[0] Less than;[1] Greater than -ParameterNumber|INIT_THRESHOLD|Threshold (Init.)|None|None|0.0 -ParameterNumber|CONVERGENCE|Convergence|None|None|3.0 -OutputRaster|RESULT|Skeleton -OutputVector|VECTOR|Skeleton diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GridStandardisation.txt b/python/plugins/processing/algs/saga/description/2.1.4/GridStandardisation.txt deleted file mode 100644 index 743f2e0aabf2..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GridStandardisation.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Standardisation -grid_calculus -ParameterRaster|INPUT|Grid|False -ParameterNumber|STRETCH|Stretch Factor|0.0|None|1.0 -OutputRaster|OUTPUT|Standardised Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GridStatisticsforPolygons.txt b/python/plugins/processing/algs/saga/description/2.1.4/GridStatisticsforPolygons.txt deleted file mode 100644 index ad76d9ff85f9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GridStatisticsforPolygons.txt +++ /dev/null @@ -1,14 +0,0 @@ -Grid Statistics for Polygons -shapes_grid -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|COUNT |Number of Cells|True -ParameterBoolean|MIN |Minimum|True -ParameterBoolean|MAX |Maximum|True -ParameterBoolean|RANGE |Range|True -ParameterBoolean|SUM |Sum|True -ParameterBoolean|MEAN |Mean|True -ParameterBoolean|VAR |Variance|True -ParameterBoolean|STDDEV |Standard Deviation|True -ParameterNumber|QUANTILE|Quantiles|None|None|0 -OutputVector|RESULT|Statistics diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GridValuestoPoints(randomly).txt b/python/plugins/processing/algs/saga/description/2.1.4/GridValuestoPoints(randomly).txt deleted file mode 100644 index 1f04323c6a34..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GridValuestoPoints(randomly).txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Values to Points (randomly) -shapes_grid -ParameterRaster|GRID|Grid|False -ParameterNumber|FREQ|Frequency|None|None|100 -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GridValuestoPoints.txt b/python/plugins/processing/algs/saga/description/2.1.4/GridValuestoPoints.txt deleted file mode 100644 index 0e33a303675b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GridValuestoPoints.txt +++ /dev/null @@ -1,7 +0,0 @@ -Grid Values to Points -shapes_grid -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterVector|POLYGONS|Polygons|-1|True -ParameterBoolean|NODATA |Exclude NoData Cells|True -ParameterSelection|TYPE|Type|[0] nodes;[1] cells -OutputVector|SHAPES|Shapes diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GridVolume.txt b/python/plugins/processing/algs/saga/description/2.1.4/GridVolume.txt deleted file mode 100644 index f20c27cc53d0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GridVolume.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Volume -grid_calculus -ParameterRaster|GRID|Grid|False -ParameterSelection|METHOD|Method|[0] Count Only Above Base Level;[1] Count Only Below Base Level;[2] Subtract Volumes Below Base Level;[3] Add Volumes Below Base Level -ParameterNumber|LEVEL|Base Level|None|None|0.0 diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GridsProduct.txt b/python/plugins/processing/algs/saga/description/2.1.4/GridsProduct.txt deleted file mode 100644 index 59d864f4fc9b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GridsProduct.txt +++ /dev/null @@ -1,4 +0,0 @@ -Grids Product -grid_calculus -ParameterMultipleInput|GRIDS|Grids|3|False -OutputRaster|RESULT|Product diff --git a/python/plugins/processing/algs/saga/description/2.1.4/GridsSum.txt b/python/plugins/processing/algs/saga/description/2.1.4/GridsSum.txt deleted file mode 100644 index 60b0beebd9f3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/GridsSum.txt +++ /dev/null @@ -1,4 +0,0 @@ -Grids Sum -grid_calculus -ParameterMultipleInput|GRIDS|Grids|3|False -OutputRaster|RESULT|Sum diff --git a/python/plugins/processing/algs/saga/description/2.1.4/HistogramSurface.txt b/python/plugins/processing/algs/saga/description/2.1.4/HistogramSurface.txt deleted file mode 100644 index bde5571c5d18..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/HistogramSurface.txt +++ /dev/null @@ -1,5 +0,0 @@ -Histogram Surface -grid_visualisation -ParameterRaster|GRID|Grid|False -ParameterSelection|METHOD|Method|[0] rows;[1] columns;[2] circle -OutputRaster|HIST|Histogram diff --git a/python/plugins/processing/algs/saga/description/2.1.4/Hypsometry.txt b/python/plugins/processing/algs/saga/description/2.1.4/Hypsometry.txt deleted file mode 100644 index 2ca4a17709bb..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/Hypsometry.txt +++ /dev/null @@ -1,10 +0,0 @@ -Hypsometry -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterNumber|COUNT|Number of Classes|None|None|100.0 -ParameterSelection|SORTING|Sort|[0] up;[1] down -ParameterSelection|METHOD|Classification Constant|[0] height;[1] area -ParameterBoolean|BZRANGE |Use Z-Range|True -ParameterNumber|ZRANGE_MIN|Z-Range Min|None|None|0.0 -ParameterNumber|ZRANGE_MAX|Z-Range Max|None|None|1000.0 -OutputTable|TABLE|Hypsometry diff --git a/python/plugins/processing/algs/saga/description/2.1.4/InverseDistanceWeighted.txt b/python/plugins/processing/algs/saga/description/2.1.4/InverseDistanceWeighted.txt deleted file mode 100644 index 50ece8a2eceb..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/InverseDistanceWeighted.txt +++ /dev/null @@ -1,17 +0,0 @@ -Inverse Distance Weighted -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -ParameterSelection|WEIGHTING|Distance Weighting|[0] inverse distance to a power;[1] linearly decreasing within search radius;[2] exponential weighting scheme;[3] gaussian weighting scheme -ParameterNumber|WEIGHT_POWER|Inverse Distance Power|0.0|None|2 -ParameterNumber|WEIGHT_BANDWIDTH|Exponential and Gaussian Weighting Bandwidth|0.0|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global)|1 -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100.0 -ParameterSelection|SEARCH_DIRECTION|Search Mode|[0] all directions;[1] quadrants -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points -ParameterNumber|SEARCH_POINTS_MAX|Maximum Number of Points|None|None|10 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_DEFINITION|Target Grid System|[0] user defined;[1] grid or grid system -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/InvertDataNo-Data.txt b/python/plugins/processing/algs/saga/description/2.1.4/InvertDataNo-Data.txt deleted file mode 100644 index 79a626fa9482..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/InvertDataNo-Data.txt +++ /dev/null @@ -1,4 +0,0 @@ -Invert Data/No-Data -grid_tools -ParameterRaster|INPUT|Grid|False -OutputRaster|OUTPUT|Result diff --git a/python/plugins/processing/algs/saga/description/2.1.4/KernelDensityEstimation.txt b/python/plugins/processing/algs/saga/description/2.1.4/KernelDensityEstimation.txt deleted file mode 100644 index ec9119509d38..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/KernelDensityEstimation.txt +++ /dev/null @@ -1,11 +0,0 @@ -Kernel Density Estimation -grid_gridding -ParameterVector|POINTS|Points|0|False -ParameterTableField|POPULATION|Weight|POINTS|-1|False -ParameterNumber|RADIUS|Radius|None|None|10 -ParameterSelection|KERNEL|Kernel|[0] quartic kernel;[1] gaussian kernel -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Kernel diff --git a/python/plugins/processing/algs/saga/description/2.1.4/LSFactor.txt b/python/plugins/processing/algs/saga/description/2.1.4/LSFactor.txt deleted file mode 100644 index 6522dc4c91c8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/LSFactor.txt +++ /dev/null @@ -1,9 +0,0 @@ -LS Factor -ta_hydrology -ParameterRaster|SLOPE|Slope|False -ParameterRaster|AREA|Catchment Area|False -ParameterSelection|CONV|Area to Length Conversion|[0] no conversion (areas already given as specific catchment area);[1] 1 / cell size (specific catchment area);[2] square root (catchment length) -ParameterSelection|METHOD|Method (LS)|[0] Moore et al. 1991;[1] Desmet & Govers 1996;[2] Boehner & Selige 2006 -ParameterNumber|EROSIVITY|Rill/Interrill Erosivity|None|None|0.0 -ParameterSelection|STABILITY|Stability|[0] stable;[1] instable (thawing) -OutputRaster|LS|LS Factor diff --git a/python/plugins/processing/algs/saga/description/2.1.4/LakeFlood.txt b/python/plugins/processing/algs/saga/description/2.1.4/LakeFlood.txt deleted file mode 100644 index 0328fc6ec474..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/LakeFlood.txt +++ /dev/null @@ -1,7 +0,0 @@ -Lake Flood -ta_hydrology -ParameterRaster|ELEV|DEM|False -ParameterRaster|SEEDS|Seeds|False -ParameterBoolean|LEVEL |Absolute Water Levels|True -OutputRaster|OUTDEPTH|Lake -OutputRaster|OUTLEVEL|Surface diff --git a/python/plugins/processing/algs/saga/description/2.1.4/LandSurfaceTemperature.txt b/python/plugins/processing/algs/saga/description/2.1.4/LandSurfaceTemperature.txt deleted file mode 100644 index 798338997f46..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/LandSurfaceTemperature.txt +++ /dev/null @@ -1,10 +0,0 @@ -Land Surface Temperature -ta_morphometry -ParameterRaster|DEM|Elevation [m]|False -ParameterRaster|SWR|Short Wave Radiation [kW/m2]|False -ParameterRaster|LAI|Leaf Area Index|False -ParameterNumber|Z_REFERENCE|Elevation at Reference Station [m]|None|None|0.0 -ParameterNumber|T_REFERENCE|Temperature at Reference Station [Deg.Celsius]|None|None|0.0 -ParameterNumber|T_GRADIENT|Temperature Gradient [Deg.Celsius/km]|None|None|6.5 -ParameterNumber|C_FACTOR|C Factor|None|None|1.0 -OutputRaster|LST|Land Surface Temperature [Deg.Celsius] diff --git a/python/plugins/processing/algs/saga/description/2.1.4/LaplacianFilter.txt b/python/plugins/processing/algs/saga/description/2.1.4/LaplacianFilter.txt deleted file mode 100644 index e828148a738f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/LaplacianFilter.txt +++ /dev/null @@ -1,8 +0,0 @@ -Laplacian Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|METHOD|Method|[0] standard kernel 1;[1] standard kernel 2;[2] Standard kernel 3;[3] user defined kernel -ParameterNumber|SIGMA|Standard Deviation (Percent of Radius)|None|None|0 -ParameterNumber|RADIUS|Radius|None|None|1 -ParameterSelection|MODE|Search Mode|[0] square;[1] circle -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/Layerofextremevalue.txt b/python/plugins/processing/algs/saga/description/2.1.4/Layerofextremevalue.txt deleted file mode 100644 index 15c6ed213816..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/Layerofextremevalue.txt +++ /dev/null @@ -1,5 +0,0 @@ -Layer of extreme value -grid_analysis -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|CRITERIA|Method|[0] Maximum;[1] Minimum -OutputRaster|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.1.4/LeastCostPaths.txt b/python/plugins/processing/algs/saga/description/2.1.4/LeastCostPaths.txt deleted file mode 100644 index ecbdd4818234..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/LeastCostPaths.txt +++ /dev/null @@ -1,7 +0,0 @@ -Least Cost Paths -grid_analysis -ParameterVector|SOURCE|Source Point(s)|0|False -ParameterRaster|DEM|Accumulated cost|False -ParameterMultipleInput|VALUES|Values|3|True -OutputVector|POINTS|Profile (points) -OutputVector|LINE|Profile (lines) diff --git a/python/plugins/processing/algs/saga/description/2.1.4/Line-PolygonIntersection.txt b/python/plugins/processing/algs/saga/description/2.1.4/Line-PolygonIntersection.txt deleted file mode 100644 index 9c15f2583b07..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/Line-PolygonIntersection.txt +++ /dev/null @@ -1,6 +0,0 @@ -Line-Polygon Intersection -shapes_lines -ParameterVector|LINES|Lines|1|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterSelection|METHOD|Output|[0] one multi-line per polygon;[1] keep original line attributes -OutputVector|INTERSECT|Intersection diff --git a/python/plugins/processing/algs/saga/description/2.1.4/LineDissolve.txt b/python/plugins/processing/algs/saga/description/2.1.4/LineDissolve.txt deleted file mode 100644 index fb704cc7bb38..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/LineDissolve.txt +++ /dev/null @@ -1,8 +0,0 @@ -Line Dissolve -shapes_lines -ParameterVector|LINES|Lines|-1|False -ParameterTableField|FIELD_1|1. Attribute|LINES|-1|False -ParameterTableField|FIELD_2|2. Attribute|LINES|-1|False -ParameterTableField|FIELD_3|3. Attribute|LINES|-1|False -ParameterSelection|ALL|Dissolve...|[0] lines with same attribute value(s);[1] all lines -OutputVector|DISSOLVED|Dissolved Lines diff --git a/python/plugins/processing/algs/saga/description/2.1.4/LineProperties.txt b/python/plugins/processing/algs/saga/description/2.1.4/LineProperties.txt deleted file mode 100644 index d23d392d964f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/LineProperties.txt +++ /dev/null @@ -1,7 +0,0 @@ -Line Properties -shapes_lines -ParameterVector|LINES|Lines|1|False -ParameterBoolean|BPARTS |Number of Parts|True -ParameterBoolean|BPOINTS |Number of Vertices|True -ParameterBoolean|BLENGTH |Length|True -OutputVector|OUTPUT|Lines with Property Attributes diff --git a/python/plugins/processing/algs/saga/description/2.1.4/LineSimplification.txt b/python/plugins/processing/algs/saga/description/2.1.4/LineSimplification.txt deleted file mode 100644 index b1bb26e2b791..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/LineSimplification.txt +++ /dev/null @@ -1,5 +0,0 @@ -Line Simplification -shapes_lines -ParameterVector|LINES|Lines|1|False -ParameterNumber|TOLERANCE|Tolerance|None|None|1.0 -OutputVector|OUTPUT|Simplified Lines diff --git a/python/plugins/processing/algs/saga/description/2.1.4/LocalMinimaandMaxima.txt b/python/plugins/processing/algs/saga/description/2.1.4/LocalMinimaandMaxima.txt deleted file mode 100644 index 4b415bc9a990..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/LocalMinimaandMaxima.txt +++ /dev/null @@ -1,5 +0,0 @@ -Local Minima and Maxima -shapes_grid -ParameterRaster|GRID|Grid|False -OutputVector|MINIMA|Minima -OutputVector|MAXIMA|Maxima diff --git a/python/plugins/processing/algs/saga/description/2.1.4/MajorityFilter.txt b/python/plugins/processing/algs/saga/description/2.1.4/MajorityFilter.txt deleted file mode 100644 index 7cd6fe5291b8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/MajorityFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Majority Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Radius|1.0|None|1 -ParameterNumber|THRESHOLD|Threshold [Percent]|0.0|None|0 -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/MassBalanceIndex.txt b/python/plugins/processing/algs/saga/description/2.1.4/MassBalanceIndex.txt deleted file mode 100644 index e65fabf52d57..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/MassBalanceIndex.txt +++ /dev/null @@ -1,8 +0,0 @@ -Mass Balance Index -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterRaster|HREL|Vertical Distance to Channel Network|True -ParameterNumber|TSLOPE|T Slope|None|None|15.0 -ParameterNumber|TCURVE|T Curvature|None|None|0.01 -ParameterNumber|THREL|T Vertical Distance to Channel Network|None|None|15.0 -OutputRaster|MBI|Mass Balance Index diff --git a/python/plugins/processing/algs/saga/description/2.1.4/MergeLayers.txt b/python/plugins/processing/algs/saga/description/2.1.4/MergeLayers.txt deleted file mode 100644 index f0d5bb7955cc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/MergeLayers.txt +++ /dev/null @@ -1,6 +0,0 @@ -Merge Layers -shapes_tools -ParameterMultipleInput|INPUT|Input Layers|-1|True -ParameterBoolean|SRCINFO|Add source information|True -ParameterBoolean|MATCH|Match Fields by Name|True -OutputVector|MERGED|Merged Layer \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/MetricConversions.txt b/python/plugins/processing/algs/saga/description/2.1.4/MetricConversions.txt deleted file mode 100644 index 3501a9e33438..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/MetricConversions.txt +++ /dev/null @@ -1,5 +0,0 @@ -Metric Conversions -grid_calculus -ParameterRaster|GRID|Grid|False -ParameterSelection|CONVERSION|Conversion|[0] radians to degree;[1] degree to radians;[2] Celsius to Fahrenheit;[3] Fahrenheit to Celsius -OutputRaster|CONV|Converted Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/MinimumDistanceAnalysis.txt b/python/plugins/processing/algs/saga/description/2.1.4/MinimumDistanceAnalysis.txt deleted file mode 100644 index 200a565bc533..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/MinimumDistanceAnalysis.txt +++ /dev/null @@ -1,4 +0,0 @@ -Minimum Distance Analysis -statistics_points -ParameterVector|POINTS|Points|0|False -OutputTable|TABLE|Minimum Distance Analysis diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ModifiedQuadraticShepard.txt b/python/plugins/processing/algs/saga/description/2.1.4/ModifiedQuadraticShepard.txt deleted file mode 100644 index 3c96918860ec..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ModifiedQuadraticShepard.txt +++ /dev/null @@ -1,11 +0,0 @@ -Modified Quadratic Shepard -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterNumber|QUADRATIC_NEIGHBORS|Quadratic Neighbors|5.0|None|13 -ParameterNumber|WEIGHTING_NEIGHBORS|Weighting Neighbors|3.0|None|19 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/MorphologicalFilter.txt b/python/plugins/processing/algs/saga/description/2.1.4/MorphologicalFilter.txt deleted file mode 100644 index 28dfd3f15bd2..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/MorphologicalFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Morphological Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Radius|None|None|1 -ParameterSelection|METHOD|Method|[0] Dilation;[1] Erosion;[2] Opening;[3] Closing -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/MorphometricProtectionIndex.txt b/python/plugins/processing/algs/saga/description/2.1.4/MorphometricProtectionIndex.txt deleted file mode 100644 index 48d44432cb65..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/MorphometricProtectionIndex.txt +++ /dev/null @@ -1,5 +0,0 @@ -Morphometric Protection Index -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS|Radius|None|None|2000.0 -OutputRaster|PROTECTION|Protection Index diff --git a/python/plugins/processing/algs/saga/description/2.1.4/Mosaicking.txt b/python/plugins/processing/algs/saga/description/2.1.4/Mosaicking.txt deleted file mode 100644 index b8bb1d1f5af4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/Mosaicking.txt +++ /dev/null @@ -1,14 +0,0 @@ -Mosaick raster layers|Mosaicking -grid_tools -AllowUnmatching -ParameterMultipleInput|GRIDS|Input Grids|3|False -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|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 -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/Multi-BandVariation.txt b/python/plugins/processing/algs/saga/description/2.1.4/Multi-BandVariation.txt deleted file mode 100644 index 8dcf7d017e09..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/Multi-BandVariation.txt +++ /dev/null @@ -1,11 +0,0 @@ -Multi-Band Variation -statistics_grid -ParameterMultipleInput|BANDS|Grids|3|False -ParameterNumber|RADIUS|Radius [Cells]|None|None|1 -ParameterSelection|DISTANCE_WEIGHTING_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1.0 -OutputRaster|MEAN|Mean Distance -OutputRaster|STDDEV|Standard Deviation -OutputRaster|DIFF|Distance diff --git a/python/plugins/processing/algs/saga/description/2.1.4/MultiDirectionLeeFilter.txt b/python/plugins/processing/algs/saga/description/2.1.4/MultiDirectionLeeFilter.txt deleted file mode 100644 index a768db9522f6..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/MultiDirectionLeeFilter.txt +++ /dev/null @@ -1,10 +0,0 @@ -Multi Direction Lee Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterNumber|NOISE_ABS|Estimated Noise (absolute)|None|None|1.0 -ParameterNumber|NOISE_REL|Estimated Noise (relative)|None|None|1.0 -ParameterBoolean|WEIGHTED |Weighted|True -ParameterSelection|METHOD|Method|[0] noise variance given as absolute value;[1] noise variance given relative to mean standard deviation;[2] original calculation (Ringeler) -OutputRaster|RESULT|Filtered Grid -OutputRaster|STDDEV|Minimum Standard Deviation -OutputRaster|DIR|Direction of Minimum Standard Deviation diff --git a/python/plugins/processing/algs/saga/description/2.1.4/MultilevelB-SplineInterpolation(fromGrid).txt b/python/plugins/processing/algs/saga/description/2.1.4/MultilevelB-SplineInterpolation(fromGrid).txt deleted file mode 100644 index 9c59c92868b8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/MultilevelB-SplineInterpolation(fromGrid).txt +++ /dev/null @@ -1,13 +0,0 @@ -Multilevel B-Spline Interpolation (from Grid) -grid_spline -ParameterRaster|GRID|Grid|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterSelection|METHOD|Method|[0] without B-spline refinement;[1] with B-spline refinement -ParameterNumber|EPSILON|Threshold Error|0|None|0.0001 -ParameterNumber|LEVEL_MAX|Maximum Level|1|14|11.0 -ParameterBoolean|UPDATE|Update View|False -ParameterSelection|DATATYPE|Data Type|[0] same as input grid;[1] floating point -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/MultilevelB-SplineInterpolation.txt b/python/plugins/processing/algs/saga/description/2.1.4/MultilevelB-SplineInterpolation.txt deleted file mode 100644 index 0f9b3231a78e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/MultilevelB-SplineInterpolation.txt +++ /dev/null @@ -1,12 +0,0 @@ -Multilevel B-Spline Interpolation -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -ParameterSelection|METHOD|Method|[0] without B-spline refinement;[1] with B-spline refinement -ParameterNumber|EPSILON|Threshold Error|0|None|0.0001 -ParameterBoolean|UPDATE|Update View|False -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/MultipleRegressionAnalysis(GridGrids).txt b/python/plugins/processing/algs/saga/description/2.1.4/MultipleRegressionAnalysis(GridGrids).txt deleted file mode 100644 index 32635533abf0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/MultipleRegressionAnalysis(GridGrids).txt +++ /dev/null @@ -1,15 +0,0 @@ -Multiple Regression Analysis (Grid/Grids) -statistics_regression -ParameterRaster|DEPENDENT|Dependent|False -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterBoolean|COORD_X |Include X Coordinate|True -ParameterBoolean|COORD_Y |Include Y Coordinate|True -ParameterSelection|METHOD|Method|[0] include all;[1] forward;[2] backward;[3] stepwise -ParameterNumber|P_IN|P in|None|None|5 -ParameterNumber|P_OUT|P out|None|None|5 -OutputRaster|REGRESSION|Regression -OutputRaster|RESIDUALS|Residuals -OutputTable|INFO_COEFF|Details: Coefficients -OutputTable|INFO_MODEL|Details: Model -OutputTable|INFO_STEPS|Details: Steps diff --git a/python/plugins/processing/algs/saga/description/2.1.4/MultipleRegressionAnalysis(PointsGrids).txt b/python/plugins/processing/algs/saga/description/2.1.4/MultipleRegressionAnalysis(PointsGrids).txt deleted file mode 100644 index c5dbbf03c4f8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/MultipleRegressionAnalysis(PointsGrids).txt +++ /dev/null @@ -1,16 +0,0 @@ -Multiple Regression Analysis (Points/Grids) -statistics_regression -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterVector|SHAPES|Shapes|-1|False -ParameterTableField|ATTRIBUTE|Attribute|SHAPES|-1|False -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterBoolean|COORD_X |Include X Coordinate|True -ParameterBoolean|COORD_Y |Include Y Coordinate|True -ParameterSelection|METHOD|Method|[0] include all;[1] forward;[2] backward;[3] stepwise -ParameterNumber|P_IN|P in|None|None|5 -ParameterNumber|P_OUT|P out|None|None|5 -OutputTable|INFO_COEFF|Details: Coefficients -OutputTable|INFO_MODEL|Details: Model -OutputTable|INFO_STEPS|Details: Steps -OutputVector|RESIDUALS|Residuals -OutputRaster|REGRESSION|Regression diff --git a/python/plugins/processing/algs/saga/description/2.1.4/MultiresolutionIndexofValleyBottomFlatness(MRVBF).txt b/python/plugins/processing/algs/saga/description/2.1.4/MultiresolutionIndexofValleyBottomFlatness(MRVBF).txt deleted file mode 100644 index 04d4c3ccbbdf..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/MultiresolutionIndexofValleyBottomFlatness(MRVBF).txt +++ /dev/null @@ -1,13 +0,0 @@ -Multiresolution Index of Valley Bottom Flatness (MRVBF) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|T_SLOPE|Initial Threshold for Slope|None|None|16 -ParameterNumber|T_PCTL_V|Threshold for Elevation Percentile (Lowness)|None|None|0.4 -ParameterNumber|T_PCTL_R|Threshold for Elevation Percentile (Upness)|None|None|0.35 -ParameterNumber|P_SLOPE|Shape Parameter for Slope|None|None|4.0 -ParameterNumber|P_PCTL|Shape Parameter for Elevation Percentile|None|None|3.0 -ParameterBoolean|UPDATE |Update Views|True -ParameterBoolean|CLASSIFY |Classify|True -ParameterNumber|MAX_RES|Maximum Resolution (Percentage)|None|None|100 -OutputRaster|MRVBF|MRVBF -OutputRaster|MRRTF|MRRTF diff --git a/python/plugins/processing/algs/saga/description/2.1.4/NaturalNeighbour.txt b/python/plugins/processing/algs/saga/description/2.1.4/NaturalNeighbour.txt deleted file mode 100644 index 70353b1e695a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/NaturalNeighbour.txt +++ /dev/null @@ -1,10 +0,0 @@ -Natural Neighbour -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterBoolean|SIBSON|Sibson|True -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/NearestNeighbour.txt b/python/plugins/processing/algs/saga/description/2.1.4/NearestNeighbour.txt deleted file mode 100644 index 50a99a9f3613..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/NearestNeighbour.txt +++ /dev/null @@ -1,9 +0,0 @@ -Nearest Neighbour -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/OrderedWeightedAveraging(OWA).txt b/python/plugins/processing/algs/saga/description/2.1.4/OrderedWeightedAveraging(OWA).txt deleted file mode 100644 index 19b0b85a23dc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/OrderedWeightedAveraging(OWA).txt +++ /dev/null @@ -1,5 +0,0 @@ -Ordered Weighted Averaging|Ordered Weighted Averaging (OWA) -grid_analysis -ParameterMultipleInput|GRIDS|Input Grids|3|False -ParameterFixedTable|WEIGHTS|Weights|3|Weight|False -OutputRaster|OUTPUT|Output Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/OrdinaryKriging(Global).txt b/python/plugins/processing/algs/saga/description/2.1.4/OrdinaryKriging(Global).txt deleted file mode 100644 index 91ded9ab823a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/OrdinaryKriging(Global).txt +++ /dev/null @@ -1,18 +0,0 @@ -Ordinary Kriging (Global) -statistics_kriging -ParameterVector|POINTS|Points|0|False -ParameterTableField|ZFIELD|Attribute|POINTS|-1|False -ParameterSelection|TQUALITY|Type of Quality Measure|[0] standard deviation;[1] variance -ParameterBoolean|LOG|Logarithmic Transformation|True -ParameterBoolean|BLOCK|Block Kriging|True -ParameterNumber|DBLOCK|Block Size|0|None|100 -ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0 -ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100 -ParameterNumber|VAR_NSKIP|Skip|1|None|1 -ParameterString|VAR_MODEL|Variogram Model|a + b * x -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_PREDICTION|Prediction -OutputRaster|TARGET_VARIANCE|Quality Measure diff --git a/python/plugins/processing/algs/saga/description/2.1.4/OrdinaryKriging.txt b/python/plugins/processing/algs/saga/description/2.1.4/OrdinaryKriging.txt deleted file mode 100644 index f3517506bd16..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/OrdinaryKriging.txt +++ /dev/null @@ -1,24 +0,0 @@ -Ordinary Kriging -statistics_kriging -ParameterVector|POINTS|Points|0|False -ParameterTableField|ZFIELD|Attribute|POINTS|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterSelection|TQUALITY|Type of Quality Measure|[0] standard deviation;[1] variance -ParameterBoolean|LOG|Logarithmic Transformation|True -ParameterBoolean|BLOCK|Block Kriging|True -ParameterNumber|DBLOCK|Block Size|0|None|100 -ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0 -ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100 -ParameterNumber|VAR_NSKIP|Skip|1|None|1 -ParameterString|VAR_MODEL|Variogram Model|a + b * x -ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global -ParameterNumber|SEARCH_RADIUS|Maximum Search Distance|0|None|1000 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_PREDICTION|Prediction -OutputRaster|TARGET_VARIANCE|Quality Measure diff --git a/python/plugins/processing/algs/saga/description/2.1.4/OverlandFlow-KinematicWaveD8.txt b/python/plugins/processing/algs/saga/description/2.1.4/OverlandFlow-KinematicWaveD8.txt deleted file mode 100644 index 0a287008b818..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/OverlandFlow-KinematicWaveD8.txt +++ /dev/null @@ -1,13 +0,0 @@ -Overland Flow - Kinematic Wave D8 -sim_hydrology -ParameterRaster|DEM|Elevation|False -ParameterVector|GAUGES|Gauges|-1|True -ParameterNumber|TIME_SPAN|Simulation Time [h]|None|None|24 -ParameterNumber|TIME_STEP|Simulation Time Step [h]|None|None|0.1 -ParameterNumber|ROUGHNESS|Manning's Roughness|None|None|0.03 -ParameterNumber|NEWTON_MAXITER|Max. Iterations|None|None|100 -ParameterNumber|NEWTON_EPSILON|Epsilon|None|None|0.0001 -ParameterSelection|PRECIP|Precipitation|[0] Homogenous;[1] Above Elevation;[2] Left Half -ParameterNumber|THRESHOLD|Threshold Elevation|None|None|0.0 -OutputRaster|FLOW|Runoff -OutputTable|GAUGES_FLOW|Flow at Gauges diff --git a/python/plugins/processing/algs/saga/description/2.1.4/OverlandFlowDistancetoChannelNetwork.txt b/python/plugins/processing/algs/saga/description/2.1.4/OverlandFlowDistancetoChannelNetwork.txt deleted file mode 100644 index 58f904431d25..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/OverlandFlowDistancetoChannelNetwork.txt +++ /dev/null @@ -1,8 +0,0 @@ -Overland Flow Distance to Channel Network -ta_channels -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|CHANNELS|Channel Network|False -ParameterSelection|METHOD|Flow Algorithm|[0] D8;[1] MFD -OutputRaster|DISTANCE|Overland Flow Distance -OutputRaster|DISTVERT|Vertical Overland Flow Distance -OutputRaster|DISTHORZ|Horizontal Overland Flow Distance diff --git a/python/plugins/processing/algs/saga/description/2.1.4/Patching.txt b/python/plugins/processing/algs/saga/description/2.1.4/Patching.txt deleted file mode 100644 index 6a70404010f4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/Patching.txt +++ /dev/null @@ -1,6 +0,0 @@ -Patching -grid_tools -ParameterRaster|ORIGINAL|Grid|False -ParameterRaster|ADDITIONAL|Patch Grid|False -ParameterSelection|INTERPOLATION|Interpolation Method|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -OutputRaster|COMPLETED|Completed Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/PatternAnalysis.txt b/python/plugins/processing/algs/saga/description/2.1.4/PatternAnalysis.txt deleted file mode 100644 index 5a6d4de632a2..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/PatternAnalysis.txt +++ /dev/null @@ -1,11 +0,0 @@ -Pattern Analysis -grid_analysis -ParameterRaster|INPUT|Input Grid|False -ParameterSelection|WINSIZE|Size of Analysis Window|[0] 3 X 3;[1] 5 X 5;[2] 7 X 7 -ParameterNumber|MAXNUMCLASS|Max. Number of Classes|None|None|0 -OutputRaster|RELATIVE|Relative Richness -OutputRaster|DIVERSITY|Diversity -OutputRaster|DOMINANCE|Dominance -OutputRaster|FRAGMENTATION|Fragmentation -OutputRaster|NDC|Number of Different Classes -OutputRaster|CVN|Center Versus Neighbours diff --git a/python/plugins/processing/algs/saga/description/2.1.4/PointStatisticsforPolygons.txt b/python/plugins/processing/algs/saga/description/2.1.4/PointStatisticsforPolygons.txt deleted file mode 100644 index 02e0aba55cf1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/PointStatisticsforPolygons.txt +++ /dev/null @@ -1,14 +0,0 @@ -Point Statistics for Polygons -shapes_polygons -ParameterVector|POINTS|Points|0|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|FIELDS|Attribute Table field|POINTS|-1|False -ParameterSelection|FIELD_NAME|Field Naming Choice|[0] variable type + original name;[1] original name + variable type;[2] original name;[3] variable type -ParameterBoolean|SUM |Sum|True -ParameterBoolean|AVG |Mean|True -ParameterBoolean|VAR |Variance|True -ParameterBoolean|DEV |Deviation|True -ParameterBoolean|MIN |Minimum|True -ParameterBoolean|MAX |Maximum|True -ParameterBoolean|NUM |Count|True -OutputVector|STATISTICS|Statistics diff --git a/python/plugins/processing/algs/saga/description/2.1.4/PointsFilter.txt b/python/plugins/processing/algs/saga/description/2.1.4/PointsFilter.txt deleted file mode 100644 index afb3ee99f331..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/PointsFilter.txt +++ /dev/null @@ -1,12 +0,0 @@ -Points Filter -shapes_points -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterNumber|RADIUS|Radius|None|None|1 -ParameterNumber|MINNUM|Minimum Number of Points|None|None|0 -ParameterNumber|MAXNUM|Maximum Number of Points|None|None|0 -ParameterBoolean|QUADRANTS |Quadrants|True -ParameterSelection|METHOD|Filter Criterion|[0] keep maxima (with tolerance);[1] keep minima (with tolerance);[2] remove maxima (with tolerance);[3] remove minima (with tolerance);[4] remove below percentile;[5] remove above percentile -ParameterNumber|TOLERANCE|Tolerance|None|None|0.0 -ParameterNumber|PERCENT|Percentile|None|None|50 -OutputVector|FILTER|Filtered Points diff --git a/python/plugins/processing/algs/saga/description/2.1.4/PointsThinning.txt b/python/plugins/processing/algs/saga/description/2.1.4/PointsThinning.txt deleted file mode 100644 index 00643e842d88..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/PointsThinning.txt +++ /dev/null @@ -1,6 +0,0 @@ -Points Thinning -shapes_points -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterNumber|RESOLUTION|Resolution|0.0|None|1.0 -OutputVector|THINNED|Thinned Points diff --git a/python/plugins/processing/algs/saga/description/2.1.4/PolartoCartesianCoordinates.txt b/python/plugins/processing/algs/saga/description/2.1.4/PolartoCartesianCoordinates.txt deleted file mode 100644 index 8c9b76b316b1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/PolartoCartesianCoordinates.txt +++ /dev/null @@ -1,8 +0,0 @@ -Polar to Cartesian Coordinates -shapes_tools -ParameterVector|POLAR|Polar Coordinates|-1|False -ParameterTableField|F_EXAGG|Exaggeration|POLAR|-1|False -ParameterNumber|D_EXAGG|Exaggeration Factor|None|None|1 -ParameterNumber|RADIUS|Radius|None|None|6371000.0 -ParameterBoolean|DEGREE |Degree|True -OutputVector|CARTES|Cartesian Coordinates diff --git a/python/plugins/processing/algs/saga/description/2.1.4/Polygon-LineIntersection.txt b/python/plugins/processing/algs/saga/description/2.1.4/Polygon-LineIntersection.txt deleted file mode 100644 index cb4dd7e8e530..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/Polygon-LineIntersection.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygon-Line Intersection -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterVector|LINES|Lines|1|False -OutputVector|INTERSECT|Intersection diff --git a/python/plugins/processing/algs/saga/description/2.1.4/PolygonCentroids.txt b/python/plugins/processing/algs/saga/description/2.1.4/PolygonCentroids.txt deleted file mode 100644 index 5672b7e7f33a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/PolygonCentroids.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygon Centroids -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|METHOD |Centroids for each part|True -OutputVector|CENTROIDS|Centroids diff --git a/python/plugins/processing/algs/saga/description/2.1.4/PolygonDifference.txt b/python/plugins/processing/algs/saga/description/2.1.4/PolygonDifference.txt deleted file mode 100644 index ffb19965a883..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/PolygonDifference.txt +++ /dev/null @@ -1,6 +0,0 @@ -Difference -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Difference diff --git a/python/plugins/processing/algs/saga/description/2.1.4/PolygonDissolve.txt b/python/plugins/processing/algs/saga/description/2.1.4/PolygonDissolve.txt deleted file mode 100644 index 31663861e027..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/PolygonDissolve.txt +++ /dev/null @@ -1,8 +0,0 @@ -Polygon dissolve (by attribute)|Polygon Dissolve -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|FIELD_1|1. Attribute|POLYGONS|-1|True -ParameterTableField|FIELD_2|2. Attribute|POLYGONS|-1|True -ParameterTableField|FIELD_3|3. Attribute|POLYGONS|-1|True -ParameterBoolean|BND_KEEP|Keep inner boundaries|True -OutputVector|DISSOLVED|Dissolved diff --git a/python/plugins/processing/algs/saga/description/2.1.4/PolygonDissolveAllPolygs.txt b/python/plugins/processing/algs/saga/description/2.1.4/PolygonDissolveAllPolygs.txt deleted file mode 100644 index 49133566c5d4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/PolygonDissolveAllPolygs.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygon dissolve (all polygons)|Polygon Dissolve -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|BND_KEEP|Keep inner boundaries|True -OutputVector|DISSOLVED|Dissolved diff --git a/python/plugins/processing/algs/saga/description/2.1.4/PolygonIdentity.txt b/python/plugins/processing/algs/saga/description/2.1.4/PolygonIdentity.txt deleted file mode 100644 index 6cb365fbefba..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/PolygonIdentity.txt +++ /dev/null @@ -1,6 +0,0 @@ -Identity -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Identity diff --git a/python/plugins/processing/algs/saga/description/2.1.4/PolygonIntersect.txt b/python/plugins/processing/algs/saga/description/2.1.4/PolygonIntersect.txt deleted file mode 100644 index 2a822db707c3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/PolygonIntersect.txt +++ /dev/null @@ -1,6 +0,0 @@ -Intersect -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Intersection diff --git a/python/plugins/processing/algs/saga/description/2.1.4/PolygonPartstoSeparatePolygons.txt b/python/plugins/processing/algs/saga/description/2.1.4/PolygonPartstoSeparatePolygons.txt deleted file mode 100644 index 1cab12c11a51..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/PolygonPartstoSeparatePolygons.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygon Parts to Separate Polygons -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|LAKES |Ignore Lakes|True -OutputVector|PARTS|Polygon Parts diff --git a/python/plugins/processing/algs/saga/description/2.1.4/PolygonProperties.txt b/python/plugins/processing/algs/saga/description/2.1.4/PolygonProperties.txt deleted file mode 100644 index eeb063b1e570..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/PolygonProperties.txt +++ /dev/null @@ -1,8 +0,0 @@ -Polygon Properties -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|BPARTS |Number of Parts|True -ParameterBoolean|BPOINTS |Number of Vertices|True -ParameterBoolean|BLENGTH |Perimeter|True -ParameterBoolean|BAREA |Area|True -OutputVector|OUTPUT|Polygons with Property Attributes diff --git a/python/plugins/processing/algs/saga/description/2.1.4/PolygonShapeIndices.txt b/python/plugins/processing/algs/saga/description/2.1.4/PolygonShapeIndices.txt deleted file mode 100644 index 468ac18c9956..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/PolygonShapeIndices.txt +++ /dev/null @@ -1,4 +0,0 @@ -Polygon Shape Indices -shapes_polygons -ParameterVector|SHAPES|Shapes|2|False -OutputVector|INDEX|Shape Index diff --git a/python/plugins/processing/algs/saga/description/2.1.4/PolygonSymmetricalDifference.txt b/python/plugins/processing/algs/saga/description/2.1.4/PolygonSymmetricalDifference.txt deleted file mode 100644 index d1e4e3dc584e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/PolygonSymmetricalDifference.txt +++ /dev/null @@ -1,6 +0,0 @@ -Symmetrical Difference -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Symmetrical Difference diff --git a/python/plugins/processing/algs/saga/description/2.1.4/PolygonUnion.txt b/python/plugins/processing/algs/saga/description/2.1.4/PolygonUnion.txt deleted file mode 100644 index 8dd3e56c6d1f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/PolygonUnion.txt +++ /dev/null @@ -1,6 +0,0 @@ -Union -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Union diff --git a/python/plugins/processing/algs/saga/description/2.1.4/PolygonUpdate.txt b/python/plugins/processing/algs/saga/description/2.1.4/PolygonUpdate.txt deleted file mode 100644 index 71914cdc8dfe..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/PolygonUpdate.txt +++ /dev/null @@ -1,6 +0,0 @@ -Update -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Updated polygons diff --git a/python/plugins/processing/algs/saga/description/2.1.4/PolygonstoEdgesandNodes.txt b/python/plugins/processing/algs/saga/description/2.1.4/PolygonstoEdgesandNodes.txt deleted file mode 100644 index e9f4628f40a8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/PolygonstoEdgesandNodes.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygons to Edges and Nodes -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -OutputVector|EDGES|Edges -OutputVector|NODES|Nodes diff --git a/python/plugins/processing/algs/saga/description/2.1.4/PolynomialRegression.txt b/python/plugins/processing/algs/saga/description/2.1.4/PolynomialRegression.txt deleted file mode 100644 index e7ccd305714b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/PolynomialRegression.txt +++ /dev/null @@ -1,14 +0,0 @@ -Polynomial Regression -statistics_regression -ParameterVector|POINTS|Points|0|False -ParameterTableField|ATTRIBUTE|Attribute|POINTS|-1|False -ParameterSelection|POLYNOM|Polynom|[0] simple planar surface;[1] bi-linear saddle;[2] quadratic surface;[3] cubic surface;[4] user defined -ParameterNumber|XORDER|Maximum X Order|1|None|4 -ParameterNumber|YORDER|Maximum Y Order|1|None|4 -ParameterNumber|TORDER|Maximum Total Order|0|None|4 -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid -OutputVector|RESIDUALS|Residuals diff --git a/python/plugins/processing/algs/saga/description/2.1.4/PrincipleComponentsAnalysis.txt b/python/plugins/processing/algs/saga/description/2.1.4/PrincipleComponentsAnalysis.txt deleted file mode 100644 index f43035a1cc7a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/PrincipleComponentsAnalysis.txt +++ /dev/null @@ -1,6 +0,0 @@ -Principle Components Analysis -table_calculus -ParameterTable|TABLE|Table|False -ParameterSelection|METHOD|Method|[0] correlation matrix;[1] variance-covariance matrix;[2] sums-of-squares-and-cross-products matrix -ParameterNumber|NFIRST|Number of Components|None|None|3 -OutputTable|PCA|Principle Components diff --git a/python/plugins/processing/algs/saga/description/2.1.4/Profilefrompoints.txt b/python/plugins/processing/algs/saga/description/2.1.4/Profilefrompoints.txt deleted file mode 100644 index 9e21d5fa3540..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/Profilefrompoints.txt +++ /dev/null @@ -1,7 +0,0 @@ -Profile from points table|Profile from points -ta_profiles -ParameterRaster|GRID|Grid|False -ParameterTable|TABLE|Input|False -ParameterTableField|X|X|TABLE|-1|False -ParameterTableField|Y|Y|TABLE|-1|False -OutputTable|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ProfilesfromLines.txt b/python/plugins/processing/algs/saga/description/2.1.4/ProfilesfromLines.txt deleted file mode 100644 index bc32a9f8b05f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ProfilesfromLines.txt +++ /dev/null @@ -1,9 +0,0 @@ -Profiles from Lines -ta_profiles -ParameterRaster|DEM|DEM|False -ParameterMultipleInput|VALUES|Values|3|True -ParameterVector|LINES|Lines|1|False -ParameterTableField|NAME|Name|LINES|-1|False -ParameterBoolean|SPLIT |Each Line as new Profile|True -OutputVector|PROFILE|Profiles -OutputVector|PROFILES|Profiles diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ProximityGrid.txt b/python/plugins/processing/algs/saga/description/2.1.4/ProximityGrid.txt deleted file mode 100644 index b78dad39d795..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ProximityGrid.txt +++ /dev/null @@ -1,6 +0,0 @@ -Proximity Grid -grid_tools -ParameterRaster|FEATURES|Features|False -OutputRaster|DISTANCE|Distance -OutputRaster|DIRECTION|Direction -OutputRaster|ALLOCATION|Allocation diff --git a/python/plugins/processing/algs/saga/description/2.1.4/QuadTreeStructuretoShapes.txt b/python/plugins/processing/algs/saga/description/2.1.4/QuadTreeStructuretoShapes.txt deleted file mode 100644 index 14d3cb722d11..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/QuadTreeStructuretoShapes.txt +++ /dev/null @@ -1,7 +0,0 @@ -QuadTree Structure to Shapes -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterTableField|ATTRIBUTE|Attribute|SHAPES|-1|False -OutputVector|POLYGONS|Polygons -OutputVector|LINES|Lines -OutputVector|POINTS|Duplicated Points diff --git a/python/plugins/processing/algs/saga/description/2.1.4/RGBComposite.txt b/python/plugins/processing/algs/saga/description/2.1.4/RGBComposite.txt deleted file mode 100644 index 271bbc60c10e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/RGBComposite.txt +++ /dev/null @@ -1,24 +0,0 @@ -RGB Composite -grid_visualisation -ParameterRaster|GRID_R|R|False -ParameterRaster|GRID_G|G|False -ParameterRaster|GRID_B|B|False -ParameterSelection|R_METHOD|Method for R value|0 - 255;Rescale to 0 - 255;User defined rescale;Percentiles;Percentage of standard deviation -ParameterSelection|G_METHOD|Method for G value|0 - 255;Rescale to 0 - 255;User defined rescale;Percentiles;Percentage of standard deviation -ParameterSelection|B_METHOD|Method for B value|0 - 255;Rescale to 0 - 255;User defined rescale;Percentiles;Percentage of standard deviation -ParameterNumber|R_RANGE_MIN|Rescale Range for RED min|0|255|0 -ParameterNumber|R_RANGE_MAX|Rescale Range for RED max|0|255|255 -ParameterNumber|R_PERCTL_MIN|Percentiles Range for RED max|1|99|1 -ParameterNumber|R_PERCTL_MAX|Percentiles Range for RED max|1|99|99 -ParameterNumber|R_PERCENT|Percentage of standard deviation for RED|0|None|150.0 -ParameterNumber|G_RANGE_MIN|Rescale Range for GREEN min|0|255|0 -ParameterNumber|G_RANGE_MAX|Rescale Range for GREEN max|0|255|255 -ParameterNumber|G_PERCTL_MIN|Percentiles Range for GREEN max|1|99|1 -ParameterNumber|G_PERCTL_MAX|Percentiles Range for GREEN max|1|99|99 -ParameterNumber|G_PERCENT|Percentage of standard deviation for GREEN|0|None|150.0 -ParameterNumber|B_RANGE_MIN|Rescale Range for BLUE min|0|255|0 -ParameterNumber|B_RANGE_MAX|Rescale Range for BLUE max|0|255|255 -ParameterNumber|B_PERCTL_MIN|Percentiles Range for BLUE max|1|99|1 -ParameterNumber|B_PERCTL_MAX|Percentiles Range for BLUE max|1|99|99 -ParameterNumber|B_PERCENT|Percentage of standard deviation for BLUE|0|None|150.0 -OutputRaster|GRID_RGB|Output RGB diff --git a/python/plugins/processing/algs/saga/description/2.1.4/RadiusofVariance(Grid).txt b/python/plugins/processing/algs/saga/description/2.1.4/RadiusofVariance(Grid).txt deleted file mode 100644 index 6e6d3edaf469..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/RadiusofVariance(Grid).txt +++ /dev/null @@ -1,7 +0,0 @@ -Radius of Variance (Grid) -statistics_grid -ParameterRaster|INPUT|Grid|False -ParameterNumber|VARIANCE|Standard Deviation|0.0|None|1.0 -ParameterNumber|RADIUS|Maximum Search Radius (cells)|0.0|None|20 -ParameterSelection|OUTPUT|Type of Output|[0] Cells;[1] Map Units -OutputRaster|RESULT|Variance Radius diff --git a/python/plugins/processing/algs/saga/description/2.1.4/RandomField.txt b/python/plugins/processing/algs/saga/description/2.1.4/RandomField.txt deleted file mode 100644 index abf32b4caddc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/RandomField.txt +++ /dev/null @@ -1,12 +0,0 @@ -Random Field -grid_calculus -Hardcoded|-DEFINITION 0 -ParameterSelection|METHOD|Method|[0] Uniform;[1] Gaussian -ParameterNumber|RANGE_MIN|Range Min|None|None|0.0 -ParameterNumber|RANGE_MAX|Range Max|None|None|1.0 -ParameterNumber|MEAN|Arithmetic Mean|None|None|0.0 -ParameterNumber|STDDEV|Standard Deviation|None|None|1.0 -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|USER_FITS|Method|[0] nodes;[1] cells -OutputRaster|OUT_GRID|Random Field diff --git a/python/plugins/processing/algs/saga/description/2.1.4/RandomTerrainGeneration.txt b/python/plugins/processing/algs/saga/description/2.1.4/RandomTerrainGeneration.txt deleted file mode 100644 index 18043bf01b5b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/RandomTerrainGeneration.txt +++ /dev/null @@ -1,9 +0,0 @@ -Random Terrain Generation -grid_calculus -ParameterNumber|RADIUS|Radius (cells)|None|None|10 -ParameterNumber|ITERATIONS|Iterations|None|None|10 -ParameterSelection|TARGET_TYPE|Target Dimensions|[0] User defined -ParameterNumber|USER_CELL_SIZE|Grid Size|0.0|None|1.0 -ParameterNumber|USER_COLS|Cols|1.0|None|100 -ParameterNumber|USER_ROWS|Rows|1.0|None|100 -OutputRaster|TARGET_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/RankFilter.txt b/python/plugins/processing/algs/saga/description/2.1.4/RankFilter.txt deleted file mode 100644 index b676b15fc287..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/RankFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Rank Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Radius|1.0|None|1 -ParameterNumber|RANK|Rank [Percent]|None|None|50 -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/RealSurfaceArea.txt b/python/plugins/processing/algs/saga/description/2.1.4/RealSurfaceArea.txt deleted file mode 100644 index 065c34e79f04..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/RealSurfaceArea.txt +++ /dev/null @@ -1,4 +0,0 @@ -Real Surface Area -ta_morphometry -ParameterRaster|DEM|Elevation|False -OutputRaster|AREA|Surface Area diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ReclassifyGridValues.txt b/python/plugins/processing/algs/saga/description/2.1.4/ReclassifyGridValues.txt deleted file mode 100644 index d76e5a594793..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ReclassifyGridValues.txt +++ /dev/null @@ -1,18 +0,0 @@ -Reclassify Grid Values -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterSelection|METHOD|Method|[0] single;[1] range;[2] simple table -ParameterNumber|OLD|old value (for single value change)|None|None|0.0 -ParameterNumber|NEW|new value (for single value change)|None|None|1.0 -ParameterSelection|SOPERATOR|operator (for single value change)|[0] =;[1] <;[2] <=;[3] >=;[4] > -ParameterNumber|MIN|minimum value (for range)|None|None|0.0 -ParameterNumber|MAX|maximum value (for range)|None|None|1.0 -ParameterNumber|RNEW|new value(for range)|None|None|2.0 -ParameterSelection|ROPERATOR|operator (for range)|[0] <=;[1] < -ParameterFixedTable|RETAB|Lookup Table|3|minimum;maximum;new|False -ParameterSelection|TOPERATOR|operator (for table)|[0] min <= value < max;[1] min <= value <= max;[2] min < value <= max;[3] min < value < max -ParameterBoolean|NODATAOPT |replace no data values|True -ParameterNumber|NODATA|new value for no data values|None|None|0.0 -ParameterBoolean|OTHEROPT |replace other values|True -ParameterNumber|OTHERS|new value for other values|None|None|0.0 -OutputRaster|RESULT|Reclassified Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/RegressionAnalysis(PointsGrid).txt b/python/plugins/processing/algs/saga/description/2.1.4/RegressionAnalysis(PointsGrid).txt deleted file mode 100644 index fd4134084d40..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/RegressionAnalysis(PointsGrid).txt +++ /dev/null @@ -1,9 +0,0 @@ -Regression analysis|Regression Analysis (Points/Grid) -statistics_regression -ParameterRaster|GRID|Grid|False -ParameterVector|SHAPES|Shapes|-1|False -ParameterTableField|ATTRIBUTE|Attribute|SHAPES|-1|False -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterSelection|METHOD|Regression Function|[0] Y = a + b * X (linear);[1] Y = a + b / X;[2] Y = a / (b - X);[3] Y = a * X^b (power);[4] Y = a e^(b * X) (exponential);[5] Y = a + b * ln(X) (logarithmic) -OutputRaster|REGRESSION|Regression -OutputVector|RESIDUAL|Residuals diff --git a/python/plugins/processing/algs/saga/description/2.1.4/RelativeHeightsandSlopePositions.txt b/python/plugins/processing/algs/saga/description/2.1.4/RelativeHeightsandSlopePositions.txt deleted file mode 100644 index ab3c30b1953e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/RelativeHeightsandSlopePositions.txt +++ /dev/null @@ -1,11 +0,0 @@ -Relative Heights and Slope Positions -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|W|w|None|None|0.5 -ParameterNumber|T|t|None|None|10.0 -ParameterNumber|E|e|None|None|2.0 -OutputRaster|HO|Slope Height -OutputRaster|HU|Valley Depth -OutputRaster|NH|Normalized Height -OutputRaster|SH|Standardized Height -OutputRaster|MS|Mid-Slope Positon diff --git a/python/plugins/processing/algs/saga/description/2.1.4/RemoveDuplicatePoints.txt b/python/plugins/processing/algs/saga/description/2.1.4/RemoveDuplicatePoints.txt deleted file mode 100644 index 5a4d4c1b54ea..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/RemoveDuplicatePoints.txt +++ /dev/null @@ -1,7 +0,0 @@ -Remove Duplicate Points -shapes_points -ParameterVector|POINTS|Points|-1|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterSelection|METHOD|Point to Keep|[0] first point;[1] last point;[2] point with minimum attribute value;[3] point with maximum attribute value -ParameterSelection|NUMERIC|Numeric Attribute Values|[0] take value from the point to be kept;[1] minimum value of all duplicates;[2] maximum value of all duplicates;[3] mean value of all duplicates -OutputVector|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.1.4/Representativeness(Grid).txt b/python/plugins/processing/algs/saga/description/2.1.4/Representativeness(Grid).txt deleted file mode 100644 index 35a19a47a222..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/Representativeness(Grid).txt +++ /dev/null @@ -1,6 +0,0 @@ -Representativeness|Representativeness (Grid) -statistics_grid -ParameterRaster|INPUT|Grid|False -ParameterNumber|RADIUS|Radius (Cells)|1.0|None|10 -ParameterNumber|EXPONENT|Exponent|None|None|1 -OutputRaster|RESULT|Representativeness diff --git a/python/plugins/processing/algs/saga/description/2.1.4/Resampling.txt b/python/plugins/processing/algs/saga/description/2.1.4/Resampling.txt deleted file mode 100644 index 3b8096c5fad6..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/Resampling.txt +++ /dev/null @@ -1,11 +0,0 @@ -Resampling -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterBoolean|KEEP_TYPE|Preserve Data Type|True -Hardcoded|-TARGET_DEFINITION 0 -ParameterSelection|SCALE_UP_METHOD|Interpolation Method (Scale Up)|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation;[5] Mean Value;[6] Mean Value (cell area weighted);[7] Minimum Value;[8] Maximum Value;[9] Majority -ParameterSelection|SCALE_DOWN_METHOD|Interpolation Method (Scale Down)|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ResidualAnalysis(Grid).txt b/python/plugins/processing/algs/saga/description/2.1.4/ResidualAnalysis(Grid).txt deleted file mode 100644 index 9000f9eac4d4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ResidualAnalysis(Grid).txt +++ /dev/null @@ -1,16 +0,0 @@ -Residual analysis|Residual Analysis (Grid) -statistics_grid -ParameterRaster|GRID|Grid|False -ParameterNumber|RADIUS|Radius (Cells)|1.0|None|7 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1.0 -OutputRaster|MEAN|Mean Value -OutputRaster|DIFF|Difference from Mean Value -OutputRaster|STDDEV|Standard Deviation -OutputRaster|RANGE|Value Range -OutputRaster|MIN|Minimum Value -OutputRaster|MAX|Maximum Value -OutputRaster|DEVMEAN|Deviation from Mean Value -OutputRaster|PERCENT|Percentile diff --git a/python/plugins/processing/algs/saga/description/2.1.4/RunningAverage.txt b/python/plugins/processing/algs/saga/description/2.1.4/RunningAverage.txt deleted file mode 100644 index c0e23d752241..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/RunningAverage.txt +++ /dev/null @@ -1,6 +0,0 @@ -Running Average -table_calculus -ParameterTable|INPUT|Input|False -ParameterTableField|FIELD|Attribute|INPUT|-1|False -ParameterNumber|COUNT|Number of Records|0.0|None|10 -OutputTable|OUTPUT|Output diff --git a/python/plugins/processing/algs/saga/description/2.1.4/SAGAWetnessIndex.txt b/python/plugins/processing/algs/saga/description/2.1.4/SAGAWetnessIndex.txt deleted file mode 100644 index 564f34bd3efd..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/SAGAWetnessIndex.txt +++ /dev/null @@ -1,13 +0,0 @@ -SAGA Wetness Index -ta_hydrology -ParameterRaster|DEM|Elevation|False -ParameterNumber|SUCTION|Suction|0.0|None|10.0 -ParameterSelection|AREA_TYPE|Type of Area|[0] absolute catchment area;[1] square root of catchment area;[2] specific catchment area -ParameterSelection|SLOPE_TYPE|Type of Slope|[0] local slope;[1] catchment slope -ParameterNumber|SLOPE_MIN|Suction|0.0|None|0.0 -ParameterNumber|SLOPE_OFF|Suction|0.0|None|0.1 -ParameterNumber|SLOPE_WEIGHT|Suction|0.0|None|1.0 -OutputRaster|AREA|Catchment area -OutputRaster|SLOPE|Catchment slope -OutputRaster|AREA_MOD|Modified catchment area -OutputRaster|TWI|Topographic Wetness Index diff --git a/python/plugins/processing/algs/saga/description/2.1.4/SeedGeneration.txt b/python/plugins/processing/algs/saga/description/2.1.4/SeedGeneration.txt deleted file mode 100644 index be4f35778ec1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/SeedGeneration.txt +++ /dev/null @@ -1,11 +0,0 @@ -Seed Generation -imagery_segmentation -ParameterMultipleInput|GRIDS|Features|3|False -ParameterNumber|FACTOR|Bandwidth (Cells)|0.0|None|2 -ParameterSelection|TYPE_SURFACE|Type of Surface|[0] smoothed surface;[1] variance (a);[2] variance (b) -ParameterSelection|TYPE_SEEDS|Extraction of...|[0] minima;[1] maxima;[2] minima and maxima -ParameterSelection|TYPE_MERGE|Feature Aggregation|[0] additive;[1] multiplicative -ParameterBoolean|NORMALIZE |Normalized|True -OutputRaster|SURFACE|Surface -OutputRaster|SEEDS_GRID|Seeds Grid -OutputVector|SEEDS|Seeds diff --git a/python/plugins/processing/algs/saga/description/2.1.4/Separatepointsbydirection.txt b/python/plugins/processing/algs/saga/description/2.1.4/Separatepointsbydirection.txt deleted file mode 100644 index db1ec26664c6..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/Separatepointsbydirection.txt +++ /dev/null @@ -1,6 +0,0 @@ -Separate points by direction -shapes_points -ParameterVector|POINTS|Points|0|False -ParameterNumber|DIRECTIONS|Number of Directions|1.0|None|4 -ParameterNumber|TOLERANCE|Tolerance (Degree)|0.0|None|5 -OutputVector|OUTPUT|Point direction diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ShapesBuffer.txt b/python/plugins/processing/algs/saga/description/2.1.4/ShapesBuffer.txt deleted file mode 100644 index 57e0051d0fce..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ShapesBuffer.txt +++ /dev/null @@ -1,10 +0,0 @@ -Shapes Buffer (Attribute distance)|Shapes Buffer -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterTableField|DIST_FIELD|Buffer Distance|SHAPES|-1|False -ParameterNumber|DIST_SCALE|Scaling Factor for Attribute Value|None|None|1.0 -ParameterNumber|NZONES|Number of Buffer Zones|1.0|None|1.0 -ParameterNumber|DARC|Arc Vertex Distance [Degree]|0.01|45.0|5.0 -ParameterBoolean|DISSOLVE |Dissolve Buffers|True -ParameterBoolean|POLY_INNER |Inner Buffer|False -OutputVector|BUFFER|Buffer \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ShapesBufferFixed.txt b/python/plugins/processing/algs/saga/description/2.1.4/ShapesBufferFixed.txt deleted file mode 100644 index c8c3878f6374..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ShapesBufferFixed.txt +++ /dev/null @@ -1,9 +0,0 @@ -Shapes Buffer (Fixed distance)|Shapes Buffer -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterNumber|DIST_FIELD_DEFAULT|Buffer distance|0.0|None|100.0 -ParameterNumber|NZONES|Number of Buffer Zones|1.0|None|1.0 -ParameterNumber|DARC|Arc Vertex Distance [Degree]|0.01|45.0|5.0 -ParameterBoolean|DISSOLVE |Dissolve Buffers|True -ParameterBoolean|POLY_INNER |Inner Buffer|False -OutputVector|BUFFER|Buffer \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ShapestoGrid.txt b/python/plugins/processing/algs/saga/description/2.1.4/ShapestoGrid.txt deleted file mode 100644 index 304359ef9ff6..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ShapestoGrid.txt +++ /dev/null @@ -1,14 +0,0 @@ -Shapes to Grid -grid_gridding -Hardcoded|-TARGET_DEFINITION 0 -ParameterVector|INPUT|Shapes|-1|False -ParameterTableField|FIELD|Attribute|INPUT|-1|False -ParameterSelection|OUTPUT|Output Values|[0] data / no-data;[1] index number;[2] attribute|2 -ParameterSelection|MULTIPLE|Method for Multiple Values|[0] first;[1] last;[2] minimum;[3] maximum;[4] mean|4 -ParameterSelection|LINE_TYPE|Method for Lines|[0] thin;[1] thick -ParameterSelection|POLY_TYPE|Method for Lines|[0] node;[1] cell -ParameterSelection|GRID_TYPE|Preferred Target Grid Type|[0] Integer (1 byte);[1] Integer (2 byte);[2] Integer (4 byte);[3] Floating Point (4 byte);[4] Floating Point (8 byte)|3 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ShrinkAndExpand.txt b/python/plugins/processing/algs/saga/description/2.1.4/ShrinkAndExpand.txt deleted file mode 100644 index 89675454d4ea..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ShrinkAndExpand.txt +++ /dev/null @@ -1,8 +0,0 @@ -Shrink and Expand -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterSelection|OPERATION|Operation|[0] Shrink;[1] Expand;[2] shrink and expand;[3] expand and shrink|3 -ParameterSelection|CIRCLE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Radius|1|None|1 -ParameterSelection|EXPAND|Method|[0] min;[1] max;[2] mean;[3] majority|3 -OutputRaster|RESULT|Result Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/SimpleFilter.txt b/python/plugins/processing/algs/saga/description/2.1.4/SimpleFilter.txt deleted file mode 100644 index 580d42ae9f3d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/SimpleFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Simple Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterSelection|METHOD|Filter|[0] Smooth;[1] Sharpen;[2] Edge -ParameterNumber|RADIUS|Radius|None|None|2 -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/SimpleRegionGrowing.txt b/python/plugins/processing/algs/saga/description/2.1.4/SimpleRegionGrowing.txt deleted file mode 100644 index 9fd3d0adb4fb..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/SimpleRegionGrowing.txt +++ /dev/null @@ -1,14 +0,0 @@ -Simple Region Growing -imagery_segmentation -ParameterRaster|SEEDS|Seeds|False -ParameterMultipleInput|FEATURES|Features|3|False -ParameterSelection|METHOD|Method|[0] feature space and position;[1] feature space -ParameterSelection|NEIGHBOUR|Neighbourhood|[0] 4 (von Neumann);[1] 8 (Moore) -ParameterNumber|SIG_1|Variance in Feature Space|None|None|1.0 -ParameterNumber|SIG_2|Variance in Position Space|None|None|1.0 -ParameterNumber|THRESHOLD|Threshold - Similarity|None|None|0.0 -ParameterBoolean|REFRESH |Refresh|True -ParameterNumber|LEAFSIZE|Leaf Size (for Speed Optimisation)|None|None|256 -OutputRaster|SEGMENTS|Segments -OutputRaster|SIMILARITY|Similarity -OutputTable|TABLE|Seeds diff --git a/python/plugins/processing/algs/saga/description/2.1.4/Simulation.txt b/python/plugins/processing/algs/saga/description/2.1.4/Simulation.txt deleted file mode 100644 index 61e9234afa6d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/Simulation.txt +++ /dev/null @@ -1,16 +0,0 @@ -Simulation -sim_fire_spreading -ParameterRaster|DEM|DEM|False -ParameterRaster|FUEL|Fuel Model|False -ParameterRaster|WINDSPD|Wind Speed|False -ParameterRaster|WINDDIR|Wind Direction|False -ParameterRaster|M1H|Dead Fuel Moisture 1H|False -ParameterRaster|M10H|Dead Fuel Moisture 10H|False -ParameterRaster|M100H|Dead Fuel Moisture 100H|False -ParameterRaster|MHERB|Herbaceous Fuel Moisture|False -ParameterRaster|MWOOD|Wood Fuel Moisture|False -ParameterRaster|IGNITION|Ignition Points|False -ParameterBoolean|UPDATEVIEW |Update View|True -OutputRaster|TIME|Time -OutputRaster|FLAME|Flame Length -OutputRaster|INTENSITY|Intensity diff --git a/python/plugins/processing/algs/saga/description/2.1.4/SinkDrainageRouteDetection.txt b/python/plugins/processing/algs/saga/description/2.1.4/SinkDrainageRouteDetection.txt deleted file mode 100644 index c9fc911ade9c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/SinkDrainageRouteDetection.txt +++ /dev/null @@ -1,6 +0,0 @@ -Sink Drainage Route Detection -ta_preprocessor -ParameterRaster|ELEVATION|Elevation|False -ParameterBoolean|THRESHOLD |Threshold|True -ParameterNumber|THRSHEIGHT|Threshold Height|None|None|100.0 -OutputRaster|SINKROUTE|Sink Route diff --git a/python/plugins/processing/algs/saga/description/2.1.4/SinkRemoval.txt b/python/plugins/processing/algs/saga/description/2.1.4/SinkRemoval.txt deleted file mode 100644 index 16ccd4d7468f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/SinkRemoval.txt +++ /dev/null @@ -1,8 +0,0 @@ -Sink Removal -ta_preprocessor -ParameterRaster|DEM|DEM|False -ParameterRaster|SINKROUTE|Sink Route|True -ParameterSelection|METHOD|Method|[0] Deepen Drainage Routes;[1] Fill Sinks -ParameterBoolean|THRESHOLD |Threshold|True -ParameterNumber|THRSHEIGHT|Threshold Height|None|None|100.0 -OutputRaster|DEM_PREPROC|Preprocessed DEM diff --git a/python/plugins/processing/algs/saga/description/2.1.4/SkyViewFactor.txt b/python/plugins/processing/algs/saga/description/2.1.4/SkyViewFactor.txt deleted file mode 100644 index 2114c288ebbc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/SkyViewFactor.txt +++ /dev/null @@ -1,12 +0,0 @@ -Sky View Factor -ta_lighting -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS|Maximum Search Radius|0.0|None|10000 -ParameterSelection|METHOD|Method|[0] multi scale;[1] sectors -ParameterNumber|DLEVEL|Multi Scale Factor|1.25|None|3.00 -ParameterNumber|NDIRS|Number of Sectors|3|None|8 -OutputRaster|VISIBLE|Visible Sky -OutputRaster|SVF|Sky View Factor -OutputRaster|SIMPLE|Sky View Factor (Simplified) -OutputRaster|TERRAIN|Terrain View Factor -OutputRaster|DISTANCE|Terrain View Factor diff --git a/python/plugins/processing/algs/saga/description/2.1.4/Slope,Aspect,Curvature.txt b/python/plugins/processing/algs/saga/description/2.1.4/Slope,Aspect,Curvature.txt deleted file mode 100644 index e9d707c6d0bc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/Slope,Aspect,Curvature.txt +++ /dev/null @@ -1,18 +0,0 @@ -Slope, Aspect, Curvature -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Method|[0] Maximum Slope (Travis et al. 1975);[1] Maximum Triangle Slope (Tarboton 1997);[2] Least Squares Fitted Plane (Horn 1981, Costa-Cabral & Burgess 1996);[3] 6 parameter 2nd order polynom (Evans 1979);[4] 6 parameter 2nd order polynom (Heerdegen & Beran 1982);[5] 6 parameter 2nd order polynom (Bauer, Rohdenburg, Bork 1985);[6] 9 parameter 2nd order polynom (Zevenbergen & Thorne 1987);[7]10 parameter 3rd order polynom (Haralick 1983)|6 -ParameterSelection|UNIT_SLOPE|Slope Units|[0] radians;[1] degree;[2] percent|1 -ParameterSelection|UNIT_ASPECT|Aspect Units|[0] radians;[1] degree|1 -OutputRaster|SLOPE|Slope -OutputRaster|ASPECT|Aspect -OutputRaster|C_GENE|General Curvature -OutputRaster|C_PLAN|Plan Curvature -OutputRaster|C_PROF|Profile Curvature -OutputRaster|C_TANG|Tangential Curvature -OutputRaster|C_LONG|Longitudinal Curvature -OutputRaster|C_CROS|Cross-Sectional Curvature -OutputRaster|C_MINI|Minimal Curvature -OutputRaster|C_MAXI|Maximal Curvature -OutputRaster|C_TOTA|Total Curvature -OutputRaster|C_ROTO|Flow-Line Curvature diff --git a/python/plugins/processing/algs/saga/description/2.1.4/SlopeLength.txt b/python/plugins/processing/algs/saga/description/2.1.4/SlopeLength.txt deleted file mode 100644 index f0e8d3384acc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/SlopeLength.txt +++ /dev/null @@ -1,4 +0,0 @@ -Slope Length -ta_hydrology -ParameterRaster|DEM|Elevation|False -OutputRaster|LENGTH|Slope Length diff --git a/python/plugins/processing/algs/saga/description/2.1.4/SoilTextureClassification.txt b/python/plugins/processing/algs/saga/description/2.1.4/SoilTextureClassification.txt deleted file mode 100644 index 9752948d7c3d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/SoilTextureClassification.txt +++ /dev/null @@ -1,7 +0,0 @@ -Soil Texture Classification -grid_analysis -ParameterRaster|SAND|Sand|True -ParameterRaster|SILT|Silt|True -ParameterRaster|CLAY|Clay|True -OutputRaster|TEXTURE|Soil Texture -OutputRaster|SUM|Sum diff --git a/python/plugins/processing/algs/saga/description/2.1.4/SpatialPointPatternAnalysis.txt b/python/plugins/processing/algs/saga/description/2.1.4/SpatialPointPatternAnalysis.txt deleted file mode 100644 index 4a90797d8d5b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/SpatialPointPatternAnalysis.txt +++ /dev/null @@ -1,7 +0,0 @@ -Spatial Point Pattern Analysis -statistics_points -ParameterVector|POINTS|Points|0|False -ParameterNumber|STEP|Vertex Distance [Degree]|None|None|5 -OutputVector|CENTRE|Mean Centre -OutputVector|STDDIST|Standard Distance -OutputVector|BBOX|Bounding Box diff --git a/python/plugins/processing/algs/saga/description/2.1.4/SplitShapesLayerRandomly.txt b/python/plugins/processing/algs/saga/description/2.1.4/SplitShapesLayerRandomly.txt deleted file mode 100644 index 8d2648b4f40d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/SplitShapesLayerRandomly.txt +++ /dev/null @@ -1,7 +0,0 @@ -Split Shapes Layer Randomly -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterNumber|PERCENT|Split ratio (%)|0|100|50 -ParameterBoolean|EXACT |Split exactly|True -OutputVector|A|Group A -OutputVector|B|Group B diff --git a/python/plugins/processing/algs/saga/description/2.1.4/StatisticsforGrids.txt b/python/plugins/processing/algs/saga/description/2.1.4/StatisticsforGrids.txt deleted file mode 100644 index e21300c5fb4c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/StatisticsforGrids.txt +++ /dev/null @@ -1,14 +0,0 @@ -Statistics for Grids -statistics_grid -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterNumber|PCTL_VAL|Percentile|0.0|100.0|50.0 -OutputRaster|MEAN|Arithmetic Mean -OutputRaster|MIN|Minimum -OutputRaster|MAX|Maximum -OutputRaster|VAR|Variance -OutputRaster|SUM|Sum -OutputRaster|RANGE|Range -OutputRaster|PCTL|Percentile -OutputRaster|STDDEV|Standard Deviation -OutputRaster|STDDEVLO|Mean less Standard Deviation -OutputRaster|STDDEVHI|Mean plus Standard Deviation \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/StrahlerOrder.txt b/python/plugins/processing/algs/saga/description/2.1.4/StrahlerOrder.txt deleted file mode 100644 index 87d914794682..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/StrahlerOrder.txt +++ /dev/null @@ -1,4 +0,0 @@ -Strahler Order -ta_channels -ParameterRaster|DEM|Elevation|False -OutputRaster|STRAHLER|Strahler Order diff --git a/python/plugins/processing/algs/saga/description/2.1.4/StreamPowerIndex.txt b/python/plugins/processing/algs/saga/description/2.1.4/StreamPowerIndex.txt deleted file mode 100644 index e33da9b0f9f3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/StreamPowerIndex.txt +++ /dev/null @@ -1,6 +0,0 @@ -Stream Power Index -ta_hydrology -ParameterRaster|SLOPE|Slope|False -ParameterRaster|AREA|Catchment Area|False -ParameterSelection|CONV|Area Conversion|[0] no conversion (areas already given as specific catchment area);[1] 1 / cell size (pseudo specific catchment area) -OutputRaster|SPI|Stream Power Index diff --git a/python/plugins/processing/algs/saga/description/2.1.4/SupervisedClassification.txt b/python/plugins/processing/algs/saga/description/2.1.4/SupervisedClassification.txt deleted file mode 100644 index 96afab5c993b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/SupervisedClassification.txt +++ /dev/null @@ -1,22 +0,0 @@ -Supervised Classification -imagery_classification -ParameterMultipleInput|GRIDS|Grids|3.0|False -ParameterVector|ROI|Training Areas|2|False -ParameterTableField|ROI_ID|Class Identifier|ROI|-1|False -ParameterTable|STATS|Class Statistics|False -ParameterSelection|STATS_SRC|Get Class Statistics from...|[0] training areas;[1] table -ParameterSelection|METHOD|Method|[0] Binary Encoding;[1] Parallelepiped;[2] Minimum Distance;[3] Mahalanobis Distance;[4] Maximum Likelihood;[5] Spectral Angle Mapping; [6] Winner Takes All -ParameterBoolean|NORMALISE|Normalise|False -ParameterNumber|THRESHOLD_DIST|Distance Threshold|0.0|None|0.0 -ParameterNumber|THRESHOLD_PROB|Probability Threshold (Percent)|0.0|100.0|0.0 -ParameterSelection|RELATIVE_PROB|Probability Reference|[0] absolute;[1] relative -ParameterNumber|THRESHOLD_ANGLE|Spectral Angle Threshold (Degree)|0.0|90.0|0.0 -ParameterBoolean|WTA_0|Binary Encoding|False -ParameterBoolean|WTA_1|Parallelepiped|False -ParameterBoolean|WTA_2|Minimum Distance|False -ParameterBoolean|WTA_3|Mahalanobis Distance|False -ParameterBoolean|WTA_4|Maximum Likelihood|False -ParameterBoolean|WTA_5|Spectral Angle Mapping|False -OutputTable|CLASS_INFO|Class Information -OutputRaster|CLASSES|Classification -OutputRaster|QUALITY|Quality \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/SurfaceSpecificPoints.txt b/python/plugins/processing/algs/saga/description/2.1.4/SurfaceSpecificPoints.txt deleted file mode 100644 index b0762ce1320b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/SurfaceSpecificPoints.txt +++ /dev/null @@ -1,6 +0,0 @@ -Surface Specific Points -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Method|[0] Mark Highest Neighbour;[1] Opposite Neighbours;[2] Flow Direction;[3] Flow Direction (up and down);[4] Peucker & Douglas -ParameterNumber|THRESHOLD|Threshold|None|None|2.0 -OutputRaster|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.1.4/TPIBasedLandformClassification.txt b/python/plugins/processing/algs/saga/description/2.1.4/TPIBasedLandformClassification.txt deleted file mode 100644 index bfed438c79d7..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/TPIBasedLandformClassification.txt +++ /dev/null @@ -1,12 +0,0 @@ -TPI Based Landform Classification -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS_A_MIN|Min Radius A|None|None|0 -ParameterNumber|RADIUS_A_MAX|Max Radius A|None|None|100 -ParameterNumber|RADIUS_B_MIN|Min Radius B|None|None|0 -ParameterNumber|RADIUS_B_MAX|Max Radius B|None|None|1000 -ParameterSelection|DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|0.0|None|1 -ParameterBoolean|DW_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|75.0 -OutputRaster|LANDFORMS|Landforms diff --git a/python/plugins/processing/algs/saga/description/2.1.4/TerrainRuggednessIndex(TRI).txt b/python/plugins/processing/algs/saga/description/2.1.4/TerrainRuggednessIndex(TRI).txt deleted file mode 100644 index bec50e9d3124..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/TerrainRuggednessIndex(TRI).txt +++ /dev/null @@ -1,9 +0,0 @@ -Terrain Ruggedness Index (TRI) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS|Radius (Cells)|1.0|None|1 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|0.0|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|0.0|None|1.0 -OutputRaster|TRI|Terrain Ruggedness Index (TRI) \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ThinPlateSpline(Global).txt b/python/plugins/processing/algs/saga/description/2.1.4/ThinPlateSpline(Global).txt deleted file mode 100644 index 69d1337d01a5..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ThinPlateSpline(Global).txt +++ /dev/null @@ -1,10 +0,0 @@ -Thin Plate Spline (Global) -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterNumber|REGULARISATION|Regularisation|0.0000|None|0.0001 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ThinPlateSpline(Local).txt b/python/plugins/processing/algs/saga/description/2.1.4/ThinPlateSpline(Local).txt deleted file mode 100644 index 4cd6388b4936..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ThinPlateSpline(Local).txt +++ /dev/null @@ -1,15 +0,0 @@ -Thin Plate Spline (Local) -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterNumber|REGULARISATION|Regularisation|0.0000|None|0.0001 -ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global -ParameterNumber|SEARCH_RADIUS|Search Radius|0.0|None|1000.0 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MAX|Maximum Number of Points|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ThinPlateSpline(TIN).txt b/python/plugins/processing/algs/saga/description/2.1.4/ThinPlateSpline(TIN).txt deleted file mode 100644 index 0ded5a78195f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ThinPlateSpline(TIN).txt +++ /dev/null @@ -1,12 +0,0 @@ -Thin Plate Spline (TIN) -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterNumber|REGULARISATION|Regularisation|0.0000|None|0.0001 -ParameterSelection|LEVEL|Neighbourhood|[0] immediate;[1] level 1;[2] level 2 -ParameterBoolean|FRAME|Add Frame|True -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ThresholdBuffer.txt b/python/plugins/processing/algs/saga/description/2.1.4/ThresholdBuffer.txt deleted file mode 100644 index ef26b40a4852..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ThresholdBuffer.txt +++ /dev/null @@ -1,8 +0,0 @@ -Threshold Buffer -grid_tools -ParameterRaster|FEATURES|Features Grid|False -ParameterRaster|VALUE|Value Grid|False -ParameterRaster|THRESHOLDGRID|Threshold Grid|True -ParameterNumber|THRESHOLD|Threshold|None|None|0.0 -ParameterSelection|THRESHOLDTYPE|Threshold Type|[0] Absolute;[1] Relative from cell value -OutputRaster|BUFFER|Buffer Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/TopographicCorrection.txt b/python/plugins/processing/algs/saga/description/2.1.4/TopographicCorrection.txt deleted file mode 100644 index 7f80c2469572..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/TopographicCorrection.txt +++ /dev/null @@ -1,11 +0,0 @@ -Topographic Correction -ta_lighting -ParameterRaster|DEM|Elevation|False -ParameterRaster|ORIGINAL|Original Image|False -ParameterNumber|AZI|Azimuth|None|None|180.0 -ParameterNumber|HGT|Height|None|None|45.0 -ParameterSelection|METHOD|Method|[0] Cosine Correction (Teillet et al. 1982);[1] Cosine Correction (Civco 1989);[2] Minnaert Correction;[3] Minnaert Correction with Slope (Riano et al. 2003);[4] Minnaert Correction with Slope (Law & Nichol 2004);[5] C Correction;[6] Normalization (after Civco, modified by Law & Nichol) -ParameterNumber|MINNAERT|Minnaert Correction|None|None|0.5 -ParameterNumber|MAXCELLS|Maximum Cells (C Correction Analysis)|None|None|1000 -ParameterSelection|MAXVALUE|Value Range|[0] 1 byte (0-255);[1] 2 byte (0-65535) -OutputRaster|CORRECTED|Corrected Image diff --git a/python/plugins/processing/algs/saga/description/2.1.4/TopographicPositionIndex(TPI).txt b/python/plugins/processing/algs/saga/description/2.1.4/TopographicPositionIndex(TPI).txt deleted file mode 100644 index 13a397fd255d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/TopographicPositionIndex(TPI).txt +++ /dev/null @@ -1,11 +0,0 @@ -Topographic Position Index (TPI) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterBoolean|STANDARD |Standardize|True -ParameterNumber|RADIUS_MIN|Min Radius|0.0|None|0.0 -ParameterNumber|RADIUS_MAX|Max Radius|None|None|100.0 -ParameterSelection|DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|75.0 -OutputRaster|TPI|Topographic Position Index \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/TopographicWetnessIndex(TWI).txt b/python/plugins/processing/algs/saga/description/2.1.4/TopographicWetnessIndex(TWI).txt deleted file mode 100644 index b2d63ccea8d5..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/TopographicWetnessIndex(TWI).txt +++ /dev/null @@ -1,8 +0,0 @@ -Topographic Wetness Index (TWI) -ta_hydrology -ParameterRaster|SLOPE|Slope|False -ParameterRaster|AREA|Catchment Area|False -ParameterRaster|TRANS|Transmissivity|True -ParameterSelection|CONV|Area Conversion|[0] no conversion (areas already given as specific catchment area);[1] 1 / cell size (pseudo specific catchment area)|1 -ParameterSelection|METHOD|Method (TWI)|[0] Standard;[1] TOPMODEL -OutputRaster|TWI|Topographic Wetness Index diff --git a/python/plugins/processing/algs/saga/description/2.1.4/Transectthroughpolygonshapefile.txt b/python/plugins/processing/algs/saga/description/2.1.4/Transectthroughpolygonshapefile.txt deleted file mode 100644 index 99eb6654f605..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/Transectthroughpolygonshapefile.txt +++ /dev/null @@ -1,6 +0,0 @@ -Transect through polygon shapefile -shapes_transect -ParameterVector|TRANSECT|Line Transect(s)|1|False -ParameterVector|THEME|Theme|-1|False -ParameterTableField|THEME_FIELD|Theme Field|THEME|-1|False -OutputTable|TRANSECT_RESULT|Result table diff --git a/python/plugins/processing/algs/saga/description/2.1.4/TransformShapes.txt b/python/plugins/processing/algs/saga/description/2.1.4/TransformShapes.txt deleted file mode 100644 index 40e58628af9e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/TransformShapes.txt +++ /dev/null @@ -1,11 +0,0 @@ -Transform Shapes -shapes_tools -ParameterVector|IN|Shapes|-1|False -ParameterNumber|DX|dX|None|None|0.0 -ParameterNumber|DY|dY|None|None|0.0 -ParameterNumber|ANGLE|Angle|None|None|0.0 -ParameterNumber|SCALEX|Scale Factor X|None|None|1.0 -ParameterNumber|SCALEY|Scale Factor Y|None|None|1.0 -ParameterNumber|ANCHORX|X|None|None|0.0 -ParameterNumber|ANCHORY|Y|None|None|0.0 -OutputVector|OUT|Transformed diff --git a/python/plugins/processing/algs/saga/description/2.1.4/TransposeGrids.txt b/python/plugins/processing/algs/saga/description/2.1.4/TransposeGrids.txt deleted file mode 100644 index 8ff6bff31e87..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/TransposeGrids.txt +++ /dev/null @@ -1,6 +0,0 @@ -Transpose Grids -grid_tools -ParameterRaster|GRIDS|Input Grid|False -ParameterBoolean|MIRROR_X|Mirror Horizontally|False -ParameterBoolean|MIRROR_Y|Mirror Vertically|False -OutputRaster|TRANSPOSED|Transposed Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/Triangulation.txt b/python/plugins/processing/algs/saga/description/2.1.4/Triangulation.txt deleted file mode 100644 index 39a2dcbc578e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/Triangulation.txt +++ /dev/null @@ -1,9 +0,0 @@ -Triangulation -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/UniversalKriging(Global).txt b/python/plugins/processing/algs/saga/description/2.1.4/UniversalKriging(Global).txt deleted file mode 100644 index 343f13b5ca02..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/UniversalKriging(Global).txt +++ /dev/null @@ -1,21 +0,0 @@ -Universal Kriging (Global) -statistics_kriging -ParameterVector|POINTS|Points|0|False -ParameterTableField|ZFIELD|Attribute|POINTS|-1|False -ParameterSelection|TQUALITY|Type of Quality Measure|[0] standard deviation;[1] variance -ParameterBoolean|LOG|Logarithmic Transformation|True -ParameterBoolean|BLOCK|Block Kriging|True -ParameterNumber|DBLOCK|Block Size|0|None|100 -ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0 -ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100 -ParameterNumber|VAR_NSKIP|Skip|1|None|1 -ParameterString|VAR_MODEL|Variogram Model|a + b * x -ParameterMultipleInput|GRIDS|Input Grids|3|True -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterBoolean|COORDS|Coordinates|False -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_PREDICTION|Prediction -OutputRaster|TARGET_VARIANCE|Quality Measure \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.1.4/UniversalKriging.txt b/python/plugins/processing/algs/saga/description/2.1.4/UniversalKriging.txt deleted file mode 100644 index 7ae163f785cf..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/UniversalKriging.txt +++ /dev/null @@ -1,27 +0,0 @@ -Universal Kriging -statistics_kriging -ParameterVector|POINTS|Points|0|False -ParameterTableField|ZFIELD|Attribute|POINTS|-1|False -ParameterSelection|TQUALITY|Type of Quality Measure|[0] standard deviation;[1] variance -ParameterBoolean|LOG|Logarithmic Transformation|True -ParameterBoolean|BLOCK|Block Kriging|True -ParameterNumber|DBLOCK|Block Size|0|None|100 -ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0 -ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100 -ParameterNumber|VAR_NSKIP|Skip|1|None|1 -ParameterString|VAR_MODEL|Variogram Model|a + b * x -ParameterMultipleInput|GRIDS|Input Grids|3|True -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterBoolean|COORDS|Coordinates|False -ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global -ParameterNumber|SEARCH_RADIUS|Maximum Search Distance|0|None|1000 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_PREDICTION|Prediction -OutputRaster|TARGET_VARIANCE|Quality Measure diff --git a/python/plugins/processing/algs/saga/description/2.1.4/UpslopeArea.txt b/python/plugins/processing/algs/saga/description/2.1.4/UpslopeArea.txt deleted file mode 100644 index 903e4ba30111..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/UpslopeArea.txt +++ /dev/null @@ -1,10 +0,0 @@ -Upslope Area|4 -ta_hydrology -ParameterRaster|TARGET|Target Area|True -ParameterNumber|TARGET_PT_X|Target X coordinate|None|None|0.0 -ParameterNumber|TARGET_PT_Y|Target Y coordinate|None|None|0.0 -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SINKROUTE|Sink Routes|True -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Deterministic Infinity;[2] Multiple Flow Direction -ParameterNumber|CONVERGE|Convergence|None|None|1.1 -OutputRaster|AREA|Upslope Area diff --git a/python/plugins/processing/algs/saga/description/2.1.4/UserDefinedFilter.txt b/python/plugins/processing/algs/saga/description/2.1.4/UserDefinedFilter.txt deleted file mode 100644 index e28c9e4eac0e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/UserDefinedFilter.txt +++ /dev/null @@ -1,6 +0,0 @@ -User Defined Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterTable|FILTER|Filter Matrix|True -ParameterFixedTable|FILTER_3X3|Default Filter Matrix (3x3)|3|1;2;3|True -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.1.4/VariogramCloud.txt b/python/plugins/processing/algs/saga/description/2.1.4/VariogramCloud.txt deleted file mode 100644 index 74d1463978cc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/VariogramCloud.txt +++ /dev/null @@ -1,7 +0,0 @@ -Variogram Cloud -statistics_points -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterNumber|DISTMAX|Maximum Distance|None|None|0.0 -ParameterNumber|NSKIP|Skip Number|None|None|1 -OutputTable|RESULT|Variogram Cloud diff --git a/python/plugins/processing/algs/saga/description/2.1.4/VariogramSurface.txt b/python/plugins/processing/algs/saga/description/2.1.4/VariogramSurface.txt deleted file mode 100644 index 4f09961aab9c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/VariogramSurface.txt +++ /dev/null @@ -1,9 +0,0 @@ -Variogram Surface -statistics_points -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterNumber|DISTCOUNT|Number of Distance Classes|1.0|None|10 -ParameterNumber|NSKIP|Skip Number|None|None|1 -OutputRaster|COUNT|Number of Pairs -OutputRaster|VARIANCE|Variogram Surface -OutputRaster|COVARIANCE|Covariance Surface diff --git a/python/plugins/processing/algs/saga/description/2.1.4/VectorRuggednessMeasure(VRM).txt b/python/plugins/processing/algs/saga/description/2.1.4/VectorRuggednessMeasure(VRM).txt deleted file mode 100644 index 072311d5aaf6..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/VectorRuggednessMeasure(VRM).txt +++ /dev/null @@ -1,9 +0,0 @@ -Vector Ruggedness Measure (VRM) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS|Radius (Cells)|None|None|1 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|0.0|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|0.0|None|1 -OutputRaster|VRM|Vector Terrain Ruggedness (VRM) diff --git a/python/plugins/processing/algs/saga/description/2.1.4/VectorisingGridClasses.txt b/python/plugins/processing/algs/saga/description/2.1.4/VectorisingGridClasses.txt deleted file mode 100644 index 0057f58f504b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/VectorisingGridClasses.txt +++ /dev/null @@ -1,7 +0,0 @@ -Vectorising Grid Classes -shapes_grid -ParameterRaster|GRID|Grid|False -ParameterSelection|CLASS_ALL|Class Selection|[0] one single class specified by class identifier;[1] all classes|1 -ParameterNumber|CLASS_ID|Class Identifier|None|None|0 -ParameterSelection|SPLIT|Vectorised class as...|[0] one single (multi-)polygon object;[1] each island as separated polygon|1 -OutputVector|POLYGONS|Vectorized diff --git a/python/plugins/processing/algs/saga/description/2.1.4/VegetationIndex(SlopeBased).txt b/python/plugins/processing/algs/saga/description/2.1.4/VegetationIndex(SlopeBased).txt deleted file mode 100644 index fd89e6a18416..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/VegetationIndex(SlopeBased).txt +++ /dev/null @@ -1,13 +0,0 @@ -Vegetation Index (Slope Based) -imagery_tools -ParameterRaster|NIR|Near Infrared Reflectance|False -ParameterRaster|RED|Red Reflectance|False -ParameterNumber|SOIL|Soil Adjustment Factor|0.0|1.0|0.5 -OutputRaster|DVI|Difference Vegetation Index -OutputRaster|NDVI|Normalized Difference Vegetation Index -OutputRaster|RVI|Ratio Vegetation Index -OutputRaster|NRVI|Normalized Ratio Vegetation Index -OutputRaster|TVI|Transformed Vegetation Index -OutputRaster|CTVI|Corrected Transformed Vegetation Index -OutputRaster|TTVI|Thiam's Transformed Vegetation Index -OutputRaster|SAVI|Soil Adjusted Vegetation Index diff --git a/python/plugins/processing/algs/saga/description/2.1.4/VerticalDistancetoChannelNetwork.txt b/python/plugins/processing/algs/saga/description/2.1.4/VerticalDistancetoChannelNetwork.txt deleted file mode 100644 index 5e1c7b29b27b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/VerticalDistancetoChannelNetwork.txt +++ /dev/null @@ -1,8 +0,0 @@ -Vertical Distance to Channel Network -ta_channels -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|CHANNELS|Channel Network|False -ParameterNumber|THRESHOLD|Tension Threshold [Percentage of Cell Size]|None|None|1 -ParameterBoolean|NOUNDERGROUND |Keep Base Level below Surface|True -OutputRaster|DISTANCE|Vertical Distance to Channel Network -OutputRaster|BASELEVEL|Channel Network Base Level diff --git a/python/plugins/processing/algs/saga/description/2.1.4/WaterRetentionCapacity.txt b/python/plugins/processing/algs/saga/description/2.1.4/WaterRetentionCapacity.txt deleted file mode 100644 index ccc8c6c4b12f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/WaterRetentionCapacity.txt +++ /dev/null @@ -1,6 +0,0 @@ -Water Retention Capacity -sim_hydrology -ParameterVector|SHAPES|Plot Holes|-1|False -ParameterRaster|DEM|DEM|False -OutputVector|OUTPUT|Final Parameters -OutputRaster|RETENTION|Water Retention Capacity diff --git a/python/plugins/processing/algs/saga/description/2.1.4/WatershedBasins.txt b/python/plugins/processing/algs/saga/description/2.1.4/WatershedBasins.txt deleted file mode 100644 index d79f537ba368..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/WatershedBasins.txt +++ /dev/null @@ -1,7 +0,0 @@ -Watershed Basins -ta_channels -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|CHANNELS|Channel Network|False -ParameterRaster|SINKROUTE|Sink Route|True -ParameterNumber|MINSIZE|Min. Size|None|None|0 -OutputRaster|BASINS|Watershed Basins diff --git a/python/plugins/processing/algs/saga/description/2.1.4/WatershedSegmentation.txt b/python/plugins/processing/algs/saga/description/2.1.4/WatershedSegmentation.txt deleted file mode 100644 index 02edfa11f2e4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/WatershedSegmentation.txt +++ /dev/null @@ -1,12 +0,0 @@ -Watershed Segmentation -imagery_segmentation -ParameterRaster|GRID|Grid|False -ParameterSelection|OUTPUT|Output|[0] Seed Value;[1] Segment ID -ParameterSelection|DOWN|Method|[0] Minima;[1] Maxima -ParameterSelection|JOIN|Join Segments based on Threshold Value|[0] do not join;[1] seed to saddle difference;[2] seeds difference -ParameterNumber|THRESHOLD|Threshold|None|None|0 -ParameterBoolean|EDGE |Allow Edge Pixels to be Seeds|True -ParameterBoolean|BBORDERS |Borders|True -OutputRaster|SEGMENTS|Segments -OutputVector|SEEDS|Seed Points -OutputRaster|BORDERS|Borders diff --git a/python/plugins/processing/algs/saga/description/2.1.4/WindEffect(WindwardLeewardIndex).txt b/python/plugins/processing/algs/saga/description/2.1.4/WindEffect(WindwardLeewardIndex).txt deleted file mode 100644 index 57495dc57ce9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/WindEffect(WindwardLeewardIndex).txt +++ /dev/null @@ -1,15 +0,0 @@ -Wind effect|Wind Effect (Windward / Leeward Index) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterRaster|DIR|Wind Direction|True -ParameterRaster|LEN|Wind Speed|True -ParameterNumber|DIR_CONST|Constant Wind Direction [Degree]|None|None|135 -ParameterBoolean|OLDVER |Old Version|True -ParameterNumber|MAXDIST|Search Distance [km]|0.0|None|300.0 -ParameterNumber|ACCEL|Acceleration|0.0|None|1.5 -ParameterBoolean|PYRAMIDS |Use Pyramids|True -ParameterSelection|DIR_UNITS|Wind Direction Units|[0] radians;[1] degree -ParameterNumber|LEN_SCALE|Wind Speed Scale Factor|0.0|None|1.0 -OutputRaster|EFFECT|Wind Effect -OutputRaster|LUV|Windward Effect -OutputRaster|LEE|Leeward Effect diff --git a/python/plugins/processing/algs/saga/description/2.1.4/ZonalGridStatistics.txt b/python/plugins/processing/algs/saga/description/2.1.4/ZonalGridStatistics.txt deleted file mode 100644 index 10d91c892d4d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.1.4/ZonalGridStatistics.txt +++ /dev/null @@ -1,8 +0,0 @@ -Zonal Grid Statistics -statistics_grid -ParameterRaster|ZONES|Zone Grid|False -ParameterMultipleInput|CATLIST|Categorial Grids|3|True -ParameterMultipleInput|STATLIST|Grids to analyse|3|True -ParameterRaster|ASPECT|Aspect|True -ParameterBoolean|SHORTNAMES|Short Field Names|True -OutputTable|OUTTAB|Zonal Statistics diff --git a/python/plugins/processing/algs/saga/description/2.2.0/AccumulatedCost(Anisotropic).txt b/python/plugins/processing/algs/saga/description/2.2.0/AccumulatedCost(Anisotropic).txt deleted file mode 100644 index b50c05a952ac..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/AccumulatedCost(Anisotropic).txt +++ /dev/null @@ -1,8 +0,0 @@ -Accumulated Cost (Anisotropic) -grid_analysis -ParameterRaster|COST|Cost Grid|False -ParameterRaster|DIRECTION|Direction of max cost|False -ParameterRaster|POINTS|Destination Points|False -ParameterNumber|K|k factor|None|None|1 -ParameterNumber|THRESHOLD|Threshold for different route|None|None|0 -OutputRaster|ACCCOST|Accumulated Cost diff --git a/python/plugins/processing/algs/saga/description/2.2.0/AccumulatedCost(Isotropic).txt b/python/plugins/processing/algs/saga/description/2.2.0/AccumulatedCost(Isotropic).txt deleted file mode 100644 index e4d4a49dd502..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/AccumulatedCost(Isotropic).txt +++ /dev/null @@ -1,7 +0,0 @@ -Accumulated Cost (Isotropic) -grid_analysis -ParameterRaster|COST|Cost Grid|False -ParameterRaster|POINTS|Destination Points|False -ParameterNumber|THRESHOLD|Threshold for different route|None|None|0.0 -OutputRaster|ACCCOST|Accumulated Cost -OutputRaster|CLOSESTPT|Closest Point diff --git a/python/plugins/processing/algs/saga/description/2.2.0/AddCoordinatestopoints.txt b/python/plugins/processing/algs/saga/description/2.2.0/AddCoordinatestopoints.txt deleted file mode 100644 index d4f6a0efc417..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/AddCoordinatestopoints.txt +++ /dev/null @@ -1,4 +0,0 @@ -Add Coordinates to points -shapes_points -ParameterVector|INPUT|Points|0|False -OutputVector|OUTPUT|Points with coordinates diff --git a/python/plugins/processing/algs/saga/description/2.2.0/AddGridValuestoPoints.txt b/python/plugins/processing/algs/saga/description/2.2.0/AddGridValuestoPoints.txt deleted file mode 100644 index 56164a8c5982..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/AddGridValuestoPoints.txt +++ /dev/null @@ -1,7 +0,0 @@ -Add Grid Values to Points -shapes_grid -ParameterVector|SHAPES|Points|0|False -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|INTERPOL|Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -OutputVector|RESULT|Result -AllowUnmatching \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/AddGridValuestoShapes.txt b/python/plugins/processing/algs/saga/description/2.2.0/AddGridValuestoShapes.txt deleted file mode 100644 index 17959756198b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/AddGridValuestoShapes.txt +++ /dev/null @@ -1,7 +0,0 @@ -Add Grid Values to Shapes -shapes_grid -ParameterVector|SHAPES|Shapes|-1|False -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|INTERPOL|Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -OutputVector|RESULT|Result -AllowUnmatching \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/AddPolygonAttributestoPoints.txt b/python/plugins/processing/algs/saga/description/2.2.0/AddPolygonAttributestoPoints.txt deleted file mode 100644 index 1515e6a6b9fe..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/AddPolygonAttributestoPoints.txt +++ /dev/null @@ -1,6 +0,0 @@ -Add Polygon Attributes to Points -shapes_points -ParameterVector|INPUT|Points|0|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|FIELDS|Attribute|POLYGONS|-1|False -OutputVector|OUTPUT|Result \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/Aggregate.txt b/python/plugins/processing/algs/saga/description/2.2.0/Aggregate.txt deleted file mode 100644 index eec522c48b44..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/Aggregate.txt +++ /dev/null @@ -1,5 +0,0 @@ -Aggregate -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterNumber|SIZE|Aggregation Size|None|None|3 -ParameterSelection|METHOD|Method|[0] Sum;[1] Min;[2] Max diff --git a/python/plugins/processing/algs/saga/description/2.2.0/AggregatePointObservations.txt b/python/plugins/processing/algs/saga/description/2.2.0/AggregatePointObservations.txt deleted file mode 100644 index 98bb0119b53e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/AggregatePointObservations.txt +++ /dev/null @@ -1,14 +0,0 @@ -Aggregate Point Observations -shapes_points -ParameterVector|REFERENCE|Reference Points|-1|False -ParameterTableField|REFERENCE_ID|ID|REFERENCE|-1|False -ParameterTable|OBSERVATIONS|Observations|False -ParameterTableField|X|X|OBSERVATIONS|-1|False -ParameterTableField|Y|Y|OBSERVATIONS|-1|False -ParameterTableField|TRACK|Track|OBSERVATIONS|-1|False -ParameterTableField|DATE|Date|OBSERVATIONS|-1|False -ParameterTableField|TIME|Time|OBSERVATIONS|-1|False -ParameterTableField|PARAMETER|Parameter|OBSERVATIONS|-1|False -ParameterNumber|EPS_TIME|Maximum Time Span (Seconds)|None|None|60.0 -ParameterNumber|EPS_SPACE|Maximum Distance|None|None|0.002 -OutputTable|AGGREGATED|Aggregated diff --git a/python/plugins/processing/algs/saga/description/2.2.0/AggregationIndex.txt b/python/plugins/processing/algs/saga/description/2.2.0/AggregationIndex.txt deleted file mode 100644 index c5338291f3d4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/AggregationIndex.txt +++ /dev/null @@ -1,5 +0,0 @@ -Aggregation Index -grid_analysis -ParameterRaster|INPUT|Input Grid|False -ParameterNumber|MAXNUMCLASS|Max. Number of Classes|None|None|5 -OutputTable|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.0/AnalyticalHierarchyProcess.txt b/python/plugins/processing/algs/saga/description/2.2.0/AnalyticalHierarchyProcess.txt deleted file mode 100644 index 426c7817eb0f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/AnalyticalHierarchyProcess.txt +++ /dev/null @@ -1,5 +0,0 @@ -Analytical Hierarchy Process -grid_analysis -ParameterMultipleInput|GRIDS|Input Grids|3|False -ParameterTable|TABLE|Pairwise Comparisons Table|False -OutputRaster|OUTPUT|Output Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/AnalyticalHillshading.txt b/python/plugins/processing/algs/saga/description/2.2.0/AnalyticalHillshading.txt deleted file mode 100644 index 524651cdff4b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/AnalyticalHillshading.txt +++ /dev/null @@ -1,8 +0,0 @@ -Analytical Hillshading -ta_lighting -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Shading Method|[0] Standard;[1] Standard (max. 90Degree);[2] Combined Shading;[3] Ray Tracing -ParameterNumber|AZIMUTH|Azimuth [Degree]|None|None|315.0 -ParameterNumber|DECLINATION|Declination [Degree]|None|None|45.0 -ParameterNumber|EXAGGERATION|Exaggeration|None|None|4.0 -OutputRaster|SHADE|Analytical Hillshading diff --git a/python/plugins/processing/algs/saga/description/2.2.0/B-SplineApproximation.txt b/python/plugins/processing/algs/saga/description/2.2.0/B-SplineApproximation.txt deleted file mode 100644 index faf2366a460b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/B-SplineApproximation.txt +++ /dev/null @@ -1,11 +0,0 @@ -B-Spline Approximation -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterNumber|LEVEL|Resolution|0.001|None|1.0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -ParameterRaster|TARGET_TEMPLATE|Target system|True -OutputRaster|TARGET_OUT_GRID|Gri \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/BurnStreamNetworkintoDEM.txt b/python/plugins/processing/algs/saga/description/2.2.0/BurnStreamNetworkintoDEM.txt deleted file mode 100644 index 22f289c5682f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/BurnStreamNetworkintoDEM.txt +++ /dev/null @@ -1,8 +0,0 @@ -Burn Stream Network into DEM -ta_preprocessor -ParameterRaster|DEM|DEM|False -ParameterRaster|STREAM|Streams|False -ParameterRaster|FLOWDIR|Flow direction|False -ParameterSelection|METHOD|Method|[0] simply decrease cell's value by epsilon;[1] lower cell's value to neighbours minimum value minus epsilon;[2] trace stream network downstream -ParameterNumber|EPSILON|Epsilon|0.0|None|1.0 -OutputRaster|BURN|Processed DEM \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/CellBalance.txt b/python/plugins/processing/algs/saga/description/2.2.0/CellBalance.txt deleted file mode 100644 index 80edebcf2887..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/CellBalance.txt +++ /dev/null @@ -1,7 +0,0 @@ -Cell Balance -ta_hydrology -ParameterRaster|DEM|Elevation|False -ParameterRaster|WEIGHTS|Parameter|True -ParameterNumber|WEIGHTS_DEFAULT|Default Weight|0.0|None|1.0 -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Multiple Flow Direction -OutputRaster|BALANCE|Cell Balance \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ChangeDateFormat.txt b/python/plugins/processing/algs/saga/description/2.2.0/ChangeDateFormat.txt deleted file mode 100644 index 9adfcd0884d5..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ChangeDateFormat.txt +++ /dev/null @@ -1,7 +0,0 @@ -Change Date Format -table_tools -ParameterTable|TABLE|Table|False -ParameterTableField|FIELD|Date Field|TABLE|-1|False -ParameterSelection|FMT_IN|Input Format|[0] dd.mm.yy;[1] yy.mm.dd;[2] dd:mm:yy;[3] yy:mm:dd;[4] ddmmyyyy, fix size;[5] yyyymmdd, fix size;[6] ddmmyy, fix size;[7] yymmdd, fix size;[8] Julian Day -ParameterSelection|FMT_OUT|Output Format|[0] dd.mm.yy;[1] yy.mm.dd;[2] dd:mm:yy;[3] yy:mm:dd;[4] ddmmyyyy, fix size;[5] yyyymmdd, fix size;[6] ddmmyy, fix size;[7] yymmdd, fix size;[8] Julian Day -OutputTable|OUTPUT|Output diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ChangeDetection.txt b/python/plugins/processing/algs/saga/description/2.2.0/ChangeDetection.txt deleted file mode 100644 index f171b9fd6ddc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ChangeDetection.txt +++ /dev/null @@ -1,16 +0,0 @@ -Change Detection -imagery_classification -ParameterRaster|INITIAL|Initial State|False -ParameterTable|INI_LUT|Look-up Table|True -ParameterTableField|INI_LUT_MIN|Value|INI_LUT|-1|False -ParameterTableField|INI_LUT_MAX|Value (Maximum)|INI_LUT|-1|False -ParameterTableField|INI_LUT_NAM|Name|INI_LUT|-1|False -ParameterRaster|FINAL|Final State|False -ParameterTable|FIN_LUT|Look-up Table|True -ParameterTableField|FIN_LUT_MIN|Value|FIN_LUT|-1|False -ParameterTableField|FIN_LUT_MAX|Value (Maximum)|FIN_LUT|-1|False -ParameterTableField|FIN_LUT_NAM|Name|FIN_LUT|-1|False -ParameterBoolean|NOCHANGE |Report Unchanged Classes|True -ParameterSelection|OUTPUT|Output as...|[0] cells;[1] percent;[2] area -OutputRaster|CHANGE|Changes -OutputTable|CHANGES|Changes diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ChangeGridValues.txt b/python/plugins/processing/algs/saga/description/2.2.0/ChangeGridValues.txt deleted file mode 100644 index 8d3bd69e29ab..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ChangeGridValues.txt +++ /dev/null @@ -1,6 +0,0 @@ -Change Grid Values -grid_tools -ParameterRaster|GRID_IN|Grid|False -ParameterSelection|METHOD|Replace Condition|[0] Grid value equals low value;[1] Low value < grid value < high value;[2] Low value <= grid value < high value -ParameterFixedTable|LOOKUP|Lookup Table|3|Low Value;High Value;Replace with|False -OutputRaster|GRID_OUT|Changed Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ChangeTimeFormat.txt b/python/plugins/processing/algs/saga/description/2.2.0/ChangeTimeFormat.txt deleted file mode 100644 index 0a384af3194d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ChangeTimeFormat.txt +++ /dev/null @@ -1,7 +0,0 @@ -Change Time Format -table_tools -ParameterTable|TABLE|Table|False -ParameterTableField|FIELD|Time Field|TABLE|-1|False -ParameterSelection|FMT_IN|Input Format|[0] hh.mm.ss;[1] hh:mm:ss;[2] hhmmss, fix size;[3] hours;[4] minutes;[5] seconds -ParameterSelection|FMT_OUT|Output Format|[0] hh.mm.ss;[1] hh:mm:ss;[2] hhmmss, fix size;[3] hours;[4] minutes;[5] seconds -OutputTable|OUTPUT|Output diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ChannelNetwork.txt b/python/plugins/processing/algs/saga/description/2.2.0/ChannelNetwork.txt deleted file mode 100644 index b7bf16f1db10..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ChannelNetwork.txt +++ /dev/null @@ -1,14 +0,0 @@ -Channel Network -ta_channels -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SINKROUTE|Flow Direction|True -ParameterRaster|INIT_GRID|Initiation Grid|False -ParameterSelection|INIT_METHOD|Initiation Type|[0] Less than;[1] Equals;[2] Greater than -ParameterNumber|INIT_VALUE|Initiation Threshold|None|None|0.0 -ParameterRaster|DIV_GRID|Divergence|True -ParameterNumber|DIV_CELLS|Tracing: Max. Divergence|None|None|10 -ParameterRaster|TRACE_WEIGHT|Tracing: Weight|True -ParameterNumber|MINLEN|Min. Segment Length|0.0|None|10 -OutputRaster|CHNLNTWRK|Channel Network -OutputRaster|CHNLROUTE|Channel Direction -OutputVector|SHAPES|Channel Network diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ChannelNetworkandDrainageBasins.txt b/python/plugins/processing/algs/saga/description/2.2.0/ChannelNetworkandDrainageBasins.txt deleted file mode 100644 index 17e8ccad2702..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ChannelNetworkandDrainageBasins.txt +++ /dev/null @@ -1,11 +0,0 @@ -Channel Network and Drainage Basins -ta_channels -ParameterRaster|DEM|Elevation|False -ParameterNumber|THRESHOLD|Threshold|None|None|5.0 -OutputRaster|DIRECTION|Flow Direction -OutputRaster|CONNECTION|Flow Connectivity -OutputRaster|ORDER|Strahler Order -OutputRaster|BASIN|Drainage Basins -OutputVector|SEGMENTS|Channels -OutputVector|BASINS|Drainage Basins -OutputVector|NODES|Junctions diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ClipGridwithPolygon.txt b/python/plugins/processing/algs/saga/description/2.2.0/ClipGridwithPolygon.txt deleted file mode 100644 index b76d1a2f7da0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ClipGridwithPolygon.txt +++ /dev/null @@ -1,5 +0,0 @@ -Clip Grid with Polygon -shapes_grid -ParameterRaster|INPUT|Input|False -ParameterVector|POLYGONS|Polygons|2|False -OutputRaster|OUTPUT|Clipped diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ClipPointswithPolygons.txt b/python/plugins/processing/algs/saga/description/2.2.0/ClipPointswithPolygons.txt deleted file mode 100644 index 90b8f12176c8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ClipPointswithPolygons.txt +++ /dev/null @@ -1,7 +0,0 @@ -Clip Points with Polygons -shapes_points -ParameterVector|POINTS|Points|0|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|FIELD|Add Attribute to Clipped Points|POLYGONS|-1|False -ParameterSelection|METHOD|Clipping Options|[0] one layer for all points;[1] separate layer for each polygon -OutputVector|CLIPS|Clipped Points diff --git a/python/plugins/processing/algs/saga/description/2.2.0/CloseGaps.txt b/python/plugins/processing/algs/saga/description/2.2.0/CloseGaps.txt deleted file mode 100644 index ffa217f19916..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/CloseGaps.txt +++ /dev/null @@ -1,6 +0,0 @@ -Close Gaps -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterRaster|MASK|Mask|True -ParameterNumber|THRESHOLD|Tension Threshold|None|None|0.1 -OutputRaster|RESULT|Changed Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/CloseGapswithSpline.txt b/python/plugins/processing/algs/saga/description/2.2.0/CloseGapswithSpline.txt deleted file mode 100644 index cd70312d7fdc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/CloseGapswithSpline.txt +++ /dev/null @@ -1,12 +0,0 @@ -Close Gaps with Spline -grid_tools -ParameterRaster|GRID|Grid|False -ParameterRaster|MASK|Mask|True -ParameterNumber|MAXGAPCELLS|Only Process Gaps with Less Cells|None|None|0 -ParameterNumber|MAXPOINTS|Maximum Points|None|None|1000 -ParameterNumber|LOCALPOINTS|Number of Points for Local Interpolation|None|None|10 -ParameterBoolean|EXTENDED |Extended Neighourhood|True -ParameterSelection|NEIGHBOURS|Neighbourhood|[0] Neumann;[1] Moore -ParameterNumber|RADIUS|Radius (Cells)|None|None|0 -ParameterNumber|RELAXATION|Relaxation|None|None|0.0 -OutputRaster|CLOSED|Closed Gaps Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/CloseOneCellGaps.txt b/python/plugins/processing/algs/saga/description/2.2.0/CloseOneCellGaps.txt deleted file mode 100644 index d3b4aa0318bc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/CloseOneCellGaps.txt +++ /dev/null @@ -1,4 +0,0 @@ -Close One Cell Gaps -grid_tools -ParameterRaster|INPUT|Grid|False -OutputRaster|RESULT|Changed Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ClusterAnalysisforGrids.txt b/python/plugins/processing/algs/saga/description/2.2.0/ClusterAnalysisforGrids.txt deleted file mode 100644 index 0c477e9e46ea..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ClusterAnalysisforGrids.txt +++ /dev/null @@ -1,9 +0,0 @@ -Cluster Analysis for Grids -imagery_classification -ParameterMultipleInput|GRIDS|Grids|3.0|False -ParameterSelection|METHOD|Method|[0] Iterative Minimum Distance (Forgy 1965);[1] Hill-Climbing (Rubin 1967);[2] Combined Minimum Distance / Hillclimbing -ParameterNumber|NCLUSTER|Clusters|None|None|5 -ParameterBoolean|NORMALISE |Normalise|True -ParameterBoolean|OLDVERSION |Old Version|True -OutputRaster|CLUSTER|Clusters -OutputTable|STATISTICS|Statistics diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ContourLinesfromGrid.txt b/python/plugins/processing/algs/saga/description/2.2.0/ContourLinesfromGrid.txt deleted file mode 100644 index d0924e0d6a9f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ContourLinesfromGrid.txt +++ /dev/null @@ -1,8 +0,0 @@ -Contour Lines from Grid -shapes_grid -ParameterRaster|GRID|Grid|False -ParameterSelection|VERTEX|Vertex type|[0] x,y;[1] x,y,z -ParameterNumber|ZMIN|Minimum Contour Value|None|None|0.0 -ParameterNumber|ZMAX|Maximum Contour Value|None|None|10000.0 -ParameterNumber|ZSTEP|Equidistance|None|None|100.0 -OutputVector|CONTOUR|Contour Lines diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ConvergenceIndex(SearchRadius).txt b/python/plugins/processing/algs/saga/description/2.2.0/ConvergenceIndex(SearchRadius).txt deleted file mode 100644 index 11730fa638a3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ConvergenceIndex(SearchRadius).txt +++ /dev/null @@ -1,11 +0,0 @@ -Convergence Index (Search Radius) -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterNumber|RADIUS|Radius [Cells]|1.0|None|10.0 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|0.0|None|1.0 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|0.0|None|1.0 -ParameterBoolean|SLOPE|Gradient|True -ParameterSelection|DIFFERENCE|Weighting Function|[0] direction to the center cell;[1] center cell's aspect direction -OutputRaster|CONVERGENCE|Convergence Index \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ConvergenceIndex.txt b/python/plugins/processing/algs/saga/description/2.2.0/ConvergenceIndex.txt deleted file mode 100644 index 7d1649a615dc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ConvergenceIndex.txt +++ /dev/null @@ -1,6 +0,0 @@ -Convergence Index -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Method|[0] Aspect;[1] Gradient -ParameterSelection|NEIGHBOURS|Gradient Calculation|[0] 2 x 2;[1] 3 x 3 -OutputRaster|RESULT|Convergence Index diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ConvertDataStorageType.txt b/python/plugins/processing/algs/saga/description/2.2.0/ConvertDataStorageType.txt deleted file mode 100644 index 51de5d997936..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ConvertDataStorageType.txt +++ /dev/null @@ -1,5 +0,0 @@ -Convert Data Storage Type -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterSelection|TYPE|Data storage 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 -OutputRaster|OUTPUT|Converted Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ConvertLinestoPoints.txt b/python/plugins/processing/algs/saga/description/2.2.0/ConvertLinestoPoints.txt deleted file mode 100644 index 7a4435360903..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ConvertLinestoPoints.txt +++ /dev/null @@ -1,6 +0,0 @@ -Convert Lines to Points -shapes_points -ParameterVector|LINES|Lines|1|False -ParameterBoolean|ADD |Insert Additional Points|True -ParameterNumber|DIST|Insert Distance|0.0|None|1.0 -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ConvertLinestoPolygons.txt b/python/plugins/processing/algs/saga/description/2.2.0/ConvertLinestoPolygons.txt deleted file mode 100644 index 0053420971a9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ConvertLinestoPolygons.txt +++ /dev/null @@ -1,4 +0,0 @@ -Convert Lines to Polygons -shapes_polygons -ParameterVector|LINES|Lines|1|False -OutputVector|POLYGONS|Polygons diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ConvertMultipointstoPoints.txt b/python/plugins/processing/algs/saga/description/2.2.0/ConvertMultipointstoPoints.txt deleted file mode 100644 index 6a0fc9798b0d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ConvertMultipointstoPoints.txt +++ /dev/null @@ -1,4 +0,0 @@ -Convert Multipoints to Points -shapes_points -ParameterVector|MULTIPOINTS|Multipoints|0|False -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ConvertPointstoLine(s).txt b/python/plugins/processing/algs/saga/description/2.2.0/ConvertPointstoLine(s).txt deleted file mode 100644 index f7e8b6bb642c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ConvertPointstoLine(s).txt +++ /dev/null @@ -1,6 +0,0 @@ -Convert Points to Line(s) -shapes_lines -ParameterVector|POINTS|Points|0|False -ParameterTableField|ORDER|Order by...|POINTS|-1|False -ParameterTableField|SEPARATE|Separate by...|POINTS|-1|False -OutputVector|LINES|Lines diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ConvertPolygonLineVerticestoPoints.txt b/python/plugins/processing/algs/saga/description/2.2.0/ConvertPolygonLineVerticestoPoints.txt deleted file mode 100644 index e8e9a68f86d4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ConvertPolygonLineVerticestoPoints.txt +++ /dev/null @@ -1,4 +0,0 @@ -Convert Polygon/Line Vertices to Points -shapes_polygons -ParameterVector|SHAPES|Shapes|-1|False -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ConvertPolygonstoLines.txt b/python/plugins/processing/algs/saga/description/2.2.0/ConvertPolygonstoLines.txt deleted file mode 100644 index def3f0429a5a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ConvertPolygonstoLines.txt +++ /dev/null @@ -1,4 +0,0 @@ -Convert Polygons to Lines -shapes_lines -ParameterVector|POLYGONS|Polygons|2|False -OutputVector|LINES|Lines diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ConvexHull.txt b/python/plugins/processing/algs/saga/description/2.2.0/ConvexHull.txt deleted file mode 100644 index 81084ab7e508..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ConvexHull.txt +++ /dev/null @@ -1,6 +0,0 @@ -Convex Hull -shapes_points -ParameterVector|SHAPES|Points|0|False -ParameterSelection|POLYPOINTS|Hull Construction|[0] one hull for all shapes;[1] one hull per shape;[2] one hull per shape part -OutputVector|HULLS|Convex Hull -OutputVector|BOXES|Minimum Bounding Box diff --git a/python/plugins/processing/algs/saga/description/2.2.0/CreateGraticule.txt b/python/plugins/processing/algs/saga/description/2.2.0/CreateGraticule.txt deleted file mode 100644 index 0e46eeeb6a14..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/CreateGraticule.txt +++ /dev/null @@ -1,8 +0,0 @@ -Create Graticule -shapes_tools -ParameterVector|EXTENT|Extent|-1|True -Extent X_EXTENT_MIN X_EXTENT_MAX Y_EXTENT_MIN Y_EXTENT_MAX -ParameterNumber|DISTX|Division Width|None|None|1.0 -ParameterNumber|DISTY|Division Height|None|None|1.0 -ParameterSelection|TYPE|Type|[0] Lines;[1] Rectangles -OutputVector|GRATICULE|Graticule diff --git a/python/plugins/processing/algs/saga/description/2.2.0/CropToData.txt b/python/plugins/processing/algs/saga/description/2.2.0/CropToData.txt deleted file mode 100644 index e87ea99f1881..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/CropToData.txt +++ /dev/null @@ -1,4 +0,0 @@ -Crop to Data -grid_tools -ParameterRaster|INPUT|Input layer|False -OutputRaster|OUTPUT|Cropped diff --git a/python/plugins/processing/algs/saga/description/2.2.0/Cross-ClassificationandTabulation.txt b/python/plugins/processing/algs/saga/description/2.2.0/Cross-ClassificationandTabulation.txt deleted file mode 100644 index 19bb607ae29d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/Cross-ClassificationandTabulation.txt +++ /dev/null @@ -1,7 +0,0 @@ -Cross-Classification and Tabulation -grid_analysis -ParameterRaster|INPUT|Input Grid 1|False -ParameterRaster|INPUT2|Input Grid 2|False -ParameterNumber|MAXNUMCLASS|Max. Number of Classes|None|None|5 -OutputRaster|RESULTGRID|Cross-Classification Grid -OutputTable|RESULTTABLE|Cross-Tabulation Table diff --git a/python/plugins/processing/algs/saga/description/2.2.0/CrossProfiles.txt b/python/plugins/processing/algs/saga/description/2.2.0/CrossProfiles.txt deleted file mode 100644 index 149b8920630f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/CrossProfiles.txt +++ /dev/null @@ -1,8 +0,0 @@ -Cross Profiles -ta_profiles -ParameterRaster|DEM|DEM|False -ParameterVector|LINES|Lines|1|False -ParameterNumber|DIST_LINE|Profile Distance|0.0|None|10.0 -ParameterNumber|DIST_PROFILE|Profile Length|0.0|None|10.0 -ParameterNumber|NUM_PROFILE|Profile Samples|1.0|None|10.0 -OutputVector|PROFILES|Cross Profiles diff --git a/python/plugins/processing/algs/saga/description/2.2.0/CubicSplineApproximation.txt b/python/plugins/processing/algs/saga/description/2.2.0/CubicSplineApproximation.txt deleted file mode 100644 index 868177a920c3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/CubicSplineApproximation.txt +++ /dev/null @@ -1,14 +0,0 @@ -Cubic Spline Approximation -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterNumber|NPMIN|Minimal Number of Points|0|None|3 -ParameterNumber|NPMAX|Maximal Number of Points|11|59|20 -ParameterNumber|NPPC|Points per Square|1|None|5 -ParameterNumber|K|Tolerance|0|None|140 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -ParameterRaster|TARGET_TEMPLATE|Target system|True -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/CurvatureClassification.txt b/python/plugins/processing/algs/saga/description/2.2.0/CurvatureClassification.txt deleted file mode 100644 index aff4b661d617..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/CurvatureClassification.txt +++ /dev/null @@ -1,5 +0,0 @@ -Curvature Classification -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|THRESHOLD|Threshold for plane|0.0000|None|0.0005 -OutputRaster|CLASS|Curvature Classification \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/CutShapesLayer.txt b/python/plugins/processing/algs/saga/description/2.2.0/CutShapesLayer.txt deleted file mode 100644 index f60347ab4f7c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/CutShapesLayer.txt +++ /dev/null @@ -1,7 +0,0 @@ -Cut Shapes Layer -shapes_tools -ParameterVector|SHAPES|Vector layer to cut|-1|False -ParameterSelection|METHOD|Method|[0] completely contained;[1] intersects;[2] center -Hardcoded|-TARGET 3 -ParameterVector|POLYGONS_POLYGONS|Cutting polygons|2|False -OutputVector|CUT|Result \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/DTMFilter(slope-based).txt b/python/plugins/processing/algs/saga/description/2.2.0/DTMFilter(slope-based).txt deleted file mode 100644 index 73902128994d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/DTMFilter(slope-based).txt +++ /dev/null @@ -1,8 +0,0 @@ -DTM Filter (slope-based) -grid_filter -ParameterRaster|INPUT|Grid to filter|False -ParameterNumber|RADIUS|Search Radius|1.0|None|2 -ParameterNumber|TERRAINSLOPE|Approx. Terrain Slope|None|None|30.0 -ParameterBoolean|STDDEV |Use Confidence Interval|True -OutputRaster|GROUND|Bare Earth -OutputRaster|NONGROUND|Removed Objects diff --git a/python/plugins/processing/algs/saga/description/2.2.0/DirectionalStatisticsforSingleGrid.txt b/python/plugins/processing/algs/saga/description/2.2.0/DirectionalStatisticsforSingleGrid.txt deleted file mode 100644 index 5ed456dda7b4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/DirectionalStatisticsforSingleGrid.txt +++ /dev/null @@ -1,23 +0,0 @@ -Directional Statistics for Single Grid -statistics_grid -ParameterRaster|GRID|Grid|False -ParameterVector|POINTS|Points|-1|True -ParameterNumber|DIRECTION|Direction [Degree]|None|None|0.0 -ParameterNumber|TOLERANCE|Tolerance [Degree]|None|None|0.0 -ParameterNumber|MAXDISTANCE|Maximum Distance [Cells]|None|None|0 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1.0 -OutputRaster|MEAN|Arithmetic Mean -OutputRaster|DIFMEAN|Difference from Arithmetic Mean -OutputRaster|MIN|Minimum -OutputRaster|MAX|Maximum -OutputRaster|RANGE|Range -OutputRaster|VAR|Variance -OutputRaster|STDDEV|Standard Deviation -OutputRaster|STDDEVLO|Mean less Standard Deviation -OutputRaster|STDDEVHI|Mean plus Standard Deviation -OutputRaster|DEVMEAN|Deviation from Arithmetic Mean -OutputRaster|PERCENT|Percentile -OutputVector|POINTS_OUT|Directional Statistics for Points diff --git a/python/plugins/processing/algs/saga/description/2.2.0/DistanceMatrix.txt b/python/plugins/processing/algs/saga/description/2.2.0/DistanceMatrix.txt deleted file mode 100644 index 059d3c209fee..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/DistanceMatrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -Distance Matrix -shapes_points -ParameterVector|POINTS|Points|0|False -OutputTable|TABLE|Distance Matrix Table diff --git a/python/plugins/processing/algs/saga/description/2.2.0/DiurnalAnisotropicHeating.txt b/python/plugins/processing/algs/saga/description/2.2.0/DiurnalAnisotropicHeating.txt deleted file mode 100644 index 5420da99b09a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/DiurnalAnisotropicHeating.txt +++ /dev/null @@ -1,5 +0,0 @@ -Diurnal Anisotropic Heating -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|ALPHA_MAX|Alpha Max (Degree)|None|None|202.5 -OutputRaster|DAH|Diurnal Anisotropic Heating diff --git a/python/plugins/processing/algs/saga/description/2.2.0/DownslopeDistanceGradient.txt b/python/plugins/processing/algs/saga/description/2.2.0/DownslopeDistanceGradient.txt deleted file mode 100644 index 250e199cf6fe..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/DownslopeDistanceGradient.txt +++ /dev/null @@ -1,7 +0,0 @@ -Downslope Distance Gradient -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|DISTANCE|Vertical Distance|None|None|10 -ParameterSelection|OUTPUT|Output|[0] distance;[1] gradient (tangens);[2] gradient (degree) -OutputRaster|GRADIENT|Gradient -OutputRaster|DIFFERENCE|Gradient Difference diff --git a/python/plugins/processing/algs/saga/description/2.2.0/EdgeContamination.txt b/python/plugins/processing/algs/saga/description/2.2.0/EdgeContamination.txt deleted file mode 100644 index 004ca57539db..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/EdgeContamination.txt +++ /dev/null @@ -1,4 +0,0 @@ -Edge Contamination -ta_hydrology -ParameterRaster|DEM|Elevation|False -OutputRaster|CONTAMINATION|Edge Contamination diff --git a/python/plugins/processing/algs/saga/description/2.2.0/EffectiveAirFlowHeights.txt b/python/plugins/processing/algs/saga/description/2.2.0/EffectiveAirFlowHeights.txt deleted file mode 100644 index 70e0479b3a99..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/EffectiveAirFlowHeights.txt +++ /dev/null @@ -1,15 +0,0 @@ -Effective Air Flow Heights -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterRaster|DIR|Wind Direction|True -ParameterRaster|LEN|Wind Speed|True -ParameterNumber|DIR_CONST|Constant Wind Direction [Degree]|None|None|135 -ParameterBoolean|OLDVER |Old Version|True -ParameterNumber|MAXDIST|Search Distance [km]|0.0|None|300 -ParameterNumber|ACCEL|Acceleration|None|None|1.5 -ParameterBoolean|PYRAMIDS |Use Pyramids with New Version|True -ParameterNumber|LEEFACT|Lee Factor|None|None|0.5 -ParameterNumber|LUVFACT|Luv Factor|None|None|1.0 -ParameterSelection|DIR_UNITS|Wind Direction Units|[0] radians;[1] degree -ParameterNumber|LEN_SCALE|Wind Speed Scale Factor|None|None|1.0 -OutputRaster|AFH|Effective Air Flow Heights diff --git a/python/plugins/processing/algs/saga/description/2.2.0/FastRegionGrowingAlgorithm.txt b/python/plugins/processing/algs/saga/description/2.2.0/FastRegionGrowingAlgorithm.txt deleted file mode 100644 index c7922ee2e242..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/FastRegionGrowingAlgorithm.txt +++ /dev/null @@ -1,7 +0,0 @@ -Fast Region Growing Algorithm -imagery_rga -ParameterMultipleInput|INPUT|Input Grids|3|False -ParameterRaster|START|Seeds Grid|False -ParameterRaster|REP|Smooth Rep|True -OutputRaster|RESULT|Segmente -OutputRaster|MEAN|Mean diff --git a/python/plugins/processing/algs/saga/description/2.2.0/FastRepresentativeness.txt b/python/plugins/processing/algs/saga/description/2.2.0/FastRepresentativeness.txt deleted file mode 100644 index b65953be62cd..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/FastRepresentativeness.txt +++ /dev/null @@ -1,7 +0,0 @@ -Fast Representativeness -statistics_grid -ParameterRaster|INPUT|Input|False -ParameterNumber|LOD|Level of Generalisation|None|None|16 -OutputRaster|RESULT|Output -OutputRaster|RESULT_LOD|Output Lod -OutputRaster|SEEDS|Output Seeds diff --git a/python/plugins/processing/algs/saga/description/2.2.0/FillGapsinRecords.txt b/python/plugins/processing/algs/saga/description/2.2.0/FillGapsinRecords.txt deleted file mode 100644 index 31974dcc53d1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/FillGapsinRecords.txt +++ /dev/null @@ -1,6 +0,0 @@ -Fill Gaps in Records -table_calculus -ParameterTable|TABLE|Table|False -ParameterTableField|ORDER|Order|TABLE|-1|False -ParameterSelection|METHOD|Interpolation|[0] Nearest Neighbour;[1] Linear;[2] Spline -OutputTable|NOGAPS|Table without Gaps diff --git a/python/plugins/processing/algs/saga/description/2.2.0/FillSinks(PlanchonDarboux,2001).txt b/python/plugins/processing/algs/saga/description/2.2.0/FillSinks(PlanchonDarboux,2001).txt deleted file mode 100644 index f1a496dc924a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/FillSinks(PlanchonDarboux,2001).txt +++ /dev/null @@ -1,5 +0,0 @@ -Fill Sinks|Fill Sinks (Planchon/Darboux, 2001) -ta_preprocessor -ParameterRaster|DEM|DEM|False -ParameterNumber|MINSLOPE|Minimum Slope [Degree]|0.0|None|0.01 -OutputRaster|RESULT|Filled DEM diff --git a/python/plugins/processing/algs/saga/description/2.2.0/FillSinks(WangLiu).txt b/python/plugins/processing/algs/saga/description/2.2.0/FillSinks(WangLiu).txt deleted file mode 100644 index 2a36e9913ae9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/FillSinks(WangLiu).txt +++ /dev/null @@ -1,7 +0,0 @@ -Fill Sinks (Wang & Liu) -ta_preprocessor -ParameterRaster|ELEV|DEM|False -ParameterNumber|MINSLOPE|Minimum Slope [Degree]|0.0|None|0.01 -OutputRaster|FILLED|Filled DEM -OutputRaster|FDIR|Flow Directions -OutputRaster|WSHED|Watershed Basins diff --git a/python/plugins/processing/algs/saga/description/2.2.0/FillSinksXXL(WangLiu).txt b/python/plugins/processing/algs/saga/description/2.2.0/FillSinksXXL(WangLiu).txt deleted file mode 100644 index bd3bd2194b79..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/FillSinksXXL(WangLiu).txt +++ /dev/null @@ -1,5 +0,0 @@ -Fill Sinks XXL (Wang & Liu) -ta_preprocessor -ParameterRaster|ELEV|DEM|False -ParameterNumber|MINSLOPE|Minimum Slope [Degree]|0.0|None|0.01 -OutputRaster|FILLED|Filled DEM diff --git a/python/plugins/processing/algs/saga/description/2.2.0/FilterClumps.txt b/python/plugins/processing/algs/saga/description/2.2.0/FilterClumps.txt deleted file mode 100644 index 3ac291f4fab9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/FilterClumps.txt +++ /dev/null @@ -1,5 +0,0 @@ -Filter Clumps -grid_filter -ParameterRaster|GRID|Input Grid|False -ParameterNumber|THRESHOLD|Min. Size|1.0|None|10 -OutputRaster|OUTPUT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/FireRiskAnalysis.txt b/python/plugins/processing/algs/saga/description/2.2.0/FireRiskAnalysis.txt deleted file mode 100644 index 7f9788d09851..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/FireRiskAnalysis.txt +++ /dev/null @@ -1,18 +0,0 @@ -Fire Risk Analysis -sim_fire_spreading -ParameterRaster|DEM|DEM|False -ParameterRaster|FUEL|Fuel Model|False -ParameterRaster|WINDSPD|Wind Speed|False -ParameterRaster|WINDDIR|Wind Direction|False -ParameterRaster|M1H|Dead Fuel Moisture 1H|False -ParameterRaster|M10H|Dead Fuel Moisture 10H|False -ParameterRaster|M100H|Dead Fuel Moisture 100H|False -ParameterRaster|MHERB|Herbaceous Fuel Moisture|False -ParameterRaster|MWOOD|Wood Fuel Moisture|False -ParameterRaster|VALUE|Value|True -ParameterRaster|BASEPROB|Base Probability|True -ParameterNumber|MONTECARLO|Number of Events|None|None|1000 -ParameterNumber|INTERVAL|Fire Length|None|None|100 -OutputRaster|DANGER|Danger -OutputRaster|COMPPROB|Compound Probability -OutputRaster|PRIORITY|Priority Index diff --git a/python/plugins/processing/algs/saga/description/2.2.0/FitNPointstoshape.txt b/python/plugins/processing/algs/saga/description/2.2.0/FitNPointstoshape.txt deleted file mode 100644 index 727ebdb56d2e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/FitNPointstoshape.txt +++ /dev/null @@ -1,5 +0,0 @@ -Fit N Points to shape -shapes_points -ParameterVector|SHAPES|Shapes|2|False -ParameterNumber|NUMPOINTS|Number of points|1.0|None|10 -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.2.0/FlatDetection.txt b/python/plugins/processing/algs/saga/description/2.2.0/FlatDetection.txt deleted file mode 100644 index e106c6e11ad7..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/FlatDetection.txt +++ /dev/null @@ -1,6 +0,0 @@ -Flat Detection -ta_preprocessor -ParameterRaster|DEM|DEM|False -ParameterSelection|FLAT_OUTPUT|Flat Area Values|[0] elevation;[1] enumeration -OutputRaster|NOFLATS|No Flats -OutputRaster|FLATS|Flat Areas diff --git a/python/plugins/processing/algs/saga/description/2.2.0/FlowPathLength.txt b/python/plugins/processing/algs/saga/description/2.2.0/FlowPathLength.txt deleted file mode 100644 index da1669996caf..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/FlowPathLength.txt +++ /dev/null @@ -1,8 +0,0 @@ -Flow Path Length -ta_hydrology -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SEED|Seeds|True -ParameterBoolean|SEEDS_ONLY |Seeds Only|True -ParameterSelection|METHOD|Flow Routing Algorithm|[0] Deterministic 8 (D8);[1] Multiple Flow Direction (FD8) -ParameterNumber|CONVERGENCE|Convergence (FD8)|None|None|1.1 -OutputRaster|LENGTH|Flow Path Length diff --git a/python/plugins/processing/algs/saga/description/2.2.0/FlowWidthandSpecificCatchmentArea.txt b/python/plugins/processing/algs/saga/description/2.2.0/FlowWidthandSpecificCatchmentArea.txt deleted file mode 100644 index a8d32a86f617..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/FlowWidthandSpecificCatchmentArea.txt +++ /dev/null @@ -1,7 +0,0 @@ -Flow Width and Specific Catchment Area -ta_hydrology -ParameterRaster|DEM|Elevation|False -ParameterRaster|TCA|Total Catchment Area (TCA)|True -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Multiple Flow Direction (Quinn et al. 1991);[2] Aspect -OutputRaster|WIDTH|Flow Width -OutputRaster|SCA|Specific Catchment Area (SCA) diff --git a/python/plugins/processing/algs/saga/description/2.2.0/Fragmentation(Alternative).txt b/python/plugins/processing/algs/saga/description/2.2.0/Fragmentation(Alternative).txt deleted file mode 100644 index 162d7ae48f5a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/Fragmentation(Alternative).txt +++ /dev/null @@ -1,17 +0,0 @@ -Fragmentation (Alternative) -grid_analysis -ParameterRaster|CLASSES|Classification|False -ParameterNumber|CLASS|Class Identifier|None|None|1 -ParameterNumber|NEIGHBORHOOD_MIN|Neighborhood Min|1.0|None|1 -ParameterNumber|NEIGHBORHOOD_MAX|Neighborhood Max|1.0|None|1 -ParameterSelection|AGGREGATION|Level Aggregation|[0] average;[1] multiplicative -ParameterBoolean|BORDER |Add Border|True -ParameterNumber|WEIGHT|Connectivity Weighting|None|None|1.1 -ParameterNumber|DENSITY_MIN|Minimum Density [Percent]|None|None|10 -ParameterNumber|DENSITY_INT|Minimum Density for Interior Forest [Percent]|None|None|99 -ParameterNumber|LEVEL_GROW|Search Distance Increment|None|None|0.0 -ParameterBoolean|DENSITY_MEAN |Density from Neighbourhood|True -OutputRaster|DENSITY|Density [Percent] -OutputRaster|CONNECTIVITY|Connectivity [Percent] -OutputRaster|FRAGMENTATION|Fragmentation -OutputTable|FRAGSTATS|Summary diff --git a/python/plugins/processing/algs/saga/description/2.2.0/Fragmentation(Standard).txt b/python/plugins/processing/algs/saga/description/2.2.0/Fragmentation(Standard).txt deleted file mode 100644 index 0dc554abcd2c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/Fragmentation(Standard).txt +++ /dev/null @@ -1,17 +0,0 @@ -Fragmentation (Standard) -grid_analysis -ParameterRaster|CLASSES|Classification|False -ParameterNumber|CLASS|Class Identifier|None|None|1 -ParameterNumber|NEIGHBORHOOD_MIN|Neighborhood Min|1.0|None|1 -ParameterNumber|NEIGHBORHOOD_MAX|Neighborhood Max|1.0|None|3 -ParameterSelection|AGGREGATION|Level Aggregation|[0] average;[1] multiplicative -ParameterBoolean|BORDER|Add Border|True -ParameterNumber|WEIGHT|Connectivity Weighting|None|None|1.1 -ParameterNumber|DENSITY_MIN|Minimum Density [Percent]|None|None|10 -ParameterNumber|DENSITY_INT|Minimum Density for Interior Forest [Percent]|None|None|99 -ParameterSelection|CIRCULAR|Neighborhood Type|[0] square;[1] circle -ParameterBoolean|DIAGONAL|Include diagonal neighbour relations|True -OutputRaster|DENSITY|Density [Percent] -OutputRaster|CONNECTIVITY|Connectivity [Percent] -OutputRaster|FRAGMENTATION|Fragmentation -OutputTable|FRAGSTATS|Summary diff --git a/python/plugins/processing/algs/saga/description/2.2.0/FragmentationClassesfromDensityandConnectivity.txt b/python/plugins/processing/algs/saga/description/2.2.0/FragmentationClassesfromDensityandConnectivity.txt deleted file mode 100644 index 99e30c493a4a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/FragmentationClassesfromDensityandConnectivity.txt +++ /dev/null @@ -1,9 +0,0 @@ -Fragmentation Classes from Density and Connectivity -grid_analysis -ParameterRaster|DENSITY|Density [Percent]|False -ParameterRaster|CONNECTIVITY|Connectivity [Percent]|False -ParameterBoolean|BORDER|Add Border|True -ParameterNumber|WEIGHT|Connectivity Weighting|None|None|0 -ParameterNumber|DENSITY_MIN|Minimum Density [Percent]|0.0|100.0|10 -ParameterNumber|DENSITY_INT|Minimum Density for Interior Forest [Percent]|0.0|100.0|99 -OutputRaster|FRAGMENTATION|Fragmentation diff --git a/python/plugins/processing/algs/saga/description/2.2.0/Function.txt b/python/plugins/processing/algs/saga/description/2.2.0/Function.txt deleted file mode 100644 index e058e9b04df0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/Function.txt +++ /dev/null @@ -1,8 +0,0 @@ -Function -grid_calculus -ParameterNumber|XMIN|xmin|None|None|0.0 -ParameterNumber|XMAX|xmax|None|None|0.0 -ParameterNumber|YMIN|ymin|None|None|0.0 -ParameterNumber|YMAX|ymax|None|None|0.0 -ParameterString|FORMUL|Formula| -OutputRaster|RESULT|Function diff --git a/python/plugins/processing/algs/saga/description/2.2.0/Fuzzify.txt b/python/plugins/processing/algs/saga/description/2.2.0/Fuzzify.txt deleted file mode 100644 index d78f12b44318..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/Fuzzify.txt +++ /dev/null @@ -1,10 +0,0 @@ -Fuzzify -grid_calculus -ParameterRaster|INPUT|Grid|False -ParameterNumber|A|A|None|None|0.0 -ParameterNumber|B|B|None|None|0.0 -ParameterNumber|C|C|None|None|0.0 -ParameterNumber|D|D|None|None|0.0 -ParameterSelection|TYPE|Membership Function Type|[0] linear;[1] sigmoidal;[2] j-shaped -ParameterBoolean|AUTOFIT |Adjust to Grid|True -OutputRaster|OUTPUT|Fuzzified Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/FuzzyIntersection(AND).txt b/python/plugins/processing/algs/saga/description/2.2.0/FuzzyIntersection(AND).txt deleted file mode 100644 index a00eff21d7f1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/FuzzyIntersection(AND).txt +++ /dev/null @@ -1,5 +0,0 @@ -Fuzzy Intersection (AND) -grid_calculus -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|TYPE|Operator Type|[0] min(a, b) (non-interactive);[1] a * b;[2] max(0, a + b - 1) -OutputRaster|AND|Intersection diff --git a/python/plugins/processing/algs/saga/description/2.2.0/FuzzyUnion(OR).txt b/python/plugins/processing/algs/saga/description/2.2.0/FuzzyUnion(OR).txt deleted file mode 100644 index 592517943abb..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/FuzzyUnion(OR).txt +++ /dev/null @@ -1,5 +0,0 @@ -Fuzzy Union (OR) -grid_calculus -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|TYPE|Operator Type|[0] max(a, b) (non-interactive);[1] a + b - a * b;[2] min(1, a + b) -OutputRaster|OR|Union diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GaussianFilter.txt b/python/plugins/processing/algs/saga/description/2.2.0/GaussianFilter.txt deleted file mode 100644 index 0cf7e310d150..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GaussianFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Gaussian Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterNumber|SIGMA|Standard Deviation|None|None|1 -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Search Radius|None|None|3 -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GeographicallyWeightedMultipleRegression(Points).txt b/python/plugins/processing/algs/saga/description/2.2.0/GeographicallyWeightedMultipleRegression(Points).txt deleted file mode 100644 index fd483f192f1a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GeographicallyWeightedMultipleRegression(Points).txt +++ /dev/null @@ -1,16 +0,0 @@ -GWR for Multiple Predictors -statistics_regression -ParameterVector|POINTS|Points|-1|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterTableField|PREDICTORS|Predictor|POINTS|-1|False -ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -OutputVector|REGRESSION|Regression \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GeographicallyWeightedMultipleRegression(PointsGrids).txt b/python/plugins/processing/algs/saga/description/2.2.0/GeographicallyWeightedMultipleRegression(PointsGrids).txt deleted file mode 100644 index 1573751dfe6e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GeographicallyWeightedMultipleRegression(PointsGrids).txt +++ /dev/null @@ -1,20 +0,0 @@ -GWR for Multiple Predictor Grids -statistics_regression -ParameterMultipleInput|PREDICTORS|Predictors|3.0|False -ParameterVector|POINTS|Points|0|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterSelection|RESOLUTION|Model Resolution|[0] same as predictors;[1] user defined|1 -ParameterNumber|RESOLUTION_VAL|Resolution|0|None|1 -ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -OutputRaster|REGRESSION|Regression -OutputRaster|QUALITY|Coefficient of Determination -OutputVector|RESIDUALS|Residuals diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GeographicallyWeightedMultipleRegression.txt b/python/plugins/processing/algs/saga/description/2.2.0/GeographicallyWeightedMultipleRegression.txt deleted file mode 100644 index e4f8a0e5ac69..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GeographicallyWeightedMultipleRegression.txt +++ /dev/null @@ -1,23 +0,0 @@ -GWR for Multiple Predictors (Gridded Model Output) -statistics_regression -ParameterVector|POINTS|Points|0|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterTableField|PREDICTORS|Predictor|POINTS|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputVector|REGRESSION|Regression -OutputRaster|SLOPES|Slopes -OutputRaster|TARGET_INTERCEPT|Intercept -OutputRaster|TARGET_QUALITY|Quality \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GeographicallyWeightedRegression(PointsGrid).txt b/python/plugins/processing/algs/saga/description/2.2.0/GeographicallyWeightedRegression(PointsGrid).txt deleted file mode 100644 index 77d54b117626..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GeographicallyWeightedRegression(PointsGrid).txt +++ /dev/null @@ -1,20 +0,0 @@ -GWR for Single Predictor Grid -statistics_regression -ParameterRaster|PREDICTOR|Predictor|False -ParameterVector|POINTS|Points|0|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -OutputRaster|REGRESSION|Regression -OutputRaster|QUALITY|Coefficient of Determination -OutputRaster|INTERCEPT|Intercept -OutputRaster|SLOPE|Slope -OutputVector|RESIDUALS|Residuals diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GeographicallyWeightedRegression.txt b/python/plugins/processing/algs/saga/description/2.2.0/GeographicallyWeightedRegression.txt deleted file mode 100644 index f8ac07c28aa1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GeographicallyWeightedRegression.txt +++ /dev/null @@ -1,23 +0,0 @@ -GWR for Single Predictor (Gridded Model Output) -statistics_regression -ParameterVector|POINTS|Points|0|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterTableField|PREDICTOR|Predictor|POINTS|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid -OutputRaster|TARGET_INTERCEPT|Intercept -OutputRaster|TARGET_SLOPE|Slope -OutputRaster|TARGET_QUALITY|Quality \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GeometricFigures.txt b/python/plugins/processing/algs/saga/description/2.2.0/GeometricFigures.txt deleted file mode 100644 index 09a288dc72c0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GeometricFigures.txt +++ /dev/null @@ -1,7 +0,0 @@ -Geometric Figures -grid_calculus -ParameterNumber|CELL_COUNT|Cell Count|None|None|0 -ParameterNumber|CELL_SIZE|Cell Size|None|None|0 -ParameterSelection|FIGURE|Figure|[0] Cone (up);[1] Cone (down);[2] Plane -ParameterNumber|PLANE|Direction of Plane [Degree]|None|None|0 -OutputRaster|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GetShapesExtents.txt b/python/plugins/processing/algs/saga/description/2.2.0/GetShapesExtents.txt deleted file mode 100644 index 9ef1cc7c3ad0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GetShapesExtents.txt +++ /dev/null @@ -1,5 +0,0 @@ -Get Shapes Extents -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterSelection|OUTPUT|Get Extent for|[0] all shapes;[1] each shape;[2] each shape's part -OutputVector|EXTENTS|Extents diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GlobalMoransIforGrids.txt b/python/plugins/processing/algs/saga/description/2.2.0/GlobalMoransIforGrids.txt deleted file mode 100644 index e5de7f60a3af..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GlobalMoransIforGrids.txt +++ /dev/null @@ -1,5 +0,0 @@ -Global Moran's I for Grids -statistics_grid -ParameterRaster|GRID|Grid|False -ParameterSelection|CONTIGUITY|Case of contiguity|[0] Rook;[1] Queen -OutputTable|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GradientVectorfromCartesiantoPolarCoordinates.txt b/python/plugins/processing/algs/saga/description/2.2.0/GradientVectorfromCartesiantoPolarCoordinates.txt deleted file mode 100644 index 8a725be39c07..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GradientVectorfromCartesiantoPolarCoordinates.txt +++ /dev/null @@ -1,10 +0,0 @@ -Gradient Vector from Cartesian to Polar Coordinates -grid_calculus -ParameterRaster|DX|X Component|False -ParameterRaster|DY|Y Component|False -ParameterSelection|UNITS|Polar Angle Units|[0] radians;[1] degree -ParameterSelection|SYSTEM|Polar Coordinate System|[0] mathematical;[1] geographical;[2] user defined -ParameterNumber|SYSTEM_ZERO|User defined Zero Direction|None|None|0.0 -ParameterSelection|SYSTEM_ORIENT|User defined Orientation|[0] clockwise;[1] counterclockwise -OutputRaster|DIR|Direction -OutputRaster|LEN|Length diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GradientVectorfromPolartoCartesianCoordinates.txt b/python/plugins/processing/algs/saga/description/2.2.0/GradientVectorfromPolartoCartesianCoordinates.txt deleted file mode 100644 index 382aa9e6046b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GradientVectorfromPolartoCartesianCoordinates.txt +++ /dev/null @@ -1,10 +0,0 @@ -Gradient Vector from Polar to Cartesian Coordinates -grid_calculus -ParameterRaster|DIR|Direction|False -ParameterRaster|LEN|Length|False -ParameterSelection|UNITS|Polar Angle Units|[0] radians;[1] degree -ParameterSelection|SYSTEM|Polar Coordinate System|[0] mathematical;[1] geographical;[2] user defined -ParameterNumber|SYSTEM_ZERO|User defined Zero Direction|None|None|0.0 -ParameterSelection|SYSTEM_ORIENT|User defined Orientation|[0] clockwise;[1] counterclockwise -OutputRaster|DX|X Component -OutputRaster|DY|Y Component diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GradientVectorsfromDirectionalComponents.txt b/python/plugins/processing/algs/saga/description/2.2.0/GradientVectorsfromDirectionalComponents.txt deleted file mode 100644 index 1a1abf488830..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GradientVectorsfromDirectionalComponents.txt +++ /dev/null @@ -1,10 +0,0 @@ -Gradient Vectors from Directional Components -shapes_grid -ParameterRaster|X|X Component|False -ParameterRaster|Y|Y Component|False -ParameterNumber|STEP|Step|None|None|1 -ParameterNumber|SIZE_MIN|Size Range Min|None|None|25.0 -ParameterNumber|SIZE_MAX|Size Range Max|None|None|100.0 -ParameterSelection|AGGR|Aggregation|[0] nearest neighbour;[1] mean value -ParameterSelection|STYLE|Style|[0] simple line;[1] arrow;[2] arrow (centered to cell) -OutputVector|VECTORS|Gradient Vectors diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GradientVectorsfromDirectionandLength.txt b/python/plugins/processing/algs/saga/description/2.2.0/GradientVectorsfromDirectionandLength.txt deleted file mode 100644 index 628665a5522b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GradientVectorsfromDirectionandLength.txt +++ /dev/null @@ -1,10 +0,0 @@ -Gradient Vectors from Direction and Length -shapes_grid -ParameterRaster|DIR|Direction|False -ParameterRaster|LEN|Length|False -ParameterNumber|STEP|Step|None|None|1 -ParameterNumber|SIZE_MIN|Size Range Min|None|None|25.0 -ParameterNumber|SIZE_MAX|Size Range Max|None|None|100.0 -ParameterSelection|AGGR|Aggregation|[0] nearest neighbour;[1] mean value -ParameterSelection|STYLE|Style|[0] simple line;[1] arrow;[2] arrow (centered to cell) -OutputVector|VECTORS|Gradient Vectors diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GradientVectorsfromSurface.txt b/python/plugins/processing/algs/saga/description/2.2.0/GradientVectorsfromSurface.txt deleted file mode 100644 index 582bf10c03d5..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GradientVectorsfromSurface.txt +++ /dev/null @@ -1,9 +0,0 @@ -Gradient Vectors from Surface -shapes_grid -ParameterRaster|SURFACE|Surface|False -ParameterNumber|STEP|Step|None|None|1 -ParameterNumber|SIZE_MIN|Size Range Min|None|None|25.0 -ParameterNumber|SIZE_MAX|Size Range Max|None|None|100.0 -ParameterSelection|AGGR|Aggregation|[0] nearest neighbour;[1] mean value -ParameterSelection|STYLE|Style|[0] simple line;[1] arrow;[2] arrow (centered to cell) -OutputVector|VECTORS|Gradient Vectors diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GridBuffer.txt b/python/plugins/processing/algs/saga/description/2.2.0/GridBuffer.txt deleted file mode 100644 index da961e9d8736..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GridBuffer.txt +++ /dev/null @@ -1,6 +0,0 @@ -Grid Buffer -grid_tools -ParameterRaster|FEATURES|Features Grid|False -ParameterNumber|DIST|Distance|None|None|1000 -ParameterSelection|BUFFERTYPE|Buffer Distance|[0] Fixed;[1] Cell value -OutputRaster|BUFFER|Buffer Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GridCalculator.txt b/python/plugins/processing/algs/saga/description/2.2.0/GridCalculator.txt deleted file mode 100644 index e8499488134f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GridCalculator.txt +++ /dev/null @@ -1,9 +0,0 @@ -Raster calculator|Grid Calculator -grid_calculus -AllowUnmatching -ParameterRaster|GRIDS|Main input layer|False -ParameterMultipleInput|XGRIDS|Additional layers|3|True -ParameterString|FORMULA|Formula| -ParameterBoolean|USE_NODATA|Use NoData|False -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 -OutputRaster|RESULT|Calculated diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GridCellIndex.txt b/python/plugins/processing/algs/saga/description/2.2.0/GridCellIndex.txt deleted file mode 100644 index 0b8e3ee81ca4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GridCellIndex.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Cell Index -grid_tools -ParameterRaster|GRID|Input Grid|False -ParameterSelection|ORDER|Index|[0] ascending;[1] descending|0 -OutputRaster|INDEX|Sorted Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GridDifference.txt b/python/plugins/processing/algs/saga/description/2.2.0/GridDifference.txt deleted file mode 100644 index c2fa03dbf7ed..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GridDifference.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Difference -grid_calculus -ParameterRaster|A|A|False -ParameterRaster|B|B|False -OutputRaster|C|Difference (A - B) diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GridDivision.txt b/python/plugins/processing/algs/saga/description/2.2.0/GridDivision.txt deleted file mode 100644 index 718d0109fe4a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GridDivision.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Division -grid_calculus -ParameterRaster|A|Dividend|False -ParameterRaster|B|Divisor|False -OutputRaster|C|Quotient diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GridMasking.txt b/python/plugins/processing/algs/saga/description/2.2.0/GridMasking.txt deleted file mode 100644 index 93233f1d1a19..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GridMasking.txt +++ /dev/null @@ -1,6 +0,0 @@ -Grid Masking -grid_tools -ParameterRaster|GRID|Grid|False -ParameterRaster|MASK|Mask|False -OutputRaster|MASKED|Masked Grid -AllowUnmatching \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GridNormalisation.txt b/python/plugins/processing/algs/saga/description/2.2.0/GridNormalisation.txt deleted file mode 100644 index b16dcabcc8cc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GridNormalisation.txt +++ /dev/null @@ -1,6 +0,0 @@ -Grid Normalisation -grid_calculus -ParameterRaster|INPUT|Grid|False -ParameterNumber|RANGE_MIN|Target Range (min)|None|None|0 -ParameterNumber|RANGE_MAX|Target Range (max)|None|None|1 -OutputRaster|OUTPUT|Normalised Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GridOrientation.txt b/python/plugins/processing/algs/saga/description/2.2.0/GridOrientation.txt deleted file mode 100644 index 2eb0de16a857..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GridOrientation.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Orientation -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterSelection|METHOD|Method|[0] Copy;[1] Flip;[2] Mirror;[3] Invert -OutputRaster|RESULT|Changed Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GridProximityBuffer.txt b/python/plugins/processing/algs/saga/description/2.2.0/GridProximityBuffer.txt deleted file mode 100644 index be5df903a0be..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GridProximityBuffer.txt +++ /dev/null @@ -1,8 +0,0 @@ -Grid Proximity Buffer -grid_tools -ParameterRaster|SOURCE|Source Grid|False -ParameterNumber|DIST|Buffer distance|None|None|500.0 -ParameterNumber|IVAL|Equidistance|None|None|100.0 -OutputRaster|DISTANCE|Distance Grid -OutputRaster|ALLOC|Allocation Grid -OutputRaster|BUFFER|Buffer Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GridSkeletonization.txt b/python/plugins/processing/algs/saga/description/2.2.0/GridSkeletonization.txt deleted file mode 100644 index eacd23ff04c4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GridSkeletonization.txt +++ /dev/null @@ -1,9 +0,0 @@ -Grid Skeletonization -imagery_segmentation -ParameterRaster|INPUT|Grid|False -ParameterSelection|METHOD|Method|[0] Standard;[1] Hilditch's Algorithm;[2] Channel Skeleton -ParameterSelection|INIT_METHOD|Initialisation|[0] Less than;[1] Greater than -ParameterNumber|INIT_THRESHOLD|Threshold (Init.)|None|None|0.0 -ParameterNumber|CONVERGENCE|Convergence|None|None|3.0 -OutputRaster|RESULT|Skeleton -OutputVector|VECTOR|Skeleton diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GridStandardisation.txt b/python/plugins/processing/algs/saga/description/2.2.0/GridStandardisation.txt deleted file mode 100644 index 743f2e0aabf2..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GridStandardisation.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Standardisation -grid_calculus -ParameterRaster|INPUT|Grid|False -ParameterNumber|STRETCH|Stretch Factor|0.0|None|1.0 -OutputRaster|OUTPUT|Standardised Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GridStatisticsforPolygons.txt b/python/plugins/processing/algs/saga/description/2.2.0/GridStatisticsforPolygons.txt deleted file mode 100644 index ad76d9ff85f9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GridStatisticsforPolygons.txt +++ /dev/null @@ -1,14 +0,0 @@ -Grid Statistics for Polygons -shapes_grid -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|COUNT |Number of Cells|True -ParameterBoolean|MIN |Minimum|True -ParameterBoolean|MAX |Maximum|True -ParameterBoolean|RANGE |Range|True -ParameterBoolean|SUM |Sum|True -ParameterBoolean|MEAN |Mean|True -ParameterBoolean|VAR |Variance|True -ParameterBoolean|STDDEV |Standard Deviation|True -ParameterNumber|QUANTILE|Quantiles|None|None|0 -OutputVector|RESULT|Statistics diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GridValuestoPoints(randomly).txt b/python/plugins/processing/algs/saga/description/2.2.0/GridValuestoPoints(randomly).txt deleted file mode 100644 index 1f04323c6a34..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GridValuestoPoints(randomly).txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Values to Points (randomly) -shapes_grid -ParameterRaster|GRID|Grid|False -ParameterNumber|FREQ|Frequency|None|None|100 -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GridValuestoPoints.txt b/python/plugins/processing/algs/saga/description/2.2.0/GridValuestoPoints.txt deleted file mode 100644 index 0e33a303675b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GridValuestoPoints.txt +++ /dev/null @@ -1,7 +0,0 @@ -Grid Values to Points -shapes_grid -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterVector|POLYGONS|Polygons|-1|True -ParameterBoolean|NODATA |Exclude NoData Cells|True -ParameterSelection|TYPE|Type|[0] nodes;[1] cells -OutputVector|SHAPES|Shapes diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GridVolume.txt b/python/plugins/processing/algs/saga/description/2.2.0/GridVolume.txt deleted file mode 100644 index f20c27cc53d0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GridVolume.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Volume -grid_calculus -ParameterRaster|GRID|Grid|False -ParameterSelection|METHOD|Method|[0] Count Only Above Base Level;[1] Count Only Below Base Level;[2] Subtract Volumes Below Base Level;[3] Add Volumes Below Base Level -ParameterNumber|LEVEL|Base Level|None|None|0.0 diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GridsProduct.txt b/python/plugins/processing/algs/saga/description/2.2.0/GridsProduct.txt deleted file mode 100644 index 59d864f4fc9b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GridsProduct.txt +++ /dev/null @@ -1,4 +0,0 @@ -Grids Product -grid_calculus -ParameterMultipleInput|GRIDS|Grids|3|False -OutputRaster|RESULT|Product diff --git a/python/plugins/processing/algs/saga/description/2.2.0/GridsSum.txt b/python/plugins/processing/algs/saga/description/2.2.0/GridsSum.txt deleted file mode 100644 index 60b0beebd9f3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/GridsSum.txt +++ /dev/null @@ -1,4 +0,0 @@ -Grids Sum -grid_calculus -ParameterMultipleInput|GRIDS|Grids|3|False -OutputRaster|RESULT|Sum diff --git a/python/plugins/processing/algs/saga/description/2.2.0/HistogramSurface.txt b/python/plugins/processing/algs/saga/description/2.2.0/HistogramSurface.txt deleted file mode 100644 index bde5571c5d18..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/HistogramSurface.txt +++ /dev/null @@ -1,5 +0,0 @@ -Histogram Surface -grid_visualisation -ParameterRaster|GRID|Grid|False -ParameterSelection|METHOD|Method|[0] rows;[1] columns;[2] circle -OutputRaster|HIST|Histogram diff --git a/python/plugins/processing/algs/saga/description/2.2.0/Hypsometry.txt b/python/plugins/processing/algs/saga/description/2.2.0/Hypsometry.txt deleted file mode 100644 index 2ca4a17709bb..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/Hypsometry.txt +++ /dev/null @@ -1,10 +0,0 @@ -Hypsometry -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterNumber|COUNT|Number of Classes|None|None|100.0 -ParameterSelection|SORTING|Sort|[0] up;[1] down -ParameterSelection|METHOD|Classification Constant|[0] height;[1] area -ParameterBoolean|BZRANGE |Use Z-Range|True -ParameterNumber|ZRANGE_MIN|Z-Range Min|None|None|0.0 -ParameterNumber|ZRANGE_MAX|Z-Range Max|None|None|1000.0 -OutputTable|TABLE|Hypsometry diff --git a/python/plugins/processing/algs/saga/description/2.2.0/InvertDataNo-Data.txt b/python/plugins/processing/algs/saga/description/2.2.0/InvertDataNo-Data.txt deleted file mode 100644 index 79a626fa9482..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/InvertDataNo-Data.txt +++ /dev/null @@ -1,4 +0,0 @@ -Invert Data/No-Data -grid_tools -ParameterRaster|INPUT|Grid|False -OutputRaster|OUTPUT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.0/KernelDensityEstimation.txt b/python/plugins/processing/algs/saga/description/2.2.0/KernelDensityEstimation.txt deleted file mode 100644 index ec9119509d38..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/KernelDensityEstimation.txt +++ /dev/null @@ -1,11 +0,0 @@ -Kernel Density Estimation -grid_gridding -ParameterVector|POINTS|Points|0|False -ParameterTableField|POPULATION|Weight|POINTS|-1|False -ParameterNumber|RADIUS|Radius|None|None|10 -ParameterSelection|KERNEL|Kernel|[0] quartic kernel;[1] gaussian kernel -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Kernel diff --git a/python/plugins/processing/algs/saga/description/2.2.0/LSFactor.txt b/python/plugins/processing/algs/saga/description/2.2.0/LSFactor.txt deleted file mode 100644 index 6522dc4c91c8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/LSFactor.txt +++ /dev/null @@ -1,9 +0,0 @@ -LS Factor -ta_hydrology -ParameterRaster|SLOPE|Slope|False -ParameterRaster|AREA|Catchment Area|False -ParameterSelection|CONV|Area to Length Conversion|[0] no conversion (areas already given as specific catchment area);[1] 1 / cell size (specific catchment area);[2] square root (catchment length) -ParameterSelection|METHOD|Method (LS)|[0] Moore et al. 1991;[1] Desmet & Govers 1996;[2] Boehner & Selige 2006 -ParameterNumber|EROSIVITY|Rill/Interrill Erosivity|None|None|0.0 -ParameterSelection|STABILITY|Stability|[0] stable;[1] instable (thawing) -OutputRaster|LS|LS Factor diff --git a/python/plugins/processing/algs/saga/description/2.2.0/LakeFlood.txt b/python/plugins/processing/algs/saga/description/2.2.0/LakeFlood.txt deleted file mode 100644 index 0328fc6ec474..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/LakeFlood.txt +++ /dev/null @@ -1,7 +0,0 @@ -Lake Flood -ta_hydrology -ParameterRaster|ELEV|DEM|False -ParameterRaster|SEEDS|Seeds|False -ParameterBoolean|LEVEL |Absolute Water Levels|True -OutputRaster|OUTDEPTH|Lake -OutputRaster|OUTLEVEL|Surface diff --git a/python/plugins/processing/algs/saga/description/2.2.0/LandSurfaceTemperature.txt b/python/plugins/processing/algs/saga/description/2.2.0/LandSurfaceTemperature.txt deleted file mode 100644 index 798338997f46..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/LandSurfaceTemperature.txt +++ /dev/null @@ -1,10 +0,0 @@ -Land Surface Temperature -ta_morphometry -ParameterRaster|DEM|Elevation [m]|False -ParameterRaster|SWR|Short Wave Radiation [kW/m2]|False -ParameterRaster|LAI|Leaf Area Index|False -ParameterNumber|Z_REFERENCE|Elevation at Reference Station [m]|None|None|0.0 -ParameterNumber|T_REFERENCE|Temperature at Reference Station [Deg.Celsius]|None|None|0.0 -ParameterNumber|T_GRADIENT|Temperature Gradient [Deg.Celsius/km]|None|None|6.5 -ParameterNumber|C_FACTOR|C Factor|None|None|1.0 -OutputRaster|LST|Land Surface Temperature [Deg.Celsius] diff --git a/python/plugins/processing/algs/saga/description/2.2.0/LaplacianFilter.txt b/python/plugins/processing/algs/saga/description/2.2.0/LaplacianFilter.txt deleted file mode 100644 index e828148a738f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/LaplacianFilter.txt +++ /dev/null @@ -1,8 +0,0 @@ -Laplacian Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|METHOD|Method|[0] standard kernel 1;[1] standard kernel 2;[2] Standard kernel 3;[3] user defined kernel -ParameterNumber|SIGMA|Standard Deviation (Percent of Radius)|None|None|0 -ParameterNumber|RADIUS|Radius|None|None|1 -ParameterSelection|MODE|Search Mode|[0] square;[1] circle -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/Layerofextremevalue.txt b/python/plugins/processing/algs/saga/description/2.2.0/Layerofextremevalue.txt deleted file mode 100644 index 15c6ed213816..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/Layerofextremevalue.txt +++ /dev/null @@ -1,5 +0,0 @@ -Layer of extreme value -grid_analysis -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|CRITERIA|Method|[0] Maximum;[1] Minimum -OutputRaster|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.0/LeastCostPaths.txt b/python/plugins/processing/algs/saga/description/2.2.0/LeastCostPaths.txt deleted file mode 100644 index ecbdd4818234..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/LeastCostPaths.txt +++ /dev/null @@ -1,7 +0,0 @@ -Least Cost Paths -grid_analysis -ParameterVector|SOURCE|Source Point(s)|0|False -ParameterRaster|DEM|Accumulated cost|False -ParameterMultipleInput|VALUES|Values|3|True -OutputVector|POINTS|Profile (points) -OutputVector|LINE|Profile (lines) diff --git a/python/plugins/processing/algs/saga/description/2.2.0/Line-PolygonIntersection.txt b/python/plugins/processing/algs/saga/description/2.2.0/Line-PolygonIntersection.txt deleted file mode 100644 index 9c15f2583b07..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/Line-PolygonIntersection.txt +++ /dev/null @@ -1,6 +0,0 @@ -Line-Polygon Intersection -shapes_lines -ParameterVector|LINES|Lines|1|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterSelection|METHOD|Output|[0] one multi-line per polygon;[1] keep original line attributes -OutputVector|INTERSECT|Intersection diff --git a/python/plugins/processing/algs/saga/description/2.2.0/LineDissolve.txt b/python/plugins/processing/algs/saga/description/2.2.0/LineDissolve.txt deleted file mode 100644 index fb704cc7bb38..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/LineDissolve.txt +++ /dev/null @@ -1,8 +0,0 @@ -Line Dissolve -shapes_lines -ParameterVector|LINES|Lines|-1|False -ParameterTableField|FIELD_1|1. Attribute|LINES|-1|False -ParameterTableField|FIELD_2|2. Attribute|LINES|-1|False -ParameterTableField|FIELD_3|3. Attribute|LINES|-1|False -ParameterSelection|ALL|Dissolve...|[0] lines with same attribute value(s);[1] all lines -OutputVector|DISSOLVED|Dissolved Lines diff --git a/python/plugins/processing/algs/saga/description/2.2.0/LineProperties.txt b/python/plugins/processing/algs/saga/description/2.2.0/LineProperties.txt deleted file mode 100644 index d23d392d964f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/LineProperties.txt +++ /dev/null @@ -1,7 +0,0 @@ -Line Properties -shapes_lines -ParameterVector|LINES|Lines|1|False -ParameterBoolean|BPARTS |Number of Parts|True -ParameterBoolean|BPOINTS |Number of Vertices|True -ParameterBoolean|BLENGTH |Length|True -OutputVector|OUTPUT|Lines with Property Attributes diff --git a/python/plugins/processing/algs/saga/description/2.2.0/LineSimplification.txt b/python/plugins/processing/algs/saga/description/2.2.0/LineSimplification.txt deleted file mode 100644 index b1bb26e2b791..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/LineSimplification.txt +++ /dev/null @@ -1,5 +0,0 @@ -Line Simplification -shapes_lines -ParameterVector|LINES|Lines|1|False -ParameterNumber|TOLERANCE|Tolerance|None|None|1.0 -OutputVector|OUTPUT|Simplified Lines diff --git a/python/plugins/processing/algs/saga/description/2.2.0/LocalMinimaandMaxima.txt b/python/plugins/processing/algs/saga/description/2.2.0/LocalMinimaandMaxima.txt deleted file mode 100644 index 4b415bc9a990..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/LocalMinimaandMaxima.txt +++ /dev/null @@ -1,5 +0,0 @@ -Local Minima and Maxima -shapes_grid -ParameterRaster|GRID|Grid|False -OutputVector|MINIMA|Minima -OutputVector|MAXIMA|Maxima diff --git a/python/plugins/processing/algs/saga/description/2.2.0/MajorityFilter.txt b/python/plugins/processing/algs/saga/description/2.2.0/MajorityFilter.txt deleted file mode 100644 index 7cd6fe5291b8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/MajorityFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Majority Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Radius|1.0|None|1 -ParameterNumber|THRESHOLD|Threshold [Percent]|0.0|None|0 -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/MassBalanceIndex.txt b/python/plugins/processing/algs/saga/description/2.2.0/MassBalanceIndex.txt deleted file mode 100644 index e65fabf52d57..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/MassBalanceIndex.txt +++ /dev/null @@ -1,8 +0,0 @@ -Mass Balance Index -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterRaster|HREL|Vertical Distance to Channel Network|True -ParameterNumber|TSLOPE|T Slope|None|None|15.0 -ParameterNumber|TCURVE|T Curvature|None|None|0.01 -ParameterNumber|THREL|T Vertical Distance to Channel Network|None|None|15.0 -OutputRaster|MBI|Mass Balance Index diff --git a/python/plugins/processing/algs/saga/description/2.2.0/MergeLayers.txt b/python/plugins/processing/algs/saga/description/2.2.0/MergeLayers.txt deleted file mode 100644 index f0d5bb7955cc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/MergeLayers.txt +++ /dev/null @@ -1,6 +0,0 @@ -Merge Layers -shapes_tools -ParameterMultipleInput|INPUT|Input Layers|-1|True -ParameterBoolean|SRCINFO|Add source information|True -ParameterBoolean|MATCH|Match Fields by Name|True -OutputVector|MERGED|Merged Layer \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/MetricConversions.txt b/python/plugins/processing/algs/saga/description/2.2.0/MetricConversions.txt deleted file mode 100644 index 3501a9e33438..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/MetricConversions.txt +++ /dev/null @@ -1,5 +0,0 @@ -Metric Conversions -grid_calculus -ParameterRaster|GRID|Grid|False -ParameterSelection|CONVERSION|Conversion|[0] radians to degree;[1] degree to radians;[2] Celsius to Fahrenheit;[3] Fahrenheit to Celsius -OutputRaster|CONV|Converted Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/MinimumDistanceAnalysis.txt b/python/plugins/processing/algs/saga/description/2.2.0/MinimumDistanceAnalysis.txt deleted file mode 100644 index 200a565bc533..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/MinimumDistanceAnalysis.txt +++ /dev/null @@ -1,4 +0,0 @@ -Minimum Distance Analysis -statistics_points -ParameterVector|POINTS|Points|0|False -OutputTable|TABLE|Minimum Distance Analysis diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ModifiedQuadraticShepard.txt b/python/plugins/processing/algs/saga/description/2.2.0/ModifiedQuadraticShepard.txt deleted file mode 100644 index 3c96918860ec..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ModifiedQuadraticShepard.txt +++ /dev/null @@ -1,11 +0,0 @@ -Modified Quadratic Shepard -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterNumber|QUADRATIC_NEIGHBORS|Quadratic Neighbors|5.0|None|13 -ParameterNumber|WEIGHTING_NEIGHBORS|Weighting Neighbors|3.0|None|19 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/MorphologicalFilter.txt b/python/plugins/processing/algs/saga/description/2.2.0/MorphologicalFilter.txt deleted file mode 100644 index 28dfd3f15bd2..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/MorphologicalFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Morphological Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Radius|None|None|1 -ParameterSelection|METHOD|Method|[0] Dilation;[1] Erosion;[2] Opening;[3] Closing -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/MorphometricProtectionIndex.txt b/python/plugins/processing/algs/saga/description/2.2.0/MorphometricProtectionIndex.txt deleted file mode 100644 index 48d44432cb65..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/MorphometricProtectionIndex.txt +++ /dev/null @@ -1,5 +0,0 @@ -Morphometric Protection Index -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS|Radius|None|None|2000.0 -OutputRaster|PROTECTION|Protection Index diff --git a/python/plugins/processing/algs/saga/description/2.2.0/Mosaicking.txt b/python/plugins/processing/algs/saga/description/2.2.0/Mosaicking.txt deleted file mode 100644 index b8bb1d1f5af4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/Mosaicking.txt +++ /dev/null @@ -1,14 +0,0 @@ -Mosaick raster layers|Mosaicking -grid_tools -AllowUnmatching -ParameterMultipleInput|GRIDS|Input Grids|3|False -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|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 -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/Multi-BandVariation.txt b/python/plugins/processing/algs/saga/description/2.2.0/Multi-BandVariation.txt deleted file mode 100644 index 8dcf7d017e09..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/Multi-BandVariation.txt +++ /dev/null @@ -1,11 +0,0 @@ -Multi-Band Variation -statistics_grid -ParameterMultipleInput|BANDS|Grids|3|False -ParameterNumber|RADIUS|Radius [Cells]|None|None|1 -ParameterSelection|DISTANCE_WEIGHTING_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1.0 -OutputRaster|MEAN|Mean Distance -OutputRaster|STDDEV|Standard Deviation -OutputRaster|DIFF|Distance diff --git a/python/plugins/processing/algs/saga/description/2.2.0/MultiDirectionLeeFilter.txt b/python/plugins/processing/algs/saga/description/2.2.0/MultiDirectionLeeFilter.txt deleted file mode 100644 index a768db9522f6..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/MultiDirectionLeeFilter.txt +++ /dev/null @@ -1,10 +0,0 @@ -Multi Direction Lee Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterNumber|NOISE_ABS|Estimated Noise (absolute)|None|None|1.0 -ParameterNumber|NOISE_REL|Estimated Noise (relative)|None|None|1.0 -ParameterBoolean|WEIGHTED |Weighted|True -ParameterSelection|METHOD|Method|[0] noise variance given as absolute value;[1] noise variance given relative to mean standard deviation;[2] original calculation (Ringeler) -OutputRaster|RESULT|Filtered Grid -OutputRaster|STDDEV|Minimum Standard Deviation -OutputRaster|DIR|Direction of Minimum Standard Deviation diff --git a/python/plugins/processing/algs/saga/description/2.2.0/MultilevelB-SplineInterpolation(fromGrid).txt b/python/plugins/processing/algs/saga/description/2.2.0/MultilevelB-SplineInterpolation(fromGrid).txt deleted file mode 100644 index 035298534043..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/MultilevelB-SplineInterpolation(fromGrid).txt +++ /dev/null @@ -1,14 +0,0 @@ -Multilevel B-Spline Interpolation (from Grid) -grid_spline -ParameterRaster|GRID|Grid|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterSelection|METHOD|Method|[0] without B-spline refinement;[1] with B-spline refinement -ParameterNumber|EPSILON|Threshold Error|0|None|0.0001 -ParameterNumber|LEVEL_MAX|Maximum Level|1|14|11 -ParameterBoolean|UPDATE|Update View|False -ParameterSelection|DATATYPE|Data Type|[0] same as input grid;[1] floating point -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -ParameterRaster|TARGET_TEMPLATE|Target system|True -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/MultilevelB-SplineInterpolation.txt b/python/plugins/processing/algs/saga/description/2.2.0/MultilevelB-SplineInterpolation.txt deleted file mode 100644 index 2f7159d4c145..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/MultilevelB-SplineInterpolation.txt +++ /dev/null @@ -1,14 +0,0 @@ -Multilevel B-Spline Interpolation -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -ParameterSelection|METHOD|Method|[0] without B-spline refinement;[1] with B-spline refinement -ParameterNumber|EPSILON|Threshold Error|0|None|0.0001 -ParameterNumber|LEVEL_MAX|Maximum level|1|14|11 -ParameterBoolean|UPDATE|Update View|False -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -ParameterRaster|TARGET_TEMPLATE|Target system|True -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/MultipleRegressionAnalysis(GridGrids).txt b/python/plugins/processing/algs/saga/description/2.2.0/MultipleRegressionAnalysis(GridGrids).txt deleted file mode 100644 index 32635533abf0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/MultipleRegressionAnalysis(GridGrids).txt +++ /dev/null @@ -1,15 +0,0 @@ -Multiple Regression Analysis (Grid/Grids) -statistics_regression -ParameterRaster|DEPENDENT|Dependent|False -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterBoolean|COORD_X |Include X Coordinate|True -ParameterBoolean|COORD_Y |Include Y Coordinate|True -ParameterSelection|METHOD|Method|[0] include all;[1] forward;[2] backward;[3] stepwise -ParameterNumber|P_IN|P in|None|None|5 -ParameterNumber|P_OUT|P out|None|None|5 -OutputRaster|REGRESSION|Regression -OutputRaster|RESIDUALS|Residuals -OutputTable|INFO_COEFF|Details: Coefficients -OutputTable|INFO_MODEL|Details: Model -OutputTable|INFO_STEPS|Details: Steps diff --git a/python/plugins/processing/algs/saga/description/2.2.0/MultipleRegressionAnalysis(PointsGrids).txt b/python/plugins/processing/algs/saga/description/2.2.0/MultipleRegressionAnalysis(PointsGrids).txt deleted file mode 100644 index c5dbbf03c4f8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/MultipleRegressionAnalysis(PointsGrids).txt +++ /dev/null @@ -1,16 +0,0 @@ -Multiple Regression Analysis (Points/Grids) -statistics_regression -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterVector|SHAPES|Shapes|-1|False -ParameterTableField|ATTRIBUTE|Attribute|SHAPES|-1|False -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterBoolean|COORD_X |Include X Coordinate|True -ParameterBoolean|COORD_Y |Include Y Coordinate|True -ParameterSelection|METHOD|Method|[0] include all;[1] forward;[2] backward;[3] stepwise -ParameterNumber|P_IN|P in|None|None|5 -ParameterNumber|P_OUT|P out|None|None|5 -OutputTable|INFO_COEFF|Details: Coefficients -OutputTable|INFO_MODEL|Details: Model -OutputTable|INFO_STEPS|Details: Steps -OutputVector|RESIDUALS|Residuals -OutputRaster|REGRESSION|Regression diff --git a/python/plugins/processing/algs/saga/description/2.2.0/MultiresolutionIndexofValleyBottomFlatness(MRVBF).txt b/python/plugins/processing/algs/saga/description/2.2.0/MultiresolutionIndexofValleyBottomFlatness(MRVBF).txt deleted file mode 100644 index 04d4c3ccbbdf..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/MultiresolutionIndexofValleyBottomFlatness(MRVBF).txt +++ /dev/null @@ -1,13 +0,0 @@ -Multiresolution Index of Valley Bottom Flatness (MRVBF) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|T_SLOPE|Initial Threshold for Slope|None|None|16 -ParameterNumber|T_PCTL_V|Threshold for Elevation Percentile (Lowness)|None|None|0.4 -ParameterNumber|T_PCTL_R|Threshold for Elevation Percentile (Upness)|None|None|0.35 -ParameterNumber|P_SLOPE|Shape Parameter for Slope|None|None|4.0 -ParameterNumber|P_PCTL|Shape Parameter for Elevation Percentile|None|None|3.0 -ParameterBoolean|UPDATE |Update Views|True -ParameterBoolean|CLASSIFY |Classify|True -ParameterNumber|MAX_RES|Maximum Resolution (Percentage)|None|None|100 -OutputRaster|MRVBF|MRVBF -OutputRaster|MRRTF|MRRTF diff --git a/python/plugins/processing/algs/saga/description/2.2.0/NaturalNeighbour.txt b/python/plugins/processing/algs/saga/description/2.2.0/NaturalNeighbour.txt deleted file mode 100644 index 70353b1e695a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/NaturalNeighbour.txt +++ /dev/null @@ -1,10 +0,0 @@ -Natural Neighbour -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterBoolean|SIBSON|Sibson|True -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/NearestNeighbour.txt b/python/plugins/processing/algs/saga/description/2.2.0/NearestNeighbour.txt deleted file mode 100644 index 50a99a9f3613..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/NearestNeighbour.txt +++ /dev/null @@ -1,9 +0,0 @@ -Nearest Neighbour -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/OrderedWeightedAveraging(OWA).txt b/python/plugins/processing/algs/saga/description/2.2.0/OrderedWeightedAveraging(OWA).txt deleted file mode 100644 index 19b0b85a23dc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/OrderedWeightedAveraging(OWA).txt +++ /dev/null @@ -1,5 +0,0 @@ -Ordered Weighted Averaging|Ordered Weighted Averaging (OWA) -grid_analysis -ParameterMultipleInput|GRIDS|Input Grids|3|False -ParameterFixedTable|WEIGHTS|Weights|3|Weight|False -OutputRaster|OUTPUT|Output Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/OrdinaryKriging(Global).txt b/python/plugins/processing/algs/saga/description/2.2.0/OrdinaryKriging(Global).txt deleted file mode 100644 index 4b1bef2ba940..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/OrdinaryKriging(Global).txt +++ /dev/null @@ -1,27 +0,0 @@ -Universal Kriging -statistics_kriging -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterSelection|TQUALITY|Type of Quality Measure|[0] standard deviation;[1] variance -ParameterBoolean|LOG|Logarithmic Transformation|True -ParameterBoolean|BLOCK|Block Kriging|True -ParameterNumber|DBLOCK|Block Size|0|None|100 -ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0 -ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100 -ParameterNumber|VAR_NSKIP|Skip|1|None|1 -ParameterString|VAR_MODEL|Variogram Model|a + b * x -ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global -ParameterNumber|SEARCH_RADIUS|Maximum Search Distance|0|None|1000 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -ParameterMultipleInput|PREDICTORS|Predictors|3|True -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterBoolean|COORDS|Coordinates|False -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_PREDICTION|Prediction -OutputRaster|TARGET_VARIANCE|Quality Measure \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/OrdinaryKriging.txt b/python/plugins/processing/algs/saga/description/2.2.0/OrdinaryKriging.txt deleted file mode 100644 index 60bbd50dbaee..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/OrdinaryKriging.txt +++ /dev/null @@ -1,24 +0,0 @@ -Ordinary Kriging -statistics_kriging -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterSelection|TQUALITY|Type of Quality Measure|[0] standard deviation;[1] variance -ParameterBoolean|LOG|Logarithmic Transformation|True -ParameterBoolean|BLOCK|Block Kriging|True -ParameterNumber|DBLOCK|Block Size|0|None|100 -ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0 -ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100 -ParameterNumber|VAR_NSKIP|Skip|1|None|1 -ParameterString|VAR_MODEL|Variogram Model|a + b * x -ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global -ParameterNumber|SEARCH_RADIUS|Maximum Search Distance|0|None|1000 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_PREDICTION|Prediction -OutputRaster|TARGET_VARIANCE|Quality Measure diff --git a/python/plugins/processing/algs/saga/description/2.2.0/OverlandFlow-KinematicWaveD8.txt b/python/plugins/processing/algs/saga/description/2.2.0/OverlandFlow-KinematicWaveD8.txt deleted file mode 100644 index 0a287008b818..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/OverlandFlow-KinematicWaveD8.txt +++ /dev/null @@ -1,13 +0,0 @@ -Overland Flow - Kinematic Wave D8 -sim_hydrology -ParameterRaster|DEM|Elevation|False -ParameterVector|GAUGES|Gauges|-1|True -ParameterNumber|TIME_SPAN|Simulation Time [h]|None|None|24 -ParameterNumber|TIME_STEP|Simulation Time Step [h]|None|None|0.1 -ParameterNumber|ROUGHNESS|Manning's Roughness|None|None|0.03 -ParameterNumber|NEWTON_MAXITER|Max. Iterations|None|None|100 -ParameterNumber|NEWTON_EPSILON|Epsilon|None|None|0.0001 -ParameterSelection|PRECIP|Precipitation|[0] Homogenous;[1] Above Elevation;[2] Left Half -ParameterNumber|THRESHOLD|Threshold Elevation|None|None|0.0 -OutputRaster|FLOW|Runoff -OutputTable|GAUGES_FLOW|Flow at Gauges diff --git a/python/plugins/processing/algs/saga/description/2.2.0/OverlandFlowDistancetoChannelNetwork.txt b/python/plugins/processing/algs/saga/description/2.2.0/OverlandFlowDistancetoChannelNetwork.txt deleted file mode 100644 index 58f904431d25..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/OverlandFlowDistancetoChannelNetwork.txt +++ /dev/null @@ -1,8 +0,0 @@ -Overland Flow Distance to Channel Network -ta_channels -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|CHANNELS|Channel Network|False -ParameterSelection|METHOD|Flow Algorithm|[0] D8;[1] MFD -OutputRaster|DISTANCE|Overland Flow Distance -OutputRaster|DISTVERT|Vertical Overland Flow Distance -OutputRaster|DISTHORZ|Horizontal Overland Flow Distance diff --git a/python/plugins/processing/algs/saga/description/2.2.0/Patching.txt b/python/plugins/processing/algs/saga/description/2.2.0/Patching.txt deleted file mode 100644 index 6a70404010f4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/Patching.txt +++ /dev/null @@ -1,6 +0,0 @@ -Patching -grid_tools -ParameterRaster|ORIGINAL|Grid|False -ParameterRaster|ADDITIONAL|Patch Grid|False -ParameterSelection|INTERPOLATION|Interpolation Method|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -OutputRaster|COMPLETED|Completed Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/PatternAnalysis.txt b/python/plugins/processing/algs/saga/description/2.2.0/PatternAnalysis.txt deleted file mode 100644 index 5a6d4de632a2..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/PatternAnalysis.txt +++ /dev/null @@ -1,11 +0,0 @@ -Pattern Analysis -grid_analysis -ParameterRaster|INPUT|Input Grid|False -ParameterSelection|WINSIZE|Size of Analysis Window|[0] 3 X 3;[1] 5 X 5;[2] 7 X 7 -ParameterNumber|MAXNUMCLASS|Max. Number of Classes|None|None|0 -OutputRaster|RELATIVE|Relative Richness -OutputRaster|DIVERSITY|Diversity -OutputRaster|DOMINANCE|Dominance -OutputRaster|FRAGMENTATION|Fragmentation -OutputRaster|NDC|Number of Different Classes -OutputRaster|CVN|Center Versus Neighbours diff --git a/python/plugins/processing/algs/saga/description/2.2.0/PointStatisticsforPolygons.txt b/python/plugins/processing/algs/saga/description/2.2.0/PointStatisticsforPolygons.txt deleted file mode 100644 index 02e0aba55cf1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/PointStatisticsforPolygons.txt +++ /dev/null @@ -1,14 +0,0 @@ -Point Statistics for Polygons -shapes_polygons -ParameterVector|POINTS|Points|0|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|FIELDS|Attribute Table field|POINTS|-1|False -ParameterSelection|FIELD_NAME|Field Naming Choice|[0] variable type + original name;[1] original name + variable type;[2] original name;[3] variable type -ParameterBoolean|SUM |Sum|True -ParameterBoolean|AVG |Mean|True -ParameterBoolean|VAR |Variance|True -ParameterBoolean|DEV |Deviation|True -ParameterBoolean|MIN |Minimum|True -ParameterBoolean|MAX |Maximum|True -ParameterBoolean|NUM |Count|True -OutputVector|STATISTICS|Statistics diff --git a/python/plugins/processing/algs/saga/description/2.2.0/PointsFilter.txt b/python/plugins/processing/algs/saga/description/2.2.0/PointsFilter.txt deleted file mode 100644 index afb3ee99f331..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/PointsFilter.txt +++ /dev/null @@ -1,12 +0,0 @@ -Points Filter -shapes_points -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterNumber|RADIUS|Radius|None|None|1 -ParameterNumber|MINNUM|Minimum Number of Points|None|None|0 -ParameterNumber|MAXNUM|Maximum Number of Points|None|None|0 -ParameterBoolean|QUADRANTS |Quadrants|True -ParameterSelection|METHOD|Filter Criterion|[0] keep maxima (with tolerance);[1] keep minima (with tolerance);[2] remove maxima (with tolerance);[3] remove minima (with tolerance);[4] remove below percentile;[5] remove above percentile -ParameterNumber|TOLERANCE|Tolerance|None|None|0.0 -ParameterNumber|PERCENT|Percentile|None|None|50 -OutputVector|FILTER|Filtered Points diff --git a/python/plugins/processing/algs/saga/description/2.2.0/PointsThinning.txt b/python/plugins/processing/algs/saga/description/2.2.0/PointsThinning.txt deleted file mode 100644 index 00643e842d88..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/PointsThinning.txt +++ /dev/null @@ -1,6 +0,0 @@ -Points Thinning -shapes_points -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterNumber|RESOLUTION|Resolution|0.0|None|1.0 -OutputVector|THINNED|Thinned Points diff --git a/python/plugins/processing/algs/saga/description/2.2.0/PolartoCartesianCoordinates.txt b/python/plugins/processing/algs/saga/description/2.2.0/PolartoCartesianCoordinates.txt deleted file mode 100644 index 8c9b76b316b1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/PolartoCartesianCoordinates.txt +++ /dev/null @@ -1,8 +0,0 @@ -Polar to Cartesian Coordinates -shapes_tools -ParameterVector|POLAR|Polar Coordinates|-1|False -ParameterTableField|F_EXAGG|Exaggeration|POLAR|-1|False -ParameterNumber|D_EXAGG|Exaggeration Factor|None|None|1 -ParameterNumber|RADIUS|Radius|None|None|6371000.0 -ParameterBoolean|DEGREE |Degree|True -OutputVector|CARTES|Cartesian Coordinates diff --git a/python/plugins/processing/algs/saga/description/2.2.0/Polygon-LineIntersection.txt b/python/plugins/processing/algs/saga/description/2.2.0/Polygon-LineIntersection.txt deleted file mode 100644 index cb4dd7e8e530..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/Polygon-LineIntersection.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygon-Line Intersection -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterVector|LINES|Lines|1|False -OutputVector|INTERSECT|Intersection diff --git a/python/plugins/processing/algs/saga/description/2.2.0/PolygonCentroids.txt b/python/plugins/processing/algs/saga/description/2.2.0/PolygonCentroids.txt deleted file mode 100644 index 5672b7e7f33a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/PolygonCentroids.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygon Centroids -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|METHOD |Centroids for each part|True -OutputVector|CENTROIDS|Centroids diff --git a/python/plugins/processing/algs/saga/description/2.2.0/PolygonDifference.txt b/python/plugins/processing/algs/saga/description/2.2.0/PolygonDifference.txt deleted file mode 100644 index ffb19965a883..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/PolygonDifference.txt +++ /dev/null @@ -1,6 +0,0 @@ -Difference -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Difference diff --git a/python/plugins/processing/algs/saga/description/2.2.0/PolygonDissolve.txt b/python/plugins/processing/algs/saga/description/2.2.0/PolygonDissolve.txt deleted file mode 100644 index 31663861e027..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/PolygonDissolve.txt +++ /dev/null @@ -1,8 +0,0 @@ -Polygon dissolve (by attribute)|Polygon Dissolve -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|FIELD_1|1. Attribute|POLYGONS|-1|True -ParameterTableField|FIELD_2|2. Attribute|POLYGONS|-1|True -ParameterTableField|FIELD_3|3. Attribute|POLYGONS|-1|True -ParameterBoolean|BND_KEEP|Keep inner boundaries|True -OutputVector|DISSOLVED|Dissolved diff --git a/python/plugins/processing/algs/saga/description/2.2.0/PolygonDissolveAllPolygs.txt b/python/plugins/processing/algs/saga/description/2.2.0/PolygonDissolveAllPolygs.txt deleted file mode 100644 index 49133566c5d4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/PolygonDissolveAllPolygs.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygon dissolve (all polygons)|Polygon Dissolve -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|BND_KEEP|Keep inner boundaries|True -OutputVector|DISSOLVED|Dissolved diff --git a/python/plugins/processing/algs/saga/description/2.2.0/PolygonIdentity.txt b/python/plugins/processing/algs/saga/description/2.2.0/PolygonIdentity.txt deleted file mode 100644 index 6cb365fbefba..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/PolygonIdentity.txt +++ /dev/null @@ -1,6 +0,0 @@ -Identity -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Identity diff --git a/python/plugins/processing/algs/saga/description/2.2.0/PolygonIntersect.txt b/python/plugins/processing/algs/saga/description/2.2.0/PolygonIntersect.txt deleted file mode 100644 index 2a822db707c3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/PolygonIntersect.txt +++ /dev/null @@ -1,6 +0,0 @@ -Intersect -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Intersection diff --git a/python/plugins/processing/algs/saga/description/2.2.0/PolygonPartstoSeparatePolygons.txt b/python/plugins/processing/algs/saga/description/2.2.0/PolygonPartstoSeparatePolygons.txt deleted file mode 100644 index 1cab12c11a51..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/PolygonPartstoSeparatePolygons.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygon Parts to Separate Polygons -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|LAKES |Ignore Lakes|True -OutputVector|PARTS|Polygon Parts diff --git a/python/plugins/processing/algs/saga/description/2.2.0/PolygonProperties.txt b/python/plugins/processing/algs/saga/description/2.2.0/PolygonProperties.txt deleted file mode 100644 index eeb063b1e570..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/PolygonProperties.txt +++ /dev/null @@ -1,8 +0,0 @@ -Polygon Properties -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|BPARTS |Number of Parts|True -ParameterBoolean|BPOINTS |Number of Vertices|True -ParameterBoolean|BLENGTH |Perimeter|True -ParameterBoolean|BAREA |Area|True -OutputVector|OUTPUT|Polygons with Property Attributes diff --git a/python/plugins/processing/algs/saga/description/2.2.0/PolygonShapeIndices.txt b/python/plugins/processing/algs/saga/description/2.2.0/PolygonShapeIndices.txt deleted file mode 100644 index 468ac18c9956..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/PolygonShapeIndices.txt +++ /dev/null @@ -1,4 +0,0 @@ -Polygon Shape Indices -shapes_polygons -ParameterVector|SHAPES|Shapes|2|False -OutputVector|INDEX|Shape Index diff --git a/python/plugins/processing/algs/saga/description/2.2.0/PolygonSymmetricalDifference.txt b/python/plugins/processing/algs/saga/description/2.2.0/PolygonSymmetricalDifference.txt deleted file mode 100644 index d1e4e3dc584e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/PolygonSymmetricalDifference.txt +++ /dev/null @@ -1,6 +0,0 @@ -Symmetrical Difference -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Symmetrical Difference diff --git a/python/plugins/processing/algs/saga/description/2.2.0/PolygonUnion.txt b/python/plugins/processing/algs/saga/description/2.2.0/PolygonUnion.txt deleted file mode 100644 index 8dd3e56c6d1f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/PolygonUnion.txt +++ /dev/null @@ -1,6 +0,0 @@ -Union -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Union diff --git a/python/plugins/processing/algs/saga/description/2.2.0/PolygonUpdate.txt b/python/plugins/processing/algs/saga/description/2.2.0/PolygonUpdate.txt deleted file mode 100644 index 71914cdc8dfe..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/PolygonUpdate.txt +++ /dev/null @@ -1,6 +0,0 @@ -Update -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Updated polygons diff --git a/python/plugins/processing/algs/saga/description/2.2.0/PolygonstoEdgesandNodes.txt b/python/plugins/processing/algs/saga/description/2.2.0/PolygonstoEdgesandNodes.txt deleted file mode 100644 index e9f4628f40a8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/PolygonstoEdgesandNodes.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygons to Edges and Nodes -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -OutputVector|EDGES|Edges -OutputVector|NODES|Nodes diff --git a/python/plugins/processing/algs/saga/description/2.2.0/PolynomialRegression.txt b/python/plugins/processing/algs/saga/description/2.2.0/PolynomialRegression.txt deleted file mode 100644 index e7ccd305714b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/PolynomialRegression.txt +++ /dev/null @@ -1,14 +0,0 @@ -Polynomial Regression -statistics_regression -ParameterVector|POINTS|Points|0|False -ParameterTableField|ATTRIBUTE|Attribute|POINTS|-1|False -ParameterSelection|POLYNOM|Polynom|[0] simple planar surface;[1] bi-linear saddle;[2] quadratic surface;[3] cubic surface;[4] user defined -ParameterNumber|XORDER|Maximum X Order|1|None|4 -ParameterNumber|YORDER|Maximum Y Order|1|None|4 -ParameterNumber|TORDER|Maximum Total Order|0|None|4 -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid -OutputVector|RESIDUALS|Residuals diff --git a/python/plugins/processing/algs/saga/description/2.2.0/PrincipleComponentsAnalysis.txt b/python/plugins/processing/algs/saga/description/2.2.0/PrincipleComponentsAnalysis.txt deleted file mode 100644 index f43035a1cc7a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/PrincipleComponentsAnalysis.txt +++ /dev/null @@ -1,6 +0,0 @@ -Principle Components Analysis -table_calculus -ParameterTable|TABLE|Table|False -ParameterSelection|METHOD|Method|[0] correlation matrix;[1] variance-covariance matrix;[2] sums-of-squares-and-cross-products matrix -ParameterNumber|NFIRST|Number of Components|None|None|3 -OutputTable|PCA|Principle Components diff --git a/python/plugins/processing/algs/saga/description/2.2.0/Profilefrompoints.txt b/python/plugins/processing/algs/saga/description/2.2.0/Profilefrompoints.txt deleted file mode 100644 index 9e21d5fa3540..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/Profilefrompoints.txt +++ /dev/null @@ -1,7 +0,0 @@ -Profile from points table|Profile from points -ta_profiles -ParameterRaster|GRID|Grid|False -ParameterTable|TABLE|Input|False -ParameterTableField|X|X|TABLE|-1|False -ParameterTableField|Y|Y|TABLE|-1|False -OutputTable|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ProfilesfromLines.txt b/python/plugins/processing/algs/saga/description/2.2.0/ProfilesfromLines.txt deleted file mode 100644 index bc32a9f8b05f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ProfilesfromLines.txt +++ /dev/null @@ -1,9 +0,0 @@ -Profiles from Lines -ta_profiles -ParameterRaster|DEM|DEM|False -ParameterMultipleInput|VALUES|Values|3|True -ParameterVector|LINES|Lines|1|False -ParameterTableField|NAME|Name|LINES|-1|False -ParameterBoolean|SPLIT |Each Line as new Profile|True -OutputVector|PROFILE|Profiles -OutputVector|PROFILES|Profiles diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ProximityGrid.txt b/python/plugins/processing/algs/saga/description/2.2.0/ProximityGrid.txt deleted file mode 100644 index b78dad39d795..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ProximityGrid.txt +++ /dev/null @@ -1,6 +0,0 @@ -Proximity Grid -grid_tools -ParameterRaster|FEATURES|Features|False -OutputRaster|DISTANCE|Distance -OutputRaster|DIRECTION|Direction -OutputRaster|ALLOCATION|Allocation diff --git a/python/plugins/processing/algs/saga/description/2.2.0/QuadTreeStructuretoShapes.txt b/python/plugins/processing/algs/saga/description/2.2.0/QuadTreeStructuretoShapes.txt deleted file mode 100644 index 14d3cb722d11..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/QuadTreeStructuretoShapes.txt +++ /dev/null @@ -1,7 +0,0 @@ -QuadTree Structure to Shapes -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterTableField|ATTRIBUTE|Attribute|SHAPES|-1|False -OutputVector|POLYGONS|Polygons -OutputVector|LINES|Lines -OutputVector|POINTS|Duplicated Points diff --git a/python/plugins/processing/algs/saga/description/2.2.0/RGBComposite.txt b/python/plugins/processing/algs/saga/description/2.2.0/RGBComposite.txt deleted file mode 100644 index 271bbc60c10e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/RGBComposite.txt +++ /dev/null @@ -1,24 +0,0 @@ -RGB Composite -grid_visualisation -ParameterRaster|GRID_R|R|False -ParameterRaster|GRID_G|G|False -ParameterRaster|GRID_B|B|False -ParameterSelection|R_METHOD|Method for R value|0 - 255;Rescale to 0 - 255;User defined rescale;Percentiles;Percentage of standard deviation -ParameterSelection|G_METHOD|Method for G value|0 - 255;Rescale to 0 - 255;User defined rescale;Percentiles;Percentage of standard deviation -ParameterSelection|B_METHOD|Method for B value|0 - 255;Rescale to 0 - 255;User defined rescale;Percentiles;Percentage of standard deviation -ParameterNumber|R_RANGE_MIN|Rescale Range for RED min|0|255|0 -ParameterNumber|R_RANGE_MAX|Rescale Range for RED max|0|255|255 -ParameterNumber|R_PERCTL_MIN|Percentiles Range for RED max|1|99|1 -ParameterNumber|R_PERCTL_MAX|Percentiles Range for RED max|1|99|99 -ParameterNumber|R_PERCENT|Percentage of standard deviation for RED|0|None|150.0 -ParameterNumber|G_RANGE_MIN|Rescale Range for GREEN min|0|255|0 -ParameterNumber|G_RANGE_MAX|Rescale Range for GREEN max|0|255|255 -ParameterNumber|G_PERCTL_MIN|Percentiles Range for GREEN max|1|99|1 -ParameterNumber|G_PERCTL_MAX|Percentiles Range for GREEN max|1|99|99 -ParameterNumber|G_PERCENT|Percentage of standard deviation for GREEN|0|None|150.0 -ParameterNumber|B_RANGE_MIN|Rescale Range for BLUE min|0|255|0 -ParameterNumber|B_RANGE_MAX|Rescale Range for BLUE max|0|255|255 -ParameterNumber|B_PERCTL_MIN|Percentiles Range for BLUE max|1|99|1 -ParameterNumber|B_PERCTL_MAX|Percentiles Range for BLUE max|1|99|99 -ParameterNumber|B_PERCENT|Percentage of standard deviation for BLUE|0|None|150.0 -OutputRaster|GRID_RGB|Output RGB diff --git a/python/plugins/processing/algs/saga/description/2.2.0/RadiusofVariance(Grid).txt b/python/plugins/processing/algs/saga/description/2.2.0/RadiusofVariance(Grid).txt deleted file mode 100644 index 6e6d3edaf469..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/RadiusofVariance(Grid).txt +++ /dev/null @@ -1,7 +0,0 @@ -Radius of Variance (Grid) -statistics_grid -ParameterRaster|INPUT|Grid|False -ParameterNumber|VARIANCE|Standard Deviation|0.0|None|1.0 -ParameterNumber|RADIUS|Maximum Search Radius (cells)|0.0|None|20 -ParameterSelection|OUTPUT|Type of Output|[0] Cells;[1] Map Units -OutputRaster|RESULT|Variance Radius diff --git a/python/plugins/processing/algs/saga/description/2.2.0/RandomField.txt b/python/plugins/processing/algs/saga/description/2.2.0/RandomField.txt deleted file mode 100644 index abf32b4caddc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/RandomField.txt +++ /dev/null @@ -1,12 +0,0 @@ -Random Field -grid_calculus -Hardcoded|-DEFINITION 0 -ParameterSelection|METHOD|Method|[0] Uniform;[1] Gaussian -ParameterNumber|RANGE_MIN|Range Min|None|None|0.0 -ParameterNumber|RANGE_MAX|Range Max|None|None|1.0 -ParameterNumber|MEAN|Arithmetic Mean|None|None|0.0 -ParameterNumber|STDDEV|Standard Deviation|None|None|1.0 -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|USER_FITS|Method|[0] nodes;[1] cells -OutputRaster|OUT_GRID|Random Field diff --git a/python/plugins/processing/algs/saga/description/2.2.0/RandomTerrainGeneration.txt b/python/plugins/processing/algs/saga/description/2.2.0/RandomTerrainGeneration.txt deleted file mode 100644 index 18043bf01b5b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/RandomTerrainGeneration.txt +++ /dev/null @@ -1,9 +0,0 @@ -Random Terrain Generation -grid_calculus -ParameterNumber|RADIUS|Radius (cells)|None|None|10 -ParameterNumber|ITERATIONS|Iterations|None|None|10 -ParameterSelection|TARGET_TYPE|Target Dimensions|[0] User defined -ParameterNumber|USER_CELL_SIZE|Grid Size|0.0|None|1.0 -ParameterNumber|USER_COLS|Cols|1.0|None|100 -ParameterNumber|USER_ROWS|Rows|1.0|None|100 -OutputRaster|TARGET_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/RankFilter.txt b/python/plugins/processing/algs/saga/description/2.2.0/RankFilter.txt deleted file mode 100644 index b676b15fc287..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/RankFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Rank Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Radius|1.0|None|1 -ParameterNumber|RANK|Rank [Percent]|None|None|50 -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/RealSurfaceArea.txt b/python/plugins/processing/algs/saga/description/2.2.0/RealSurfaceArea.txt deleted file mode 100644 index 065c34e79f04..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/RealSurfaceArea.txt +++ /dev/null @@ -1,4 +0,0 @@ -Real Surface Area -ta_morphometry -ParameterRaster|DEM|Elevation|False -OutputRaster|AREA|Surface Area diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ReclassifyGridValues.txt b/python/plugins/processing/algs/saga/description/2.2.0/ReclassifyGridValues.txt deleted file mode 100644 index d76e5a594793..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ReclassifyGridValues.txt +++ /dev/null @@ -1,18 +0,0 @@ -Reclassify Grid Values -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterSelection|METHOD|Method|[0] single;[1] range;[2] simple table -ParameterNumber|OLD|old value (for single value change)|None|None|0.0 -ParameterNumber|NEW|new value (for single value change)|None|None|1.0 -ParameterSelection|SOPERATOR|operator (for single value change)|[0] =;[1] <;[2] <=;[3] >=;[4] > -ParameterNumber|MIN|minimum value (for range)|None|None|0.0 -ParameterNumber|MAX|maximum value (for range)|None|None|1.0 -ParameterNumber|RNEW|new value(for range)|None|None|2.0 -ParameterSelection|ROPERATOR|operator (for range)|[0] <=;[1] < -ParameterFixedTable|RETAB|Lookup Table|3|minimum;maximum;new|False -ParameterSelection|TOPERATOR|operator (for table)|[0] min <= value < max;[1] min <= value <= max;[2] min < value <= max;[3] min < value < max -ParameterBoolean|NODATAOPT |replace no data values|True -ParameterNumber|NODATA|new value for no data values|None|None|0.0 -ParameterBoolean|OTHEROPT |replace other values|True -ParameterNumber|OTHERS|new value for other values|None|None|0.0 -OutputRaster|RESULT|Reclassified Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/RegressionAnalysis(PointsGrid).txt b/python/plugins/processing/algs/saga/description/2.2.0/RegressionAnalysis(PointsGrid).txt deleted file mode 100644 index fd4134084d40..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/RegressionAnalysis(PointsGrid).txt +++ /dev/null @@ -1,9 +0,0 @@ -Regression analysis|Regression Analysis (Points/Grid) -statistics_regression -ParameterRaster|GRID|Grid|False -ParameterVector|SHAPES|Shapes|-1|False -ParameterTableField|ATTRIBUTE|Attribute|SHAPES|-1|False -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterSelection|METHOD|Regression Function|[0] Y = a + b * X (linear);[1] Y = a + b / X;[2] Y = a / (b - X);[3] Y = a * X^b (power);[4] Y = a e^(b * X) (exponential);[5] Y = a + b * ln(X) (logarithmic) -OutputRaster|REGRESSION|Regression -OutputVector|RESIDUAL|Residuals diff --git a/python/plugins/processing/algs/saga/description/2.2.0/RelativeHeightsandSlopePositions.txt b/python/plugins/processing/algs/saga/description/2.2.0/RelativeHeightsandSlopePositions.txt deleted file mode 100644 index ab3c30b1953e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/RelativeHeightsandSlopePositions.txt +++ /dev/null @@ -1,11 +0,0 @@ -Relative Heights and Slope Positions -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|W|w|None|None|0.5 -ParameterNumber|T|t|None|None|10.0 -ParameterNumber|E|e|None|None|2.0 -OutputRaster|HO|Slope Height -OutputRaster|HU|Valley Depth -OutputRaster|NH|Normalized Height -OutputRaster|SH|Standardized Height -OutputRaster|MS|Mid-Slope Positon diff --git a/python/plugins/processing/algs/saga/description/2.2.0/RemoveDuplicatePoints.txt b/python/plugins/processing/algs/saga/description/2.2.0/RemoveDuplicatePoints.txt deleted file mode 100644 index 5a4d4c1b54ea..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/RemoveDuplicatePoints.txt +++ /dev/null @@ -1,7 +0,0 @@ -Remove Duplicate Points -shapes_points -ParameterVector|POINTS|Points|-1|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterSelection|METHOD|Point to Keep|[0] first point;[1] last point;[2] point with minimum attribute value;[3] point with maximum attribute value -ParameterSelection|NUMERIC|Numeric Attribute Values|[0] take value from the point to be kept;[1] minimum value of all duplicates;[2] maximum value of all duplicates;[3] mean value of all duplicates -OutputVector|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.0/Representativeness(Grid).txt b/python/plugins/processing/algs/saga/description/2.2.0/Representativeness(Grid).txt deleted file mode 100644 index 35a19a47a222..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/Representativeness(Grid).txt +++ /dev/null @@ -1,6 +0,0 @@ -Representativeness|Representativeness (Grid) -statistics_grid -ParameterRaster|INPUT|Grid|False -ParameterNumber|RADIUS|Radius (Cells)|1.0|None|10 -ParameterNumber|EXPONENT|Exponent|None|None|1 -OutputRaster|RESULT|Representativeness diff --git a/python/plugins/processing/algs/saga/description/2.2.0/Resampling.txt b/python/plugins/processing/algs/saga/description/2.2.0/Resampling.txt deleted file mode 100644 index 1b336351505e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/Resampling.txt +++ /dev/null @@ -1,12 +0,0 @@ -Resampling -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterBoolean|KEEP_TYPE|Preserve Data Type|True -Hardcoded|-TARGET_DEFINITION 0 -ParameterSelection|SCALE_UP|Upscaling Method|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation;[5] Mean Value;[6] Mean Value (cell area weighted);[7] Minimum Value;[8] Maximum Value;[9] Majority -ParameterSelection|SCALE_DOWN|Downscaling Method|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -ParameterRaster|TARGET_TEMPLATE|Target system|True -OutputRaster|OUTPUT|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ResidualAnalysis(Grid).txt b/python/plugins/processing/algs/saga/description/2.2.0/ResidualAnalysis(Grid).txt deleted file mode 100644 index 9000f9eac4d4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ResidualAnalysis(Grid).txt +++ /dev/null @@ -1,16 +0,0 @@ -Residual analysis|Residual Analysis (Grid) -statistics_grid -ParameterRaster|GRID|Grid|False -ParameterNumber|RADIUS|Radius (Cells)|1.0|None|7 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1.0 -OutputRaster|MEAN|Mean Value -OutputRaster|DIFF|Difference from Mean Value -OutputRaster|STDDEV|Standard Deviation -OutputRaster|RANGE|Value Range -OutputRaster|MIN|Minimum Value -OutputRaster|MAX|Maximum Value -OutputRaster|DEVMEAN|Deviation from Mean Value -OutputRaster|PERCENT|Percentile diff --git a/python/plugins/processing/algs/saga/description/2.2.0/RunningAverage.txt b/python/plugins/processing/algs/saga/description/2.2.0/RunningAverage.txt deleted file mode 100644 index c0e23d752241..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/RunningAverage.txt +++ /dev/null @@ -1,6 +0,0 @@ -Running Average -table_calculus -ParameterTable|INPUT|Input|False -ParameterTableField|FIELD|Attribute|INPUT|-1|False -ParameterNumber|COUNT|Number of Records|0.0|None|10 -OutputTable|OUTPUT|Output diff --git a/python/plugins/processing/algs/saga/description/2.2.0/SAGAWetnessIndex.txt b/python/plugins/processing/algs/saga/description/2.2.0/SAGAWetnessIndex.txt deleted file mode 100644 index 564f34bd3efd..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/SAGAWetnessIndex.txt +++ /dev/null @@ -1,13 +0,0 @@ -SAGA Wetness Index -ta_hydrology -ParameterRaster|DEM|Elevation|False -ParameterNumber|SUCTION|Suction|0.0|None|10.0 -ParameterSelection|AREA_TYPE|Type of Area|[0] absolute catchment area;[1] square root of catchment area;[2] specific catchment area -ParameterSelection|SLOPE_TYPE|Type of Slope|[0] local slope;[1] catchment slope -ParameterNumber|SLOPE_MIN|Suction|0.0|None|0.0 -ParameterNumber|SLOPE_OFF|Suction|0.0|None|0.1 -ParameterNumber|SLOPE_WEIGHT|Suction|0.0|None|1.0 -OutputRaster|AREA|Catchment area -OutputRaster|SLOPE|Catchment slope -OutputRaster|AREA_MOD|Modified catchment area -OutputRaster|TWI|Topographic Wetness Index diff --git a/python/plugins/processing/algs/saga/description/2.2.0/SeedGeneration.txt b/python/plugins/processing/algs/saga/description/2.2.0/SeedGeneration.txt deleted file mode 100644 index be4f35778ec1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/SeedGeneration.txt +++ /dev/null @@ -1,11 +0,0 @@ -Seed Generation -imagery_segmentation -ParameterMultipleInput|GRIDS|Features|3|False -ParameterNumber|FACTOR|Bandwidth (Cells)|0.0|None|2 -ParameterSelection|TYPE_SURFACE|Type of Surface|[0] smoothed surface;[1] variance (a);[2] variance (b) -ParameterSelection|TYPE_SEEDS|Extraction of...|[0] minima;[1] maxima;[2] minima and maxima -ParameterSelection|TYPE_MERGE|Feature Aggregation|[0] additive;[1] multiplicative -ParameterBoolean|NORMALIZE |Normalized|True -OutputRaster|SURFACE|Surface -OutputRaster|SEEDS_GRID|Seeds Grid -OutputVector|SEEDS|Seeds diff --git a/python/plugins/processing/algs/saga/description/2.2.0/Separatepointsbydirection.txt b/python/plugins/processing/algs/saga/description/2.2.0/Separatepointsbydirection.txt deleted file mode 100644 index db1ec26664c6..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/Separatepointsbydirection.txt +++ /dev/null @@ -1,6 +0,0 @@ -Separate points by direction -shapes_points -ParameterVector|POINTS|Points|0|False -ParameterNumber|DIRECTIONS|Number of Directions|1.0|None|4 -ParameterNumber|TOLERANCE|Tolerance (Degree)|0.0|None|5 -OutputVector|OUTPUT|Point direction diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ShapesBuffer.txt b/python/plugins/processing/algs/saga/description/2.2.0/ShapesBuffer.txt deleted file mode 100644 index 57e0051d0fce..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ShapesBuffer.txt +++ /dev/null @@ -1,10 +0,0 @@ -Shapes Buffer (Attribute distance)|Shapes Buffer -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterTableField|DIST_FIELD|Buffer Distance|SHAPES|-1|False -ParameterNumber|DIST_SCALE|Scaling Factor for Attribute Value|None|None|1.0 -ParameterNumber|NZONES|Number of Buffer Zones|1.0|None|1.0 -ParameterNumber|DARC|Arc Vertex Distance [Degree]|0.01|45.0|5.0 -ParameterBoolean|DISSOLVE |Dissolve Buffers|True -ParameterBoolean|POLY_INNER |Inner Buffer|False -OutputVector|BUFFER|Buffer \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ShapesBufferFixed.txt b/python/plugins/processing/algs/saga/description/2.2.0/ShapesBufferFixed.txt deleted file mode 100644 index c8c3878f6374..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ShapesBufferFixed.txt +++ /dev/null @@ -1,9 +0,0 @@ -Shapes Buffer (Fixed distance)|Shapes Buffer -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterNumber|DIST_FIELD_DEFAULT|Buffer distance|0.0|None|100.0 -ParameterNumber|NZONES|Number of Buffer Zones|1.0|None|1.0 -ParameterNumber|DARC|Arc Vertex Distance [Degree]|0.01|45.0|5.0 -ParameterBoolean|DISSOLVE |Dissolve Buffers|True -ParameterBoolean|POLY_INNER |Inner Buffer|False -OutputVector|BUFFER|Buffer \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ShrinkAndExpand.txt b/python/plugins/processing/algs/saga/description/2.2.0/ShrinkAndExpand.txt deleted file mode 100644 index 89675454d4ea..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ShrinkAndExpand.txt +++ /dev/null @@ -1,8 +0,0 @@ -Shrink and Expand -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterSelection|OPERATION|Operation|[0] Shrink;[1] Expand;[2] shrink and expand;[3] expand and shrink|3 -ParameterSelection|CIRCLE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Radius|1|None|1 -ParameterSelection|EXPAND|Method|[0] min;[1] max;[2] mean;[3] majority|3 -OutputRaster|RESULT|Result Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/SimpleFilter.txt b/python/plugins/processing/algs/saga/description/2.2.0/SimpleFilter.txt deleted file mode 100644 index 580d42ae9f3d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/SimpleFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Simple Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterSelection|METHOD|Filter|[0] Smooth;[1] Sharpen;[2] Edge -ParameterNumber|RADIUS|Radius|None|None|2 -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/SimpleRegionGrowing.txt b/python/plugins/processing/algs/saga/description/2.2.0/SimpleRegionGrowing.txt deleted file mode 100644 index 9fd3d0adb4fb..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/SimpleRegionGrowing.txt +++ /dev/null @@ -1,14 +0,0 @@ -Simple Region Growing -imagery_segmentation -ParameterRaster|SEEDS|Seeds|False -ParameterMultipleInput|FEATURES|Features|3|False -ParameterSelection|METHOD|Method|[0] feature space and position;[1] feature space -ParameterSelection|NEIGHBOUR|Neighbourhood|[0] 4 (von Neumann);[1] 8 (Moore) -ParameterNumber|SIG_1|Variance in Feature Space|None|None|1.0 -ParameterNumber|SIG_2|Variance in Position Space|None|None|1.0 -ParameterNumber|THRESHOLD|Threshold - Similarity|None|None|0.0 -ParameterBoolean|REFRESH |Refresh|True -ParameterNumber|LEAFSIZE|Leaf Size (for Speed Optimisation)|None|None|256 -OutputRaster|SEGMENTS|Segments -OutputRaster|SIMILARITY|Similarity -OutputTable|TABLE|Seeds diff --git a/python/plugins/processing/algs/saga/description/2.2.0/Simulation.txt b/python/plugins/processing/algs/saga/description/2.2.0/Simulation.txt deleted file mode 100644 index 61e9234afa6d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/Simulation.txt +++ /dev/null @@ -1,16 +0,0 @@ -Simulation -sim_fire_spreading -ParameterRaster|DEM|DEM|False -ParameterRaster|FUEL|Fuel Model|False -ParameterRaster|WINDSPD|Wind Speed|False -ParameterRaster|WINDDIR|Wind Direction|False -ParameterRaster|M1H|Dead Fuel Moisture 1H|False -ParameterRaster|M10H|Dead Fuel Moisture 10H|False -ParameterRaster|M100H|Dead Fuel Moisture 100H|False -ParameterRaster|MHERB|Herbaceous Fuel Moisture|False -ParameterRaster|MWOOD|Wood Fuel Moisture|False -ParameterRaster|IGNITION|Ignition Points|False -ParameterBoolean|UPDATEVIEW |Update View|True -OutputRaster|TIME|Time -OutputRaster|FLAME|Flame Length -OutputRaster|INTENSITY|Intensity diff --git a/python/plugins/processing/algs/saga/description/2.2.0/SinkDrainageRouteDetection.txt b/python/plugins/processing/algs/saga/description/2.2.0/SinkDrainageRouteDetection.txt deleted file mode 100644 index c9fc911ade9c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/SinkDrainageRouteDetection.txt +++ /dev/null @@ -1,6 +0,0 @@ -Sink Drainage Route Detection -ta_preprocessor -ParameterRaster|ELEVATION|Elevation|False -ParameterBoolean|THRESHOLD |Threshold|True -ParameterNumber|THRSHEIGHT|Threshold Height|None|None|100.0 -OutputRaster|SINKROUTE|Sink Route diff --git a/python/plugins/processing/algs/saga/description/2.2.0/SinkRemoval.txt b/python/plugins/processing/algs/saga/description/2.2.0/SinkRemoval.txt deleted file mode 100644 index 16ccd4d7468f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/SinkRemoval.txt +++ /dev/null @@ -1,8 +0,0 @@ -Sink Removal -ta_preprocessor -ParameterRaster|DEM|DEM|False -ParameterRaster|SINKROUTE|Sink Route|True -ParameterSelection|METHOD|Method|[0] Deepen Drainage Routes;[1] Fill Sinks -ParameterBoolean|THRESHOLD |Threshold|True -ParameterNumber|THRSHEIGHT|Threshold Height|None|None|100.0 -OutputRaster|DEM_PREPROC|Preprocessed DEM diff --git a/python/plugins/processing/algs/saga/description/2.2.0/SkyViewFactor.txt b/python/plugins/processing/algs/saga/description/2.2.0/SkyViewFactor.txt deleted file mode 100644 index 2114c288ebbc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/SkyViewFactor.txt +++ /dev/null @@ -1,12 +0,0 @@ -Sky View Factor -ta_lighting -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS|Maximum Search Radius|0.0|None|10000 -ParameterSelection|METHOD|Method|[0] multi scale;[1] sectors -ParameterNumber|DLEVEL|Multi Scale Factor|1.25|None|3.00 -ParameterNumber|NDIRS|Number of Sectors|3|None|8 -OutputRaster|VISIBLE|Visible Sky -OutputRaster|SVF|Sky View Factor -OutputRaster|SIMPLE|Sky View Factor (Simplified) -OutputRaster|TERRAIN|Terrain View Factor -OutputRaster|DISTANCE|Terrain View Factor diff --git a/python/plugins/processing/algs/saga/description/2.2.0/Slope,Aspect,Curvature.txt b/python/plugins/processing/algs/saga/description/2.2.0/Slope,Aspect,Curvature.txt deleted file mode 100644 index e9d707c6d0bc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/Slope,Aspect,Curvature.txt +++ /dev/null @@ -1,18 +0,0 @@ -Slope, Aspect, Curvature -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Method|[0] Maximum Slope (Travis et al. 1975);[1] Maximum Triangle Slope (Tarboton 1997);[2] Least Squares Fitted Plane (Horn 1981, Costa-Cabral & Burgess 1996);[3] 6 parameter 2nd order polynom (Evans 1979);[4] 6 parameter 2nd order polynom (Heerdegen & Beran 1982);[5] 6 parameter 2nd order polynom (Bauer, Rohdenburg, Bork 1985);[6] 9 parameter 2nd order polynom (Zevenbergen & Thorne 1987);[7]10 parameter 3rd order polynom (Haralick 1983)|6 -ParameterSelection|UNIT_SLOPE|Slope Units|[0] radians;[1] degree;[2] percent|1 -ParameterSelection|UNIT_ASPECT|Aspect Units|[0] radians;[1] degree|1 -OutputRaster|SLOPE|Slope -OutputRaster|ASPECT|Aspect -OutputRaster|C_GENE|General Curvature -OutputRaster|C_PLAN|Plan Curvature -OutputRaster|C_PROF|Profile Curvature -OutputRaster|C_TANG|Tangential Curvature -OutputRaster|C_LONG|Longitudinal Curvature -OutputRaster|C_CROS|Cross-Sectional Curvature -OutputRaster|C_MINI|Minimal Curvature -OutputRaster|C_MAXI|Maximal Curvature -OutputRaster|C_TOTA|Total Curvature -OutputRaster|C_ROTO|Flow-Line Curvature diff --git a/python/plugins/processing/algs/saga/description/2.2.0/SlopeLength.txt b/python/plugins/processing/algs/saga/description/2.2.0/SlopeLength.txt deleted file mode 100644 index f0e8d3384acc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/SlopeLength.txt +++ /dev/null @@ -1,4 +0,0 @@ -Slope Length -ta_hydrology -ParameterRaster|DEM|Elevation|False -OutputRaster|LENGTH|Slope Length diff --git a/python/plugins/processing/algs/saga/description/2.2.0/SoilTextureClassification.txt b/python/plugins/processing/algs/saga/description/2.2.0/SoilTextureClassification.txt deleted file mode 100644 index 9752948d7c3d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/SoilTextureClassification.txt +++ /dev/null @@ -1,7 +0,0 @@ -Soil Texture Classification -grid_analysis -ParameterRaster|SAND|Sand|True -ParameterRaster|SILT|Silt|True -ParameterRaster|CLAY|Clay|True -OutputRaster|TEXTURE|Soil Texture -OutputRaster|SUM|Sum diff --git a/python/plugins/processing/algs/saga/description/2.2.0/SpatialPointPatternAnalysis.txt b/python/plugins/processing/algs/saga/description/2.2.0/SpatialPointPatternAnalysis.txt deleted file mode 100644 index 4a90797d8d5b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/SpatialPointPatternAnalysis.txt +++ /dev/null @@ -1,7 +0,0 @@ -Spatial Point Pattern Analysis -statistics_points -ParameterVector|POINTS|Points|0|False -ParameterNumber|STEP|Vertex Distance [Degree]|None|None|5 -OutputVector|CENTRE|Mean Centre -OutputVector|STDDIST|Standard Distance -OutputVector|BBOX|Bounding Box diff --git a/python/plugins/processing/algs/saga/description/2.2.0/SplitShapesLayerRandomly.txt b/python/plugins/processing/algs/saga/description/2.2.0/SplitShapesLayerRandomly.txt deleted file mode 100644 index 8d2648b4f40d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/SplitShapesLayerRandomly.txt +++ /dev/null @@ -1,7 +0,0 @@ -Split Shapes Layer Randomly -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterNumber|PERCENT|Split ratio (%)|0|100|50 -ParameterBoolean|EXACT |Split exactly|True -OutputVector|A|Group A -OutputVector|B|Group B diff --git a/python/plugins/processing/algs/saga/description/2.2.0/StatisticsforGrids.txt b/python/plugins/processing/algs/saga/description/2.2.0/StatisticsforGrids.txt deleted file mode 100644 index e21300c5fb4c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/StatisticsforGrids.txt +++ /dev/null @@ -1,14 +0,0 @@ -Statistics for Grids -statistics_grid -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterNumber|PCTL_VAL|Percentile|0.0|100.0|50.0 -OutputRaster|MEAN|Arithmetic Mean -OutputRaster|MIN|Minimum -OutputRaster|MAX|Maximum -OutputRaster|VAR|Variance -OutputRaster|SUM|Sum -OutputRaster|RANGE|Range -OutputRaster|PCTL|Percentile -OutputRaster|STDDEV|Standard Deviation -OutputRaster|STDDEVLO|Mean less Standard Deviation -OutputRaster|STDDEVHI|Mean plus Standard Deviation \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/StrahlerOrder.txt b/python/plugins/processing/algs/saga/description/2.2.0/StrahlerOrder.txt deleted file mode 100644 index 87d914794682..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/StrahlerOrder.txt +++ /dev/null @@ -1,4 +0,0 @@ -Strahler Order -ta_channels -ParameterRaster|DEM|Elevation|False -OutputRaster|STRAHLER|Strahler Order diff --git a/python/plugins/processing/algs/saga/description/2.2.0/StreamPowerIndex.txt b/python/plugins/processing/algs/saga/description/2.2.0/StreamPowerIndex.txt deleted file mode 100644 index e33da9b0f9f3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/StreamPowerIndex.txt +++ /dev/null @@ -1,6 +0,0 @@ -Stream Power Index -ta_hydrology -ParameterRaster|SLOPE|Slope|False -ParameterRaster|AREA|Catchment Area|False -ParameterSelection|CONV|Area Conversion|[0] no conversion (areas already given as specific catchment area);[1] 1 / cell size (pseudo specific catchment area) -OutputRaster|SPI|Stream Power Index diff --git a/python/plugins/processing/algs/saga/description/2.2.0/SupervisedClassification.txt b/python/plugins/processing/algs/saga/description/2.2.0/SupervisedClassification.txt deleted file mode 100644 index 96afab5c993b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/SupervisedClassification.txt +++ /dev/null @@ -1,22 +0,0 @@ -Supervised Classification -imagery_classification -ParameterMultipleInput|GRIDS|Grids|3.0|False -ParameterVector|ROI|Training Areas|2|False -ParameterTableField|ROI_ID|Class Identifier|ROI|-1|False -ParameterTable|STATS|Class Statistics|False -ParameterSelection|STATS_SRC|Get Class Statistics from...|[0] training areas;[1] table -ParameterSelection|METHOD|Method|[0] Binary Encoding;[1] Parallelepiped;[2] Minimum Distance;[3] Mahalanobis Distance;[4] Maximum Likelihood;[5] Spectral Angle Mapping; [6] Winner Takes All -ParameterBoolean|NORMALISE|Normalise|False -ParameterNumber|THRESHOLD_DIST|Distance Threshold|0.0|None|0.0 -ParameterNumber|THRESHOLD_PROB|Probability Threshold (Percent)|0.0|100.0|0.0 -ParameterSelection|RELATIVE_PROB|Probability Reference|[0] absolute;[1] relative -ParameterNumber|THRESHOLD_ANGLE|Spectral Angle Threshold (Degree)|0.0|90.0|0.0 -ParameterBoolean|WTA_0|Binary Encoding|False -ParameterBoolean|WTA_1|Parallelepiped|False -ParameterBoolean|WTA_2|Minimum Distance|False -ParameterBoolean|WTA_3|Mahalanobis Distance|False -ParameterBoolean|WTA_4|Maximum Likelihood|False -ParameterBoolean|WTA_5|Spectral Angle Mapping|False -OutputTable|CLASS_INFO|Class Information -OutputRaster|CLASSES|Classification -OutputRaster|QUALITY|Quality \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/SurfaceSpecificPoints.txt b/python/plugins/processing/algs/saga/description/2.2.0/SurfaceSpecificPoints.txt deleted file mode 100644 index b0762ce1320b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/SurfaceSpecificPoints.txt +++ /dev/null @@ -1,6 +0,0 @@ -Surface Specific Points -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Method|[0] Mark Highest Neighbour;[1] Opposite Neighbours;[2] Flow Direction;[3] Flow Direction (up and down);[4] Peucker & Douglas -ParameterNumber|THRESHOLD|Threshold|None|None|2.0 -OutputRaster|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.0/TPIBasedLandformClassification.txt b/python/plugins/processing/algs/saga/description/2.2.0/TPIBasedLandformClassification.txt deleted file mode 100644 index bfed438c79d7..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/TPIBasedLandformClassification.txt +++ /dev/null @@ -1,12 +0,0 @@ -TPI Based Landform Classification -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS_A_MIN|Min Radius A|None|None|0 -ParameterNumber|RADIUS_A_MAX|Max Radius A|None|None|100 -ParameterNumber|RADIUS_B_MIN|Min Radius B|None|None|0 -ParameterNumber|RADIUS_B_MAX|Max Radius B|None|None|1000 -ParameterSelection|DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|0.0|None|1 -ParameterBoolean|DW_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|75.0 -OutputRaster|LANDFORMS|Landforms diff --git a/python/plugins/processing/algs/saga/description/2.2.0/TerrainRuggednessIndex(TRI).txt b/python/plugins/processing/algs/saga/description/2.2.0/TerrainRuggednessIndex(TRI).txt deleted file mode 100644 index bec50e9d3124..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/TerrainRuggednessIndex(TRI).txt +++ /dev/null @@ -1,9 +0,0 @@ -Terrain Ruggedness Index (TRI) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS|Radius (Cells)|1.0|None|1 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|0.0|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|0.0|None|1.0 -OutputRaster|TRI|Terrain Ruggedness Index (TRI) \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ThinPlateSpline(TIN).txt b/python/plugins/processing/algs/saga/description/2.2.0/ThinPlateSpline(TIN).txt deleted file mode 100644 index 41d883cb8ffe..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ThinPlateSpline(TIN).txt +++ /dev/null @@ -1,13 +0,0 @@ -Thin Plate Spline (TIN) -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterNumber|REGULARISATION|Regularisation|0.0000|None|0.0001 -ParameterSelection|LEVEL|Neighbourhood|[0] immediate;[1] level 1;[2] level 2 -ParameterBoolean|FRAME|Add Frame|True -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -ParameterRaster|TARGET_TEMPLATE|Target system|True -OutputRaster|TARGET_OUT_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ThresholdBuffer.txt b/python/plugins/processing/algs/saga/description/2.2.0/ThresholdBuffer.txt deleted file mode 100644 index ef26b40a4852..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ThresholdBuffer.txt +++ /dev/null @@ -1,8 +0,0 @@ -Threshold Buffer -grid_tools -ParameterRaster|FEATURES|Features Grid|False -ParameterRaster|VALUE|Value Grid|False -ParameterRaster|THRESHOLDGRID|Threshold Grid|True -ParameterNumber|THRESHOLD|Threshold|None|None|0.0 -ParameterSelection|THRESHOLDTYPE|Threshold Type|[0] Absolute;[1] Relative from cell value -OutputRaster|BUFFER|Buffer Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/TopographicCorrection.txt b/python/plugins/processing/algs/saga/description/2.2.0/TopographicCorrection.txt deleted file mode 100644 index 7f80c2469572..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/TopographicCorrection.txt +++ /dev/null @@ -1,11 +0,0 @@ -Topographic Correction -ta_lighting -ParameterRaster|DEM|Elevation|False -ParameterRaster|ORIGINAL|Original Image|False -ParameterNumber|AZI|Azimuth|None|None|180.0 -ParameterNumber|HGT|Height|None|None|45.0 -ParameterSelection|METHOD|Method|[0] Cosine Correction (Teillet et al. 1982);[1] Cosine Correction (Civco 1989);[2] Minnaert Correction;[3] Minnaert Correction with Slope (Riano et al. 2003);[4] Minnaert Correction with Slope (Law & Nichol 2004);[5] C Correction;[6] Normalization (after Civco, modified by Law & Nichol) -ParameterNumber|MINNAERT|Minnaert Correction|None|None|0.5 -ParameterNumber|MAXCELLS|Maximum Cells (C Correction Analysis)|None|None|1000 -ParameterSelection|MAXVALUE|Value Range|[0] 1 byte (0-255);[1] 2 byte (0-65535) -OutputRaster|CORRECTED|Corrected Image diff --git a/python/plugins/processing/algs/saga/description/2.2.0/TopographicPositionIndex(TPI).txt b/python/plugins/processing/algs/saga/description/2.2.0/TopographicPositionIndex(TPI).txt deleted file mode 100644 index 13a397fd255d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/TopographicPositionIndex(TPI).txt +++ /dev/null @@ -1,11 +0,0 @@ -Topographic Position Index (TPI) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterBoolean|STANDARD |Standardize|True -ParameterNumber|RADIUS_MIN|Min Radius|0.0|None|0.0 -ParameterNumber|RADIUS_MAX|Max Radius|None|None|100.0 -ParameterSelection|DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|75.0 -OutputRaster|TPI|Topographic Position Index \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/TopographicWetnessIndex(TWI).txt b/python/plugins/processing/algs/saga/description/2.2.0/TopographicWetnessIndex(TWI).txt deleted file mode 100644 index b2d63ccea8d5..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/TopographicWetnessIndex(TWI).txt +++ /dev/null @@ -1,8 +0,0 @@ -Topographic Wetness Index (TWI) -ta_hydrology -ParameterRaster|SLOPE|Slope|False -ParameterRaster|AREA|Catchment Area|False -ParameterRaster|TRANS|Transmissivity|True -ParameterSelection|CONV|Area Conversion|[0] no conversion (areas already given as specific catchment area);[1] 1 / cell size (pseudo specific catchment area)|1 -ParameterSelection|METHOD|Method (TWI)|[0] Standard;[1] TOPMODEL -OutputRaster|TWI|Topographic Wetness Index diff --git a/python/plugins/processing/algs/saga/description/2.2.0/Transectthroughpolygonshapefile.txt b/python/plugins/processing/algs/saga/description/2.2.0/Transectthroughpolygonshapefile.txt deleted file mode 100644 index 99eb6654f605..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/Transectthroughpolygonshapefile.txt +++ /dev/null @@ -1,6 +0,0 @@ -Transect through polygon shapefile -shapes_transect -ParameterVector|TRANSECT|Line Transect(s)|1|False -ParameterVector|THEME|Theme|-1|False -ParameterTableField|THEME_FIELD|Theme Field|THEME|-1|False -OutputTable|TRANSECT_RESULT|Result table diff --git a/python/plugins/processing/algs/saga/description/2.2.0/TransformShapes.txt b/python/plugins/processing/algs/saga/description/2.2.0/TransformShapes.txt deleted file mode 100644 index 40e58628af9e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/TransformShapes.txt +++ /dev/null @@ -1,11 +0,0 @@ -Transform Shapes -shapes_tools -ParameterVector|IN|Shapes|-1|False -ParameterNumber|DX|dX|None|None|0.0 -ParameterNumber|DY|dY|None|None|0.0 -ParameterNumber|ANGLE|Angle|None|None|0.0 -ParameterNumber|SCALEX|Scale Factor X|None|None|1.0 -ParameterNumber|SCALEY|Scale Factor Y|None|None|1.0 -ParameterNumber|ANCHORX|X|None|None|0.0 -ParameterNumber|ANCHORY|Y|None|None|0.0 -OutputVector|OUT|Transformed diff --git a/python/plugins/processing/algs/saga/description/2.2.0/TransposeGrids.txt b/python/plugins/processing/algs/saga/description/2.2.0/TransposeGrids.txt deleted file mode 100644 index 8ff6bff31e87..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/TransposeGrids.txt +++ /dev/null @@ -1,6 +0,0 @@ -Transpose Grids -grid_tools -ParameterRaster|GRIDS|Input Grid|False -ParameterBoolean|MIRROR_X|Mirror Horizontally|False -ParameterBoolean|MIRROR_Y|Mirror Vertically|False -OutputRaster|TRANSPOSED|Transposed Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.0/Triangulation.txt b/python/plugins/processing/algs/saga/description/2.2.0/Triangulation.txt deleted file mode 100644 index 39a2dcbc578e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/Triangulation.txt +++ /dev/null @@ -1,9 +0,0 @@ -Triangulation -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/UniversalKriging.txt b/python/plugins/processing/algs/saga/description/2.2.0/UniversalKriging.txt deleted file mode 100644 index 3632aa1bcfdc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/UniversalKriging.txt +++ /dev/null @@ -1,24 +0,0 @@ -Simple Kriging -statistics_kriging -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterSelection|TQUALITY|Type of Quality Measure|[0] standard deviation;[1] variance -ParameterBoolean|LOG|Logarithmic Transformation|True -ParameterBoolean|BLOCK|Block Kriging|True -ParameterNumber|DBLOCK|Block Size|0|None|100 -ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0 -ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100 -ParameterNumber|VAR_NSKIP|Skip|1|None|1 -ParameterString|VAR_MODEL|Variogram Model|a + b * x -ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global -ParameterNumber|SEARCH_RADIUS|Maximum Search Distance|0|None|1000 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_PREDICTION|Prediction -OutputRaster|TARGET_VARIANCE|Quality Measure diff --git a/python/plugins/processing/algs/saga/description/2.2.0/UpslopeArea.txt b/python/plugins/processing/algs/saga/description/2.2.0/UpslopeArea.txt deleted file mode 100644 index 903e4ba30111..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/UpslopeArea.txt +++ /dev/null @@ -1,10 +0,0 @@ -Upslope Area|4 -ta_hydrology -ParameterRaster|TARGET|Target Area|True -ParameterNumber|TARGET_PT_X|Target X coordinate|None|None|0.0 -ParameterNumber|TARGET_PT_Y|Target Y coordinate|None|None|0.0 -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SINKROUTE|Sink Routes|True -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Deterministic Infinity;[2] Multiple Flow Direction -ParameterNumber|CONVERGE|Convergence|None|None|1.1 -OutputRaster|AREA|Upslope Area diff --git a/python/plugins/processing/algs/saga/description/2.2.0/UserDefinedFilter.txt b/python/plugins/processing/algs/saga/description/2.2.0/UserDefinedFilter.txt deleted file mode 100644 index e28c9e4eac0e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/UserDefinedFilter.txt +++ /dev/null @@ -1,6 +0,0 @@ -User Defined Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterTable|FILTER|Filter Matrix|True -ParameterFixedTable|FILTER_3X3|Default Filter Matrix (3x3)|3|1;2;3|True -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.0/VariogramCloud.txt b/python/plugins/processing/algs/saga/description/2.2.0/VariogramCloud.txt deleted file mode 100644 index 74d1463978cc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/VariogramCloud.txt +++ /dev/null @@ -1,7 +0,0 @@ -Variogram Cloud -statistics_points -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterNumber|DISTMAX|Maximum Distance|None|None|0.0 -ParameterNumber|NSKIP|Skip Number|None|None|1 -OutputTable|RESULT|Variogram Cloud diff --git a/python/plugins/processing/algs/saga/description/2.2.0/VariogramSurface.txt b/python/plugins/processing/algs/saga/description/2.2.0/VariogramSurface.txt deleted file mode 100644 index 4f09961aab9c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/VariogramSurface.txt +++ /dev/null @@ -1,9 +0,0 @@ -Variogram Surface -statistics_points -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterNumber|DISTCOUNT|Number of Distance Classes|1.0|None|10 -ParameterNumber|NSKIP|Skip Number|None|None|1 -OutputRaster|COUNT|Number of Pairs -OutputRaster|VARIANCE|Variogram Surface -OutputRaster|COVARIANCE|Covariance Surface diff --git a/python/plugins/processing/algs/saga/description/2.2.0/VectorRuggednessMeasure(VRM).txt b/python/plugins/processing/algs/saga/description/2.2.0/VectorRuggednessMeasure(VRM).txt deleted file mode 100644 index 072311d5aaf6..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/VectorRuggednessMeasure(VRM).txt +++ /dev/null @@ -1,9 +0,0 @@ -Vector Ruggedness Measure (VRM) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS|Radius (Cells)|None|None|1 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|0.0|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|0.0|None|1 -OutputRaster|VRM|Vector Terrain Ruggedness (VRM) diff --git a/python/plugins/processing/algs/saga/description/2.2.0/VectorisingGridClasses.txt b/python/plugins/processing/algs/saga/description/2.2.0/VectorisingGridClasses.txt deleted file mode 100644 index 0057f58f504b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/VectorisingGridClasses.txt +++ /dev/null @@ -1,7 +0,0 @@ -Vectorising Grid Classes -shapes_grid -ParameterRaster|GRID|Grid|False -ParameterSelection|CLASS_ALL|Class Selection|[0] one single class specified by class identifier;[1] all classes|1 -ParameterNumber|CLASS_ID|Class Identifier|None|None|0 -ParameterSelection|SPLIT|Vectorised class as...|[0] one single (multi-)polygon object;[1] each island as separated polygon|1 -OutputVector|POLYGONS|Vectorized diff --git a/python/plugins/processing/algs/saga/description/2.2.0/VegetationIndex(SlopeBased).txt b/python/plugins/processing/algs/saga/description/2.2.0/VegetationIndex(SlopeBased).txt deleted file mode 100644 index fd89e6a18416..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/VegetationIndex(SlopeBased).txt +++ /dev/null @@ -1,13 +0,0 @@ -Vegetation Index (Slope Based) -imagery_tools -ParameterRaster|NIR|Near Infrared Reflectance|False -ParameterRaster|RED|Red Reflectance|False -ParameterNumber|SOIL|Soil Adjustment Factor|0.0|1.0|0.5 -OutputRaster|DVI|Difference Vegetation Index -OutputRaster|NDVI|Normalized Difference Vegetation Index -OutputRaster|RVI|Ratio Vegetation Index -OutputRaster|NRVI|Normalized Ratio Vegetation Index -OutputRaster|TVI|Transformed Vegetation Index -OutputRaster|CTVI|Corrected Transformed Vegetation Index -OutputRaster|TTVI|Thiam's Transformed Vegetation Index -OutputRaster|SAVI|Soil Adjusted Vegetation Index diff --git a/python/plugins/processing/algs/saga/description/2.2.0/VerticalDistancetoChannelNetwork.txt b/python/plugins/processing/algs/saga/description/2.2.0/VerticalDistancetoChannelNetwork.txt deleted file mode 100644 index 5e1c7b29b27b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/VerticalDistancetoChannelNetwork.txt +++ /dev/null @@ -1,8 +0,0 @@ -Vertical Distance to Channel Network -ta_channels -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|CHANNELS|Channel Network|False -ParameterNumber|THRESHOLD|Tension Threshold [Percentage of Cell Size]|None|None|1 -ParameterBoolean|NOUNDERGROUND |Keep Base Level below Surface|True -OutputRaster|DISTANCE|Vertical Distance to Channel Network -OutputRaster|BASELEVEL|Channel Network Base Level diff --git a/python/plugins/processing/algs/saga/description/2.2.0/WaterRetentionCapacity.txt b/python/plugins/processing/algs/saga/description/2.2.0/WaterRetentionCapacity.txt deleted file mode 100644 index ccc8c6c4b12f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/WaterRetentionCapacity.txt +++ /dev/null @@ -1,6 +0,0 @@ -Water Retention Capacity -sim_hydrology -ParameterVector|SHAPES|Plot Holes|-1|False -ParameterRaster|DEM|DEM|False -OutputVector|OUTPUT|Final Parameters -OutputRaster|RETENTION|Water Retention Capacity diff --git a/python/plugins/processing/algs/saga/description/2.2.0/WatershedBasins.txt b/python/plugins/processing/algs/saga/description/2.2.0/WatershedBasins.txt deleted file mode 100644 index d79f537ba368..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/WatershedBasins.txt +++ /dev/null @@ -1,7 +0,0 @@ -Watershed Basins -ta_channels -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|CHANNELS|Channel Network|False -ParameterRaster|SINKROUTE|Sink Route|True -ParameterNumber|MINSIZE|Min. Size|None|None|0 -OutputRaster|BASINS|Watershed Basins diff --git a/python/plugins/processing/algs/saga/description/2.2.0/WatershedSegmentation.txt b/python/plugins/processing/algs/saga/description/2.2.0/WatershedSegmentation.txt deleted file mode 100644 index 02edfa11f2e4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/WatershedSegmentation.txt +++ /dev/null @@ -1,12 +0,0 @@ -Watershed Segmentation -imagery_segmentation -ParameterRaster|GRID|Grid|False -ParameterSelection|OUTPUT|Output|[0] Seed Value;[1] Segment ID -ParameterSelection|DOWN|Method|[0] Minima;[1] Maxima -ParameterSelection|JOIN|Join Segments based on Threshold Value|[0] do not join;[1] seed to saddle difference;[2] seeds difference -ParameterNumber|THRESHOLD|Threshold|None|None|0 -ParameterBoolean|EDGE |Allow Edge Pixels to be Seeds|True -ParameterBoolean|BBORDERS |Borders|True -OutputRaster|SEGMENTS|Segments -OutputVector|SEEDS|Seed Points -OutputRaster|BORDERS|Borders diff --git a/python/plugins/processing/algs/saga/description/2.2.0/WindEffect(WindwardLeewardIndex).txt b/python/plugins/processing/algs/saga/description/2.2.0/WindEffect(WindwardLeewardIndex).txt deleted file mode 100644 index 57495dc57ce9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/WindEffect(WindwardLeewardIndex).txt +++ /dev/null @@ -1,15 +0,0 @@ -Wind effect|Wind Effect (Windward / Leeward Index) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterRaster|DIR|Wind Direction|True -ParameterRaster|LEN|Wind Speed|True -ParameterNumber|DIR_CONST|Constant Wind Direction [Degree]|None|None|135 -ParameterBoolean|OLDVER |Old Version|True -ParameterNumber|MAXDIST|Search Distance [km]|0.0|None|300.0 -ParameterNumber|ACCEL|Acceleration|0.0|None|1.5 -ParameterBoolean|PYRAMIDS |Use Pyramids|True -ParameterSelection|DIR_UNITS|Wind Direction Units|[0] radians;[1] degree -ParameterNumber|LEN_SCALE|Wind Speed Scale Factor|0.0|None|1.0 -OutputRaster|EFFECT|Wind Effect -OutputRaster|LUV|Windward Effect -OutputRaster|LEE|Leeward Effect diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ZonalGridStatistics.txt b/python/plugins/processing/algs/saga/description/2.2.0/ZonalGridStatistics.txt deleted file mode 100644 index 10d91c892d4d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.0/ZonalGridStatistics.txt +++ /dev/null @@ -1,8 +0,0 @@ -Zonal Grid Statistics -statistics_grid -ParameterRaster|ZONES|Zone Grid|False -ParameterMultipleInput|CATLIST|Categorial Grids|3|True -ParameterMultipleInput|STATLIST|Grids to analyse|3|True -ParameterRaster|ASPECT|Aspect|True -ParameterBoolean|SHORTNAMES|Short Field Names|True -OutputTable|OUTTAB|Zonal Statistics diff --git a/python/plugins/processing/algs/saga/description/2.2.2/AccumulatedCost(Anisotropic).txt b/python/plugins/processing/algs/saga/description/2.2.2/AccumulatedCost(Anisotropic).txt deleted file mode 100644 index b50c05a952ac..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/AccumulatedCost(Anisotropic).txt +++ /dev/null @@ -1,8 +0,0 @@ -Accumulated Cost (Anisotropic) -grid_analysis -ParameterRaster|COST|Cost Grid|False -ParameterRaster|DIRECTION|Direction of max cost|False -ParameterRaster|POINTS|Destination Points|False -ParameterNumber|K|k factor|None|None|1 -ParameterNumber|THRESHOLD|Threshold for different route|None|None|0 -OutputRaster|ACCCOST|Accumulated Cost diff --git a/python/plugins/processing/algs/saga/description/2.2.2/AccumulatedCost(Isotropic).txt b/python/plugins/processing/algs/saga/description/2.2.2/AccumulatedCost(Isotropic).txt deleted file mode 100644 index e4d4a49dd502..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/AccumulatedCost(Isotropic).txt +++ /dev/null @@ -1,7 +0,0 @@ -Accumulated Cost (Isotropic) -grid_analysis -ParameterRaster|COST|Cost Grid|False -ParameterRaster|POINTS|Destination Points|False -ParameterNumber|THRESHOLD|Threshold for different route|None|None|0.0 -OutputRaster|ACCCOST|Accumulated Cost -OutputRaster|CLOSESTPT|Closest Point diff --git a/python/plugins/processing/algs/saga/description/2.2.2/AddCoordinatestopoints.txt b/python/plugins/processing/algs/saga/description/2.2.2/AddCoordinatestopoints.txt deleted file mode 100644 index d4f6a0efc417..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/AddCoordinatestopoints.txt +++ /dev/null @@ -1,4 +0,0 @@ -Add Coordinates to points -shapes_points -ParameterVector|INPUT|Points|0|False -OutputVector|OUTPUT|Points with coordinates diff --git a/python/plugins/processing/algs/saga/description/2.2.2/AddGridValuestoPoints.txt b/python/plugins/processing/algs/saga/description/2.2.2/AddGridValuestoPoints.txt deleted file mode 100644 index 56164a8c5982..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/AddGridValuestoPoints.txt +++ /dev/null @@ -1,7 +0,0 @@ -Add Grid Values to Points -shapes_grid -ParameterVector|SHAPES|Points|0|False -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|INTERPOL|Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -OutputVector|RESULT|Result -AllowUnmatching \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/AddGridValuestoShapes.txt b/python/plugins/processing/algs/saga/description/2.2.2/AddGridValuestoShapes.txt deleted file mode 100644 index 17959756198b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/AddGridValuestoShapes.txt +++ /dev/null @@ -1,7 +0,0 @@ -Add Grid Values to Shapes -shapes_grid -ParameterVector|SHAPES|Shapes|-1|False -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|INTERPOL|Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -OutputVector|RESULT|Result -AllowUnmatching \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/AddPointAttributestoPolygons.txt b/python/plugins/processing/algs/saga/description/2.2.2/AddPointAttributestoPolygons.txt deleted file mode 100644 index cbae72194771..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/AddPointAttributestoPolygons.txt +++ /dev/null @@ -1,7 +0,0 @@ -Add Point Attributes to Polygons -shapes_polygons -ParameterVector|INPUT|Polygons|2|False -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELDS|Attributes|POINTS|-1|False -ParameterBoolean|ADD_LOCATION_INFO|Add location info|False -OutputVector|OUTPUT|Result \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/AddPolygonAttributestoPoints.txt b/python/plugins/processing/algs/saga/description/2.2.2/AddPolygonAttributestoPoints.txt deleted file mode 100644 index 1515e6a6b9fe..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/AddPolygonAttributestoPoints.txt +++ /dev/null @@ -1,6 +0,0 @@ -Add Polygon Attributes to Points -shapes_points -ParameterVector|INPUT|Points|0|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|FIELDS|Attribute|POLYGONS|-1|False -OutputVector|OUTPUT|Result \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/Aggregate.txt b/python/plugins/processing/algs/saga/description/2.2.2/Aggregate.txt deleted file mode 100644 index eec522c48b44..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/Aggregate.txt +++ /dev/null @@ -1,5 +0,0 @@ -Aggregate -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterNumber|SIZE|Aggregation Size|None|None|3 -ParameterSelection|METHOD|Method|[0] Sum;[1] Min;[2] Max diff --git a/python/plugins/processing/algs/saga/description/2.2.2/AggregatePointObservations.txt b/python/plugins/processing/algs/saga/description/2.2.2/AggregatePointObservations.txt deleted file mode 100644 index 98bb0119b53e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/AggregatePointObservations.txt +++ /dev/null @@ -1,14 +0,0 @@ -Aggregate Point Observations -shapes_points -ParameterVector|REFERENCE|Reference Points|-1|False -ParameterTableField|REFERENCE_ID|ID|REFERENCE|-1|False -ParameterTable|OBSERVATIONS|Observations|False -ParameterTableField|X|X|OBSERVATIONS|-1|False -ParameterTableField|Y|Y|OBSERVATIONS|-1|False -ParameterTableField|TRACK|Track|OBSERVATIONS|-1|False -ParameterTableField|DATE|Date|OBSERVATIONS|-1|False -ParameterTableField|TIME|Time|OBSERVATIONS|-1|False -ParameterTableField|PARAMETER|Parameter|OBSERVATIONS|-1|False -ParameterNumber|EPS_TIME|Maximum Time Span (Seconds)|None|None|60.0 -ParameterNumber|EPS_SPACE|Maximum Distance|None|None|0.002 -OutputTable|AGGREGATED|Aggregated diff --git a/python/plugins/processing/algs/saga/description/2.2.2/AggregationIndex.txt b/python/plugins/processing/algs/saga/description/2.2.2/AggregationIndex.txt deleted file mode 100644 index c5338291f3d4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/AggregationIndex.txt +++ /dev/null @@ -1,5 +0,0 @@ -Aggregation Index -grid_analysis -ParameterRaster|INPUT|Input Grid|False -ParameterNumber|MAXNUMCLASS|Max. Number of Classes|None|None|5 -OutputTable|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.2/AnalyticalHierarchyProcess.txt b/python/plugins/processing/algs/saga/description/2.2.2/AnalyticalHierarchyProcess.txt deleted file mode 100644 index 426c7817eb0f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/AnalyticalHierarchyProcess.txt +++ /dev/null @@ -1,5 +0,0 @@ -Analytical Hierarchy Process -grid_analysis -ParameterMultipleInput|GRIDS|Input Grids|3|False -ParameterTable|TABLE|Pairwise Comparisons Table|False -OutputRaster|OUTPUT|Output Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/AnalyticalHillshading.txt b/python/plugins/processing/algs/saga/description/2.2.2/AnalyticalHillshading.txt deleted file mode 100644 index 524651cdff4b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/AnalyticalHillshading.txt +++ /dev/null @@ -1,8 +0,0 @@ -Analytical Hillshading -ta_lighting -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Shading Method|[0] Standard;[1] Standard (max. 90Degree);[2] Combined Shading;[3] Ray Tracing -ParameterNumber|AZIMUTH|Azimuth [Degree]|None|None|315.0 -ParameterNumber|DECLINATION|Declination [Degree]|None|None|45.0 -ParameterNumber|EXAGGERATION|Exaggeration|None|None|4.0 -OutputRaster|SHADE|Analytical Hillshading diff --git a/python/plugins/processing/algs/saga/description/2.2.2/B-SplineApproximation.txt b/python/plugins/processing/algs/saga/description/2.2.2/B-SplineApproximation.txt deleted file mode 100644 index 79a2bf5a6929..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/B-SplineApproximation.txt +++ /dev/null @@ -1,10 +0,0 @@ -B-Spline Approximation -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterNumber|LEVEL|Resolution|0.001|None|1.0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/BurnStreamNetworkintoDEM.txt b/python/plugins/processing/algs/saga/description/2.2.2/BurnStreamNetworkintoDEM.txt deleted file mode 100644 index 22f289c5682f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/BurnStreamNetworkintoDEM.txt +++ /dev/null @@ -1,8 +0,0 @@ -Burn Stream Network into DEM -ta_preprocessor -ParameterRaster|DEM|DEM|False -ParameterRaster|STREAM|Streams|False -ParameterRaster|FLOWDIR|Flow direction|False -ParameterSelection|METHOD|Method|[0] simply decrease cell's value by epsilon;[1] lower cell's value to neighbours minimum value minus epsilon;[2] trace stream network downstream -ParameterNumber|EPSILON|Epsilon|0.0|None|1.0 -OutputRaster|BURN|Processed DEM \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/CellBalance.txt b/python/plugins/processing/algs/saga/description/2.2.2/CellBalance.txt deleted file mode 100644 index 80edebcf2887..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/CellBalance.txt +++ /dev/null @@ -1,7 +0,0 @@ -Cell Balance -ta_hydrology -ParameterRaster|DEM|Elevation|False -ParameterRaster|WEIGHTS|Parameter|True -ParameterNumber|WEIGHTS_DEFAULT|Default Weight|0.0|None|1.0 -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Multiple Flow Direction -OutputRaster|BALANCE|Cell Balance \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ChangeDateFormat.txt b/python/plugins/processing/algs/saga/description/2.2.2/ChangeDateFormat.txt deleted file mode 100644 index 9adfcd0884d5..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ChangeDateFormat.txt +++ /dev/null @@ -1,7 +0,0 @@ -Change Date Format -table_tools -ParameterTable|TABLE|Table|False -ParameterTableField|FIELD|Date Field|TABLE|-1|False -ParameterSelection|FMT_IN|Input Format|[0] dd.mm.yy;[1] yy.mm.dd;[2] dd:mm:yy;[3] yy:mm:dd;[4] ddmmyyyy, fix size;[5] yyyymmdd, fix size;[6] ddmmyy, fix size;[7] yymmdd, fix size;[8] Julian Day -ParameterSelection|FMT_OUT|Output Format|[0] dd.mm.yy;[1] yy.mm.dd;[2] dd:mm:yy;[3] yy:mm:dd;[4] ddmmyyyy, fix size;[5] yyyymmdd, fix size;[6] ddmmyy, fix size;[7] yymmdd, fix size;[8] Julian Day -OutputTable|OUTPUT|Output diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ChangeDetection.txt b/python/plugins/processing/algs/saga/description/2.2.2/ChangeDetection.txt deleted file mode 100644 index f171b9fd6ddc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ChangeDetection.txt +++ /dev/null @@ -1,16 +0,0 @@ -Change Detection -imagery_classification -ParameterRaster|INITIAL|Initial State|False -ParameterTable|INI_LUT|Look-up Table|True -ParameterTableField|INI_LUT_MIN|Value|INI_LUT|-1|False -ParameterTableField|INI_LUT_MAX|Value (Maximum)|INI_LUT|-1|False -ParameterTableField|INI_LUT_NAM|Name|INI_LUT|-1|False -ParameterRaster|FINAL|Final State|False -ParameterTable|FIN_LUT|Look-up Table|True -ParameterTableField|FIN_LUT_MIN|Value|FIN_LUT|-1|False -ParameterTableField|FIN_LUT_MAX|Value (Maximum)|FIN_LUT|-1|False -ParameterTableField|FIN_LUT_NAM|Name|FIN_LUT|-1|False -ParameterBoolean|NOCHANGE |Report Unchanged Classes|True -ParameterSelection|OUTPUT|Output as...|[0] cells;[1] percent;[2] area -OutputRaster|CHANGE|Changes -OutputTable|CHANGES|Changes diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ChangeGridValues.txt b/python/plugins/processing/algs/saga/description/2.2.2/ChangeGridValues.txt deleted file mode 100644 index 8d3bd69e29ab..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ChangeGridValues.txt +++ /dev/null @@ -1,6 +0,0 @@ -Change Grid Values -grid_tools -ParameterRaster|GRID_IN|Grid|False -ParameterSelection|METHOD|Replace Condition|[0] Grid value equals low value;[1] Low value < grid value < high value;[2] Low value <= grid value < high value -ParameterFixedTable|LOOKUP|Lookup Table|3|Low Value;High Value;Replace with|False -OutputRaster|GRID_OUT|Changed Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ChangeTimeFormat.txt b/python/plugins/processing/algs/saga/description/2.2.2/ChangeTimeFormat.txt deleted file mode 100644 index 0a384af3194d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ChangeTimeFormat.txt +++ /dev/null @@ -1,7 +0,0 @@ -Change Time Format -table_tools -ParameterTable|TABLE|Table|False -ParameterTableField|FIELD|Time Field|TABLE|-1|False -ParameterSelection|FMT_IN|Input Format|[0] hh.mm.ss;[1] hh:mm:ss;[2] hhmmss, fix size;[3] hours;[4] minutes;[5] seconds -ParameterSelection|FMT_OUT|Output Format|[0] hh.mm.ss;[1] hh:mm:ss;[2] hhmmss, fix size;[3] hours;[4] minutes;[5] seconds -OutputTable|OUTPUT|Output diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ChannelNetwork.txt b/python/plugins/processing/algs/saga/description/2.2.2/ChannelNetwork.txt deleted file mode 100644 index b7bf16f1db10..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ChannelNetwork.txt +++ /dev/null @@ -1,14 +0,0 @@ -Channel Network -ta_channels -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SINKROUTE|Flow Direction|True -ParameterRaster|INIT_GRID|Initiation Grid|False -ParameterSelection|INIT_METHOD|Initiation Type|[0] Less than;[1] Equals;[2] Greater than -ParameterNumber|INIT_VALUE|Initiation Threshold|None|None|0.0 -ParameterRaster|DIV_GRID|Divergence|True -ParameterNumber|DIV_CELLS|Tracing: Max. Divergence|None|None|10 -ParameterRaster|TRACE_WEIGHT|Tracing: Weight|True -ParameterNumber|MINLEN|Min. Segment Length|0.0|None|10 -OutputRaster|CHNLNTWRK|Channel Network -OutputRaster|CHNLROUTE|Channel Direction -OutputVector|SHAPES|Channel Network diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ChannelNetworkandDrainageBasins.txt b/python/plugins/processing/algs/saga/description/2.2.2/ChannelNetworkandDrainageBasins.txt deleted file mode 100644 index 17e8ccad2702..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ChannelNetworkandDrainageBasins.txt +++ /dev/null @@ -1,11 +0,0 @@ -Channel Network and Drainage Basins -ta_channels -ParameterRaster|DEM|Elevation|False -ParameterNumber|THRESHOLD|Threshold|None|None|5.0 -OutputRaster|DIRECTION|Flow Direction -OutputRaster|CONNECTION|Flow Connectivity -OutputRaster|ORDER|Strahler Order -OutputRaster|BASIN|Drainage Basins -OutputVector|SEGMENTS|Channels -OutputVector|BASINS|Drainage Basins -OutputVector|NODES|Junctions diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ClipGridwithPolygon.txt b/python/plugins/processing/algs/saga/description/2.2.2/ClipGridwithPolygon.txt deleted file mode 100644 index b76d1a2f7da0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ClipGridwithPolygon.txt +++ /dev/null @@ -1,5 +0,0 @@ -Clip Grid with Polygon -shapes_grid -ParameterRaster|INPUT|Input|False -ParameterVector|POLYGONS|Polygons|2|False -OutputRaster|OUTPUT|Clipped diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ClipPointswithPolygons.txt b/python/plugins/processing/algs/saga/description/2.2.2/ClipPointswithPolygons.txt deleted file mode 100644 index 90b8f12176c8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ClipPointswithPolygons.txt +++ /dev/null @@ -1,7 +0,0 @@ -Clip Points with Polygons -shapes_points -ParameterVector|POINTS|Points|0|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|FIELD|Add Attribute to Clipped Points|POLYGONS|-1|False -ParameterSelection|METHOD|Clipping Options|[0] one layer for all points;[1] separate layer for each polygon -OutputVector|CLIPS|Clipped Points diff --git a/python/plugins/processing/algs/saga/description/2.2.2/CloseGaps.txt b/python/plugins/processing/algs/saga/description/2.2.2/CloseGaps.txt deleted file mode 100644 index ffa217f19916..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/CloseGaps.txt +++ /dev/null @@ -1,6 +0,0 @@ -Close Gaps -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterRaster|MASK|Mask|True -ParameterNumber|THRESHOLD|Tension Threshold|None|None|0.1 -OutputRaster|RESULT|Changed Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/CloseGapswithSpline.txt b/python/plugins/processing/algs/saga/description/2.2.2/CloseGapswithSpline.txt deleted file mode 100644 index cd70312d7fdc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/CloseGapswithSpline.txt +++ /dev/null @@ -1,12 +0,0 @@ -Close Gaps with Spline -grid_tools -ParameterRaster|GRID|Grid|False -ParameterRaster|MASK|Mask|True -ParameterNumber|MAXGAPCELLS|Only Process Gaps with Less Cells|None|None|0 -ParameterNumber|MAXPOINTS|Maximum Points|None|None|1000 -ParameterNumber|LOCALPOINTS|Number of Points for Local Interpolation|None|None|10 -ParameterBoolean|EXTENDED |Extended Neighourhood|True -ParameterSelection|NEIGHBOURS|Neighbourhood|[0] Neumann;[1] Moore -ParameterNumber|RADIUS|Radius (Cells)|None|None|0 -ParameterNumber|RELAXATION|Relaxation|None|None|0.0 -OutputRaster|CLOSED|Closed Gaps Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/CloseOneCellGaps.txt b/python/plugins/processing/algs/saga/description/2.2.2/CloseOneCellGaps.txt deleted file mode 100644 index d3b4aa0318bc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/CloseOneCellGaps.txt +++ /dev/null @@ -1,4 +0,0 @@ -Close One Cell Gaps -grid_tools -ParameterRaster|INPUT|Grid|False -OutputRaster|RESULT|Changed Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ClusterAnalysisforGrids.txt b/python/plugins/processing/algs/saga/description/2.2.2/ClusterAnalysisforGrids.txt deleted file mode 100644 index 0c477e9e46ea..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ClusterAnalysisforGrids.txt +++ /dev/null @@ -1,9 +0,0 @@ -Cluster Analysis for Grids -imagery_classification -ParameterMultipleInput|GRIDS|Grids|3.0|False -ParameterSelection|METHOD|Method|[0] Iterative Minimum Distance (Forgy 1965);[1] Hill-Climbing (Rubin 1967);[2] Combined Minimum Distance / Hillclimbing -ParameterNumber|NCLUSTER|Clusters|None|None|5 -ParameterBoolean|NORMALISE |Normalise|True -ParameterBoolean|OLDVERSION |Old Version|True -OutputRaster|CLUSTER|Clusters -OutputTable|STATISTICS|Statistics diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ContourLinesfromGrid.txt b/python/plugins/processing/algs/saga/description/2.2.2/ContourLinesfromGrid.txt deleted file mode 100644 index d0924e0d6a9f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ContourLinesfromGrid.txt +++ /dev/null @@ -1,8 +0,0 @@ -Contour Lines from Grid -shapes_grid -ParameterRaster|GRID|Grid|False -ParameterSelection|VERTEX|Vertex type|[0] x,y;[1] x,y,z -ParameterNumber|ZMIN|Minimum Contour Value|None|None|0.0 -ParameterNumber|ZMAX|Maximum Contour Value|None|None|10000.0 -ParameterNumber|ZSTEP|Equidistance|None|None|100.0 -OutputVector|CONTOUR|Contour Lines diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ConvergenceIndex(SearchRadius).txt b/python/plugins/processing/algs/saga/description/2.2.2/ConvergenceIndex(SearchRadius).txt deleted file mode 100644 index 11730fa638a3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ConvergenceIndex(SearchRadius).txt +++ /dev/null @@ -1,11 +0,0 @@ -Convergence Index (Search Radius) -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterNumber|RADIUS|Radius [Cells]|1.0|None|10.0 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|0.0|None|1.0 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|0.0|None|1.0 -ParameterBoolean|SLOPE|Gradient|True -ParameterSelection|DIFFERENCE|Weighting Function|[0] direction to the center cell;[1] center cell's aspect direction -OutputRaster|CONVERGENCE|Convergence Index \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ConvergenceIndex.txt b/python/plugins/processing/algs/saga/description/2.2.2/ConvergenceIndex.txt deleted file mode 100644 index 7d1649a615dc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ConvergenceIndex.txt +++ /dev/null @@ -1,6 +0,0 @@ -Convergence Index -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Method|[0] Aspect;[1] Gradient -ParameterSelection|NEIGHBOURS|Gradient Calculation|[0] 2 x 2;[1] 3 x 3 -OutputRaster|RESULT|Convergence Index diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ConvertDataStorageType.txt b/python/plugins/processing/algs/saga/description/2.2.2/ConvertDataStorageType.txt deleted file mode 100644 index 51de5d997936..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ConvertDataStorageType.txt +++ /dev/null @@ -1,5 +0,0 @@ -Convert Data Storage Type -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterSelection|TYPE|Data storage 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 -OutputRaster|OUTPUT|Converted Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ConvertLinestoPoints.txt b/python/plugins/processing/algs/saga/description/2.2.2/ConvertLinestoPoints.txt deleted file mode 100644 index 7a4435360903..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ConvertLinestoPoints.txt +++ /dev/null @@ -1,6 +0,0 @@ -Convert Lines to Points -shapes_points -ParameterVector|LINES|Lines|1|False -ParameterBoolean|ADD |Insert Additional Points|True -ParameterNumber|DIST|Insert Distance|0.0|None|1.0 -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ConvertLinestoPolygons.txt b/python/plugins/processing/algs/saga/description/2.2.2/ConvertLinestoPolygons.txt deleted file mode 100644 index 0053420971a9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ConvertLinestoPolygons.txt +++ /dev/null @@ -1,4 +0,0 @@ -Convert Lines to Polygons -shapes_polygons -ParameterVector|LINES|Lines|1|False -OutputVector|POLYGONS|Polygons diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ConvertMultipointstoPoints.txt b/python/plugins/processing/algs/saga/description/2.2.2/ConvertMultipointstoPoints.txt deleted file mode 100644 index 6a0fc9798b0d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ConvertMultipointstoPoints.txt +++ /dev/null @@ -1,4 +0,0 @@ -Convert Multipoints to Points -shapes_points -ParameterVector|MULTIPOINTS|Multipoints|0|False -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ConvertPointstoLine(s).txt b/python/plugins/processing/algs/saga/description/2.2.2/ConvertPointstoLine(s).txt deleted file mode 100644 index f7e8b6bb642c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ConvertPointstoLine(s).txt +++ /dev/null @@ -1,6 +0,0 @@ -Convert Points to Line(s) -shapes_lines -ParameterVector|POINTS|Points|0|False -ParameterTableField|ORDER|Order by...|POINTS|-1|False -ParameterTableField|SEPARATE|Separate by...|POINTS|-1|False -OutputVector|LINES|Lines diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ConvertPolygonLineVerticestoPoints.txt b/python/plugins/processing/algs/saga/description/2.2.2/ConvertPolygonLineVerticestoPoints.txt deleted file mode 100644 index e8e9a68f86d4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ConvertPolygonLineVerticestoPoints.txt +++ /dev/null @@ -1,4 +0,0 @@ -Convert Polygon/Line Vertices to Points -shapes_polygons -ParameterVector|SHAPES|Shapes|-1|False -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ConvertPolygonstoLines.txt b/python/plugins/processing/algs/saga/description/2.2.2/ConvertPolygonstoLines.txt deleted file mode 100644 index def3f0429a5a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ConvertPolygonstoLines.txt +++ /dev/null @@ -1,4 +0,0 @@ -Convert Polygons to Lines -shapes_lines -ParameterVector|POLYGONS|Polygons|2|False -OutputVector|LINES|Lines diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ConvexHull.txt b/python/plugins/processing/algs/saga/description/2.2.2/ConvexHull.txt deleted file mode 100644 index 81084ab7e508..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ConvexHull.txt +++ /dev/null @@ -1,6 +0,0 @@ -Convex Hull -shapes_points -ParameterVector|SHAPES|Points|0|False -ParameterSelection|POLYPOINTS|Hull Construction|[0] one hull for all shapes;[1] one hull per shape;[2] one hull per shape part -OutputVector|HULLS|Convex Hull -OutputVector|BOXES|Minimum Bounding Box diff --git a/python/plugins/processing/algs/saga/description/2.2.2/CreateGraticule.txt b/python/plugins/processing/algs/saga/description/2.2.2/CreateGraticule.txt deleted file mode 100644 index 0e46eeeb6a14..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/CreateGraticule.txt +++ /dev/null @@ -1,8 +0,0 @@ -Create Graticule -shapes_tools -ParameterVector|EXTENT|Extent|-1|True -Extent X_EXTENT_MIN X_EXTENT_MAX Y_EXTENT_MIN Y_EXTENT_MAX -ParameterNumber|DISTX|Division Width|None|None|1.0 -ParameterNumber|DISTY|Division Height|None|None|1.0 -ParameterSelection|TYPE|Type|[0] Lines;[1] Rectangles -OutputVector|GRATICULE|Graticule diff --git a/python/plugins/processing/algs/saga/description/2.2.2/CropToData.txt b/python/plugins/processing/algs/saga/description/2.2.2/CropToData.txt deleted file mode 100644 index e87ea99f1881..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/CropToData.txt +++ /dev/null @@ -1,4 +0,0 @@ -Crop to Data -grid_tools -ParameterRaster|INPUT|Input layer|False -OutputRaster|OUTPUT|Cropped diff --git a/python/plugins/processing/algs/saga/description/2.2.2/Cross-ClassificationandTabulation.txt b/python/plugins/processing/algs/saga/description/2.2.2/Cross-ClassificationandTabulation.txt deleted file mode 100644 index 19bb607ae29d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/Cross-ClassificationandTabulation.txt +++ /dev/null @@ -1,7 +0,0 @@ -Cross-Classification and Tabulation -grid_analysis -ParameterRaster|INPUT|Input Grid 1|False -ParameterRaster|INPUT2|Input Grid 2|False -ParameterNumber|MAXNUMCLASS|Max. Number of Classes|None|None|5 -OutputRaster|RESULTGRID|Cross-Classification Grid -OutputTable|RESULTTABLE|Cross-Tabulation Table diff --git a/python/plugins/processing/algs/saga/description/2.2.2/CrossProfiles.txt b/python/plugins/processing/algs/saga/description/2.2.2/CrossProfiles.txt deleted file mode 100644 index 149b8920630f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/CrossProfiles.txt +++ /dev/null @@ -1,8 +0,0 @@ -Cross Profiles -ta_profiles -ParameterRaster|DEM|DEM|False -ParameterVector|LINES|Lines|1|False -ParameterNumber|DIST_LINE|Profile Distance|0.0|None|10.0 -ParameterNumber|DIST_PROFILE|Profile Length|0.0|None|10.0 -ParameterNumber|NUM_PROFILE|Profile Samples|1.0|None|10.0 -OutputVector|PROFILES|Cross Profiles diff --git a/python/plugins/processing/algs/saga/description/2.2.2/CubicSplineApproximation.txt b/python/plugins/processing/algs/saga/description/2.2.2/CubicSplineApproximation.txt deleted file mode 100644 index c60b70060924..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/CubicSplineApproximation.txt +++ /dev/null @@ -1,13 +0,0 @@ -Cubic Spline Approximation -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterNumber|NPMIN|Minimal Number of Points|0|None|3 -ParameterNumber|NPMAX|Maximal Number of Points|11|59|20 -ParameterNumber|NPPC|Points per Square|1|None|5 -ParameterNumber|K|Tolerance|0|None|140.0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/CurvatureClassification.txt b/python/plugins/processing/algs/saga/description/2.2.2/CurvatureClassification.txt deleted file mode 100644 index aff4b661d617..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/CurvatureClassification.txt +++ /dev/null @@ -1,5 +0,0 @@ -Curvature Classification -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|THRESHOLD|Threshold for plane|0.0000|None|0.0005 -OutputRaster|CLASS|Curvature Classification \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/CutShapesLayer.txt b/python/plugins/processing/algs/saga/description/2.2.2/CutShapesLayer.txt deleted file mode 100644 index f60347ab4f7c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/CutShapesLayer.txt +++ /dev/null @@ -1,7 +0,0 @@ -Cut Shapes Layer -shapes_tools -ParameterVector|SHAPES|Vector layer to cut|-1|False -ParameterSelection|METHOD|Method|[0] completely contained;[1] intersects;[2] center -Hardcoded|-TARGET 3 -ParameterVector|POLYGONS_POLYGONS|Cutting polygons|2|False -OutputVector|CUT|Result \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/DTMFilter(slope-based).txt b/python/plugins/processing/algs/saga/description/2.2.2/DTMFilter(slope-based).txt deleted file mode 100644 index 73902128994d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/DTMFilter(slope-based).txt +++ /dev/null @@ -1,8 +0,0 @@ -DTM Filter (slope-based) -grid_filter -ParameterRaster|INPUT|Grid to filter|False -ParameterNumber|RADIUS|Search Radius|1.0|None|2 -ParameterNumber|TERRAINSLOPE|Approx. Terrain Slope|None|None|30.0 -ParameterBoolean|STDDEV |Use Confidence Interval|True -OutputRaster|GROUND|Bare Earth -OutputRaster|NONGROUND|Removed Objects diff --git a/python/plugins/processing/algs/saga/description/2.2.2/DirectionalStatisticsforSingleGrid.txt b/python/plugins/processing/algs/saga/description/2.2.2/DirectionalStatisticsforSingleGrid.txt deleted file mode 100644 index 5ed456dda7b4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/DirectionalStatisticsforSingleGrid.txt +++ /dev/null @@ -1,23 +0,0 @@ -Directional Statistics for Single Grid -statistics_grid -ParameterRaster|GRID|Grid|False -ParameterVector|POINTS|Points|-1|True -ParameterNumber|DIRECTION|Direction [Degree]|None|None|0.0 -ParameterNumber|TOLERANCE|Tolerance [Degree]|None|None|0.0 -ParameterNumber|MAXDISTANCE|Maximum Distance [Cells]|None|None|0 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1.0 -OutputRaster|MEAN|Arithmetic Mean -OutputRaster|DIFMEAN|Difference from Arithmetic Mean -OutputRaster|MIN|Minimum -OutputRaster|MAX|Maximum -OutputRaster|RANGE|Range -OutputRaster|VAR|Variance -OutputRaster|STDDEV|Standard Deviation -OutputRaster|STDDEVLO|Mean less Standard Deviation -OutputRaster|STDDEVHI|Mean plus Standard Deviation -OutputRaster|DEVMEAN|Deviation from Arithmetic Mean -OutputRaster|PERCENT|Percentile -OutputVector|POINTS_OUT|Directional Statistics for Points diff --git a/python/plugins/processing/algs/saga/description/2.2.2/DistanceMatrix.txt b/python/plugins/processing/algs/saga/description/2.2.2/DistanceMatrix.txt deleted file mode 100644 index 059d3c209fee..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/DistanceMatrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -Distance Matrix -shapes_points -ParameterVector|POINTS|Points|0|False -OutputTable|TABLE|Distance Matrix Table diff --git a/python/plugins/processing/algs/saga/description/2.2.2/DiurnalAnisotropicHeating.txt b/python/plugins/processing/algs/saga/description/2.2.2/DiurnalAnisotropicHeating.txt deleted file mode 100644 index 5420da99b09a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/DiurnalAnisotropicHeating.txt +++ /dev/null @@ -1,5 +0,0 @@ -Diurnal Anisotropic Heating -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|ALPHA_MAX|Alpha Max (Degree)|None|None|202.5 -OutputRaster|DAH|Diurnal Anisotropic Heating diff --git a/python/plugins/processing/algs/saga/description/2.2.2/DiversityOfCategories.txt b/python/plugins/processing/algs/saga/description/2.2.2/DiversityOfCategories.txt deleted file mode 100644 index e3abf580ce8a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/DiversityOfCategories.txt +++ /dev/null @@ -1,14 +0,0 @@ -Diversity of Categories -grid_analysis -ParameterRaster|CATEGORIES|Categories|False -ParameterSelection|SEARCH_MODE|Search Mode|[0] square;[1] circle|1 -ParameterNumber|SEARCH_RADIUS|Search Radius Distance|1.0|3|3 -ParameterSelection|NB_CASE|Connectivity Neighbourhood|[0] Rook's case;[1] Queen's case|1 -ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|0.0|None|1 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|0.0|None|0.7 -OutputRaster|DIVERSITY|Diversity -OutputRaster|SIZE_MEAN|Average Size -OutputRaster|SIZE_SKEW|Skewness -OutputRaster|CONNECTIVITY|Connectivity \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/DownslopeDistanceGradient.txt b/python/plugins/processing/algs/saga/description/2.2.2/DownslopeDistanceGradient.txt deleted file mode 100644 index 250e199cf6fe..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/DownslopeDistanceGradient.txt +++ /dev/null @@ -1,7 +0,0 @@ -Downslope Distance Gradient -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|DISTANCE|Vertical Distance|None|None|10 -ParameterSelection|OUTPUT|Output|[0] distance;[1] gradient (tangens);[2] gradient (degree) -OutputRaster|GRADIENT|Gradient -OutputRaster|DIFFERENCE|Gradient Difference diff --git a/python/plugins/processing/algs/saga/description/2.2.2/EdgeContamination.txt b/python/plugins/processing/algs/saga/description/2.2.2/EdgeContamination.txt deleted file mode 100644 index 004ca57539db..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/EdgeContamination.txt +++ /dev/null @@ -1,4 +0,0 @@ -Edge Contamination -ta_hydrology -ParameterRaster|DEM|Elevation|False -OutputRaster|CONTAMINATION|Edge Contamination diff --git a/python/plugins/processing/algs/saga/description/2.2.2/EffectiveAirFlowHeights.txt b/python/plugins/processing/algs/saga/description/2.2.2/EffectiveAirFlowHeights.txt deleted file mode 100644 index 70e0479b3a99..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/EffectiveAirFlowHeights.txt +++ /dev/null @@ -1,15 +0,0 @@ -Effective Air Flow Heights -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterRaster|DIR|Wind Direction|True -ParameterRaster|LEN|Wind Speed|True -ParameterNumber|DIR_CONST|Constant Wind Direction [Degree]|None|None|135 -ParameterBoolean|OLDVER |Old Version|True -ParameterNumber|MAXDIST|Search Distance [km]|0.0|None|300 -ParameterNumber|ACCEL|Acceleration|None|None|1.5 -ParameterBoolean|PYRAMIDS |Use Pyramids with New Version|True -ParameterNumber|LEEFACT|Lee Factor|None|None|0.5 -ParameterNumber|LUVFACT|Luv Factor|None|None|1.0 -ParameterSelection|DIR_UNITS|Wind Direction Units|[0] radians;[1] degree -ParameterNumber|LEN_SCALE|Wind Speed Scale Factor|None|None|1.0 -OutputRaster|AFH|Effective Air Flow Heights diff --git a/python/plugins/processing/algs/saga/description/2.2.2/FastRegionGrowingAlgorithm.txt b/python/plugins/processing/algs/saga/description/2.2.2/FastRegionGrowingAlgorithm.txt deleted file mode 100644 index c7922ee2e242..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/FastRegionGrowingAlgorithm.txt +++ /dev/null @@ -1,7 +0,0 @@ -Fast Region Growing Algorithm -imagery_rga -ParameterMultipleInput|INPUT|Input Grids|3|False -ParameterRaster|START|Seeds Grid|False -ParameterRaster|REP|Smooth Rep|True -OutputRaster|RESULT|Segmente -OutputRaster|MEAN|Mean diff --git a/python/plugins/processing/algs/saga/description/2.2.2/FastRepresentativeness.txt b/python/plugins/processing/algs/saga/description/2.2.2/FastRepresentativeness.txt deleted file mode 100644 index b65953be62cd..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/FastRepresentativeness.txt +++ /dev/null @@ -1,7 +0,0 @@ -Fast Representativeness -statistics_grid -ParameterRaster|INPUT|Input|False -ParameterNumber|LOD|Level of Generalisation|None|None|16 -OutputRaster|RESULT|Output -OutputRaster|RESULT_LOD|Output Lod -OutputRaster|SEEDS|Output Seeds diff --git a/python/plugins/processing/algs/saga/description/2.2.2/FillGapsinRecords.txt b/python/plugins/processing/algs/saga/description/2.2.2/FillGapsinRecords.txt deleted file mode 100644 index 31974dcc53d1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/FillGapsinRecords.txt +++ /dev/null @@ -1,6 +0,0 @@ -Fill Gaps in Records -table_calculus -ParameterTable|TABLE|Table|False -ParameterTableField|ORDER|Order|TABLE|-1|False -ParameterSelection|METHOD|Interpolation|[0] Nearest Neighbour;[1] Linear;[2] Spline -OutputTable|NOGAPS|Table without Gaps diff --git a/python/plugins/processing/algs/saga/description/2.2.2/FillSinks(PlanchonDarboux,2001).txt b/python/plugins/processing/algs/saga/description/2.2.2/FillSinks(PlanchonDarboux,2001).txt deleted file mode 100644 index f1a496dc924a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/FillSinks(PlanchonDarboux,2001).txt +++ /dev/null @@ -1,5 +0,0 @@ -Fill Sinks|Fill Sinks (Planchon/Darboux, 2001) -ta_preprocessor -ParameterRaster|DEM|DEM|False -ParameterNumber|MINSLOPE|Minimum Slope [Degree]|0.0|None|0.01 -OutputRaster|RESULT|Filled DEM diff --git a/python/plugins/processing/algs/saga/description/2.2.2/FillSinks(WangLiu).txt b/python/plugins/processing/algs/saga/description/2.2.2/FillSinks(WangLiu).txt deleted file mode 100644 index 2a36e9913ae9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/FillSinks(WangLiu).txt +++ /dev/null @@ -1,7 +0,0 @@ -Fill Sinks (Wang & Liu) -ta_preprocessor -ParameterRaster|ELEV|DEM|False -ParameterNumber|MINSLOPE|Minimum Slope [Degree]|0.0|None|0.01 -OutputRaster|FILLED|Filled DEM -OutputRaster|FDIR|Flow Directions -OutputRaster|WSHED|Watershed Basins diff --git a/python/plugins/processing/algs/saga/description/2.2.2/FillSinksXXL(WangLiu).txt b/python/plugins/processing/algs/saga/description/2.2.2/FillSinksXXL(WangLiu).txt deleted file mode 100644 index bd3bd2194b79..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/FillSinksXXL(WangLiu).txt +++ /dev/null @@ -1,5 +0,0 @@ -Fill Sinks XXL (Wang & Liu) -ta_preprocessor -ParameterRaster|ELEV|DEM|False -ParameterNumber|MINSLOPE|Minimum Slope [Degree]|0.0|None|0.01 -OutputRaster|FILLED|Filled DEM diff --git a/python/plugins/processing/algs/saga/description/2.2.2/FilterClumps.txt b/python/plugins/processing/algs/saga/description/2.2.2/FilterClumps.txt deleted file mode 100644 index 3ac291f4fab9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/FilterClumps.txt +++ /dev/null @@ -1,5 +0,0 @@ -Filter Clumps -grid_filter -ParameterRaster|GRID|Input Grid|False -ParameterNumber|THRESHOLD|Min. Size|1.0|None|10 -OutputRaster|OUTPUT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/FireRiskAnalysis.txt b/python/plugins/processing/algs/saga/description/2.2.2/FireRiskAnalysis.txt deleted file mode 100644 index 7f9788d09851..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/FireRiskAnalysis.txt +++ /dev/null @@ -1,18 +0,0 @@ -Fire Risk Analysis -sim_fire_spreading -ParameterRaster|DEM|DEM|False -ParameterRaster|FUEL|Fuel Model|False -ParameterRaster|WINDSPD|Wind Speed|False -ParameterRaster|WINDDIR|Wind Direction|False -ParameterRaster|M1H|Dead Fuel Moisture 1H|False -ParameterRaster|M10H|Dead Fuel Moisture 10H|False -ParameterRaster|M100H|Dead Fuel Moisture 100H|False -ParameterRaster|MHERB|Herbaceous Fuel Moisture|False -ParameterRaster|MWOOD|Wood Fuel Moisture|False -ParameterRaster|VALUE|Value|True -ParameterRaster|BASEPROB|Base Probability|True -ParameterNumber|MONTECARLO|Number of Events|None|None|1000 -ParameterNumber|INTERVAL|Fire Length|None|None|100 -OutputRaster|DANGER|Danger -OutputRaster|COMPPROB|Compound Probability -OutputRaster|PRIORITY|Priority Index diff --git a/python/plugins/processing/algs/saga/description/2.2.2/FitNPointstoshape.txt b/python/plugins/processing/algs/saga/description/2.2.2/FitNPointstoshape.txt deleted file mode 100644 index 727ebdb56d2e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/FitNPointstoshape.txt +++ /dev/null @@ -1,5 +0,0 @@ -Fit N Points to shape -shapes_points -ParameterVector|SHAPES|Shapes|2|False -ParameterNumber|NUMPOINTS|Number of points|1.0|None|10 -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.2.2/FlatDetection.txt b/python/plugins/processing/algs/saga/description/2.2.2/FlatDetection.txt deleted file mode 100644 index e106c6e11ad7..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/FlatDetection.txt +++ /dev/null @@ -1,6 +0,0 @@ -Flat Detection -ta_preprocessor -ParameterRaster|DEM|DEM|False -ParameterSelection|FLAT_OUTPUT|Flat Area Values|[0] elevation;[1] enumeration -OutputRaster|NOFLATS|No Flats -OutputRaster|FLATS|Flat Areas diff --git a/python/plugins/processing/algs/saga/description/2.2.2/FlattenPolygonLayer.txt b/python/plugins/processing/algs/saga/description/2.2.2/FlattenPolygonLayer.txt deleted file mode 100644 index 0657662294fc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/FlattenPolygonLayer.txt +++ /dev/null @@ -1,4 +0,0 @@ -Flatten Polygon Layer -shapes_polygons -ParameterVector|INPUT|Input|2|False -OutputVector|OUTPUT|Output \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/FlowAccumulation(FlowTracing).txt b/python/plugins/processing/algs/saga/description/2.2.2/FlowAccumulation(FlowTracing).txt deleted file mode 100644 index 30978cb62f8e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/FlowAccumulation(FlowTracing).txt +++ /dev/null @@ -1,17 +0,0 @@ -Flow Accumulation (Flow Tracing) -ta_hydrology -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SINKROUTE|Sink Routes|True -ParameterRaster|WEIGHT|Weight|True -ParameterRaster|MATERIAL|Material|True -ParameterRaster|VAL_INPUT|Input for Mean over Catchment Calculation|True -ParameterRaster|TARGET|Target|True -ParameterNumber|STEP|Step|None|None|1 -ParameterSelection|METHOD|Method|[0] Rho 8;[1] Kinematic Routing Algorithm;[2] DEMON -ParameterNumber|MINDQV|DEMON - Min. DQV|None|None|0.0 -ParameterBoolean|CORRECT|Flow Correction|True -OutputRaster|CAREA|Catchment Area -OutputRaster|VAL_MEAN|Mean over Catchment -OutputRaster|ACCU_TOT|Total accumulated Material -OutputRaster|ACCU_LEFT|Accumulated Material from left side -OutputRaster|ACCU_RIGHT|Accumulated Material from right side \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/FlowAccumulation(Recursive).txt b/python/plugins/processing/algs/saga/description/2.2.2/FlowAccumulation(Recursive).txt deleted file mode 100644 index 9bdab3eccd5c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/FlowAccumulation(Recursive).txt +++ /dev/null @@ -1,18 +0,0 @@ -Flow Accumulation (Recursive) -ta_hydrology -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SINKROUTE|Sink Routes|True -ParameterRaster|WEIGHT|Weight|True -ParameterRaster|MATERIAL|Material|True -ParameterRaster|VAL_INPUT|Input for Mean over Catchment Calculation|True -ParameterRaster|TARGET|Target|True -ParameterNumber|STEP|Step|None|None|1 -ParameterRaster|TARGETS|Target Areas|True -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Rho 8;[2] Deterministic Infinity;[3] Multiple Flow Direction -ParameterNumber|CONVERGENCE|Convergence|None|None|1.1 -OutputRaster|CAREA|Catchment Area -OutputRaster|VAL_MEAN|Mean over Catchment -OutputRaster|ACCU_TOT|Total accumulated Material -OutputRaster|ACCU_LEFT|Accumulated Material from left side -OutputRaster|ACCU_RIGHT|Accumulated Material from right side -OutputRaster|FLOWLEN|Flow Path Length diff --git a/python/plugins/processing/algs/saga/description/2.2.2/FlowAccumulation(Top-Down).txt b/python/plugins/processing/algs/saga/description/2.2.2/FlowAccumulation(Top-Down).txt deleted file mode 100644 index f575a7fea4c8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/FlowAccumulation(Top-Down).txt +++ /dev/null @@ -1,5 +0,0 @@ -Flow Accumulation (Top-Down) -ta_hydrology -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Rho 8;[2] Braunschweiger Reliefmodell;[3] Deterministic Infinity;[4] Multiple Flow Direction;[5] Multiple Triangular Flow Directon -OutputRaster|CAREA|Catchment Area diff --git a/python/plugins/processing/algs/saga/description/2.2.2/FlowPathLength.txt b/python/plugins/processing/algs/saga/description/2.2.2/FlowPathLength.txt deleted file mode 100644 index da1669996caf..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/FlowPathLength.txt +++ /dev/null @@ -1,8 +0,0 @@ -Flow Path Length -ta_hydrology -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SEED|Seeds|True -ParameterBoolean|SEEDS_ONLY |Seeds Only|True -ParameterSelection|METHOD|Flow Routing Algorithm|[0] Deterministic 8 (D8);[1] Multiple Flow Direction (FD8) -ParameterNumber|CONVERGENCE|Convergence (FD8)|None|None|1.1 -OutputRaster|LENGTH|Flow Path Length diff --git a/python/plugins/processing/algs/saga/description/2.2.2/FlowWidthandSpecificCatchmentArea.txt b/python/plugins/processing/algs/saga/description/2.2.2/FlowWidthandSpecificCatchmentArea.txt deleted file mode 100644 index a8d32a86f617..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/FlowWidthandSpecificCatchmentArea.txt +++ /dev/null @@ -1,7 +0,0 @@ -Flow Width and Specific Catchment Area -ta_hydrology -ParameterRaster|DEM|Elevation|False -ParameterRaster|TCA|Total Catchment Area (TCA)|True -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Multiple Flow Direction (Quinn et al. 1991);[2] Aspect -OutputRaster|WIDTH|Flow Width -OutputRaster|SCA|Specific Catchment Area (SCA) diff --git a/python/plugins/processing/algs/saga/description/2.2.2/Fragmentation(Alternative).txt b/python/plugins/processing/algs/saga/description/2.2.2/Fragmentation(Alternative).txt deleted file mode 100644 index 162d7ae48f5a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/Fragmentation(Alternative).txt +++ /dev/null @@ -1,17 +0,0 @@ -Fragmentation (Alternative) -grid_analysis -ParameterRaster|CLASSES|Classification|False -ParameterNumber|CLASS|Class Identifier|None|None|1 -ParameterNumber|NEIGHBORHOOD_MIN|Neighborhood Min|1.0|None|1 -ParameterNumber|NEIGHBORHOOD_MAX|Neighborhood Max|1.0|None|1 -ParameterSelection|AGGREGATION|Level Aggregation|[0] average;[1] multiplicative -ParameterBoolean|BORDER |Add Border|True -ParameterNumber|WEIGHT|Connectivity Weighting|None|None|1.1 -ParameterNumber|DENSITY_MIN|Minimum Density [Percent]|None|None|10 -ParameterNumber|DENSITY_INT|Minimum Density for Interior Forest [Percent]|None|None|99 -ParameterNumber|LEVEL_GROW|Search Distance Increment|None|None|0.0 -ParameterBoolean|DENSITY_MEAN |Density from Neighbourhood|True -OutputRaster|DENSITY|Density [Percent] -OutputRaster|CONNECTIVITY|Connectivity [Percent] -OutputRaster|FRAGMENTATION|Fragmentation -OutputTable|FRAGSTATS|Summary diff --git a/python/plugins/processing/algs/saga/description/2.2.2/Fragmentation(Standard).txt b/python/plugins/processing/algs/saga/description/2.2.2/Fragmentation(Standard).txt deleted file mode 100644 index 0dc554abcd2c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/Fragmentation(Standard).txt +++ /dev/null @@ -1,17 +0,0 @@ -Fragmentation (Standard) -grid_analysis -ParameterRaster|CLASSES|Classification|False -ParameterNumber|CLASS|Class Identifier|None|None|1 -ParameterNumber|NEIGHBORHOOD_MIN|Neighborhood Min|1.0|None|1 -ParameterNumber|NEIGHBORHOOD_MAX|Neighborhood Max|1.0|None|3 -ParameterSelection|AGGREGATION|Level Aggregation|[0] average;[1] multiplicative -ParameterBoolean|BORDER|Add Border|True -ParameterNumber|WEIGHT|Connectivity Weighting|None|None|1.1 -ParameterNumber|DENSITY_MIN|Minimum Density [Percent]|None|None|10 -ParameterNumber|DENSITY_INT|Minimum Density for Interior Forest [Percent]|None|None|99 -ParameterSelection|CIRCULAR|Neighborhood Type|[0] square;[1] circle -ParameterBoolean|DIAGONAL|Include diagonal neighbour relations|True -OutputRaster|DENSITY|Density [Percent] -OutputRaster|CONNECTIVITY|Connectivity [Percent] -OutputRaster|FRAGMENTATION|Fragmentation -OutputTable|FRAGSTATS|Summary diff --git a/python/plugins/processing/algs/saga/description/2.2.2/FragmentationClassesfromDensityandConnectivity.txt b/python/plugins/processing/algs/saga/description/2.2.2/FragmentationClassesfromDensityandConnectivity.txt deleted file mode 100644 index 99e30c493a4a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/FragmentationClassesfromDensityandConnectivity.txt +++ /dev/null @@ -1,9 +0,0 @@ -Fragmentation Classes from Density and Connectivity -grid_analysis -ParameterRaster|DENSITY|Density [Percent]|False -ParameterRaster|CONNECTIVITY|Connectivity [Percent]|False -ParameterBoolean|BORDER|Add Border|True -ParameterNumber|WEIGHT|Connectivity Weighting|None|None|0 -ParameterNumber|DENSITY_MIN|Minimum Density [Percent]|0.0|100.0|10 -ParameterNumber|DENSITY_INT|Minimum Density for Interior Forest [Percent]|0.0|100.0|99 -OutputRaster|FRAGMENTATION|Fragmentation diff --git a/python/plugins/processing/algs/saga/description/2.2.2/Function.txt b/python/plugins/processing/algs/saga/description/2.2.2/Function.txt deleted file mode 100644 index e058e9b04df0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/Function.txt +++ /dev/null @@ -1,8 +0,0 @@ -Function -grid_calculus -ParameterNumber|XMIN|xmin|None|None|0.0 -ParameterNumber|XMAX|xmax|None|None|0.0 -ParameterNumber|YMIN|ymin|None|None|0.0 -ParameterNumber|YMAX|ymax|None|None|0.0 -ParameterString|FORMUL|Formula| -OutputRaster|RESULT|Function diff --git a/python/plugins/processing/algs/saga/description/2.2.2/Fuzzify.txt b/python/plugins/processing/algs/saga/description/2.2.2/Fuzzify.txt deleted file mode 100644 index d78f12b44318..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/Fuzzify.txt +++ /dev/null @@ -1,10 +0,0 @@ -Fuzzify -grid_calculus -ParameterRaster|INPUT|Grid|False -ParameterNumber|A|A|None|None|0.0 -ParameterNumber|B|B|None|None|0.0 -ParameterNumber|C|C|None|None|0.0 -ParameterNumber|D|D|None|None|0.0 -ParameterSelection|TYPE|Membership Function Type|[0] linear;[1] sigmoidal;[2] j-shaped -ParameterBoolean|AUTOFIT |Adjust to Grid|True -OutputRaster|OUTPUT|Fuzzified Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/FuzzyIntersection(AND).txt b/python/plugins/processing/algs/saga/description/2.2.2/FuzzyIntersection(AND).txt deleted file mode 100644 index a00eff21d7f1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/FuzzyIntersection(AND).txt +++ /dev/null @@ -1,5 +0,0 @@ -Fuzzy Intersection (AND) -grid_calculus -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|TYPE|Operator Type|[0] min(a, b) (non-interactive);[1] a * b;[2] max(0, a + b - 1) -OutputRaster|AND|Intersection diff --git a/python/plugins/processing/algs/saga/description/2.2.2/FuzzyUnion(OR).txt b/python/plugins/processing/algs/saga/description/2.2.2/FuzzyUnion(OR).txt deleted file mode 100644 index 592517943abb..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/FuzzyUnion(OR).txt +++ /dev/null @@ -1,5 +0,0 @@ -Fuzzy Union (OR) -grid_calculus -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|TYPE|Operator Type|[0] max(a, b) (non-interactive);[1] a + b - a * b;[2] min(1, a + b) -OutputRaster|OR|Union diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GaussianFilter.txt b/python/plugins/processing/algs/saga/description/2.2.2/GaussianFilter.txt deleted file mode 100644 index 0cf7e310d150..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GaussianFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Gaussian Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterNumber|SIGMA|Standard Deviation|None|None|1 -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Search Radius|None|None|3 -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GeographicallyWeightedMultipleRegression(Points).txt b/python/plugins/processing/algs/saga/description/2.2.2/GeographicallyWeightedMultipleRegression(Points).txt deleted file mode 100644 index fd483f192f1a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GeographicallyWeightedMultipleRegression(Points).txt +++ /dev/null @@ -1,16 +0,0 @@ -GWR for Multiple Predictors -statistics_regression -ParameterVector|POINTS|Points|-1|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterTableField|PREDICTORS|Predictor|POINTS|-1|False -ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -OutputVector|REGRESSION|Regression \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GeographicallyWeightedMultipleRegression(PointsGrids).txt b/python/plugins/processing/algs/saga/description/2.2.2/GeographicallyWeightedMultipleRegression(PointsGrids).txt deleted file mode 100644 index 1573751dfe6e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GeographicallyWeightedMultipleRegression(PointsGrids).txt +++ /dev/null @@ -1,20 +0,0 @@ -GWR for Multiple Predictor Grids -statistics_regression -ParameterMultipleInput|PREDICTORS|Predictors|3.0|False -ParameterVector|POINTS|Points|0|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterSelection|RESOLUTION|Model Resolution|[0] same as predictors;[1] user defined|1 -ParameterNumber|RESOLUTION_VAL|Resolution|0|None|1 -ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -OutputRaster|REGRESSION|Regression -OutputRaster|QUALITY|Coefficient of Determination -OutputVector|RESIDUALS|Residuals diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GeographicallyWeightedMultipleRegression.txt b/python/plugins/processing/algs/saga/description/2.2.2/GeographicallyWeightedMultipleRegression.txt deleted file mode 100644 index e4f8a0e5ac69..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GeographicallyWeightedMultipleRegression.txt +++ /dev/null @@ -1,23 +0,0 @@ -GWR for Multiple Predictors (Gridded Model Output) -statistics_regression -ParameterVector|POINTS|Points|0|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterTableField|PREDICTORS|Predictor|POINTS|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputVector|REGRESSION|Regression -OutputRaster|SLOPES|Slopes -OutputRaster|TARGET_INTERCEPT|Intercept -OutputRaster|TARGET_QUALITY|Quality \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GeographicallyWeightedRegression(PointsGrid).txt b/python/plugins/processing/algs/saga/description/2.2.2/GeographicallyWeightedRegression(PointsGrid).txt deleted file mode 100644 index 77d54b117626..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GeographicallyWeightedRegression(PointsGrid).txt +++ /dev/null @@ -1,20 +0,0 @@ -GWR for Single Predictor Grid -statistics_regression -ParameterRaster|PREDICTOR|Predictor|False -ParameterVector|POINTS|Points|0|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -OutputRaster|REGRESSION|Regression -OutputRaster|QUALITY|Coefficient of Determination -OutputRaster|INTERCEPT|Intercept -OutputRaster|SLOPE|Slope -OutputVector|RESIDUALS|Residuals diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GeographicallyWeightedRegression.txt b/python/plugins/processing/algs/saga/description/2.2.2/GeographicallyWeightedRegression.txt deleted file mode 100644 index f8ac07c28aa1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GeographicallyWeightedRegression.txt +++ /dev/null @@ -1,23 +0,0 @@ -GWR for Single Predictor (Gridded Model Output) -statistics_regression -ParameterVector|POINTS|Points|0|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterTableField|PREDICTOR|Predictor|POINTS|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid -OutputRaster|TARGET_INTERCEPT|Intercept -OutputRaster|TARGET_SLOPE|Slope -OutputRaster|TARGET_QUALITY|Quality \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GeometricFigures.txt b/python/plugins/processing/algs/saga/description/2.2.2/GeometricFigures.txt deleted file mode 100644 index 09a288dc72c0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GeometricFigures.txt +++ /dev/null @@ -1,7 +0,0 @@ -Geometric Figures -grid_calculus -ParameterNumber|CELL_COUNT|Cell Count|None|None|0 -ParameterNumber|CELL_SIZE|Cell Size|None|None|0 -ParameterSelection|FIGURE|Figure|[0] Cone (up);[1] Cone (down);[2] Plane -ParameterNumber|PLANE|Direction of Plane [Degree]|None|None|0 -OutputRaster|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GetShapesExtents.txt b/python/plugins/processing/algs/saga/description/2.2.2/GetShapesExtents.txt deleted file mode 100644 index 9ef1cc7c3ad0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GetShapesExtents.txt +++ /dev/null @@ -1,5 +0,0 @@ -Get Shapes Extents -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterSelection|OUTPUT|Get Extent for|[0] all shapes;[1] each shape;[2] each shape's part -OutputVector|EXTENTS|Extents diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GlobalMoransIforGrids.txt b/python/plugins/processing/algs/saga/description/2.2.2/GlobalMoransIforGrids.txt deleted file mode 100644 index e5de7f60a3af..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GlobalMoransIforGrids.txt +++ /dev/null @@ -1,5 +0,0 @@ -Global Moran's I for Grids -statistics_grid -ParameterRaster|GRID|Grid|False -ParameterSelection|CONTIGUITY|Case of contiguity|[0] Rook;[1] Queen -OutputTable|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GradientVectorfromCartesiantoPolarCoordinates.txt b/python/plugins/processing/algs/saga/description/2.2.2/GradientVectorfromCartesiantoPolarCoordinates.txt deleted file mode 100644 index 8a725be39c07..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GradientVectorfromCartesiantoPolarCoordinates.txt +++ /dev/null @@ -1,10 +0,0 @@ -Gradient Vector from Cartesian to Polar Coordinates -grid_calculus -ParameterRaster|DX|X Component|False -ParameterRaster|DY|Y Component|False -ParameterSelection|UNITS|Polar Angle Units|[0] radians;[1] degree -ParameterSelection|SYSTEM|Polar Coordinate System|[0] mathematical;[1] geographical;[2] user defined -ParameterNumber|SYSTEM_ZERO|User defined Zero Direction|None|None|0.0 -ParameterSelection|SYSTEM_ORIENT|User defined Orientation|[0] clockwise;[1] counterclockwise -OutputRaster|DIR|Direction -OutputRaster|LEN|Length diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GradientVectorfromPolartoCartesianCoordinates.txt b/python/plugins/processing/algs/saga/description/2.2.2/GradientVectorfromPolartoCartesianCoordinates.txt deleted file mode 100644 index 382aa9e6046b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GradientVectorfromPolartoCartesianCoordinates.txt +++ /dev/null @@ -1,10 +0,0 @@ -Gradient Vector from Polar to Cartesian Coordinates -grid_calculus -ParameterRaster|DIR|Direction|False -ParameterRaster|LEN|Length|False -ParameterSelection|UNITS|Polar Angle Units|[0] radians;[1] degree -ParameterSelection|SYSTEM|Polar Coordinate System|[0] mathematical;[1] geographical;[2] user defined -ParameterNumber|SYSTEM_ZERO|User defined Zero Direction|None|None|0.0 -ParameterSelection|SYSTEM_ORIENT|User defined Orientation|[0] clockwise;[1] counterclockwise -OutputRaster|DX|X Component -OutputRaster|DY|Y Component diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GradientVectorsfromDirectionalComponents.txt b/python/plugins/processing/algs/saga/description/2.2.2/GradientVectorsfromDirectionalComponents.txt deleted file mode 100644 index 1a1abf488830..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GradientVectorsfromDirectionalComponents.txt +++ /dev/null @@ -1,10 +0,0 @@ -Gradient Vectors from Directional Components -shapes_grid -ParameterRaster|X|X Component|False -ParameterRaster|Y|Y Component|False -ParameterNumber|STEP|Step|None|None|1 -ParameterNumber|SIZE_MIN|Size Range Min|None|None|25.0 -ParameterNumber|SIZE_MAX|Size Range Max|None|None|100.0 -ParameterSelection|AGGR|Aggregation|[0] nearest neighbour;[1] mean value -ParameterSelection|STYLE|Style|[0] simple line;[1] arrow;[2] arrow (centered to cell) -OutputVector|VECTORS|Gradient Vectors diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GradientVectorsfromDirectionandLength.txt b/python/plugins/processing/algs/saga/description/2.2.2/GradientVectorsfromDirectionandLength.txt deleted file mode 100644 index 628665a5522b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GradientVectorsfromDirectionandLength.txt +++ /dev/null @@ -1,10 +0,0 @@ -Gradient Vectors from Direction and Length -shapes_grid -ParameterRaster|DIR|Direction|False -ParameterRaster|LEN|Length|False -ParameterNumber|STEP|Step|None|None|1 -ParameterNumber|SIZE_MIN|Size Range Min|None|None|25.0 -ParameterNumber|SIZE_MAX|Size Range Max|None|None|100.0 -ParameterSelection|AGGR|Aggregation|[0] nearest neighbour;[1] mean value -ParameterSelection|STYLE|Style|[0] simple line;[1] arrow;[2] arrow (centered to cell) -OutputVector|VECTORS|Gradient Vectors diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GradientVectorsfromSurface.txt b/python/plugins/processing/algs/saga/description/2.2.2/GradientVectorsfromSurface.txt deleted file mode 100644 index 582bf10c03d5..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GradientVectorsfromSurface.txt +++ /dev/null @@ -1,9 +0,0 @@ -Gradient Vectors from Surface -shapes_grid -ParameterRaster|SURFACE|Surface|False -ParameterNumber|STEP|Step|None|None|1 -ParameterNumber|SIZE_MIN|Size Range Min|None|None|25.0 -ParameterNumber|SIZE_MAX|Size Range Max|None|None|100.0 -ParameterSelection|AGGR|Aggregation|[0] nearest neighbour;[1] mean value -ParameterSelection|STYLE|Style|[0] simple line;[1] arrow;[2] arrow (centered to cell) -OutputVector|VECTORS|Gradient Vectors diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GridBuffer.txt b/python/plugins/processing/algs/saga/description/2.2.2/GridBuffer.txt deleted file mode 100644 index da961e9d8736..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GridBuffer.txt +++ /dev/null @@ -1,6 +0,0 @@ -Grid Buffer -grid_tools -ParameterRaster|FEATURES|Features Grid|False -ParameterNumber|DIST|Distance|None|None|1000 -ParameterSelection|BUFFERTYPE|Buffer Distance|[0] Fixed;[1] Cell value -OutputRaster|BUFFER|Buffer Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GridCalculator.txt b/python/plugins/processing/algs/saga/description/2.2.2/GridCalculator.txt deleted file mode 100644 index e8499488134f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GridCalculator.txt +++ /dev/null @@ -1,9 +0,0 @@ -Raster calculator|Grid Calculator -grid_calculus -AllowUnmatching -ParameterRaster|GRIDS|Main input layer|False -ParameterMultipleInput|XGRIDS|Additional layers|3|True -ParameterString|FORMULA|Formula| -ParameterBoolean|USE_NODATA|Use NoData|False -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 -OutputRaster|RESULT|Calculated diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GridCellIndex.txt b/python/plugins/processing/algs/saga/description/2.2.2/GridCellIndex.txt deleted file mode 100644 index 0b8e3ee81ca4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GridCellIndex.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Cell Index -grid_tools -ParameterRaster|GRID|Input Grid|False -ParameterSelection|ORDER|Index|[0] ascending;[1] descending|0 -OutputRaster|INDEX|Sorted Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GridDifference.txt b/python/plugins/processing/algs/saga/description/2.2.2/GridDifference.txt deleted file mode 100644 index c2fa03dbf7ed..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GridDifference.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Difference -grid_calculus -ParameterRaster|A|A|False -ParameterRaster|B|B|False -OutputRaster|C|Difference (A - B) diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GridDivision.txt b/python/plugins/processing/algs/saga/description/2.2.2/GridDivision.txt deleted file mode 100644 index 718d0109fe4a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GridDivision.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Division -grid_calculus -ParameterRaster|A|Dividend|False -ParameterRaster|B|Divisor|False -OutputRaster|C|Quotient diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GridMasking.txt b/python/plugins/processing/algs/saga/description/2.2.2/GridMasking.txt deleted file mode 100644 index 93233f1d1a19..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GridMasking.txt +++ /dev/null @@ -1,6 +0,0 @@ -Grid Masking -grid_tools -ParameterRaster|GRID|Grid|False -ParameterRaster|MASK|Mask|False -OutputRaster|MASKED|Masked Grid -AllowUnmatching \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GridNormalisation.txt b/python/plugins/processing/algs/saga/description/2.2.2/GridNormalisation.txt deleted file mode 100644 index b16dcabcc8cc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GridNormalisation.txt +++ /dev/null @@ -1,6 +0,0 @@ -Grid Normalisation -grid_calculus -ParameterRaster|INPUT|Grid|False -ParameterNumber|RANGE_MIN|Target Range (min)|None|None|0 -ParameterNumber|RANGE_MAX|Target Range (max)|None|None|1 -OutputRaster|OUTPUT|Normalised Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GridOrientation.txt b/python/plugins/processing/algs/saga/description/2.2.2/GridOrientation.txt deleted file mode 100644 index 2eb0de16a857..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GridOrientation.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Orientation -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterSelection|METHOD|Method|[0] Copy;[1] Flip;[2] Mirror;[3] Invert -OutputRaster|RESULT|Changed Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GridProximityBuffer.txt b/python/plugins/processing/algs/saga/description/2.2.2/GridProximityBuffer.txt deleted file mode 100644 index be5df903a0be..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GridProximityBuffer.txt +++ /dev/null @@ -1,8 +0,0 @@ -Grid Proximity Buffer -grid_tools -ParameterRaster|SOURCE|Source Grid|False -ParameterNumber|DIST|Buffer distance|None|None|500.0 -ParameterNumber|IVAL|Equidistance|None|None|100.0 -OutputRaster|DISTANCE|Distance Grid -OutputRaster|ALLOC|Allocation Grid -OutputRaster|BUFFER|Buffer Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GridSkeletonization.txt b/python/plugins/processing/algs/saga/description/2.2.2/GridSkeletonization.txt deleted file mode 100644 index eacd23ff04c4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GridSkeletonization.txt +++ /dev/null @@ -1,9 +0,0 @@ -Grid Skeletonization -imagery_segmentation -ParameterRaster|INPUT|Grid|False -ParameterSelection|METHOD|Method|[0] Standard;[1] Hilditch's Algorithm;[2] Channel Skeleton -ParameterSelection|INIT_METHOD|Initialisation|[0] Less than;[1] Greater than -ParameterNumber|INIT_THRESHOLD|Threshold (Init.)|None|None|0.0 -ParameterNumber|CONVERGENCE|Convergence|None|None|3.0 -OutputRaster|RESULT|Skeleton -OutputVector|VECTOR|Skeleton diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GridStandardisation.txt b/python/plugins/processing/algs/saga/description/2.2.2/GridStandardisation.txt deleted file mode 100644 index 743f2e0aabf2..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GridStandardisation.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Standardisation -grid_calculus -ParameterRaster|INPUT|Grid|False -ParameterNumber|STRETCH|Stretch Factor|0.0|None|1.0 -OutputRaster|OUTPUT|Standardised Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GridStatisticsforPolygons.txt b/python/plugins/processing/algs/saga/description/2.2.2/GridStatisticsforPolygons.txt deleted file mode 100644 index 4c7415200854..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GridStatisticsforPolygons.txt +++ /dev/null @@ -1,16 +0,0 @@ -Grid Statistics for Polygons -shapes_grid -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterSelection|METHOD|Method|[0] Standard;[1] Shape wise, supports overlapping polygons|1 -ParameterSelection|NAMING|Grid Naming|[0] Grid number;[1] Grid name|1 -ParameterBoolean|COUNT|Number of Cells|True -ParameterBoolean|MIN|Minimum|True -ParameterBoolean|MAX|Maximum|True -ParameterBoolean|RANGE|Range|True -ParameterBoolean|SUM|Sum|True -ParameterBoolean|MEAN|Mean|True -ParameterBoolean|VAR|Variance|True -ParameterBoolean|STDDEV|Standard Deviation|True -ParameterNumber|QUANTILE|Quantiles|None|None|0 -OutputVector|RESULT|Statistics diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GridValuestoPoints(randomly).txt b/python/plugins/processing/algs/saga/description/2.2.2/GridValuestoPoints(randomly).txt deleted file mode 100644 index 1f04323c6a34..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GridValuestoPoints(randomly).txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Values to Points (randomly) -shapes_grid -ParameterRaster|GRID|Grid|False -ParameterNumber|FREQ|Frequency|None|None|100 -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GridValuestoPoints.txt b/python/plugins/processing/algs/saga/description/2.2.2/GridValuestoPoints.txt deleted file mode 100644 index 0e33a303675b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GridValuestoPoints.txt +++ /dev/null @@ -1,7 +0,0 @@ -Grid Values to Points -shapes_grid -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterVector|POLYGONS|Polygons|-1|True -ParameterBoolean|NODATA |Exclude NoData Cells|True -ParameterSelection|TYPE|Type|[0] nodes;[1] cells -OutputVector|SHAPES|Shapes diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GridVolume.txt b/python/plugins/processing/algs/saga/description/2.2.2/GridVolume.txt deleted file mode 100644 index f20c27cc53d0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GridVolume.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Volume -grid_calculus -ParameterRaster|GRID|Grid|False -ParameterSelection|METHOD|Method|[0] Count Only Above Base Level;[1] Count Only Below Base Level;[2] Subtract Volumes Below Base Level;[3] Add Volumes Below Base Level -ParameterNumber|LEVEL|Base Level|None|None|0.0 diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GridsProduct.txt b/python/plugins/processing/algs/saga/description/2.2.2/GridsProduct.txt deleted file mode 100644 index 59d864f4fc9b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GridsProduct.txt +++ /dev/null @@ -1,4 +0,0 @@ -Grids Product -grid_calculus -ParameterMultipleInput|GRIDS|Grids|3|False -OutputRaster|RESULT|Product diff --git a/python/plugins/processing/algs/saga/description/2.2.2/GridsSum.txt b/python/plugins/processing/algs/saga/description/2.2.2/GridsSum.txt deleted file mode 100644 index 60b0beebd9f3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/GridsSum.txt +++ /dev/null @@ -1,4 +0,0 @@ -Grids Sum -grid_calculus -ParameterMultipleInput|GRIDS|Grids|3|False -OutputRaster|RESULT|Sum diff --git a/python/plugins/processing/algs/saga/description/2.2.2/HistogramSurface.txt b/python/plugins/processing/algs/saga/description/2.2.2/HistogramSurface.txt deleted file mode 100644 index bde5571c5d18..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/HistogramSurface.txt +++ /dev/null @@ -1,5 +0,0 @@ -Histogram Surface -grid_visualisation -ParameterRaster|GRID|Grid|False -ParameterSelection|METHOD|Method|[0] rows;[1] columns;[2] circle -OutputRaster|HIST|Histogram diff --git a/python/plugins/processing/algs/saga/description/2.2.2/Hypsometry.txt b/python/plugins/processing/algs/saga/description/2.2.2/Hypsometry.txt deleted file mode 100644 index 2ca4a17709bb..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/Hypsometry.txt +++ /dev/null @@ -1,10 +0,0 @@ -Hypsometry -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterNumber|COUNT|Number of Classes|None|None|100.0 -ParameterSelection|SORTING|Sort|[0] up;[1] down -ParameterSelection|METHOD|Classification Constant|[0] height;[1] area -ParameterBoolean|BZRANGE |Use Z-Range|True -ParameterNumber|ZRANGE_MIN|Z-Range Min|None|None|0.0 -ParameterNumber|ZRANGE_MAX|Z-Range Max|None|None|1000.0 -OutputTable|TABLE|Hypsometry diff --git a/python/plugins/processing/algs/saga/description/2.2.2/InverseDistanceWeighted.txt b/python/plugins/processing/algs/saga/description/2.2.2/InverseDistanceWeighted.txt deleted file mode 100644 index 11b2d2a9ca63..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/InverseDistanceWeighted.txt +++ /dev/null @@ -1,22 +0,0 @@ -Inverse Distance Weighted -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -ParameterSelection|DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting scheme -ParameterNumber|DW_IDW_POWER|Inverse Distance Power|0.0|None|2 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|False -ParameterNumber|DW_BANDWIDTH|Exponential and Gaussian Weighting Bandwidth|0.0|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global)|1 -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100.0 -ParameterSelection|SEARCH_POINTS_ALL|Search Range|[0] maximum number of nearest points;[1] all points whitin search distance|0 -ParameterNumber|SEARCH_POINTS_MIN|Minimum|-1|None|-1 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|20|1 -ParameterSelection|SEARCH_DIRECTION|Search Mode|[0] all directions;[1] quadrants -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points -ParameterNumber|SEARCH_POINTS_MAX|Maximum Number of Points|None|None|10 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_DEFINITION|Target Grid System|[0] user defined;[1] grid or grid system -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -ParameterRaster|TARGET_TEMPLATE|Target System|True -OutputRaster|TARGET_OUT_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/InvertDataNo-Data.txt b/python/plugins/processing/algs/saga/description/2.2.2/InvertDataNo-Data.txt deleted file mode 100644 index 79a626fa9482..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/InvertDataNo-Data.txt +++ /dev/null @@ -1,4 +0,0 @@ -Invert Data/No-Data -grid_tools -ParameterRaster|INPUT|Grid|False -OutputRaster|OUTPUT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.2/KernelDensityEstimation.txt b/python/plugins/processing/algs/saga/description/2.2.2/KernelDensityEstimation.txt deleted file mode 100644 index ec9119509d38..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/KernelDensityEstimation.txt +++ /dev/null @@ -1,11 +0,0 @@ -Kernel Density Estimation -grid_gridding -ParameterVector|POINTS|Points|0|False -ParameterTableField|POPULATION|Weight|POINTS|-1|False -ParameterNumber|RADIUS|Radius|None|None|10 -ParameterSelection|KERNEL|Kernel|[0] quartic kernel;[1] gaussian kernel -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Kernel diff --git a/python/plugins/processing/algs/saga/description/2.2.2/LSFactor.txt b/python/plugins/processing/algs/saga/description/2.2.2/LSFactor.txt deleted file mode 100644 index 6522dc4c91c8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/LSFactor.txt +++ /dev/null @@ -1,9 +0,0 @@ -LS Factor -ta_hydrology -ParameterRaster|SLOPE|Slope|False -ParameterRaster|AREA|Catchment Area|False -ParameterSelection|CONV|Area to Length Conversion|[0] no conversion (areas already given as specific catchment area);[1] 1 / cell size (specific catchment area);[2] square root (catchment length) -ParameterSelection|METHOD|Method (LS)|[0] Moore et al. 1991;[1] Desmet & Govers 1996;[2] Boehner & Selige 2006 -ParameterNumber|EROSIVITY|Rill/Interrill Erosivity|None|None|0.0 -ParameterSelection|STABILITY|Stability|[0] stable;[1] instable (thawing) -OutputRaster|LS|LS Factor diff --git a/python/plugins/processing/algs/saga/description/2.2.2/LakeFlood.txt b/python/plugins/processing/algs/saga/description/2.2.2/LakeFlood.txt deleted file mode 100644 index 0328fc6ec474..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/LakeFlood.txt +++ /dev/null @@ -1,7 +0,0 @@ -Lake Flood -ta_hydrology -ParameterRaster|ELEV|DEM|False -ParameterRaster|SEEDS|Seeds|False -ParameterBoolean|LEVEL |Absolute Water Levels|True -OutputRaster|OUTDEPTH|Lake -OutputRaster|OUTLEVEL|Surface diff --git a/python/plugins/processing/algs/saga/description/2.2.2/LandSurfaceTemperature.txt b/python/plugins/processing/algs/saga/description/2.2.2/LandSurfaceTemperature.txt deleted file mode 100644 index 798338997f46..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/LandSurfaceTemperature.txt +++ /dev/null @@ -1,10 +0,0 @@ -Land Surface Temperature -ta_morphometry -ParameterRaster|DEM|Elevation [m]|False -ParameterRaster|SWR|Short Wave Radiation [kW/m2]|False -ParameterRaster|LAI|Leaf Area Index|False -ParameterNumber|Z_REFERENCE|Elevation at Reference Station [m]|None|None|0.0 -ParameterNumber|T_REFERENCE|Temperature at Reference Station [Deg.Celsius]|None|None|0.0 -ParameterNumber|T_GRADIENT|Temperature Gradient [Deg.Celsius/km]|None|None|6.5 -ParameterNumber|C_FACTOR|C Factor|None|None|1.0 -OutputRaster|LST|Land Surface Temperature [Deg.Celsius] diff --git a/python/plugins/processing/algs/saga/description/2.2.2/LaplacianFilter.txt b/python/plugins/processing/algs/saga/description/2.2.2/LaplacianFilter.txt deleted file mode 100644 index e828148a738f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/LaplacianFilter.txt +++ /dev/null @@ -1,8 +0,0 @@ -Laplacian Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|METHOD|Method|[0] standard kernel 1;[1] standard kernel 2;[2] Standard kernel 3;[3] user defined kernel -ParameterNumber|SIGMA|Standard Deviation (Percent of Radius)|None|None|0 -ParameterNumber|RADIUS|Radius|None|None|1 -ParameterSelection|MODE|Search Mode|[0] square;[1] circle -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/Layerofextremevalue.txt b/python/plugins/processing/algs/saga/description/2.2.2/Layerofextremevalue.txt deleted file mode 100644 index 15c6ed213816..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/Layerofextremevalue.txt +++ /dev/null @@ -1,5 +0,0 @@ -Layer of extreme value -grid_analysis -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|CRITERIA|Method|[0] Maximum;[1] Minimum -OutputRaster|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.2/LeastCostPaths.txt b/python/plugins/processing/algs/saga/description/2.2.2/LeastCostPaths.txt deleted file mode 100644 index ecbdd4818234..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/LeastCostPaths.txt +++ /dev/null @@ -1,7 +0,0 @@ -Least Cost Paths -grid_analysis -ParameterVector|SOURCE|Source Point(s)|0|False -ParameterRaster|DEM|Accumulated cost|False -ParameterMultipleInput|VALUES|Values|3|True -OutputVector|POINTS|Profile (points) -OutputVector|LINE|Profile (lines) diff --git a/python/plugins/processing/algs/saga/description/2.2.2/Line-PolygonIntersection.txt b/python/plugins/processing/algs/saga/description/2.2.2/Line-PolygonIntersection.txt deleted file mode 100644 index 9c15f2583b07..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/Line-PolygonIntersection.txt +++ /dev/null @@ -1,6 +0,0 @@ -Line-Polygon Intersection -shapes_lines -ParameterVector|LINES|Lines|1|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterSelection|METHOD|Output|[0] one multi-line per polygon;[1] keep original line attributes -OutputVector|INTERSECT|Intersection diff --git a/python/plugins/processing/algs/saga/description/2.2.2/LineDissolve.txt b/python/plugins/processing/algs/saga/description/2.2.2/LineDissolve.txt deleted file mode 100644 index fb704cc7bb38..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/LineDissolve.txt +++ /dev/null @@ -1,8 +0,0 @@ -Line Dissolve -shapes_lines -ParameterVector|LINES|Lines|-1|False -ParameterTableField|FIELD_1|1. Attribute|LINES|-1|False -ParameterTableField|FIELD_2|2. Attribute|LINES|-1|False -ParameterTableField|FIELD_3|3. Attribute|LINES|-1|False -ParameterSelection|ALL|Dissolve...|[0] lines with same attribute value(s);[1] all lines -OutputVector|DISSOLVED|Dissolved Lines diff --git a/python/plugins/processing/algs/saga/description/2.2.2/LineProperties.txt b/python/plugins/processing/algs/saga/description/2.2.2/LineProperties.txt deleted file mode 100644 index d23d392d964f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/LineProperties.txt +++ /dev/null @@ -1,7 +0,0 @@ -Line Properties -shapes_lines -ParameterVector|LINES|Lines|1|False -ParameterBoolean|BPARTS |Number of Parts|True -ParameterBoolean|BPOINTS |Number of Vertices|True -ParameterBoolean|BLENGTH |Length|True -OutputVector|OUTPUT|Lines with Property Attributes diff --git a/python/plugins/processing/algs/saga/description/2.2.2/LineSimplification.txt b/python/plugins/processing/algs/saga/description/2.2.2/LineSimplification.txt deleted file mode 100644 index b1bb26e2b791..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/LineSimplification.txt +++ /dev/null @@ -1,5 +0,0 @@ -Line Simplification -shapes_lines -ParameterVector|LINES|Lines|1|False -ParameterNumber|TOLERANCE|Tolerance|None|None|1.0 -OutputVector|OUTPUT|Simplified Lines diff --git a/python/plugins/processing/algs/saga/description/2.2.2/LocalMinimaandMaxima.txt b/python/plugins/processing/algs/saga/description/2.2.2/LocalMinimaandMaxima.txt deleted file mode 100644 index 4b415bc9a990..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/LocalMinimaandMaxima.txt +++ /dev/null @@ -1,5 +0,0 @@ -Local Minima and Maxima -shapes_grid -ParameterRaster|GRID|Grid|False -OutputVector|MINIMA|Minima -OutputVector|MAXIMA|Maxima diff --git a/python/plugins/processing/algs/saga/description/2.2.2/MajorityFilter.txt b/python/plugins/processing/algs/saga/description/2.2.2/MajorityFilter.txt deleted file mode 100644 index 7cd6fe5291b8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/MajorityFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Majority Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Radius|1.0|None|1 -ParameterNumber|THRESHOLD|Threshold [Percent]|0.0|None|0 -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/MassBalanceIndex.txt b/python/plugins/processing/algs/saga/description/2.2.2/MassBalanceIndex.txt deleted file mode 100644 index e65fabf52d57..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/MassBalanceIndex.txt +++ /dev/null @@ -1,8 +0,0 @@ -Mass Balance Index -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterRaster|HREL|Vertical Distance to Channel Network|True -ParameterNumber|TSLOPE|T Slope|None|None|15.0 -ParameterNumber|TCURVE|T Curvature|None|None|0.01 -ParameterNumber|THREL|T Vertical Distance to Channel Network|None|None|15.0 -OutputRaster|MBI|Mass Balance Index diff --git a/python/plugins/processing/algs/saga/description/2.2.2/MergeLayers.txt b/python/plugins/processing/algs/saga/description/2.2.2/MergeLayers.txt deleted file mode 100644 index f0d5bb7955cc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/MergeLayers.txt +++ /dev/null @@ -1,6 +0,0 @@ -Merge Layers -shapes_tools -ParameterMultipleInput|INPUT|Input Layers|-1|True -ParameterBoolean|SRCINFO|Add source information|True -ParameterBoolean|MATCH|Match Fields by Name|True -OutputVector|MERGED|Merged Layer \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/MetricConversions.txt b/python/plugins/processing/algs/saga/description/2.2.2/MetricConversions.txt deleted file mode 100644 index 3501a9e33438..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/MetricConversions.txt +++ /dev/null @@ -1,5 +0,0 @@ -Metric Conversions -grid_calculus -ParameterRaster|GRID|Grid|False -ParameterSelection|CONVERSION|Conversion|[0] radians to degree;[1] degree to radians;[2] Celsius to Fahrenheit;[3] Fahrenheit to Celsius -OutputRaster|CONV|Converted Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/MinimumDistanceAnalysis.txt b/python/plugins/processing/algs/saga/description/2.2.2/MinimumDistanceAnalysis.txt deleted file mode 100644 index 200a565bc533..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/MinimumDistanceAnalysis.txt +++ /dev/null @@ -1,4 +0,0 @@ -Minimum Distance Analysis -statistics_points -ParameterVector|POINTS|Points|0|False -OutputTable|TABLE|Minimum Distance Analysis diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ModifiedQuadraticShepard.txt b/python/plugins/processing/algs/saga/description/2.2.2/ModifiedQuadraticShepard.txt deleted file mode 100644 index 3c96918860ec..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ModifiedQuadraticShepard.txt +++ /dev/null @@ -1,11 +0,0 @@ -Modified Quadratic Shepard -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterNumber|QUADRATIC_NEIGHBORS|Quadratic Neighbors|5.0|None|13 -ParameterNumber|WEIGHTING_NEIGHBORS|Weighting Neighbors|3.0|None|19 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/MorphologicalFilter.txt b/python/plugins/processing/algs/saga/description/2.2.2/MorphologicalFilter.txt deleted file mode 100644 index 28dfd3f15bd2..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/MorphologicalFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Morphological Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Radius|None|None|1 -ParameterSelection|METHOD|Method|[0] Dilation;[1] Erosion;[2] Opening;[3] Closing -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/MorphometricProtectionIndex.txt b/python/plugins/processing/algs/saga/description/2.2.2/MorphometricProtectionIndex.txt deleted file mode 100644 index 48d44432cb65..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/MorphometricProtectionIndex.txt +++ /dev/null @@ -1,5 +0,0 @@ -Morphometric Protection Index -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS|Radius|None|None|2000.0 -OutputRaster|PROTECTION|Protection Index diff --git a/python/plugins/processing/algs/saga/description/2.2.2/Mosaicking.txt b/python/plugins/processing/algs/saga/description/2.2.2/Mosaicking.txt deleted file mode 100644 index b8bb1d1f5af4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/Mosaicking.txt +++ /dev/null @@ -1,14 +0,0 @@ -Mosaick raster layers|Mosaicking -grid_tools -AllowUnmatching -ParameterMultipleInput|GRIDS|Input Grids|3|False -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|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 -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/Multi-BandVariation.txt b/python/plugins/processing/algs/saga/description/2.2.2/Multi-BandVariation.txt deleted file mode 100644 index 8dcf7d017e09..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/Multi-BandVariation.txt +++ /dev/null @@ -1,11 +0,0 @@ -Multi-Band Variation -statistics_grid -ParameterMultipleInput|BANDS|Grids|3|False -ParameterNumber|RADIUS|Radius [Cells]|None|None|1 -ParameterSelection|DISTANCE_WEIGHTING_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1.0 -OutputRaster|MEAN|Mean Distance -OutputRaster|STDDEV|Standard Deviation -OutputRaster|DIFF|Distance diff --git a/python/plugins/processing/algs/saga/description/2.2.2/MultiDirectionLeeFilter.txt b/python/plugins/processing/algs/saga/description/2.2.2/MultiDirectionLeeFilter.txt deleted file mode 100644 index a768db9522f6..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/MultiDirectionLeeFilter.txt +++ /dev/null @@ -1,10 +0,0 @@ -Multi Direction Lee Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterNumber|NOISE_ABS|Estimated Noise (absolute)|None|None|1.0 -ParameterNumber|NOISE_REL|Estimated Noise (relative)|None|None|1.0 -ParameterBoolean|WEIGHTED |Weighted|True -ParameterSelection|METHOD|Method|[0] noise variance given as absolute value;[1] noise variance given relative to mean standard deviation;[2] original calculation (Ringeler) -OutputRaster|RESULT|Filtered Grid -OutputRaster|STDDEV|Minimum Standard Deviation -OutputRaster|DIR|Direction of Minimum Standard Deviation diff --git a/python/plugins/processing/algs/saga/description/2.2.2/MultilevelB-SplineInterpolation(fromGrid).txt b/python/plugins/processing/algs/saga/description/2.2.2/MultilevelB-SplineInterpolation(fromGrid).txt deleted file mode 100644 index 9c59c92868b8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/MultilevelB-SplineInterpolation(fromGrid).txt +++ /dev/null @@ -1,13 +0,0 @@ -Multilevel B-Spline Interpolation (from Grid) -grid_spline -ParameterRaster|GRID|Grid|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterSelection|METHOD|Method|[0] without B-spline refinement;[1] with B-spline refinement -ParameterNumber|EPSILON|Threshold Error|0|None|0.0001 -ParameterNumber|LEVEL_MAX|Maximum Level|1|14|11.0 -ParameterBoolean|UPDATE|Update View|False -ParameterSelection|DATATYPE|Data Type|[0] same as input grid;[1] floating point -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/MultilevelB-SplineInterpolationforCategories.txt b/python/plugins/processing/algs/saga/description/2.2.2/MultilevelB-SplineInterpolationforCategories.txt deleted file mode 100644 index e4104cb2ba48..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/MultilevelB-SplineInterpolationforCategories.txt +++ /dev/null @@ -1,11 +0,0 @@ -Multilevel B-Spline Interpolation for Categories -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -ParameterRaster|TARGET_TEMPLATE|Target system|True -OutputRaster|TARGET_CATEGORIES|Categories -OutputRaster|TARGET_PROPABILITY|Propability \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/MultipleRegressionAnalysis(GridGrids).txt b/python/plugins/processing/algs/saga/description/2.2.2/MultipleRegressionAnalysis(GridGrids).txt deleted file mode 100644 index 32635533abf0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/MultipleRegressionAnalysis(GridGrids).txt +++ /dev/null @@ -1,15 +0,0 @@ -Multiple Regression Analysis (Grid/Grids) -statistics_regression -ParameterRaster|DEPENDENT|Dependent|False -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterBoolean|COORD_X |Include X Coordinate|True -ParameterBoolean|COORD_Y |Include Y Coordinate|True -ParameterSelection|METHOD|Method|[0] include all;[1] forward;[2] backward;[3] stepwise -ParameterNumber|P_IN|P in|None|None|5 -ParameterNumber|P_OUT|P out|None|None|5 -OutputRaster|REGRESSION|Regression -OutputRaster|RESIDUALS|Residuals -OutputTable|INFO_COEFF|Details: Coefficients -OutputTable|INFO_MODEL|Details: Model -OutputTable|INFO_STEPS|Details: Steps diff --git a/python/plugins/processing/algs/saga/description/2.2.2/MultipleRegressionAnalysis(PointsGrids).txt b/python/plugins/processing/algs/saga/description/2.2.2/MultipleRegressionAnalysis(PointsGrids).txt deleted file mode 100644 index c5dbbf03c4f8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/MultipleRegressionAnalysis(PointsGrids).txt +++ /dev/null @@ -1,16 +0,0 @@ -Multiple Regression Analysis (Points/Grids) -statistics_regression -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterVector|SHAPES|Shapes|-1|False -ParameterTableField|ATTRIBUTE|Attribute|SHAPES|-1|False -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterBoolean|COORD_X |Include X Coordinate|True -ParameterBoolean|COORD_Y |Include Y Coordinate|True -ParameterSelection|METHOD|Method|[0] include all;[1] forward;[2] backward;[3] stepwise -ParameterNumber|P_IN|P in|None|None|5 -ParameterNumber|P_OUT|P out|None|None|5 -OutputTable|INFO_COEFF|Details: Coefficients -OutputTable|INFO_MODEL|Details: Model -OutputTable|INFO_STEPS|Details: Steps -OutputVector|RESIDUALS|Residuals -OutputRaster|REGRESSION|Regression diff --git a/python/plugins/processing/algs/saga/description/2.2.2/MultiresolutionIndexofValleyBottomFlatness(MRVBF).txt b/python/plugins/processing/algs/saga/description/2.2.2/MultiresolutionIndexofValleyBottomFlatness(MRVBF).txt deleted file mode 100644 index 04d4c3ccbbdf..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/MultiresolutionIndexofValleyBottomFlatness(MRVBF).txt +++ /dev/null @@ -1,13 +0,0 @@ -Multiresolution Index of Valley Bottom Flatness (MRVBF) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|T_SLOPE|Initial Threshold for Slope|None|None|16 -ParameterNumber|T_PCTL_V|Threshold for Elevation Percentile (Lowness)|None|None|0.4 -ParameterNumber|T_PCTL_R|Threshold for Elevation Percentile (Upness)|None|None|0.35 -ParameterNumber|P_SLOPE|Shape Parameter for Slope|None|None|4.0 -ParameterNumber|P_PCTL|Shape Parameter for Elevation Percentile|None|None|3.0 -ParameterBoolean|UPDATE |Update Views|True -ParameterBoolean|CLASSIFY |Classify|True -ParameterNumber|MAX_RES|Maximum Resolution (Percentage)|None|None|100 -OutputRaster|MRVBF|MRVBF -OutputRaster|MRRTF|MRRTF diff --git a/python/plugins/processing/algs/saga/description/2.2.2/NaturalNeighbour.txt b/python/plugins/processing/algs/saga/description/2.2.2/NaturalNeighbour.txt deleted file mode 100644 index 70353b1e695a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/NaturalNeighbour.txt +++ /dev/null @@ -1,10 +0,0 @@ -Natural Neighbour -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterBoolean|SIBSON|Sibson|True -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/NearestNeighbour.txt b/python/plugins/processing/algs/saga/description/2.2.2/NearestNeighbour.txt deleted file mode 100644 index 50a99a9f3613..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/NearestNeighbour.txt +++ /dev/null @@ -1,9 +0,0 @@ -Nearest Neighbour -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/OrderedWeightedAveraging(OWA).txt b/python/plugins/processing/algs/saga/description/2.2.2/OrderedWeightedAveraging(OWA).txt deleted file mode 100644 index 19b0b85a23dc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/OrderedWeightedAveraging(OWA).txt +++ /dev/null @@ -1,5 +0,0 @@ -Ordered Weighted Averaging|Ordered Weighted Averaging (OWA) -grid_analysis -ParameterMultipleInput|GRIDS|Input Grids|3|False -ParameterFixedTable|WEIGHTS|Weights|3|Weight|False -OutputRaster|OUTPUT|Output Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/OverlandFlow-KinematicWaveD8.txt b/python/plugins/processing/algs/saga/description/2.2.2/OverlandFlow-KinematicWaveD8.txt deleted file mode 100644 index 0a287008b818..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/OverlandFlow-KinematicWaveD8.txt +++ /dev/null @@ -1,13 +0,0 @@ -Overland Flow - Kinematic Wave D8 -sim_hydrology -ParameterRaster|DEM|Elevation|False -ParameterVector|GAUGES|Gauges|-1|True -ParameterNumber|TIME_SPAN|Simulation Time [h]|None|None|24 -ParameterNumber|TIME_STEP|Simulation Time Step [h]|None|None|0.1 -ParameterNumber|ROUGHNESS|Manning's Roughness|None|None|0.03 -ParameterNumber|NEWTON_MAXITER|Max. Iterations|None|None|100 -ParameterNumber|NEWTON_EPSILON|Epsilon|None|None|0.0001 -ParameterSelection|PRECIP|Precipitation|[0] Homogenous;[1] Above Elevation;[2] Left Half -ParameterNumber|THRESHOLD|Threshold Elevation|None|None|0.0 -OutputRaster|FLOW|Runoff -OutputTable|GAUGES_FLOW|Flow at Gauges diff --git a/python/plugins/processing/algs/saga/description/2.2.2/OverlandFlowDistancetoChannelNetwork.txt b/python/plugins/processing/algs/saga/description/2.2.2/OverlandFlowDistancetoChannelNetwork.txt deleted file mode 100644 index 58f904431d25..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/OverlandFlowDistancetoChannelNetwork.txt +++ /dev/null @@ -1,8 +0,0 @@ -Overland Flow Distance to Channel Network -ta_channels -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|CHANNELS|Channel Network|False -ParameterSelection|METHOD|Flow Algorithm|[0] D8;[1] MFD -OutputRaster|DISTANCE|Overland Flow Distance -OutputRaster|DISTVERT|Vertical Overland Flow Distance -OutputRaster|DISTHORZ|Horizontal Overland Flow Distance diff --git a/python/plugins/processing/algs/saga/description/2.2.2/Patching.txt b/python/plugins/processing/algs/saga/description/2.2.2/Patching.txt deleted file mode 100644 index 6a70404010f4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/Patching.txt +++ /dev/null @@ -1,6 +0,0 @@ -Patching -grid_tools -ParameterRaster|ORIGINAL|Grid|False -ParameterRaster|ADDITIONAL|Patch Grid|False -ParameterSelection|INTERPOLATION|Interpolation Method|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -OutputRaster|COMPLETED|Completed Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/PatternAnalysis.txt b/python/plugins/processing/algs/saga/description/2.2.2/PatternAnalysis.txt deleted file mode 100644 index 5a6d4de632a2..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/PatternAnalysis.txt +++ /dev/null @@ -1,11 +0,0 @@ -Pattern Analysis -grid_analysis -ParameterRaster|INPUT|Input Grid|False -ParameterSelection|WINSIZE|Size of Analysis Window|[0] 3 X 3;[1] 5 X 5;[2] 7 X 7 -ParameterNumber|MAXNUMCLASS|Max. Number of Classes|None|None|0 -OutputRaster|RELATIVE|Relative Richness -OutputRaster|DIVERSITY|Diversity -OutputRaster|DOMINANCE|Dominance -OutputRaster|FRAGMENTATION|Fragmentation -OutputRaster|NDC|Number of Different Classes -OutputRaster|CVN|Center Versus Neighbours diff --git a/python/plugins/processing/algs/saga/description/2.2.2/PointStatisticsforPolygons.txt b/python/plugins/processing/algs/saga/description/2.2.2/PointStatisticsforPolygons.txt deleted file mode 100644 index 02e0aba55cf1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/PointStatisticsforPolygons.txt +++ /dev/null @@ -1,14 +0,0 @@ -Point Statistics for Polygons -shapes_polygons -ParameterVector|POINTS|Points|0|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|FIELDS|Attribute Table field|POINTS|-1|False -ParameterSelection|FIELD_NAME|Field Naming Choice|[0] variable type + original name;[1] original name + variable type;[2] original name;[3] variable type -ParameterBoolean|SUM |Sum|True -ParameterBoolean|AVG |Mean|True -ParameterBoolean|VAR |Variance|True -ParameterBoolean|DEV |Deviation|True -ParameterBoolean|MIN |Minimum|True -ParameterBoolean|MAX |Maximum|True -ParameterBoolean|NUM |Count|True -OutputVector|STATISTICS|Statistics diff --git a/python/plugins/processing/algs/saga/description/2.2.2/PointsFilter.txt b/python/plugins/processing/algs/saga/description/2.2.2/PointsFilter.txt deleted file mode 100644 index afb3ee99f331..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/PointsFilter.txt +++ /dev/null @@ -1,12 +0,0 @@ -Points Filter -shapes_points -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterNumber|RADIUS|Radius|None|None|1 -ParameterNumber|MINNUM|Minimum Number of Points|None|None|0 -ParameterNumber|MAXNUM|Maximum Number of Points|None|None|0 -ParameterBoolean|QUADRANTS |Quadrants|True -ParameterSelection|METHOD|Filter Criterion|[0] keep maxima (with tolerance);[1] keep minima (with tolerance);[2] remove maxima (with tolerance);[3] remove minima (with tolerance);[4] remove below percentile;[5] remove above percentile -ParameterNumber|TOLERANCE|Tolerance|None|None|0.0 -ParameterNumber|PERCENT|Percentile|None|None|50 -OutputVector|FILTER|Filtered Points diff --git a/python/plugins/processing/algs/saga/description/2.2.2/PointsThinning.txt b/python/plugins/processing/algs/saga/description/2.2.2/PointsThinning.txt deleted file mode 100644 index 00643e842d88..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/PointsThinning.txt +++ /dev/null @@ -1,6 +0,0 @@ -Points Thinning -shapes_points -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterNumber|RESOLUTION|Resolution|0.0|None|1.0 -OutputVector|THINNED|Thinned Points diff --git a/python/plugins/processing/algs/saga/description/2.2.2/PolartoCartesianCoordinates.txt b/python/plugins/processing/algs/saga/description/2.2.2/PolartoCartesianCoordinates.txt deleted file mode 100644 index 8c9b76b316b1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/PolartoCartesianCoordinates.txt +++ /dev/null @@ -1,8 +0,0 @@ -Polar to Cartesian Coordinates -shapes_tools -ParameterVector|POLAR|Polar Coordinates|-1|False -ParameterTableField|F_EXAGG|Exaggeration|POLAR|-1|False -ParameterNumber|D_EXAGG|Exaggeration Factor|None|None|1 -ParameterNumber|RADIUS|Radius|None|None|6371000.0 -ParameterBoolean|DEGREE |Degree|True -OutputVector|CARTES|Cartesian Coordinates diff --git a/python/plugins/processing/algs/saga/description/2.2.2/Polygon-LineIntersection.txt b/python/plugins/processing/algs/saga/description/2.2.2/Polygon-LineIntersection.txt deleted file mode 100644 index cb4dd7e8e530..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/Polygon-LineIntersection.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygon-Line Intersection -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterVector|LINES|Lines|1|False -OutputVector|INTERSECT|Intersection diff --git a/python/plugins/processing/algs/saga/description/2.2.2/PolygonCentroids.txt b/python/plugins/processing/algs/saga/description/2.2.2/PolygonCentroids.txt deleted file mode 100644 index 5672b7e7f33a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/PolygonCentroids.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygon Centroids -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|METHOD |Centroids for each part|True -OutputVector|CENTROIDS|Centroids diff --git a/python/plugins/processing/algs/saga/description/2.2.2/PolygonClipping.txt b/python/plugins/processing/algs/saga/description/2.2.2/PolygonClipping.txt deleted file mode 100644 index 08c4993e6d7e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/PolygonClipping.txt +++ /dev/null @@ -1,6 +0,0 @@ -Polygon Clipping -shapes_polygons -ParameterVector|CLIP|Clip features|2|False -ParameterVector|S_INPUT|Input features|-1|False -OutputVector|S_OUTPUT|Output features -Hardcoded|-MULTIPLE 0 \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/PolygonDifference.txt b/python/plugins/processing/algs/saga/description/2.2.2/PolygonDifference.txt deleted file mode 100644 index ffb19965a883..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/PolygonDifference.txt +++ /dev/null @@ -1,6 +0,0 @@ -Difference -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Difference diff --git a/python/plugins/processing/algs/saga/description/2.2.2/PolygonDissolve.txt b/python/plugins/processing/algs/saga/description/2.2.2/PolygonDissolve.txt deleted file mode 100644 index 31663861e027..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/PolygonDissolve.txt +++ /dev/null @@ -1,8 +0,0 @@ -Polygon dissolve (by attribute)|Polygon Dissolve -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|FIELD_1|1. Attribute|POLYGONS|-1|True -ParameterTableField|FIELD_2|2. Attribute|POLYGONS|-1|True -ParameterTableField|FIELD_3|3. Attribute|POLYGONS|-1|True -ParameterBoolean|BND_KEEP|Keep inner boundaries|True -OutputVector|DISSOLVED|Dissolved diff --git a/python/plugins/processing/algs/saga/description/2.2.2/PolygonDissolveAllPolygs.txt b/python/plugins/processing/algs/saga/description/2.2.2/PolygonDissolveAllPolygs.txt deleted file mode 100644 index 49133566c5d4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/PolygonDissolveAllPolygs.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygon dissolve (all polygons)|Polygon Dissolve -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|BND_KEEP|Keep inner boundaries|True -OutputVector|DISSOLVED|Dissolved diff --git a/python/plugins/processing/algs/saga/description/2.2.2/PolygonIdentity.txt b/python/plugins/processing/algs/saga/description/2.2.2/PolygonIdentity.txt deleted file mode 100644 index 6cb365fbefba..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/PolygonIdentity.txt +++ /dev/null @@ -1,6 +0,0 @@ -Identity -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Identity diff --git a/python/plugins/processing/algs/saga/description/2.2.2/PolygonIntersect.txt b/python/plugins/processing/algs/saga/description/2.2.2/PolygonIntersect.txt deleted file mode 100644 index 2a822db707c3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/PolygonIntersect.txt +++ /dev/null @@ -1,6 +0,0 @@ -Intersect -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Intersection diff --git a/python/plugins/processing/algs/saga/description/2.2.2/PolygonPartstoSeparatePolygons.txt b/python/plugins/processing/algs/saga/description/2.2.2/PolygonPartstoSeparatePolygons.txt deleted file mode 100644 index 1cab12c11a51..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/PolygonPartstoSeparatePolygons.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygon Parts to Separate Polygons -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|LAKES |Ignore Lakes|True -OutputVector|PARTS|Polygon Parts diff --git a/python/plugins/processing/algs/saga/description/2.2.2/PolygonProperties.txt b/python/plugins/processing/algs/saga/description/2.2.2/PolygonProperties.txt deleted file mode 100644 index eeb063b1e570..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/PolygonProperties.txt +++ /dev/null @@ -1,8 +0,0 @@ -Polygon Properties -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|BPARTS |Number of Parts|True -ParameterBoolean|BPOINTS |Number of Vertices|True -ParameterBoolean|BLENGTH |Perimeter|True -ParameterBoolean|BAREA |Area|True -OutputVector|OUTPUT|Polygons with Property Attributes diff --git a/python/plugins/processing/algs/saga/description/2.2.2/PolygonSelfIntersection.txt b/python/plugins/processing/algs/saga/description/2.2.2/PolygonSelfIntersection.txt deleted file mode 100644 index 14359a48701b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/PolygonSelfIntersection.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygon Self-Intersection -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|ID|Identifier|POLYGONS|-1|False -OutputVector|INTERSECT|Intersection \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/PolygonShapeIndices.txt b/python/plugins/processing/algs/saga/description/2.2.2/PolygonShapeIndices.txt deleted file mode 100644 index 468ac18c9956..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/PolygonShapeIndices.txt +++ /dev/null @@ -1,4 +0,0 @@ -Polygon Shape Indices -shapes_polygons -ParameterVector|SHAPES|Shapes|2|False -OutputVector|INDEX|Shape Index diff --git a/python/plugins/processing/algs/saga/description/2.2.2/PolygonSymmetricalDifference.txt b/python/plugins/processing/algs/saga/description/2.2.2/PolygonSymmetricalDifference.txt deleted file mode 100644 index d1e4e3dc584e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/PolygonSymmetricalDifference.txt +++ /dev/null @@ -1,6 +0,0 @@ -Symmetrical Difference -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Symmetrical Difference diff --git a/python/plugins/processing/algs/saga/description/2.2.2/PolygonUnion.txt b/python/plugins/processing/algs/saga/description/2.2.2/PolygonUnion.txt deleted file mode 100644 index 8dd3e56c6d1f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/PolygonUnion.txt +++ /dev/null @@ -1,6 +0,0 @@ -Union -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Union diff --git a/python/plugins/processing/algs/saga/description/2.2.2/PolygonUpdate.txt b/python/plugins/processing/algs/saga/description/2.2.2/PolygonUpdate.txt deleted file mode 100644 index 71914cdc8dfe..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/PolygonUpdate.txt +++ /dev/null @@ -1,6 +0,0 @@ -Update -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Updated polygons diff --git a/python/plugins/processing/algs/saga/description/2.2.2/PolygonstoEdgesandNodes.txt b/python/plugins/processing/algs/saga/description/2.2.2/PolygonstoEdgesandNodes.txt deleted file mode 100644 index e9f4628f40a8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/PolygonstoEdgesandNodes.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygons to Edges and Nodes -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -OutputVector|EDGES|Edges -OutputVector|NODES|Nodes diff --git a/python/plugins/processing/algs/saga/description/2.2.2/PolynomialRegression.txt b/python/plugins/processing/algs/saga/description/2.2.2/PolynomialRegression.txt deleted file mode 100644 index e7ccd305714b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/PolynomialRegression.txt +++ /dev/null @@ -1,14 +0,0 @@ -Polynomial Regression -statistics_regression -ParameterVector|POINTS|Points|0|False -ParameterTableField|ATTRIBUTE|Attribute|POINTS|-1|False -ParameterSelection|POLYNOM|Polynom|[0] simple planar surface;[1] bi-linear saddle;[2] quadratic surface;[3] cubic surface;[4] user defined -ParameterNumber|XORDER|Maximum X Order|1|None|4 -ParameterNumber|YORDER|Maximum Y Order|1|None|4 -ParameterNumber|TORDER|Maximum Total Order|0|None|4 -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid -OutputVector|RESIDUALS|Residuals diff --git a/python/plugins/processing/algs/saga/description/2.2.2/PrincipleComponentsAnalysis.txt b/python/plugins/processing/algs/saga/description/2.2.2/PrincipleComponentsAnalysis.txt deleted file mode 100644 index f43035a1cc7a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/PrincipleComponentsAnalysis.txt +++ /dev/null @@ -1,6 +0,0 @@ -Principle Components Analysis -table_calculus -ParameterTable|TABLE|Table|False -ParameterSelection|METHOD|Method|[0] correlation matrix;[1] variance-covariance matrix;[2] sums-of-squares-and-cross-products matrix -ParameterNumber|NFIRST|Number of Components|None|None|3 -OutputTable|PCA|Principle Components diff --git a/python/plugins/processing/algs/saga/description/2.2.2/Profilefrompoints.txt b/python/plugins/processing/algs/saga/description/2.2.2/Profilefrompoints.txt deleted file mode 100644 index 9e21d5fa3540..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/Profilefrompoints.txt +++ /dev/null @@ -1,7 +0,0 @@ -Profile from points table|Profile from points -ta_profiles -ParameterRaster|GRID|Grid|False -ParameterTable|TABLE|Input|False -ParameterTableField|X|X|TABLE|-1|False -ParameterTableField|Y|Y|TABLE|-1|False -OutputTable|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ProfilesfromLines.txt b/python/plugins/processing/algs/saga/description/2.2.2/ProfilesfromLines.txt deleted file mode 100644 index bc32a9f8b05f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ProfilesfromLines.txt +++ /dev/null @@ -1,9 +0,0 @@ -Profiles from Lines -ta_profiles -ParameterRaster|DEM|DEM|False -ParameterMultipleInput|VALUES|Values|3|True -ParameterVector|LINES|Lines|1|False -ParameterTableField|NAME|Name|LINES|-1|False -ParameterBoolean|SPLIT |Each Line as new Profile|True -OutputVector|PROFILE|Profiles -OutputVector|PROFILES|Profiles diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ProximityGrid.txt b/python/plugins/processing/algs/saga/description/2.2.2/ProximityGrid.txt deleted file mode 100644 index b78dad39d795..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ProximityGrid.txt +++ /dev/null @@ -1,6 +0,0 @@ -Proximity Grid -grid_tools -ParameterRaster|FEATURES|Features|False -OutputRaster|DISTANCE|Distance -OutputRaster|DIRECTION|Direction -OutputRaster|ALLOCATION|Allocation diff --git a/python/plugins/processing/algs/saga/description/2.2.2/QuadTreeStructuretoShapes.txt b/python/plugins/processing/algs/saga/description/2.2.2/QuadTreeStructuretoShapes.txt deleted file mode 100644 index 14d3cb722d11..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/QuadTreeStructuretoShapes.txt +++ /dev/null @@ -1,7 +0,0 @@ -QuadTree Structure to Shapes -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterTableField|ATTRIBUTE|Attribute|SHAPES|-1|False -OutputVector|POLYGONS|Polygons -OutputVector|LINES|Lines -OutputVector|POINTS|Duplicated Points diff --git a/python/plugins/processing/algs/saga/description/2.2.2/RGBComposite.txt b/python/plugins/processing/algs/saga/description/2.2.2/RGBComposite.txt deleted file mode 100644 index 271bbc60c10e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/RGBComposite.txt +++ /dev/null @@ -1,24 +0,0 @@ -RGB Composite -grid_visualisation -ParameterRaster|GRID_R|R|False -ParameterRaster|GRID_G|G|False -ParameterRaster|GRID_B|B|False -ParameterSelection|R_METHOD|Method for R value|0 - 255;Rescale to 0 - 255;User defined rescale;Percentiles;Percentage of standard deviation -ParameterSelection|G_METHOD|Method for G value|0 - 255;Rescale to 0 - 255;User defined rescale;Percentiles;Percentage of standard deviation -ParameterSelection|B_METHOD|Method for B value|0 - 255;Rescale to 0 - 255;User defined rescale;Percentiles;Percentage of standard deviation -ParameterNumber|R_RANGE_MIN|Rescale Range for RED min|0|255|0 -ParameterNumber|R_RANGE_MAX|Rescale Range for RED max|0|255|255 -ParameterNumber|R_PERCTL_MIN|Percentiles Range for RED max|1|99|1 -ParameterNumber|R_PERCTL_MAX|Percentiles Range for RED max|1|99|99 -ParameterNumber|R_PERCENT|Percentage of standard deviation for RED|0|None|150.0 -ParameterNumber|G_RANGE_MIN|Rescale Range for GREEN min|0|255|0 -ParameterNumber|G_RANGE_MAX|Rescale Range for GREEN max|0|255|255 -ParameterNumber|G_PERCTL_MIN|Percentiles Range for GREEN max|1|99|1 -ParameterNumber|G_PERCTL_MAX|Percentiles Range for GREEN max|1|99|99 -ParameterNumber|G_PERCENT|Percentage of standard deviation for GREEN|0|None|150.0 -ParameterNumber|B_RANGE_MIN|Rescale Range for BLUE min|0|255|0 -ParameterNumber|B_RANGE_MAX|Rescale Range for BLUE max|0|255|255 -ParameterNumber|B_PERCTL_MIN|Percentiles Range for BLUE max|1|99|1 -ParameterNumber|B_PERCTL_MAX|Percentiles Range for BLUE max|1|99|99 -ParameterNumber|B_PERCENT|Percentage of standard deviation for BLUE|0|None|150.0 -OutputRaster|GRID_RGB|Output RGB diff --git a/python/plugins/processing/algs/saga/description/2.2.2/RadiusofVariance(Grid).txt b/python/plugins/processing/algs/saga/description/2.2.2/RadiusofVariance(Grid).txt deleted file mode 100644 index 6e6d3edaf469..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/RadiusofVariance(Grid).txt +++ /dev/null @@ -1,7 +0,0 @@ -Radius of Variance (Grid) -statistics_grid -ParameterRaster|INPUT|Grid|False -ParameterNumber|VARIANCE|Standard Deviation|0.0|None|1.0 -ParameterNumber|RADIUS|Maximum Search Radius (cells)|0.0|None|20 -ParameterSelection|OUTPUT|Type of Output|[0] Cells;[1] Map Units -OutputRaster|RESULT|Variance Radius diff --git a/python/plugins/processing/algs/saga/description/2.2.2/RandomField.txt b/python/plugins/processing/algs/saga/description/2.2.2/RandomField.txt deleted file mode 100644 index abf32b4caddc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/RandomField.txt +++ /dev/null @@ -1,12 +0,0 @@ -Random Field -grid_calculus -Hardcoded|-DEFINITION 0 -ParameterSelection|METHOD|Method|[0] Uniform;[1] Gaussian -ParameterNumber|RANGE_MIN|Range Min|None|None|0.0 -ParameterNumber|RANGE_MAX|Range Max|None|None|1.0 -ParameterNumber|MEAN|Arithmetic Mean|None|None|0.0 -ParameterNumber|STDDEV|Standard Deviation|None|None|1.0 -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|USER_FITS|Method|[0] nodes;[1] cells -OutputRaster|OUT_GRID|Random Field diff --git a/python/plugins/processing/algs/saga/description/2.2.2/RandomTerrainGeneration.txt b/python/plugins/processing/algs/saga/description/2.2.2/RandomTerrainGeneration.txt deleted file mode 100644 index 18043bf01b5b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/RandomTerrainGeneration.txt +++ /dev/null @@ -1,9 +0,0 @@ -Random Terrain Generation -grid_calculus -ParameterNumber|RADIUS|Radius (cells)|None|None|10 -ParameterNumber|ITERATIONS|Iterations|None|None|10 -ParameterSelection|TARGET_TYPE|Target Dimensions|[0] User defined -ParameterNumber|USER_CELL_SIZE|Grid Size|0.0|None|1.0 -ParameterNumber|USER_COLS|Cols|1.0|None|100 -ParameterNumber|USER_ROWS|Rows|1.0|None|100 -OutputRaster|TARGET_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/RankFilter.txt b/python/plugins/processing/algs/saga/description/2.2.2/RankFilter.txt deleted file mode 100644 index b676b15fc287..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/RankFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Rank Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Radius|1.0|None|1 -ParameterNumber|RANK|Rank [Percent]|None|None|50 -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/RealSurfaceArea.txt b/python/plugins/processing/algs/saga/description/2.2.2/RealSurfaceArea.txt deleted file mode 100644 index 065c34e79f04..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/RealSurfaceArea.txt +++ /dev/null @@ -1,4 +0,0 @@ -Real Surface Area -ta_morphometry -ParameterRaster|DEM|Elevation|False -OutputRaster|AREA|Surface Area diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ReclassifyGridValues.txt b/python/plugins/processing/algs/saga/description/2.2.2/ReclassifyGridValues.txt deleted file mode 100644 index d76e5a594793..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ReclassifyGridValues.txt +++ /dev/null @@ -1,18 +0,0 @@ -Reclassify Grid Values -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterSelection|METHOD|Method|[0] single;[1] range;[2] simple table -ParameterNumber|OLD|old value (for single value change)|None|None|0.0 -ParameterNumber|NEW|new value (for single value change)|None|None|1.0 -ParameterSelection|SOPERATOR|operator (for single value change)|[0] =;[1] <;[2] <=;[3] >=;[4] > -ParameterNumber|MIN|minimum value (for range)|None|None|0.0 -ParameterNumber|MAX|maximum value (for range)|None|None|1.0 -ParameterNumber|RNEW|new value(for range)|None|None|2.0 -ParameterSelection|ROPERATOR|operator (for range)|[0] <=;[1] < -ParameterFixedTable|RETAB|Lookup Table|3|minimum;maximum;new|False -ParameterSelection|TOPERATOR|operator (for table)|[0] min <= value < max;[1] min <= value <= max;[2] min < value <= max;[3] min < value < max -ParameterBoolean|NODATAOPT |replace no data values|True -ParameterNumber|NODATA|new value for no data values|None|None|0.0 -ParameterBoolean|OTHEROPT |replace other values|True -ParameterNumber|OTHERS|new value for other values|None|None|0.0 -OutputRaster|RESULT|Reclassified Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/RegressionAnalysis(PointsGrid).txt b/python/plugins/processing/algs/saga/description/2.2.2/RegressionAnalysis(PointsGrid).txt deleted file mode 100644 index fd4134084d40..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/RegressionAnalysis(PointsGrid).txt +++ /dev/null @@ -1,9 +0,0 @@ -Regression analysis|Regression Analysis (Points/Grid) -statistics_regression -ParameterRaster|GRID|Grid|False -ParameterVector|SHAPES|Shapes|-1|False -ParameterTableField|ATTRIBUTE|Attribute|SHAPES|-1|False -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterSelection|METHOD|Regression Function|[0] Y = a + b * X (linear);[1] Y = a + b / X;[2] Y = a / (b - X);[3] Y = a * X^b (power);[4] Y = a e^(b * X) (exponential);[5] Y = a + b * ln(X) (logarithmic) -OutputRaster|REGRESSION|Regression -OutputVector|RESIDUAL|Residuals diff --git a/python/plugins/processing/algs/saga/description/2.2.2/RelativeHeightsandSlopePositions.txt b/python/plugins/processing/algs/saga/description/2.2.2/RelativeHeightsandSlopePositions.txt deleted file mode 100644 index ab3c30b1953e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/RelativeHeightsandSlopePositions.txt +++ /dev/null @@ -1,11 +0,0 @@ -Relative Heights and Slope Positions -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|W|w|None|None|0.5 -ParameterNumber|T|t|None|None|10.0 -ParameterNumber|E|e|None|None|2.0 -OutputRaster|HO|Slope Height -OutputRaster|HU|Valley Depth -OutputRaster|NH|Normalized Height -OutputRaster|SH|Standardized Height -OutputRaster|MS|Mid-Slope Positon diff --git a/python/plugins/processing/algs/saga/description/2.2.2/RemoveDuplicatePoints.txt b/python/plugins/processing/algs/saga/description/2.2.2/RemoveDuplicatePoints.txt deleted file mode 100644 index 5a4d4c1b54ea..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/RemoveDuplicatePoints.txt +++ /dev/null @@ -1,7 +0,0 @@ -Remove Duplicate Points -shapes_points -ParameterVector|POINTS|Points|-1|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterSelection|METHOD|Point to Keep|[0] first point;[1] last point;[2] point with minimum attribute value;[3] point with maximum attribute value -ParameterSelection|NUMERIC|Numeric Attribute Values|[0] take value from the point to be kept;[1] minimum value of all duplicates;[2] maximum value of all duplicates;[3] mean value of all duplicates -OutputVector|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.2/Representativeness(Grid).txt b/python/plugins/processing/algs/saga/description/2.2.2/Representativeness(Grid).txt deleted file mode 100644 index 35a19a47a222..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/Representativeness(Grid).txt +++ /dev/null @@ -1,6 +0,0 @@ -Representativeness|Representativeness (Grid) -statistics_grid -ParameterRaster|INPUT|Grid|False -ParameterNumber|RADIUS|Radius (Cells)|1.0|None|10 -ParameterNumber|EXPONENT|Exponent|None|None|1 -OutputRaster|RESULT|Representativeness diff --git a/python/plugins/processing/algs/saga/description/2.2.2/Resampling.txt b/python/plugins/processing/algs/saga/description/2.2.2/Resampling.txt deleted file mode 100644 index 1b336351505e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/Resampling.txt +++ /dev/null @@ -1,12 +0,0 @@ -Resampling -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterBoolean|KEEP_TYPE|Preserve Data Type|True -Hardcoded|-TARGET_DEFINITION 0 -ParameterSelection|SCALE_UP|Upscaling Method|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation;[5] Mean Value;[6] Mean Value (cell area weighted);[7] Minimum Value;[8] Maximum Value;[9] Majority -ParameterSelection|SCALE_DOWN|Downscaling Method|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -ParameterRaster|TARGET_TEMPLATE|Target system|True -OutputRaster|OUTPUT|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ResidualAnalysis(Grid).txt b/python/plugins/processing/algs/saga/description/2.2.2/ResidualAnalysis(Grid).txt deleted file mode 100644 index 5543942fe925..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ResidualAnalysis(Grid).txt +++ /dev/null @@ -1,17 +0,0 @@ -Residual analysis|Residual Analysis (Grid) -statistics_grid -ParameterRaster|GRID|Grid|False -ParameterNumber|RADIUS|Radius (Cells)|1.0|None|7 -ParameterBoolean|BCENTER|Include Center Cell|True -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1.0 -OutputRaster|MEAN|Mean Value -OutputRaster|DIFF|Difference from Mean Value -OutputRaster|STDDEV|Standard Deviation -OutputRaster|RANGE|Value Range -OutputRaster|MIN|Minimum Value -OutputRaster|MAX|Maximum Value -OutputRaster|DEVMEAN|Deviation from Mean Value -OutputRaster|PERCENT|Percentile diff --git a/python/plugins/processing/algs/saga/description/2.2.2/RunningAverage.txt b/python/plugins/processing/algs/saga/description/2.2.2/RunningAverage.txt deleted file mode 100644 index c0e23d752241..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/RunningAverage.txt +++ /dev/null @@ -1,6 +0,0 @@ -Running Average -table_calculus -ParameterTable|INPUT|Input|False -ParameterTableField|FIELD|Attribute|INPUT|-1|False -ParameterNumber|COUNT|Number of Records|0.0|None|10 -OutputTable|OUTPUT|Output diff --git a/python/plugins/processing/algs/saga/description/2.2.2/SAGAWetnessIndex.txt b/python/plugins/processing/algs/saga/description/2.2.2/SAGAWetnessIndex.txt deleted file mode 100644 index 564f34bd3efd..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/SAGAWetnessIndex.txt +++ /dev/null @@ -1,13 +0,0 @@ -SAGA Wetness Index -ta_hydrology -ParameterRaster|DEM|Elevation|False -ParameterNumber|SUCTION|Suction|0.0|None|10.0 -ParameterSelection|AREA_TYPE|Type of Area|[0] absolute catchment area;[1] square root of catchment area;[2] specific catchment area -ParameterSelection|SLOPE_TYPE|Type of Slope|[0] local slope;[1] catchment slope -ParameterNumber|SLOPE_MIN|Suction|0.0|None|0.0 -ParameterNumber|SLOPE_OFF|Suction|0.0|None|0.1 -ParameterNumber|SLOPE_WEIGHT|Suction|0.0|None|1.0 -OutputRaster|AREA|Catchment area -OutputRaster|SLOPE|Catchment slope -OutputRaster|AREA_MOD|Modified catchment area -OutputRaster|TWI|Topographic Wetness Index diff --git a/python/plugins/processing/algs/saga/description/2.2.2/SeedGeneration.txt b/python/plugins/processing/algs/saga/description/2.2.2/SeedGeneration.txt deleted file mode 100644 index be4f35778ec1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/SeedGeneration.txt +++ /dev/null @@ -1,11 +0,0 @@ -Seed Generation -imagery_segmentation -ParameterMultipleInput|GRIDS|Features|3|False -ParameterNumber|FACTOR|Bandwidth (Cells)|0.0|None|2 -ParameterSelection|TYPE_SURFACE|Type of Surface|[0] smoothed surface;[1] variance (a);[2] variance (b) -ParameterSelection|TYPE_SEEDS|Extraction of...|[0] minima;[1] maxima;[2] minima and maxima -ParameterSelection|TYPE_MERGE|Feature Aggregation|[0] additive;[1] multiplicative -ParameterBoolean|NORMALIZE |Normalized|True -OutputRaster|SURFACE|Surface -OutputRaster|SEEDS_GRID|Seeds Grid -OutputVector|SEEDS|Seeds diff --git a/python/plugins/processing/algs/saga/description/2.2.2/Separatepointsbydirection.txt b/python/plugins/processing/algs/saga/description/2.2.2/Separatepointsbydirection.txt deleted file mode 100644 index db1ec26664c6..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/Separatepointsbydirection.txt +++ /dev/null @@ -1,6 +0,0 @@ -Separate points by direction -shapes_points -ParameterVector|POINTS|Points|0|False -ParameterNumber|DIRECTIONS|Number of Directions|1.0|None|4 -ParameterNumber|TOLERANCE|Tolerance (Degree)|0.0|None|5 -OutputVector|OUTPUT|Point direction diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ShapesBuffer.txt b/python/plugins/processing/algs/saga/description/2.2.2/ShapesBuffer.txt deleted file mode 100644 index 57e0051d0fce..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ShapesBuffer.txt +++ /dev/null @@ -1,10 +0,0 @@ -Shapes Buffer (Attribute distance)|Shapes Buffer -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterTableField|DIST_FIELD|Buffer Distance|SHAPES|-1|False -ParameterNumber|DIST_SCALE|Scaling Factor for Attribute Value|None|None|1.0 -ParameterNumber|NZONES|Number of Buffer Zones|1.0|None|1.0 -ParameterNumber|DARC|Arc Vertex Distance [Degree]|0.01|45.0|5.0 -ParameterBoolean|DISSOLVE |Dissolve Buffers|True -ParameterBoolean|POLY_INNER |Inner Buffer|False -OutputVector|BUFFER|Buffer \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ShapesBufferFixed.txt b/python/plugins/processing/algs/saga/description/2.2.2/ShapesBufferFixed.txt deleted file mode 100644 index c8c3878f6374..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ShapesBufferFixed.txt +++ /dev/null @@ -1,9 +0,0 @@ -Shapes Buffer (Fixed distance)|Shapes Buffer -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterNumber|DIST_FIELD_DEFAULT|Buffer distance|0.0|None|100.0 -ParameterNumber|NZONES|Number of Buffer Zones|1.0|None|1.0 -ParameterNumber|DARC|Arc Vertex Distance [Degree]|0.01|45.0|5.0 -ParameterBoolean|DISSOLVE |Dissolve Buffers|True -ParameterBoolean|POLY_INNER |Inner Buffer|False -OutputVector|BUFFER|Buffer \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ShapestoGrid.txt b/python/plugins/processing/algs/saga/description/2.2.2/ShapestoGrid.txt deleted file mode 100644 index 7c8db2b9166c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ShapestoGrid.txt +++ /dev/null @@ -1,14 +0,0 @@ -Shapes to Grid -grid_gridding -Hardcoded|-TARGET_DEFINITION 0 -ParameterVector|INPUT|Shapes|-1|False -ParameterTableField|FIELD|Attribute|INPUT|-1|False -ParameterSelection|OUTPUT|Output Values|[0] data / no-data;[1] index number;[2] attribute|2 -ParameterSelection|MULTIPLE|Method for Multiple Values|[0] first;[1] last;[2] minimum;[3] maximum;[4] mean|4 -ParameterSelection|LINE_TYPE|Method for Lines|[0] thin;[1] thick -ParameterSelection|POLY_TYPE|Method for Lines|[0] node;[1] cell -ParameterSelection|GRID_TYPE|Preferred Target Grid Type|[0] Integer (1 byte);[1] Integer (2 byte);[2] Integer (4 byte);[3] Floating Point (4 byte);[4] Floating Point (8 byte)|3 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|GRID|Rasterized diff --git a/python/plugins/processing/algs/saga/description/2.2.2/SharedPolygonEdges.txt b/python/plugins/processing/algs/saga/description/2.2.2/SharedPolygonEdges.txt deleted file mode 100644 index c21fb215f7de..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/SharedPolygonEdges.txt +++ /dev/null @@ -1,8 +0,0 @@ -Shared Polygon Edges -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|ATTRIBUTE|Attribute|POLYGONS|-1|False -ParameterNumber|EPSILON|Tolerance|0|None|0.000 -ParameterBoolean|VERTICES|Check vertices|False -ParameterBoolean|DOUBLE|Double edges|False -OutputVector|EDGES|Edges \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ShrinkAndExpand.txt b/python/plugins/processing/algs/saga/description/2.2.2/ShrinkAndExpand.txt deleted file mode 100644 index 89675454d4ea..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ShrinkAndExpand.txt +++ /dev/null @@ -1,8 +0,0 @@ -Shrink and Expand -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterSelection|OPERATION|Operation|[0] Shrink;[1] Expand;[2] shrink and expand;[3] expand and shrink|3 -ParameterSelection|CIRCLE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Radius|1|None|1 -ParameterSelection|EXPAND|Method|[0] min;[1] max;[2] mean;[3] majority|3 -OutputRaster|RESULT|Result Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/SimpleFilter.txt b/python/plugins/processing/algs/saga/description/2.2.2/SimpleFilter.txt deleted file mode 100644 index 580d42ae9f3d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/SimpleFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Simple Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterSelection|METHOD|Filter|[0] Smooth;[1] Sharpen;[2] Edge -ParameterNumber|RADIUS|Radius|None|None|2 -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/SimpleRegionGrowing.txt b/python/plugins/processing/algs/saga/description/2.2.2/SimpleRegionGrowing.txt deleted file mode 100644 index 9fd3d0adb4fb..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/SimpleRegionGrowing.txt +++ /dev/null @@ -1,14 +0,0 @@ -Simple Region Growing -imagery_segmentation -ParameterRaster|SEEDS|Seeds|False -ParameterMultipleInput|FEATURES|Features|3|False -ParameterSelection|METHOD|Method|[0] feature space and position;[1] feature space -ParameterSelection|NEIGHBOUR|Neighbourhood|[0] 4 (von Neumann);[1] 8 (Moore) -ParameterNumber|SIG_1|Variance in Feature Space|None|None|1.0 -ParameterNumber|SIG_2|Variance in Position Space|None|None|1.0 -ParameterNumber|THRESHOLD|Threshold - Similarity|None|None|0.0 -ParameterBoolean|REFRESH |Refresh|True -ParameterNumber|LEAFSIZE|Leaf Size (for Speed Optimisation)|None|None|256 -OutputRaster|SEGMENTS|Segments -OutputRaster|SIMILARITY|Similarity -OutputTable|TABLE|Seeds diff --git a/python/plugins/processing/algs/saga/description/2.2.2/Simulation.txt b/python/plugins/processing/algs/saga/description/2.2.2/Simulation.txt deleted file mode 100644 index 61e9234afa6d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/Simulation.txt +++ /dev/null @@ -1,16 +0,0 @@ -Simulation -sim_fire_spreading -ParameterRaster|DEM|DEM|False -ParameterRaster|FUEL|Fuel Model|False -ParameterRaster|WINDSPD|Wind Speed|False -ParameterRaster|WINDDIR|Wind Direction|False -ParameterRaster|M1H|Dead Fuel Moisture 1H|False -ParameterRaster|M10H|Dead Fuel Moisture 10H|False -ParameterRaster|M100H|Dead Fuel Moisture 100H|False -ParameterRaster|MHERB|Herbaceous Fuel Moisture|False -ParameterRaster|MWOOD|Wood Fuel Moisture|False -ParameterRaster|IGNITION|Ignition Points|False -ParameterBoolean|UPDATEVIEW |Update View|True -OutputRaster|TIME|Time -OutputRaster|FLAME|Flame Length -OutputRaster|INTENSITY|Intensity diff --git a/python/plugins/processing/algs/saga/description/2.2.2/SinkDrainageRouteDetection.txt b/python/plugins/processing/algs/saga/description/2.2.2/SinkDrainageRouteDetection.txt deleted file mode 100644 index c9fc911ade9c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/SinkDrainageRouteDetection.txt +++ /dev/null @@ -1,6 +0,0 @@ -Sink Drainage Route Detection -ta_preprocessor -ParameterRaster|ELEVATION|Elevation|False -ParameterBoolean|THRESHOLD |Threshold|True -ParameterNumber|THRSHEIGHT|Threshold Height|None|None|100.0 -OutputRaster|SINKROUTE|Sink Route diff --git a/python/plugins/processing/algs/saga/description/2.2.2/SinkRemoval.txt b/python/plugins/processing/algs/saga/description/2.2.2/SinkRemoval.txt deleted file mode 100644 index 16ccd4d7468f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/SinkRemoval.txt +++ /dev/null @@ -1,8 +0,0 @@ -Sink Removal -ta_preprocessor -ParameterRaster|DEM|DEM|False -ParameterRaster|SINKROUTE|Sink Route|True -ParameterSelection|METHOD|Method|[0] Deepen Drainage Routes;[1] Fill Sinks -ParameterBoolean|THRESHOLD |Threshold|True -ParameterNumber|THRSHEIGHT|Threshold Height|None|None|100.0 -OutputRaster|DEM_PREPROC|Preprocessed DEM diff --git a/python/plugins/processing/algs/saga/description/2.2.2/SkyViewFactor.txt b/python/plugins/processing/algs/saga/description/2.2.2/SkyViewFactor.txt deleted file mode 100644 index 2114c288ebbc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/SkyViewFactor.txt +++ /dev/null @@ -1,12 +0,0 @@ -Sky View Factor -ta_lighting -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS|Maximum Search Radius|0.0|None|10000 -ParameterSelection|METHOD|Method|[0] multi scale;[1] sectors -ParameterNumber|DLEVEL|Multi Scale Factor|1.25|None|3.00 -ParameterNumber|NDIRS|Number of Sectors|3|None|8 -OutputRaster|VISIBLE|Visible Sky -OutputRaster|SVF|Sky View Factor -OutputRaster|SIMPLE|Sky View Factor (Simplified) -OutputRaster|TERRAIN|Terrain View Factor -OutputRaster|DISTANCE|Terrain View Factor diff --git a/python/plugins/processing/algs/saga/description/2.2.2/Slope,Aspect,Curvature.txt b/python/plugins/processing/algs/saga/description/2.2.2/Slope,Aspect,Curvature.txt deleted file mode 100644 index e9d707c6d0bc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/Slope,Aspect,Curvature.txt +++ /dev/null @@ -1,18 +0,0 @@ -Slope, Aspect, Curvature -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Method|[0] Maximum Slope (Travis et al. 1975);[1] Maximum Triangle Slope (Tarboton 1997);[2] Least Squares Fitted Plane (Horn 1981, Costa-Cabral & Burgess 1996);[3] 6 parameter 2nd order polynom (Evans 1979);[4] 6 parameter 2nd order polynom (Heerdegen & Beran 1982);[5] 6 parameter 2nd order polynom (Bauer, Rohdenburg, Bork 1985);[6] 9 parameter 2nd order polynom (Zevenbergen & Thorne 1987);[7]10 parameter 3rd order polynom (Haralick 1983)|6 -ParameterSelection|UNIT_SLOPE|Slope Units|[0] radians;[1] degree;[2] percent|1 -ParameterSelection|UNIT_ASPECT|Aspect Units|[0] radians;[1] degree|1 -OutputRaster|SLOPE|Slope -OutputRaster|ASPECT|Aspect -OutputRaster|C_GENE|General Curvature -OutputRaster|C_PLAN|Plan Curvature -OutputRaster|C_PROF|Profile Curvature -OutputRaster|C_TANG|Tangential Curvature -OutputRaster|C_LONG|Longitudinal Curvature -OutputRaster|C_CROS|Cross-Sectional Curvature -OutputRaster|C_MINI|Minimal Curvature -OutputRaster|C_MAXI|Maximal Curvature -OutputRaster|C_TOTA|Total Curvature -OutputRaster|C_ROTO|Flow-Line Curvature diff --git a/python/plugins/processing/algs/saga/description/2.2.2/SlopeLength.txt b/python/plugins/processing/algs/saga/description/2.2.2/SlopeLength.txt deleted file mode 100644 index f0e8d3384acc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/SlopeLength.txt +++ /dev/null @@ -1,4 +0,0 @@ -Slope Length -ta_hydrology -ParameterRaster|DEM|Elevation|False -OutputRaster|LENGTH|Slope Length diff --git a/python/plugins/processing/algs/saga/description/2.2.2/SoilTextureClassification.txt b/python/plugins/processing/algs/saga/description/2.2.2/SoilTextureClassification.txt deleted file mode 100644 index 9752948d7c3d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/SoilTextureClassification.txt +++ /dev/null @@ -1,7 +0,0 @@ -Soil Texture Classification -grid_analysis -ParameterRaster|SAND|Sand|True -ParameterRaster|SILT|Silt|True -ParameterRaster|CLAY|Clay|True -OutputRaster|TEXTURE|Soil Texture -OutputRaster|SUM|Sum diff --git a/python/plugins/processing/algs/saga/description/2.2.2/SpatialPointPatternAnalysis.txt b/python/plugins/processing/algs/saga/description/2.2.2/SpatialPointPatternAnalysis.txt deleted file mode 100644 index 4a90797d8d5b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/SpatialPointPatternAnalysis.txt +++ /dev/null @@ -1,7 +0,0 @@ -Spatial Point Pattern Analysis -statistics_points -ParameterVector|POINTS|Points|0|False -ParameterNumber|STEP|Vertex Distance [Degree]|None|None|5 -OutputVector|CENTRE|Mean Centre -OutputVector|STDDIST|Standard Distance -OutputVector|BBOX|Bounding Box diff --git a/python/plugins/processing/algs/saga/description/2.2.2/SplitShapesLayerRandomly.txt b/python/plugins/processing/algs/saga/description/2.2.2/SplitShapesLayerRandomly.txt deleted file mode 100644 index 8d2648b4f40d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/SplitShapesLayerRandomly.txt +++ /dev/null @@ -1,7 +0,0 @@ -Split Shapes Layer Randomly -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterNumber|PERCENT|Split ratio (%)|0|100|50 -ParameterBoolean|EXACT |Split exactly|True -OutputVector|A|Group A -OutputVector|B|Group B diff --git a/python/plugins/processing/algs/saga/description/2.2.2/StatisticsforGrids.txt b/python/plugins/processing/algs/saga/description/2.2.2/StatisticsforGrids.txt deleted file mode 100644 index e21300c5fb4c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/StatisticsforGrids.txt +++ /dev/null @@ -1,14 +0,0 @@ -Statistics for Grids -statistics_grid -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterNumber|PCTL_VAL|Percentile|0.0|100.0|50.0 -OutputRaster|MEAN|Arithmetic Mean -OutputRaster|MIN|Minimum -OutputRaster|MAX|Maximum -OutputRaster|VAR|Variance -OutputRaster|SUM|Sum -OutputRaster|RANGE|Range -OutputRaster|PCTL|Percentile -OutputRaster|STDDEV|Standard Deviation -OutputRaster|STDDEVLO|Mean less Standard Deviation -OutputRaster|STDDEVHI|Mean plus Standard Deviation \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/StrahlerOrder.txt b/python/plugins/processing/algs/saga/description/2.2.2/StrahlerOrder.txt deleted file mode 100644 index 87d914794682..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/StrahlerOrder.txt +++ /dev/null @@ -1,4 +0,0 @@ -Strahler Order -ta_channels -ParameterRaster|DEM|Elevation|False -OutputRaster|STRAHLER|Strahler Order diff --git a/python/plugins/processing/algs/saga/description/2.2.2/StreamPowerIndex.txt b/python/plugins/processing/algs/saga/description/2.2.2/StreamPowerIndex.txt deleted file mode 100644 index e33da9b0f9f3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/StreamPowerIndex.txt +++ /dev/null @@ -1,6 +0,0 @@ -Stream Power Index -ta_hydrology -ParameterRaster|SLOPE|Slope|False -ParameterRaster|AREA|Catchment Area|False -ParameterSelection|CONV|Area Conversion|[0] no conversion (areas already given as specific catchment area);[1] 1 / cell size (pseudo specific catchment area) -OutputRaster|SPI|Stream Power Index diff --git a/python/plugins/processing/algs/saga/description/2.2.2/SupervisedClassification.txt b/python/plugins/processing/algs/saga/description/2.2.2/SupervisedClassification.txt deleted file mode 100644 index 96afab5c993b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/SupervisedClassification.txt +++ /dev/null @@ -1,22 +0,0 @@ -Supervised Classification -imagery_classification -ParameterMultipleInput|GRIDS|Grids|3.0|False -ParameterVector|ROI|Training Areas|2|False -ParameterTableField|ROI_ID|Class Identifier|ROI|-1|False -ParameterTable|STATS|Class Statistics|False -ParameterSelection|STATS_SRC|Get Class Statistics from...|[0] training areas;[1] table -ParameterSelection|METHOD|Method|[0] Binary Encoding;[1] Parallelepiped;[2] Minimum Distance;[3] Mahalanobis Distance;[4] Maximum Likelihood;[5] Spectral Angle Mapping; [6] Winner Takes All -ParameterBoolean|NORMALISE|Normalise|False -ParameterNumber|THRESHOLD_DIST|Distance Threshold|0.0|None|0.0 -ParameterNumber|THRESHOLD_PROB|Probability Threshold (Percent)|0.0|100.0|0.0 -ParameterSelection|RELATIVE_PROB|Probability Reference|[0] absolute;[1] relative -ParameterNumber|THRESHOLD_ANGLE|Spectral Angle Threshold (Degree)|0.0|90.0|0.0 -ParameterBoolean|WTA_0|Binary Encoding|False -ParameterBoolean|WTA_1|Parallelepiped|False -ParameterBoolean|WTA_2|Minimum Distance|False -ParameterBoolean|WTA_3|Mahalanobis Distance|False -ParameterBoolean|WTA_4|Maximum Likelihood|False -ParameterBoolean|WTA_5|Spectral Angle Mapping|False -OutputTable|CLASS_INFO|Class Information -OutputRaster|CLASSES|Classification -OutputRaster|QUALITY|Quality \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/SurfaceSpecificPoints.txt b/python/plugins/processing/algs/saga/description/2.2.2/SurfaceSpecificPoints.txt deleted file mode 100644 index b0762ce1320b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/SurfaceSpecificPoints.txt +++ /dev/null @@ -1,6 +0,0 @@ -Surface Specific Points -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Method|[0] Mark Highest Neighbour;[1] Opposite Neighbours;[2] Flow Direction;[3] Flow Direction (up and down);[4] Peucker & Douglas -ParameterNumber|THRESHOLD|Threshold|None|None|2.0 -OutputRaster|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.2/TPIBasedLandformClassification.txt b/python/plugins/processing/algs/saga/description/2.2.2/TPIBasedLandformClassification.txt deleted file mode 100644 index bfed438c79d7..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/TPIBasedLandformClassification.txt +++ /dev/null @@ -1,12 +0,0 @@ -TPI Based Landform Classification -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS_A_MIN|Min Radius A|None|None|0 -ParameterNumber|RADIUS_A_MAX|Max Radius A|None|None|100 -ParameterNumber|RADIUS_B_MIN|Min Radius B|None|None|0 -ParameterNumber|RADIUS_B_MAX|Max Radius B|None|None|1000 -ParameterSelection|DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|0.0|None|1 -ParameterBoolean|DW_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|75.0 -OutputRaster|LANDFORMS|Landforms diff --git a/python/plugins/processing/algs/saga/description/2.2.2/TerrainRuggednessIndex(TRI).txt b/python/plugins/processing/algs/saga/description/2.2.2/TerrainRuggednessIndex(TRI).txt deleted file mode 100644 index bec50e9d3124..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/TerrainRuggednessIndex(TRI).txt +++ /dev/null @@ -1,9 +0,0 @@ -Terrain Ruggedness Index (TRI) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS|Radius (Cells)|1.0|None|1 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|0.0|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|0.0|None|1.0 -OutputRaster|TRI|Terrain Ruggedness Index (TRI) \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ThinPlateSpline(TIN).txt b/python/plugins/processing/algs/saga/description/2.2.2/ThinPlateSpline(TIN).txt deleted file mode 100644 index 0ded5a78195f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ThinPlateSpline(TIN).txt +++ /dev/null @@ -1,12 +0,0 @@ -Thin Plate Spline (TIN) -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterNumber|REGULARISATION|Regularisation|0.0000|None|0.0001 -ParameterSelection|LEVEL|Neighbourhood|[0] immediate;[1] level 1;[2] level 2 -ParameterBoolean|FRAME|Add Frame|True -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ThinPlateSpline.txt b/python/plugins/processing/algs/saga/description/2.2.2/ThinPlateSpline.txt deleted file mode 100644 index f55c020c02f2..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ThinPlateSpline.txt +++ /dev/null @@ -1,17 +0,0 @@ -Thin Plate Spline -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterNumber|REGULARISATION|Regularisation|0.0000|None|0.0001 -ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global -ParameterNumber|SEARCH_RADIUS|Search Radius|0.0|None|1000.0 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Maximum Number of Points|1|None|16 -ParameterNumber|SEARCH_POINTS_MAX|Maximum Number of Points|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -ParameterRaster|TARGET_TEMPLATE|Target system|True -OutputRaster|TARGET_OUT_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ThresholdBuffer.txt b/python/plugins/processing/algs/saga/description/2.2.2/ThresholdBuffer.txt deleted file mode 100644 index ef26b40a4852..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ThresholdBuffer.txt +++ /dev/null @@ -1,8 +0,0 @@ -Threshold Buffer -grid_tools -ParameterRaster|FEATURES|Features Grid|False -ParameterRaster|VALUE|Value Grid|False -ParameterRaster|THRESHOLDGRID|Threshold Grid|True -ParameterNumber|THRESHOLD|Threshold|None|None|0.0 -ParameterSelection|THRESHOLDTYPE|Threshold Type|[0] Absolute;[1] Relative from cell value -OutputRaster|BUFFER|Buffer Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/TopographicCorrection.txt b/python/plugins/processing/algs/saga/description/2.2.2/TopographicCorrection.txt deleted file mode 100644 index 7f80c2469572..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/TopographicCorrection.txt +++ /dev/null @@ -1,11 +0,0 @@ -Topographic Correction -ta_lighting -ParameterRaster|DEM|Elevation|False -ParameterRaster|ORIGINAL|Original Image|False -ParameterNumber|AZI|Azimuth|None|None|180.0 -ParameterNumber|HGT|Height|None|None|45.0 -ParameterSelection|METHOD|Method|[0] Cosine Correction (Teillet et al. 1982);[1] Cosine Correction (Civco 1989);[2] Minnaert Correction;[3] Minnaert Correction with Slope (Riano et al. 2003);[4] Minnaert Correction with Slope (Law & Nichol 2004);[5] C Correction;[6] Normalization (after Civco, modified by Law & Nichol) -ParameterNumber|MINNAERT|Minnaert Correction|None|None|0.5 -ParameterNumber|MAXCELLS|Maximum Cells (C Correction Analysis)|None|None|1000 -ParameterSelection|MAXVALUE|Value Range|[0] 1 byte (0-255);[1] 2 byte (0-65535) -OutputRaster|CORRECTED|Corrected Image diff --git a/python/plugins/processing/algs/saga/description/2.2.2/TopographicPositionIndex(TPI).txt b/python/plugins/processing/algs/saga/description/2.2.2/TopographicPositionIndex(TPI).txt deleted file mode 100644 index 13a397fd255d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/TopographicPositionIndex(TPI).txt +++ /dev/null @@ -1,11 +0,0 @@ -Topographic Position Index (TPI) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterBoolean|STANDARD |Standardize|True -ParameterNumber|RADIUS_MIN|Min Radius|0.0|None|0.0 -ParameterNumber|RADIUS_MAX|Max Radius|None|None|100.0 -ParameterSelection|DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|75.0 -OutputRaster|TPI|Topographic Position Index \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/TopographicWetnessIndex(TWI).txt b/python/plugins/processing/algs/saga/description/2.2.2/TopographicWetnessIndex(TWI).txt deleted file mode 100644 index b2d63ccea8d5..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/TopographicWetnessIndex(TWI).txt +++ /dev/null @@ -1,8 +0,0 @@ -Topographic Wetness Index (TWI) -ta_hydrology -ParameterRaster|SLOPE|Slope|False -ParameterRaster|AREA|Catchment Area|False -ParameterRaster|TRANS|Transmissivity|True -ParameterSelection|CONV|Area Conversion|[0] no conversion (areas already given as specific catchment area);[1] 1 / cell size (pseudo specific catchment area)|1 -ParameterSelection|METHOD|Method (TWI)|[0] Standard;[1] TOPMODEL -OutputRaster|TWI|Topographic Wetness Index diff --git a/python/plugins/processing/algs/saga/description/2.2.2/Transectthroughpolygonshapefile.txt b/python/plugins/processing/algs/saga/description/2.2.2/Transectthroughpolygonshapefile.txt deleted file mode 100644 index 99eb6654f605..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/Transectthroughpolygonshapefile.txt +++ /dev/null @@ -1,6 +0,0 @@ -Transect through polygon shapefile -shapes_transect -ParameterVector|TRANSECT|Line Transect(s)|1|False -ParameterVector|THEME|Theme|-1|False -ParameterTableField|THEME_FIELD|Theme Field|THEME|-1|False -OutputTable|TRANSECT_RESULT|Result table diff --git a/python/plugins/processing/algs/saga/description/2.2.2/TransformShapes.txt b/python/plugins/processing/algs/saga/description/2.2.2/TransformShapes.txt deleted file mode 100644 index 40e58628af9e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/TransformShapes.txt +++ /dev/null @@ -1,11 +0,0 @@ -Transform Shapes -shapes_tools -ParameterVector|IN|Shapes|-1|False -ParameterNumber|DX|dX|None|None|0.0 -ParameterNumber|DY|dY|None|None|0.0 -ParameterNumber|ANGLE|Angle|None|None|0.0 -ParameterNumber|SCALEX|Scale Factor X|None|None|1.0 -ParameterNumber|SCALEY|Scale Factor Y|None|None|1.0 -ParameterNumber|ANCHORX|X|None|None|0.0 -ParameterNumber|ANCHORY|Y|None|None|0.0 -OutputVector|OUT|Transformed diff --git a/python/plugins/processing/algs/saga/description/2.2.2/TransposeGrids.txt b/python/plugins/processing/algs/saga/description/2.2.2/TransposeGrids.txt deleted file mode 100644 index 8ff6bff31e87..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/TransposeGrids.txt +++ /dev/null @@ -1,6 +0,0 @@ -Transpose Grids -grid_tools -ParameterRaster|GRIDS|Input Grid|False -ParameterBoolean|MIRROR_X|Mirror Horizontally|False -ParameterBoolean|MIRROR_Y|Mirror Vertically|False -OutputRaster|TRANSPOSED|Transposed Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/Triangulation.txt b/python/plugins/processing/algs/saga/description/2.2.2/Triangulation.txt deleted file mode 100644 index 39a2dcbc578e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/Triangulation.txt +++ /dev/null @@ -1,9 +0,0 @@ -Triangulation -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/UniversalKriging(Global).txt b/python/plugins/processing/algs/saga/description/2.2.2/UniversalKriging(Global).txt deleted file mode 100644 index c27e4e4dd06b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/UniversalKriging(Global).txt +++ /dev/null @@ -1,32 +0,0 @@ -Regression Kriging -statistics_kriging -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterMultipleInput|PREDICTORS|Predictors|3|False -OutputRaster|REGRESSION|Regression -OutputRaster|PREDICTION|Prediction -OutputRaster|RESIDUALS|Residuals -OutputRaster|VARIANCE|Quality Measure -ParameterSelection|TQUALITY|Type of Quality Measure|[0] standard deviation;[1] variance -ParameterBoolean|LOG|Logarithmic Transformation|True -ParameterBoolean|BLOCK|Block Kriging|True -ParameterNumber|DBLOCK|Block Size|0|None|100 -ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0 -ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100 -ParameterNumber|VAR_NSKIP|Skip|1|None|1 -ParameterString|VAR_MODEL|Variogram Model|a + b * x -OutputTable|INFO_COEFF|Regression: Coefficients -OutputTable|INFO_MODEL|Regression: Model -OutputTable|INFO_STEPS|Regression: Steps -ParameterBoolean|COORD_X|Include X Coordinate|False -ParameterBoolean|COORD_Y|Include Y Coordinate|False -ParameterBoolean|INTERCEPT|Intercept|True -ParameterSelection|METHOD|Method|[0] include all;[1] forward;[2] backward;[3] stepwise|3 -ParameterNumber|P_VALUE|Significance Level|0|100.0|5.0 -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global -ParameterNumber|SEARCH_RADIUS|Maximum Search Distance|0|None|1000 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.2/UpslopeArea.txt b/python/plugins/processing/algs/saga/description/2.2.2/UpslopeArea.txt deleted file mode 100644 index 903e4ba30111..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/UpslopeArea.txt +++ /dev/null @@ -1,10 +0,0 @@ -Upslope Area|4 -ta_hydrology -ParameterRaster|TARGET|Target Area|True -ParameterNumber|TARGET_PT_X|Target X coordinate|None|None|0.0 -ParameterNumber|TARGET_PT_Y|Target Y coordinate|None|None|0.0 -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SINKROUTE|Sink Routes|True -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Deterministic Infinity;[2] Multiple Flow Direction -ParameterNumber|CONVERGE|Convergence|None|None|1.1 -OutputRaster|AREA|Upslope Area diff --git a/python/plugins/processing/algs/saga/description/2.2.2/UserDefinedFilter.txt b/python/plugins/processing/algs/saga/description/2.2.2/UserDefinedFilter.txt deleted file mode 100644 index e28c9e4eac0e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/UserDefinedFilter.txt +++ /dev/null @@ -1,6 +0,0 @@ -User Defined Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterTable|FILTER|Filter Matrix|True -ParameterFixedTable|FILTER_3X3|Default Filter Matrix (3x3)|3|1;2;3|True -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.2/VariogramCloud.txt b/python/plugins/processing/algs/saga/description/2.2.2/VariogramCloud.txt deleted file mode 100644 index 74d1463978cc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/VariogramCloud.txt +++ /dev/null @@ -1,7 +0,0 @@ -Variogram Cloud -statistics_points -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterNumber|DISTMAX|Maximum Distance|None|None|0.0 -ParameterNumber|NSKIP|Skip Number|None|None|1 -OutputTable|RESULT|Variogram Cloud diff --git a/python/plugins/processing/algs/saga/description/2.2.2/VariogramSurface.txt b/python/plugins/processing/algs/saga/description/2.2.2/VariogramSurface.txt deleted file mode 100644 index 4f09961aab9c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/VariogramSurface.txt +++ /dev/null @@ -1,9 +0,0 @@ -Variogram Surface -statistics_points -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterNumber|DISTCOUNT|Number of Distance Classes|1.0|None|10 -ParameterNumber|NSKIP|Skip Number|None|None|1 -OutputRaster|COUNT|Number of Pairs -OutputRaster|VARIANCE|Variogram Surface -OutputRaster|COVARIANCE|Covariance Surface diff --git a/python/plugins/processing/algs/saga/description/2.2.2/VectorRuggednessMeasure(VRM).txt b/python/plugins/processing/algs/saga/description/2.2.2/VectorRuggednessMeasure(VRM).txt deleted file mode 100644 index 072311d5aaf6..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/VectorRuggednessMeasure(VRM).txt +++ /dev/null @@ -1,9 +0,0 @@ -Vector Ruggedness Measure (VRM) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS|Radius (Cells)|None|None|1 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|0.0|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|0.0|None|1 -OutputRaster|VRM|Vector Terrain Ruggedness (VRM) diff --git a/python/plugins/processing/algs/saga/description/2.2.2/VegetationIndex(SlopeBased).txt b/python/plugins/processing/algs/saga/description/2.2.2/VegetationIndex(SlopeBased).txt deleted file mode 100644 index fd89e6a18416..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/VegetationIndex(SlopeBased).txt +++ /dev/null @@ -1,13 +0,0 @@ -Vegetation Index (Slope Based) -imagery_tools -ParameterRaster|NIR|Near Infrared Reflectance|False -ParameterRaster|RED|Red Reflectance|False -ParameterNumber|SOIL|Soil Adjustment Factor|0.0|1.0|0.5 -OutputRaster|DVI|Difference Vegetation Index -OutputRaster|NDVI|Normalized Difference Vegetation Index -OutputRaster|RVI|Ratio Vegetation Index -OutputRaster|NRVI|Normalized Ratio Vegetation Index -OutputRaster|TVI|Transformed Vegetation Index -OutputRaster|CTVI|Corrected Transformed Vegetation Index -OutputRaster|TTVI|Thiam's Transformed Vegetation Index -OutputRaster|SAVI|Soil Adjusted Vegetation Index diff --git a/python/plugins/processing/algs/saga/description/2.2.2/VerticalDistancetoChannelNetwork.txt b/python/plugins/processing/algs/saga/description/2.2.2/VerticalDistancetoChannelNetwork.txt deleted file mode 100644 index 5e1c7b29b27b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/VerticalDistancetoChannelNetwork.txt +++ /dev/null @@ -1,8 +0,0 @@ -Vertical Distance to Channel Network -ta_channels -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|CHANNELS|Channel Network|False -ParameterNumber|THRESHOLD|Tension Threshold [Percentage of Cell Size]|None|None|1 -ParameterBoolean|NOUNDERGROUND |Keep Base Level below Surface|True -OutputRaster|DISTANCE|Vertical Distance to Channel Network -OutputRaster|BASELEVEL|Channel Network Base Level diff --git a/python/plugins/processing/algs/saga/description/2.2.2/WaterRetentionCapacity.txt b/python/plugins/processing/algs/saga/description/2.2.2/WaterRetentionCapacity.txt deleted file mode 100644 index ccc8c6c4b12f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/WaterRetentionCapacity.txt +++ /dev/null @@ -1,6 +0,0 @@ -Water Retention Capacity -sim_hydrology -ParameterVector|SHAPES|Plot Holes|-1|False -ParameterRaster|DEM|DEM|False -OutputVector|OUTPUT|Final Parameters -OutputRaster|RETENTION|Water Retention Capacity diff --git a/python/plugins/processing/algs/saga/description/2.2.2/WatershedBasins.txt b/python/plugins/processing/algs/saga/description/2.2.2/WatershedBasins.txt deleted file mode 100644 index d79f537ba368..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/WatershedBasins.txt +++ /dev/null @@ -1,7 +0,0 @@ -Watershed Basins -ta_channels -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|CHANNELS|Channel Network|False -ParameterRaster|SINKROUTE|Sink Route|True -ParameterNumber|MINSIZE|Min. Size|None|None|0 -OutputRaster|BASINS|Watershed Basins diff --git a/python/plugins/processing/algs/saga/description/2.2.2/WatershedSegmentation.txt b/python/plugins/processing/algs/saga/description/2.2.2/WatershedSegmentation.txt deleted file mode 100644 index 02edfa11f2e4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/WatershedSegmentation.txt +++ /dev/null @@ -1,12 +0,0 @@ -Watershed Segmentation -imagery_segmentation -ParameterRaster|GRID|Grid|False -ParameterSelection|OUTPUT|Output|[0] Seed Value;[1] Segment ID -ParameterSelection|DOWN|Method|[0] Minima;[1] Maxima -ParameterSelection|JOIN|Join Segments based on Threshold Value|[0] do not join;[1] seed to saddle difference;[2] seeds difference -ParameterNumber|THRESHOLD|Threshold|None|None|0 -ParameterBoolean|EDGE |Allow Edge Pixels to be Seeds|True -ParameterBoolean|BBORDERS |Borders|True -OutputRaster|SEGMENTS|Segments -OutputVector|SEEDS|Seed Points -OutputRaster|BORDERS|Borders diff --git a/python/plugins/processing/algs/saga/description/2.2.2/WindEffect(WindwardLeewardIndex).txt b/python/plugins/processing/algs/saga/description/2.2.2/WindEffect(WindwardLeewardIndex).txt deleted file mode 100644 index 57495dc57ce9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/WindEffect(WindwardLeewardIndex).txt +++ /dev/null @@ -1,15 +0,0 @@ -Wind effect|Wind Effect (Windward / Leeward Index) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterRaster|DIR|Wind Direction|True -ParameterRaster|LEN|Wind Speed|True -ParameterNumber|DIR_CONST|Constant Wind Direction [Degree]|None|None|135 -ParameterBoolean|OLDVER |Old Version|True -ParameterNumber|MAXDIST|Search Distance [km]|0.0|None|300.0 -ParameterNumber|ACCEL|Acceleration|0.0|None|1.5 -ParameterBoolean|PYRAMIDS |Use Pyramids|True -ParameterSelection|DIR_UNITS|Wind Direction Units|[0] radians;[1] degree -ParameterNumber|LEN_SCALE|Wind Speed Scale Factor|0.0|None|1.0 -OutputRaster|EFFECT|Wind Effect -OutputRaster|LUV|Windward Effect -OutputRaster|LEE|Leeward Effect diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ZonalGridStatistics.txt b/python/plugins/processing/algs/saga/description/2.2.2/ZonalGridStatistics.txt deleted file mode 100644 index 10d91c892d4d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.2/ZonalGridStatistics.txt +++ /dev/null @@ -1,8 +0,0 @@ -Zonal Grid Statistics -statistics_grid -ParameterRaster|ZONES|Zone Grid|False -ParameterMultipleInput|CATLIST|Categorial Grids|3|True -ParameterMultipleInput|STATLIST|Grids to analyse|3|True -ParameterRaster|ASPECT|Aspect|True -ParameterBoolean|SHORTNAMES|Short Field Names|True -OutputTable|OUTTAB|Zonal Statistics diff --git a/python/plugins/processing/algs/saga/description/2.2.3/AccumulatedCost(Anisotropic).txt b/python/plugins/processing/algs/saga/description/2.2.3/AccumulatedCost(Anisotropic).txt deleted file mode 100644 index b50c05a952ac..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/AccumulatedCost(Anisotropic).txt +++ /dev/null @@ -1,8 +0,0 @@ -Accumulated Cost (Anisotropic) -grid_analysis -ParameterRaster|COST|Cost Grid|False -ParameterRaster|DIRECTION|Direction of max cost|False -ParameterRaster|POINTS|Destination Points|False -ParameterNumber|K|k factor|None|None|1 -ParameterNumber|THRESHOLD|Threshold for different route|None|None|0 -OutputRaster|ACCCOST|Accumulated Cost diff --git a/python/plugins/processing/algs/saga/description/2.2.3/AccumulatedCost(Isotropic).txt b/python/plugins/processing/algs/saga/description/2.2.3/AccumulatedCost(Isotropic).txt deleted file mode 100644 index e4d4a49dd502..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/AccumulatedCost(Isotropic).txt +++ /dev/null @@ -1,7 +0,0 @@ -Accumulated Cost (Isotropic) -grid_analysis -ParameterRaster|COST|Cost Grid|False -ParameterRaster|POINTS|Destination Points|False -ParameterNumber|THRESHOLD|Threshold for different route|None|None|0.0 -OutputRaster|ACCCOST|Accumulated Cost -OutputRaster|CLOSESTPT|Closest Point diff --git a/python/plugins/processing/algs/saga/description/2.2.3/AddCoordinatestopoints.txt b/python/plugins/processing/algs/saga/description/2.2.3/AddCoordinatestopoints.txt deleted file mode 100644 index d4f6a0efc417..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/AddCoordinatestopoints.txt +++ /dev/null @@ -1,4 +0,0 @@ -Add Coordinates to points -shapes_points -ParameterVector|INPUT|Points|0|False -OutputVector|OUTPUT|Points with coordinates diff --git a/python/plugins/processing/algs/saga/description/2.2.3/AddGridValuestoPoints.txt b/python/plugins/processing/algs/saga/description/2.2.3/AddGridValuestoPoints.txt deleted file mode 100644 index 56164a8c5982..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/AddGridValuestoPoints.txt +++ /dev/null @@ -1,7 +0,0 @@ -Add Grid Values to Points -shapes_grid -ParameterVector|SHAPES|Points|0|False -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|INTERPOL|Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -OutputVector|RESULT|Result -AllowUnmatching \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/AddGridValuestoShapes.txt b/python/plugins/processing/algs/saga/description/2.2.3/AddGridValuestoShapes.txt deleted file mode 100644 index 17959756198b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/AddGridValuestoShapes.txt +++ /dev/null @@ -1,7 +0,0 @@ -Add Grid Values to Shapes -shapes_grid -ParameterVector|SHAPES|Shapes|-1|False -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|INTERPOL|Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -OutputVector|RESULT|Result -AllowUnmatching \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/AddPointAttributestoPolygons.txt b/python/plugins/processing/algs/saga/description/2.2.3/AddPointAttributestoPolygons.txt deleted file mode 100644 index cbae72194771..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/AddPointAttributestoPolygons.txt +++ /dev/null @@ -1,7 +0,0 @@ -Add Point Attributes to Polygons -shapes_polygons -ParameterVector|INPUT|Polygons|2|False -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELDS|Attributes|POINTS|-1|False -ParameterBoolean|ADD_LOCATION_INFO|Add location info|False -OutputVector|OUTPUT|Result \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/AddPolygonAttributestoPoints.txt b/python/plugins/processing/algs/saga/description/2.2.3/AddPolygonAttributestoPoints.txt deleted file mode 100644 index 1515e6a6b9fe..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/AddPolygonAttributestoPoints.txt +++ /dev/null @@ -1,6 +0,0 @@ -Add Polygon Attributes to Points -shapes_points -ParameterVector|INPUT|Points|0|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|FIELDS|Attribute|POLYGONS|-1|False -OutputVector|OUTPUT|Result \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/Aggregate.txt b/python/plugins/processing/algs/saga/description/2.2.3/Aggregate.txt deleted file mode 100644 index eec522c48b44..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/Aggregate.txt +++ /dev/null @@ -1,5 +0,0 @@ -Aggregate -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterNumber|SIZE|Aggregation Size|None|None|3 -ParameterSelection|METHOD|Method|[0] Sum;[1] Min;[2] Max diff --git a/python/plugins/processing/algs/saga/description/2.2.3/AggregatePointObservations.txt b/python/plugins/processing/algs/saga/description/2.2.3/AggregatePointObservations.txt deleted file mode 100644 index 98bb0119b53e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/AggregatePointObservations.txt +++ /dev/null @@ -1,14 +0,0 @@ -Aggregate Point Observations -shapes_points -ParameterVector|REFERENCE|Reference Points|-1|False -ParameterTableField|REFERENCE_ID|ID|REFERENCE|-1|False -ParameterTable|OBSERVATIONS|Observations|False -ParameterTableField|X|X|OBSERVATIONS|-1|False -ParameterTableField|Y|Y|OBSERVATIONS|-1|False -ParameterTableField|TRACK|Track|OBSERVATIONS|-1|False -ParameterTableField|DATE|Date|OBSERVATIONS|-1|False -ParameterTableField|TIME|Time|OBSERVATIONS|-1|False -ParameterTableField|PARAMETER|Parameter|OBSERVATIONS|-1|False -ParameterNumber|EPS_TIME|Maximum Time Span (Seconds)|None|None|60.0 -ParameterNumber|EPS_SPACE|Maximum Distance|None|None|0.002 -OutputTable|AGGREGATED|Aggregated diff --git a/python/plugins/processing/algs/saga/description/2.2.3/AggregationIndex.txt b/python/plugins/processing/algs/saga/description/2.2.3/AggregationIndex.txt deleted file mode 100644 index c5338291f3d4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/AggregationIndex.txt +++ /dev/null @@ -1,5 +0,0 @@ -Aggregation Index -grid_analysis -ParameterRaster|INPUT|Input Grid|False -ParameterNumber|MAXNUMCLASS|Max. Number of Classes|None|None|5 -OutputTable|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.3/AnalyticalHierarchyProcess.txt b/python/plugins/processing/algs/saga/description/2.2.3/AnalyticalHierarchyProcess.txt deleted file mode 100644 index 426c7817eb0f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/AnalyticalHierarchyProcess.txt +++ /dev/null @@ -1,5 +0,0 @@ -Analytical Hierarchy Process -grid_analysis -ParameterMultipleInput|GRIDS|Input Grids|3|False -ParameterTable|TABLE|Pairwise Comparisons Table|False -OutputRaster|OUTPUT|Output Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/AnalyticalHillshading.txt b/python/plugins/processing/algs/saga/description/2.2.3/AnalyticalHillshading.txt deleted file mode 100644 index 524651cdff4b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/AnalyticalHillshading.txt +++ /dev/null @@ -1,8 +0,0 @@ -Analytical Hillshading -ta_lighting -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Shading Method|[0] Standard;[1] Standard (max. 90Degree);[2] Combined Shading;[3] Ray Tracing -ParameterNumber|AZIMUTH|Azimuth [Degree]|None|None|315.0 -ParameterNumber|DECLINATION|Declination [Degree]|None|None|45.0 -ParameterNumber|EXAGGERATION|Exaggeration|None|None|4.0 -OutputRaster|SHADE|Analytical Hillshading diff --git a/python/plugins/processing/algs/saga/description/2.2.3/B-SplineApproximation.txt b/python/plugins/processing/algs/saga/description/2.2.3/B-SplineApproximation.txt deleted file mode 100644 index 79a2bf5a6929..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/B-SplineApproximation.txt +++ /dev/null @@ -1,10 +0,0 @@ -B-Spline Approximation -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterNumber|LEVEL|Resolution|0.001|None|1.0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/BurnStreamNetworkintoDEM.txt b/python/plugins/processing/algs/saga/description/2.2.3/BurnStreamNetworkintoDEM.txt deleted file mode 100644 index 22f289c5682f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/BurnStreamNetworkintoDEM.txt +++ /dev/null @@ -1,8 +0,0 @@ -Burn Stream Network into DEM -ta_preprocessor -ParameterRaster|DEM|DEM|False -ParameterRaster|STREAM|Streams|False -ParameterRaster|FLOWDIR|Flow direction|False -ParameterSelection|METHOD|Method|[0] simply decrease cell's value by epsilon;[1] lower cell's value to neighbours minimum value minus epsilon;[2] trace stream network downstream -ParameterNumber|EPSILON|Epsilon|0.0|None|1.0 -OutputRaster|BURN|Processed DEM \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/CellBalance.txt b/python/plugins/processing/algs/saga/description/2.2.3/CellBalance.txt deleted file mode 100644 index 80edebcf2887..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/CellBalance.txt +++ /dev/null @@ -1,7 +0,0 @@ -Cell Balance -ta_hydrology -ParameterRaster|DEM|Elevation|False -ParameterRaster|WEIGHTS|Parameter|True -ParameterNumber|WEIGHTS_DEFAULT|Default Weight|0.0|None|1.0 -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Multiple Flow Direction -OutputRaster|BALANCE|Cell Balance \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ChangeDateFormat.txt b/python/plugins/processing/algs/saga/description/2.2.3/ChangeDateFormat.txt deleted file mode 100644 index 9adfcd0884d5..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ChangeDateFormat.txt +++ /dev/null @@ -1,7 +0,0 @@ -Change Date Format -table_tools -ParameterTable|TABLE|Table|False -ParameterTableField|FIELD|Date Field|TABLE|-1|False -ParameterSelection|FMT_IN|Input Format|[0] dd.mm.yy;[1] yy.mm.dd;[2] dd:mm:yy;[3] yy:mm:dd;[4] ddmmyyyy, fix size;[5] yyyymmdd, fix size;[6] ddmmyy, fix size;[7] yymmdd, fix size;[8] Julian Day -ParameterSelection|FMT_OUT|Output Format|[0] dd.mm.yy;[1] yy.mm.dd;[2] dd:mm:yy;[3] yy:mm:dd;[4] ddmmyyyy, fix size;[5] yyyymmdd, fix size;[6] ddmmyy, fix size;[7] yymmdd, fix size;[8] Julian Day -OutputTable|OUTPUT|Output diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ChangeDetection.txt b/python/plugins/processing/algs/saga/description/2.2.3/ChangeDetection.txt deleted file mode 100644 index f171b9fd6ddc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ChangeDetection.txt +++ /dev/null @@ -1,16 +0,0 @@ -Change Detection -imagery_classification -ParameterRaster|INITIAL|Initial State|False -ParameterTable|INI_LUT|Look-up Table|True -ParameterTableField|INI_LUT_MIN|Value|INI_LUT|-1|False -ParameterTableField|INI_LUT_MAX|Value (Maximum)|INI_LUT|-1|False -ParameterTableField|INI_LUT_NAM|Name|INI_LUT|-1|False -ParameterRaster|FINAL|Final State|False -ParameterTable|FIN_LUT|Look-up Table|True -ParameterTableField|FIN_LUT_MIN|Value|FIN_LUT|-1|False -ParameterTableField|FIN_LUT_MAX|Value (Maximum)|FIN_LUT|-1|False -ParameterTableField|FIN_LUT_NAM|Name|FIN_LUT|-1|False -ParameterBoolean|NOCHANGE |Report Unchanged Classes|True -ParameterSelection|OUTPUT|Output as...|[0] cells;[1] percent;[2] area -OutputRaster|CHANGE|Changes -OutputTable|CHANGES|Changes diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ChangeGridValues.txt b/python/plugins/processing/algs/saga/description/2.2.3/ChangeGridValues.txt deleted file mode 100644 index 8d3bd69e29ab..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ChangeGridValues.txt +++ /dev/null @@ -1,6 +0,0 @@ -Change Grid Values -grid_tools -ParameterRaster|GRID_IN|Grid|False -ParameterSelection|METHOD|Replace Condition|[0] Grid value equals low value;[1] Low value < grid value < high value;[2] Low value <= grid value < high value -ParameterFixedTable|LOOKUP|Lookup Table|3|Low Value;High Value;Replace with|False -OutputRaster|GRID_OUT|Changed Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ChangeTimeFormat.txt b/python/plugins/processing/algs/saga/description/2.2.3/ChangeTimeFormat.txt deleted file mode 100644 index 0a384af3194d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ChangeTimeFormat.txt +++ /dev/null @@ -1,7 +0,0 @@ -Change Time Format -table_tools -ParameterTable|TABLE|Table|False -ParameterTableField|FIELD|Time Field|TABLE|-1|False -ParameterSelection|FMT_IN|Input Format|[0] hh.mm.ss;[1] hh:mm:ss;[2] hhmmss, fix size;[3] hours;[4] minutes;[5] seconds -ParameterSelection|FMT_OUT|Output Format|[0] hh.mm.ss;[1] hh:mm:ss;[2] hhmmss, fix size;[3] hours;[4] minutes;[5] seconds -OutputTable|OUTPUT|Output diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ChannelNetwork.txt b/python/plugins/processing/algs/saga/description/2.2.3/ChannelNetwork.txt deleted file mode 100644 index b7bf16f1db10..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ChannelNetwork.txt +++ /dev/null @@ -1,14 +0,0 @@ -Channel Network -ta_channels -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SINKROUTE|Flow Direction|True -ParameterRaster|INIT_GRID|Initiation Grid|False -ParameterSelection|INIT_METHOD|Initiation Type|[0] Less than;[1] Equals;[2] Greater than -ParameterNumber|INIT_VALUE|Initiation Threshold|None|None|0.0 -ParameterRaster|DIV_GRID|Divergence|True -ParameterNumber|DIV_CELLS|Tracing: Max. Divergence|None|None|10 -ParameterRaster|TRACE_WEIGHT|Tracing: Weight|True -ParameterNumber|MINLEN|Min. Segment Length|0.0|None|10 -OutputRaster|CHNLNTWRK|Channel Network -OutputRaster|CHNLROUTE|Channel Direction -OutputVector|SHAPES|Channel Network diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ChannelNetworkandDrainageBasins.txt b/python/plugins/processing/algs/saga/description/2.2.3/ChannelNetworkandDrainageBasins.txt deleted file mode 100644 index 17e8ccad2702..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ChannelNetworkandDrainageBasins.txt +++ /dev/null @@ -1,11 +0,0 @@ -Channel Network and Drainage Basins -ta_channels -ParameterRaster|DEM|Elevation|False -ParameterNumber|THRESHOLD|Threshold|None|None|5.0 -OutputRaster|DIRECTION|Flow Direction -OutputRaster|CONNECTION|Flow Connectivity -OutputRaster|ORDER|Strahler Order -OutputRaster|BASIN|Drainage Basins -OutputVector|SEGMENTS|Channels -OutputVector|BASINS|Drainage Basins -OutputVector|NODES|Junctions diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ClipGridwithPolygon.txt b/python/plugins/processing/algs/saga/description/2.2.3/ClipGridwithPolygon.txt deleted file mode 100644 index b76d1a2f7da0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ClipGridwithPolygon.txt +++ /dev/null @@ -1,5 +0,0 @@ -Clip Grid with Polygon -shapes_grid -ParameterRaster|INPUT|Input|False -ParameterVector|POLYGONS|Polygons|2|False -OutputRaster|OUTPUT|Clipped diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ClipPointswithPolygons.txt b/python/plugins/processing/algs/saga/description/2.2.3/ClipPointswithPolygons.txt deleted file mode 100644 index 90b8f12176c8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ClipPointswithPolygons.txt +++ /dev/null @@ -1,7 +0,0 @@ -Clip Points with Polygons -shapes_points -ParameterVector|POINTS|Points|0|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|FIELD|Add Attribute to Clipped Points|POLYGONS|-1|False -ParameterSelection|METHOD|Clipping Options|[0] one layer for all points;[1] separate layer for each polygon -OutputVector|CLIPS|Clipped Points diff --git a/python/plugins/processing/algs/saga/description/2.2.3/CloseGaps.txt b/python/plugins/processing/algs/saga/description/2.2.3/CloseGaps.txt deleted file mode 100644 index ffa217f19916..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/CloseGaps.txt +++ /dev/null @@ -1,6 +0,0 @@ -Close Gaps -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterRaster|MASK|Mask|True -ParameterNumber|THRESHOLD|Tension Threshold|None|None|0.1 -OutputRaster|RESULT|Changed Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/CloseGapswithSpline.txt b/python/plugins/processing/algs/saga/description/2.2.3/CloseGapswithSpline.txt deleted file mode 100644 index cd70312d7fdc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/CloseGapswithSpline.txt +++ /dev/null @@ -1,12 +0,0 @@ -Close Gaps with Spline -grid_tools -ParameterRaster|GRID|Grid|False -ParameterRaster|MASK|Mask|True -ParameterNumber|MAXGAPCELLS|Only Process Gaps with Less Cells|None|None|0 -ParameterNumber|MAXPOINTS|Maximum Points|None|None|1000 -ParameterNumber|LOCALPOINTS|Number of Points for Local Interpolation|None|None|10 -ParameterBoolean|EXTENDED |Extended Neighourhood|True -ParameterSelection|NEIGHBOURS|Neighbourhood|[0] Neumann;[1] Moore -ParameterNumber|RADIUS|Radius (Cells)|None|None|0 -ParameterNumber|RELAXATION|Relaxation|None|None|0.0 -OutputRaster|CLOSED|Closed Gaps Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/CloseOneCellGaps.txt b/python/plugins/processing/algs/saga/description/2.2.3/CloseOneCellGaps.txt deleted file mode 100644 index d3b4aa0318bc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/CloseOneCellGaps.txt +++ /dev/null @@ -1,4 +0,0 @@ -Close One Cell Gaps -grid_tools -ParameterRaster|INPUT|Grid|False -OutputRaster|RESULT|Changed Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ClusterAnalysisforGrids.txt b/python/plugins/processing/algs/saga/description/2.2.3/ClusterAnalysisforGrids.txt deleted file mode 100644 index 0c477e9e46ea..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ClusterAnalysisforGrids.txt +++ /dev/null @@ -1,9 +0,0 @@ -Cluster Analysis for Grids -imagery_classification -ParameterMultipleInput|GRIDS|Grids|3.0|False -ParameterSelection|METHOD|Method|[0] Iterative Minimum Distance (Forgy 1965);[1] Hill-Climbing (Rubin 1967);[2] Combined Minimum Distance / Hillclimbing -ParameterNumber|NCLUSTER|Clusters|None|None|5 -ParameterBoolean|NORMALISE |Normalise|True -ParameterBoolean|OLDVERSION |Old Version|True -OutputRaster|CLUSTER|Clusters -OutputTable|STATISTICS|Statistics diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ConfusionMatrix(GridPolygons).txt b/python/plugins/processing/algs/saga/description/2.2.3/ConfusionMatrix(GridPolygons).txt deleted file mode 100644 index 496cb9b3cb1c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ConfusionMatrix(GridPolygons).txt +++ /dev/null @@ -1,12 +0,0 @@ -Confusion Matrix (Polygons / Grid) -imagery_classification -ParameterRaster|GRID|Classification|False -ParameterTable|GRID_LUT|Look-up Table|True -ParameterTableField|GRID_LUT_MIN|Value|GRID_LUT|-1|True -ParameterTableField|GRID_LUT_MAX|Value (Maximum)|GRID_LUT|-1|True -ParameterTableField|GRID_LUT_NAM|Name|GRID_LUT|-1|True -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|FIELD|Classes|POLYGONS|-1|False -OutputTable|CONFUSION|Confusion Matrix -OutputTable|CLASSES|Class Values -OutputTable|SUMMARY|Summary \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ContourLinesfromGrid.txt b/python/plugins/processing/algs/saga/description/2.2.3/ContourLinesfromGrid.txt deleted file mode 100644 index d0924e0d6a9f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ContourLinesfromGrid.txt +++ /dev/null @@ -1,8 +0,0 @@ -Contour Lines from Grid -shapes_grid -ParameterRaster|GRID|Grid|False -ParameterSelection|VERTEX|Vertex type|[0] x,y;[1] x,y,z -ParameterNumber|ZMIN|Minimum Contour Value|None|None|0.0 -ParameterNumber|ZMAX|Maximum Contour Value|None|None|10000.0 -ParameterNumber|ZSTEP|Equidistance|None|None|100.0 -OutputVector|CONTOUR|Contour Lines diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ConvergenceIndex(SearchRadius).txt b/python/plugins/processing/algs/saga/description/2.2.3/ConvergenceIndex(SearchRadius).txt deleted file mode 100644 index 11730fa638a3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ConvergenceIndex(SearchRadius).txt +++ /dev/null @@ -1,11 +0,0 @@ -Convergence Index (Search Radius) -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterNumber|RADIUS|Radius [Cells]|1.0|None|10.0 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|0.0|None|1.0 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|0.0|None|1.0 -ParameterBoolean|SLOPE|Gradient|True -ParameterSelection|DIFFERENCE|Weighting Function|[0] direction to the center cell;[1] center cell's aspect direction -OutputRaster|CONVERGENCE|Convergence Index \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ConvergenceIndex.txt b/python/plugins/processing/algs/saga/description/2.2.3/ConvergenceIndex.txt deleted file mode 100644 index 7d1649a615dc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ConvergenceIndex.txt +++ /dev/null @@ -1,6 +0,0 @@ -Convergence Index -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Method|[0] Aspect;[1] Gradient -ParameterSelection|NEIGHBOURS|Gradient Calculation|[0] 2 x 2;[1] 3 x 3 -OutputRaster|RESULT|Convergence Index diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ConvertDataStorageType.txt b/python/plugins/processing/algs/saga/description/2.2.3/ConvertDataStorageType.txt deleted file mode 100644 index 51de5d997936..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ConvertDataStorageType.txt +++ /dev/null @@ -1,5 +0,0 @@ -Convert Data Storage Type -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterSelection|TYPE|Data storage 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 -OutputRaster|OUTPUT|Converted Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ConvertLinestoPoints.txt b/python/plugins/processing/algs/saga/description/2.2.3/ConvertLinestoPoints.txt deleted file mode 100644 index 7a4435360903..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ConvertLinestoPoints.txt +++ /dev/null @@ -1,6 +0,0 @@ -Convert Lines to Points -shapes_points -ParameterVector|LINES|Lines|1|False -ParameterBoolean|ADD |Insert Additional Points|True -ParameterNumber|DIST|Insert Distance|0.0|None|1.0 -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ConvertLinestoPolygons.txt b/python/plugins/processing/algs/saga/description/2.2.3/ConvertLinestoPolygons.txt deleted file mode 100644 index 0053420971a9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ConvertLinestoPolygons.txt +++ /dev/null @@ -1,4 +0,0 @@ -Convert Lines to Polygons -shapes_polygons -ParameterVector|LINES|Lines|1|False -OutputVector|POLYGONS|Polygons diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ConvertMultipointstoPoints.txt b/python/plugins/processing/algs/saga/description/2.2.3/ConvertMultipointstoPoints.txt deleted file mode 100644 index 6a0fc9798b0d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ConvertMultipointstoPoints.txt +++ /dev/null @@ -1,4 +0,0 @@ -Convert Multipoints to Points -shapes_points -ParameterVector|MULTIPOINTS|Multipoints|0|False -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ConvertPointstoLine(s).txt b/python/plugins/processing/algs/saga/description/2.2.3/ConvertPointstoLine(s).txt deleted file mode 100644 index f7e8b6bb642c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ConvertPointstoLine(s).txt +++ /dev/null @@ -1,6 +0,0 @@ -Convert Points to Line(s) -shapes_lines -ParameterVector|POINTS|Points|0|False -ParameterTableField|ORDER|Order by...|POINTS|-1|False -ParameterTableField|SEPARATE|Separate by...|POINTS|-1|False -OutputVector|LINES|Lines diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ConvertPolygonLineVerticestoPoints.txt b/python/plugins/processing/algs/saga/description/2.2.3/ConvertPolygonLineVerticestoPoints.txt deleted file mode 100644 index e8e9a68f86d4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ConvertPolygonLineVerticestoPoints.txt +++ /dev/null @@ -1,4 +0,0 @@ -Convert Polygon/Line Vertices to Points -shapes_polygons -ParameterVector|SHAPES|Shapes|-1|False -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ConvertPolygonstoLines.txt b/python/plugins/processing/algs/saga/description/2.2.3/ConvertPolygonstoLines.txt deleted file mode 100644 index def3f0429a5a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ConvertPolygonstoLines.txt +++ /dev/null @@ -1,4 +0,0 @@ -Convert Polygons to Lines -shapes_lines -ParameterVector|POLYGONS|Polygons|2|False -OutputVector|LINES|Lines diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ConvexHull.txt b/python/plugins/processing/algs/saga/description/2.2.3/ConvexHull.txt deleted file mode 100644 index 81084ab7e508..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ConvexHull.txt +++ /dev/null @@ -1,6 +0,0 @@ -Convex Hull -shapes_points -ParameterVector|SHAPES|Points|0|False -ParameterSelection|POLYPOINTS|Hull Construction|[0] one hull for all shapes;[1] one hull per shape;[2] one hull per shape part -OutputVector|HULLS|Convex Hull -OutputVector|BOXES|Minimum Bounding Box diff --git a/python/plugins/processing/algs/saga/description/2.2.3/CropToData.txt b/python/plugins/processing/algs/saga/description/2.2.3/CropToData.txt deleted file mode 100644 index e87ea99f1881..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/CropToData.txt +++ /dev/null @@ -1,4 +0,0 @@ -Crop to Data -grid_tools -ParameterRaster|INPUT|Input layer|False -OutputRaster|OUTPUT|Cropped diff --git a/python/plugins/processing/algs/saga/description/2.2.3/Cross-ClassificationandTabulation.txt b/python/plugins/processing/algs/saga/description/2.2.3/Cross-ClassificationandTabulation.txt deleted file mode 100644 index 19bb607ae29d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/Cross-ClassificationandTabulation.txt +++ /dev/null @@ -1,7 +0,0 @@ -Cross-Classification and Tabulation -grid_analysis -ParameterRaster|INPUT|Input Grid 1|False -ParameterRaster|INPUT2|Input Grid 2|False -ParameterNumber|MAXNUMCLASS|Max. Number of Classes|None|None|5 -OutputRaster|RESULTGRID|Cross-Classification Grid -OutputTable|RESULTTABLE|Cross-Tabulation Table diff --git a/python/plugins/processing/algs/saga/description/2.2.3/CrossProfiles.txt b/python/plugins/processing/algs/saga/description/2.2.3/CrossProfiles.txt deleted file mode 100644 index 149b8920630f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/CrossProfiles.txt +++ /dev/null @@ -1,8 +0,0 @@ -Cross Profiles -ta_profiles -ParameterRaster|DEM|DEM|False -ParameterVector|LINES|Lines|1|False -ParameterNumber|DIST_LINE|Profile Distance|0.0|None|10.0 -ParameterNumber|DIST_PROFILE|Profile Length|0.0|None|10.0 -ParameterNumber|NUM_PROFILE|Profile Samples|1.0|None|10.0 -OutputVector|PROFILES|Cross Profiles diff --git a/python/plugins/processing/algs/saga/description/2.2.3/CubicSplineApproximation.txt b/python/plugins/processing/algs/saga/description/2.2.3/CubicSplineApproximation.txt deleted file mode 100644 index c60b70060924..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/CubicSplineApproximation.txt +++ /dev/null @@ -1,13 +0,0 @@ -Cubic Spline Approximation -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterNumber|NPMIN|Minimal Number of Points|0|None|3 -ParameterNumber|NPMAX|Maximal Number of Points|11|59|20 -ParameterNumber|NPPC|Points per Square|1|None|5 -ParameterNumber|K|Tolerance|0|None|140.0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/CurvatureClassification.txt b/python/plugins/processing/algs/saga/description/2.2.3/CurvatureClassification.txt deleted file mode 100644 index aff4b661d617..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/CurvatureClassification.txt +++ /dev/null @@ -1,5 +0,0 @@ -Curvature Classification -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|THRESHOLD|Threshold for plane|0.0000|None|0.0005 -OutputRaster|CLASS|Curvature Classification \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/CutShapesLayer.txt b/python/plugins/processing/algs/saga/description/2.2.3/CutShapesLayer.txt deleted file mode 100644 index f60347ab4f7c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/CutShapesLayer.txt +++ /dev/null @@ -1,7 +0,0 @@ -Cut Shapes Layer -shapes_tools -ParameterVector|SHAPES|Vector layer to cut|-1|False -ParameterSelection|METHOD|Method|[0] completely contained;[1] intersects;[2] center -Hardcoded|-TARGET 3 -ParameterVector|POLYGONS_POLYGONS|Cutting polygons|2|False -OutputVector|CUT|Result \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/DTMFilter(slope-based).txt b/python/plugins/processing/algs/saga/description/2.2.3/DTMFilter(slope-based).txt deleted file mode 100644 index 73902128994d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/DTMFilter(slope-based).txt +++ /dev/null @@ -1,8 +0,0 @@ -DTM Filter (slope-based) -grid_filter -ParameterRaster|INPUT|Grid to filter|False -ParameterNumber|RADIUS|Search Radius|1.0|None|2 -ParameterNumber|TERRAINSLOPE|Approx. Terrain Slope|None|None|30.0 -ParameterBoolean|STDDEV |Use Confidence Interval|True -OutputRaster|GROUND|Bare Earth -OutputRaster|NONGROUND|Removed Objects diff --git a/python/plugins/processing/algs/saga/description/2.2.3/DirectionalStatisticsforSingleGrid.txt b/python/plugins/processing/algs/saga/description/2.2.3/DirectionalStatisticsforSingleGrid.txt deleted file mode 100644 index 5ed456dda7b4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/DirectionalStatisticsforSingleGrid.txt +++ /dev/null @@ -1,23 +0,0 @@ -Directional Statistics for Single Grid -statistics_grid -ParameterRaster|GRID|Grid|False -ParameterVector|POINTS|Points|-1|True -ParameterNumber|DIRECTION|Direction [Degree]|None|None|0.0 -ParameterNumber|TOLERANCE|Tolerance [Degree]|None|None|0.0 -ParameterNumber|MAXDISTANCE|Maximum Distance [Cells]|None|None|0 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1.0 -OutputRaster|MEAN|Arithmetic Mean -OutputRaster|DIFMEAN|Difference from Arithmetic Mean -OutputRaster|MIN|Minimum -OutputRaster|MAX|Maximum -OutputRaster|RANGE|Range -OutputRaster|VAR|Variance -OutputRaster|STDDEV|Standard Deviation -OutputRaster|STDDEVLO|Mean less Standard Deviation -OutputRaster|STDDEVHI|Mean plus Standard Deviation -OutputRaster|DEVMEAN|Deviation from Arithmetic Mean -OutputRaster|PERCENT|Percentile -OutputVector|POINTS_OUT|Directional Statistics for Points diff --git a/python/plugins/processing/algs/saga/description/2.2.3/DistanceMatrix.txt b/python/plugins/processing/algs/saga/description/2.2.3/DistanceMatrix.txt deleted file mode 100644 index 059d3c209fee..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/DistanceMatrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -Distance Matrix -shapes_points -ParameterVector|POINTS|Points|0|False -OutputTable|TABLE|Distance Matrix Table diff --git a/python/plugins/processing/algs/saga/description/2.2.3/DiurnalAnisotropicHeating.txt b/python/plugins/processing/algs/saga/description/2.2.3/DiurnalAnisotropicHeating.txt deleted file mode 100644 index 5420da99b09a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/DiurnalAnisotropicHeating.txt +++ /dev/null @@ -1,5 +0,0 @@ -Diurnal Anisotropic Heating -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|ALPHA_MAX|Alpha Max (Degree)|None|None|202.5 -OutputRaster|DAH|Diurnal Anisotropic Heating diff --git a/python/plugins/processing/algs/saga/description/2.2.3/DownslopeDistanceGradient.txt b/python/plugins/processing/algs/saga/description/2.2.3/DownslopeDistanceGradient.txt deleted file mode 100644 index 250e199cf6fe..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/DownslopeDistanceGradient.txt +++ /dev/null @@ -1,7 +0,0 @@ -Downslope Distance Gradient -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|DISTANCE|Vertical Distance|None|None|10 -ParameterSelection|OUTPUT|Output|[0] distance;[1] gradient (tangens);[2] gradient (degree) -OutputRaster|GRADIENT|Gradient -OutputRaster|DIFFERENCE|Gradient Difference diff --git a/python/plugins/processing/algs/saga/description/2.2.3/EdgeContamination.txt b/python/plugins/processing/algs/saga/description/2.2.3/EdgeContamination.txt deleted file mode 100644 index 004ca57539db..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/EdgeContamination.txt +++ /dev/null @@ -1,4 +0,0 @@ -Edge Contamination -ta_hydrology -ParameterRaster|DEM|Elevation|False -OutputRaster|CONTAMINATION|Edge Contamination diff --git a/python/plugins/processing/algs/saga/description/2.2.3/EffectiveAirFlowHeights.txt b/python/plugins/processing/algs/saga/description/2.2.3/EffectiveAirFlowHeights.txt deleted file mode 100644 index 70e0479b3a99..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/EffectiveAirFlowHeights.txt +++ /dev/null @@ -1,15 +0,0 @@ -Effective Air Flow Heights -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterRaster|DIR|Wind Direction|True -ParameterRaster|LEN|Wind Speed|True -ParameterNumber|DIR_CONST|Constant Wind Direction [Degree]|None|None|135 -ParameterBoolean|OLDVER |Old Version|True -ParameterNumber|MAXDIST|Search Distance [km]|0.0|None|300 -ParameterNumber|ACCEL|Acceleration|None|None|1.5 -ParameterBoolean|PYRAMIDS |Use Pyramids with New Version|True -ParameterNumber|LEEFACT|Lee Factor|None|None|0.5 -ParameterNumber|LUVFACT|Luv Factor|None|None|1.0 -ParameterSelection|DIR_UNITS|Wind Direction Units|[0] radians;[1] degree -ParameterNumber|LEN_SCALE|Wind Speed Scale Factor|None|None|1.0 -OutputRaster|AFH|Effective Air Flow Heights diff --git a/python/plugins/processing/algs/saga/description/2.2.3/FastRegionGrowingAlgorithm.txt b/python/plugins/processing/algs/saga/description/2.2.3/FastRegionGrowingAlgorithm.txt deleted file mode 100644 index c7922ee2e242..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/FastRegionGrowingAlgorithm.txt +++ /dev/null @@ -1,7 +0,0 @@ -Fast Region Growing Algorithm -imagery_rga -ParameterMultipleInput|INPUT|Input Grids|3|False -ParameterRaster|START|Seeds Grid|False -ParameterRaster|REP|Smooth Rep|True -OutputRaster|RESULT|Segmente -OutputRaster|MEAN|Mean diff --git a/python/plugins/processing/algs/saga/description/2.2.3/FastRepresentativeness.txt b/python/plugins/processing/algs/saga/description/2.2.3/FastRepresentativeness.txt deleted file mode 100644 index b65953be62cd..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/FastRepresentativeness.txt +++ /dev/null @@ -1,7 +0,0 @@ -Fast Representativeness -statistics_grid -ParameterRaster|INPUT|Input|False -ParameterNumber|LOD|Level of Generalisation|None|None|16 -OutputRaster|RESULT|Output -OutputRaster|RESULT_LOD|Output Lod -OutputRaster|SEEDS|Output Seeds diff --git a/python/plugins/processing/algs/saga/description/2.2.3/FillGapsinRecords.txt b/python/plugins/processing/algs/saga/description/2.2.3/FillGapsinRecords.txt deleted file mode 100644 index 31974dcc53d1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/FillGapsinRecords.txt +++ /dev/null @@ -1,6 +0,0 @@ -Fill Gaps in Records -table_calculus -ParameterTable|TABLE|Table|False -ParameterTableField|ORDER|Order|TABLE|-1|False -ParameterSelection|METHOD|Interpolation|[0] Nearest Neighbour;[1] Linear;[2] Spline -OutputTable|NOGAPS|Table without Gaps diff --git a/python/plugins/processing/algs/saga/description/2.2.3/FillSinks(PlanchonDarboux,2001).txt b/python/plugins/processing/algs/saga/description/2.2.3/FillSinks(PlanchonDarboux,2001).txt deleted file mode 100644 index f1a496dc924a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/FillSinks(PlanchonDarboux,2001).txt +++ /dev/null @@ -1,5 +0,0 @@ -Fill Sinks|Fill Sinks (Planchon/Darboux, 2001) -ta_preprocessor -ParameterRaster|DEM|DEM|False -ParameterNumber|MINSLOPE|Minimum Slope [Degree]|0.0|None|0.01 -OutputRaster|RESULT|Filled DEM diff --git a/python/plugins/processing/algs/saga/description/2.2.3/FillSinks(WangLiu).txt b/python/plugins/processing/algs/saga/description/2.2.3/FillSinks(WangLiu).txt deleted file mode 100644 index 2a36e9913ae9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/FillSinks(WangLiu).txt +++ /dev/null @@ -1,7 +0,0 @@ -Fill Sinks (Wang & Liu) -ta_preprocessor -ParameterRaster|ELEV|DEM|False -ParameterNumber|MINSLOPE|Minimum Slope [Degree]|0.0|None|0.01 -OutputRaster|FILLED|Filled DEM -OutputRaster|FDIR|Flow Directions -OutputRaster|WSHED|Watershed Basins diff --git a/python/plugins/processing/algs/saga/description/2.2.3/FillSinksXXL(WangLiu).txt b/python/plugins/processing/algs/saga/description/2.2.3/FillSinksXXL(WangLiu).txt deleted file mode 100644 index bd3bd2194b79..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/FillSinksXXL(WangLiu).txt +++ /dev/null @@ -1,5 +0,0 @@ -Fill Sinks XXL (Wang & Liu) -ta_preprocessor -ParameterRaster|ELEV|DEM|False -ParameterNumber|MINSLOPE|Minimum Slope [Degree]|0.0|None|0.01 -OutputRaster|FILLED|Filled DEM diff --git a/python/plugins/processing/algs/saga/description/2.2.3/FilterClumps.txt b/python/plugins/processing/algs/saga/description/2.2.3/FilterClumps.txt deleted file mode 100644 index 3ac291f4fab9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/FilterClumps.txt +++ /dev/null @@ -1,5 +0,0 @@ -Filter Clumps -grid_filter -ParameterRaster|GRID|Input Grid|False -ParameterNumber|THRESHOLD|Min. Size|1.0|None|10 -OutputRaster|OUTPUT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/FireRiskAnalysis.txt b/python/plugins/processing/algs/saga/description/2.2.3/FireRiskAnalysis.txt deleted file mode 100644 index 7f9788d09851..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/FireRiskAnalysis.txt +++ /dev/null @@ -1,18 +0,0 @@ -Fire Risk Analysis -sim_fire_spreading -ParameterRaster|DEM|DEM|False -ParameterRaster|FUEL|Fuel Model|False -ParameterRaster|WINDSPD|Wind Speed|False -ParameterRaster|WINDDIR|Wind Direction|False -ParameterRaster|M1H|Dead Fuel Moisture 1H|False -ParameterRaster|M10H|Dead Fuel Moisture 10H|False -ParameterRaster|M100H|Dead Fuel Moisture 100H|False -ParameterRaster|MHERB|Herbaceous Fuel Moisture|False -ParameterRaster|MWOOD|Wood Fuel Moisture|False -ParameterRaster|VALUE|Value|True -ParameterRaster|BASEPROB|Base Probability|True -ParameterNumber|MONTECARLO|Number of Events|None|None|1000 -ParameterNumber|INTERVAL|Fire Length|None|None|100 -OutputRaster|DANGER|Danger -OutputRaster|COMPPROB|Compound Probability -OutputRaster|PRIORITY|Priority Index diff --git a/python/plugins/processing/algs/saga/description/2.2.3/FitNPointstoshape.txt b/python/plugins/processing/algs/saga/description/2.2.3/FitNPointstoshape.txt deleted file mode 100644 index 727ebdb56d2e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/FitNPointstoshape.txt +++ /dev/null @@ -1,5 +0,0 @@ -Fit N Points to shape -shapes_points -ParameterVector|SHAPES|Shapes|2|False -ParameterNumber|NUMPOINTS|Number of points|1.0|None|10 -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.2.3/FlatDetection.txt b/python/plugins/processing/algs/saga/description/2.2.3/FlatDetection.txt deleted file mode 100644 index e106c6e11ad7..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/FlatDetection.txt +++ /dev/null @@ -1,6 +0,0 @@ -Flat Detection -ta_preprocessor -ParameterRaster|DEM|DEM|False -ParameterSelection|FLAT_OUTPUT|Flat Area Values|[0] elevation;[1] enumeration -OutputRaster|NOFLATS|No Flats -OutputRaster|FLATS|Flat Areas diff --git a/python/plugins/processing/algs/saga/description/2.2.3/FlattenPolygonLayer.txt b/python/plugins/processing/algs/saga/description/2.2.3/FlattenPolygonLayer.txt deleted file mode 100644 index 0657662294fc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/FlattenPolygonLayer.txt +++ /dev/null @@ -1,4 +0,0 @@ -Flatten Polygon Layer -shapes_polygons -ParameterVector|INPUT|Input|2|False -OutputVector|OUTPUT|Output \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/FlowAccumulation(FlowTracing).txt b/python/plugins/processing/algs/saga/description/2.2.3/FlowAccumulation(FlowTracing).txt deleted file mode 100644 index 30978cb62f8e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/FlowAccumulation(FlowTracing).txt +++ /dev/null @@ -1,17 +0,0 @@ -Flow Accumulation (Flow Tracing) -ta_hydrology -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SINKROUTE|Sink Routes|True -ParameterRaster|WEIGHT|Weight|True -ParameterRaster|MATERIAL|Material|True -ParameterRaster|VAL_INPUT|Input for Mean over Catchment Calculation|True -ParameterRaster|TARGET|Target|True -ParameterNumber|STEP|Step|None|None|1 -ParameterSelection|METHOD|Method|[0] Rho 8;[1] Kinematic Routing Algorithm;[2] DEMON -ParameterNumber|MINDQV|DEMON - Min. DQV|None|None|0.0 -ParameterBoolean|CORRECT|Flow Correction|True -OutputRaster|CAREA|Catchment Area -OutputRaster|VAL_MEAN|Mean over Catchment -OutputRaster|ACCU_TOT|Total accumulated Material -OutputRaster|ACCU_LEFT|Accumulated Material from left side -OutputRaster|ACCU_RIGHT|Accumulated Material from right side \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/FlowAccumulation(Recursive).txt b/python/plugins/processing/algs/saga/description/2.2.3/FlowAccumulation(Recursive).txt deleted file mode 100644 index 9bdab3eccd5c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/FlowAccumulation(Recursive).txt +++ /dev/null @@ -1,18 +0,0 @@ -Flow Accumulation (Recursive) -ta_hydrology -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SINKROUTE|Sink Routes|True -ParameterRaster|WEIGHT|Weight|True -ParameterRaster|MATERIAL|Material|True -ParameterRaster|VAL_INPUT|Input for Mean over Catchment Calculation|True -ParameterRaster|TARGET|Target|True -ParameterNumber|STEP|Step|None|None|1 -ParameterRaster|TARGETS|Target Areas|True -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Rho 8;[2] Deterministic Infinity;[3] Multiple Flow Direction -ParameterNumber|CONVERGENCE|Convergence|None|None|1.1 -OutputRaster|CAREA|Catchment Area -OutputRaster|VAL_MEAN|Mean over Catchment -OutputRaster|ACCU_TOT|Total accumulated Material -OutputRaster|ACCU_LEFT|Accumulated Material from left side -OutputRaster|ACCU_RIGHT|Accumulated Material from right side -OutputRaster|FLOWLEN|Flow Path Length diff --git a/python/plugins/processing/algs/saga/description/2.2.3/FlowAccumulation(Top-Down).txt b/python/plugins/processing/algs/saga/description/2.2.3/FlowAccumulation(Top-Down).txt deleted file mode 100644 index f575a7fea4c8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/FlowAccumulation(Top-Down).txt +++ /dev/null @@ -1,5 +0,0 @@ -Flow Accumulation (Top-Down) -ta_hydrology -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Rho 8;[2] Braunschweiger Reliefmodell;[3] Deterministic Infinity;[4] Multiple Flow Direction;[5] Multiple Triangular Flow Directon -OutputRaster|CAREA|Catchment Area diff --git a/python/plugins/processing/algs/saga/description/2.2.3/FlowPathLength.txt b/python/plugins/processing/algs/saga/description/2.2.3/FlowPathLength.txt deleted file mode 100644 index da1669996caf..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/FlowPathLength.txt +++ /dev/null @@ -1,8 +0,0 @@ -Flow Path Length -ta_hydrology -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SEED|Seeds|True -ParameterBoolean|SEEDS_ONLY |Seeds Only|True -ParameterSelection|METHOD|Flow Routing Algorithm|[0] Deterministic 8 (D8);[1] Multiple Flow Direction (FD8) -ParameterNumber|CONVERGENCE|Convergence (FD8)|None|None|1.1 -OutputRaster|LENGTH|Flow Path Length diff --git a/python/plugins/processing/algs/saga/description/2.2.3/FlowWidthandSpecificCatchmentArea.txt b/python/plugins/processing/algs/saga/description/2.2.3/FlowWidthandSpecificCatchmentArea.txt deleted file mode 100644 index a8d32a86f617..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/FlowWidthandSpecificCatchmentArea.txt +++ /dev/null @@ -1,7 +0,0 @@ -Flow Width and Specific Catchment Area -ta_hydrology -ParameterRaster|DEM|Elevation|False -ParameterRaster|TCA|Total Catchment Area (TCA)|True -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Multiple Flow Direction (Quinn et al. 1991);[2] Aspect -OutputRaster|WIDTH|Flow Width -OutputRaster|SCA|Specific Catchment Area (SCA) diff --git a/python/plugins/processing/algs/saga/description/2.2.3/Fragmentation(Alternative).txt b/python/plugins/processing/algs/saga/description/2.2.3/Fragmentation(Alternative).txt deleted file mode 100644 index 162d7ae48f5a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/Fragmentation(Alternative).txt +++ /dev/null @@ -1,17 +0,0 @@ -Fragmentation (Alternative) -grid_analysis -ParameterRaster|CLASSES|Classification|False -ParameterNumber|CLASS|Class Identifier|None|None|1 -ParameterNumber|NEIGHBORHOOD_MIN|Neighborhood Min|1.0|None|1 -ParameterNumber|NEIGHBORHOOD_MAX|Neighborhood Max|1.0|None|1 -ParameterSelection|AGGREGATION|Level Aggregation|[0] average;[1] multiplicative -ParameterBoolean|BORDER |Add Border|True -ParameterNumber|WEIGHT|Connectivity Weighting|None|None|1.1 -ParameterNumber|DENSITY_MIN|Minimum Density [Percent]|None|None|10 -ParameterNumber|DENSITY_INT|Minimum Density for Interior Forest [Percent]|None|None|99 -ParameterNumber|LEVEL_GROW|Search Distance Increment|None|None|0.0 -ParameterBoolean|DENSITY_MEAN |Density from Neighbourhood|True -OutputRaster|DENSITY|Density [Percent] -OutputRaster|CONNECTIVITY|Connectivity [Percent] -OutputRaster|FRAGMENTATION|Fragmentation -OutputTable|FRAGSTATS|Summary diff --git a/python/plugins/processing/algs/saga/description/2.2.3/Fragmentation(Standard).txt b/python/plugins/processing/algs/saga/description/2.2.3/Fragmentation(Standard).txt deleted file mode 100644 index 0dc554abcd2c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/Fragmentation(Standard).txt +++ /dev/null @@ -1,17 +0,0 @@ -Fragmentation (Standard) -grid_analysis -ParameterRaster|CLASSES|Classification|False -ParameterNumber|CLASS|Class Identifier|None|None|1 -ParameterNumber|NEIGHBORHOOD_MIN|Neighborhood Min|1.0|None|1 -ParameterNumber|NEIGHBORHOOD_MAX|Neighborhood Max|1.0|None|3 -ParameterSelection|AGGREGATION|Level Aggregation|[0] average;[1] multiplicative -ParameterBoolean|BORDER|Add Border|True -ParameterNumber|WEIGHT|Connectivity Weighting|None|None|1.1 -ParameterNumber|DENSITY_MIN|Minimum Density [Percent]|None|None|10 -ParameterNumber|DENSITY_INT|Minimum Density for Interior Forest [Percent]|None|None|99 -ParameterSelection|CIRCULAR|Neighborhood Type|[0] square;[1] circle -ParameterBoolean|DIAGONAL|Include diagonal neighbour relations|True -OutputRaster|DENSITY|Density [Percent] -OutputRaster|CONNECTIVITY|Connectivity [Percent] -OutputRaster|FRAGMENTATION|Fragmentation -OutputTable|FRAGSTATS|Summary diff --git a/python/plugins/processing/algs/saga/description/2.2.3/FragmentationClassesfromDensityandConnectivity.txt b/python/plugins/processing/algs/saga/description/2.2.3/FragmentationClassesfromDensityandConnectivity.txt deleted file mode 100644 index 99e30c493a4a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/FragmentationClassesfromDensityandConnectivity.txt +++ /dev/null @@ -1,9 +0,0 @@ -Fragmentation Classes from Density and Connectivity -grid_analysis -ParameterRaster|DENSITY|Density [Percent]|False -ParameterRaster|CONNECTIVITY|Connectivity [Percent]|False -ParameterBoolean|BORDER|Add Border|True -ParameterNumber|WEIGHT|Connectivity Weighting|None|None|0 -ParameterNumber|DENSITY_MIN|Minimum Density [Percent]|0.0|100.0|10 -ParameterNumber|DENSITY_INT|Minimum Density for Interior Forest [Percent]|0.0|100.0|99 -OutputRaster|FRAGMENTATION|Fragmentation diff --git a/python/plugins/processing/algs/saga/description/2.2.3/Function.txt b/python/plugins/processing/algs/saga/description/2.2.3/Function.txt deleted file mode 100644 index e058e9b04df0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/Function.txt +++ /dev/null @@ -1,8 +0,0 @@ -Function -grid_calculus -ParameterNumber|XMIN|xmin|None|None|0.0 -ParameterNumber|XMAX|xmax|None|None|0.0 -ParameterNumber|YMIN|ymin|None|None|0.0 -ParameterNumber|YMAX|ymax|None|None|0.0 -ParameterString|FORMUL|Formula| -OutputRaster|RESULT|Function diff --git a/python/plugins/processing/algs/saga/description/2.2.3/Fuzzify.txt b/python/plugins/processing/algs/saga/description/2.2.3/Fuzzify.txt deleted file mode 100644 index d78f12b44318..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/Fuzzify.txt +++ /dev/null @@ -1,10 +0,0 @@ -Fuzzify -grid_calculus -ParameterRaster|INPUT|Grid|False -ParameterNumber|A|A|None|None|0.0 -ParameterNumber|B|B|None|None|0.0 -ParameterNumber|C|C|None|None|0.0 -ParameterNumber|D|D|None|None|0.0 -ParameterSelection|TYPE|Membership Function Type|[0] linear;[1] sigmoidal;[2] j-shaped -ParameterBoolean|AUTOFIT |Adjust to Grid|True -OutputRaster|OUTPUT|Fuzzified Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/FuzzyIntersection(AND).txt b/python/plugins/processing/algs/saga/description/2.2.3/FuzzyIntersection(AND).txt deleted file mode 100644 index a00eff21d7f1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/FuzzyIntersection(AND).txt +++ /dev/null @@ -1,5 +0,0 @@ -Fuzzy Intersection (AND) -grid_calculus -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|TYPE|Operator Type|[0] min(a, b) (non-interactive);[1] a * b;[2] max(0, a + b - 1) -OutputRaster|AND|Intersection diff --git a/python/plugins/processing/algs/saga/description/2.2.3/FuzzyUnion(OR).txt b/python/plugins/processing/algs/saga/description/2.2.3/FuzzyUnion(OR).txt deleted file mode 100644 index 592517943abb..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/FuzzyUnion(OR).txt +++ /dev/null @@ -1,5 +0,0 @@ -Fuzzy Union (OR) -grid_calculus -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|TYPE|Operator Type|[0] max(a, b) (non-interactive);[1] a + b - a * b;[2] min(1, a + b) -OutputRaster|OR|Union diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GaussianFilter.txt b/python/plugins/processing/algs/saga/description/2.2.3/GaussianFilter.txt deleted file mode 100644 index 0cf7e310d150..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GaussianFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Gaussian Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterNumber|SIGMA|Standard Deviation|None|None|1 -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Search Radius|None|None|3 -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GeographicallyWeightedMultipleRegression(Points).txt b/python/plugins/processing/algs/saga/description/2.2.3/GeographicallyWeightedMultipleRegression(Points).txt deleted file mode 100644 index fd483f192f1a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GeographicallyWeightedMultipleRegression(Points).txt +++ /dev/null @@ -1,16 +0,0 @@ -GWR for Multiple Predictors -statistics_regression -ParameterVector|POINTS|Points|-1|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterTableField|PREDICTORS|Predictor|POINTS|-1|False -ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -OutputVector|REGRESSION|Regression \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GeographicallyWeightedMultipleRegression(PointsGrids).txt b/python/plugins/processing/algs/saga/description/2.2.3/GeographicallyWeightedMultipleRegression(PointsGrids).txt deleted file mode 100644 index 1573751dfe6e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GeographicallyWeightedMultipleRegression(PointsGrids).txt +++ /dev/null @@ -1,20 +0,0 @@ -GWR for Multiple Predictor Grids -statistics_regression -ParameterMultipleInput|PREDICTORS|Predictors|3.0|False -ParameterVector|POINTS|Points|0|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterSelection|RESOLUTION|Model Resolution|[0] same as predictors;[1] user defined|1 -ParameterNumber|RESOLUTION_VAL|Resolution|0|None|1 -ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -OutputRaster|REGRESSION|Regression -OutputRaster|QUALITY|Coefficient of Determination -OutputVector|RESIDUALS|Residuals diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GeographicallyWeightedMultipleRegression.txt b/python/plugins/processing/algs/saga/description/2.2.3/GeographicallyWeightedMultipleRegression.txt deleted file mode 100644 index e4f8a0e5ac69..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GeographicallyWeightedMultipleRegression.txt +++ /dev/null @@ -1,23 +0,0 @@ -GWR for Multiple Predictors (Gridded Model Output) -statistics_regression -ParameterVector|POINTS|Points|0|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterTableField|PREDICTORS|Predictor|POINTS|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputVector|REGRESSION|Regression -OutputRaster|SLOPES|Slopes -OutputRaster|TARGET_INTERCEPT|Intercept -OutputRaster|TARGET_QUALITY|Quality \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GeographicallyWeightedRegression(PointsGrid).txt b/python/plugins/processing/algs/saga/description/2.2.3/GeographicallyWeightedRegression(PointsGrid).txt deleted file mode 100644 index 77d54b117626..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GeographicallyWeightedRegression(PointsGrid).txt +++ /dev/null @@ -1,20 +0,0 @@ -GWR for Single Predictor Grid -statistics_regression -ParameterRaster|PREDICTOR|Predictor|False -ParameterVector|POINTS|Points|0|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -OutputRaster|REGRESSION|Regression -OutputRaster|QUALITY|Coefficient of Determination -OutputRaster|INTERCEPT|Intercept -OutputRaster|SLOPE|Slope -OutputVector|RESIDUALS|Residuals diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GeographicallyWeightedRegression.txt b/python/plugins/processing/algs/saga/description/2.2.3/GeographicallyWeightedRegression.txt deleted file mode 100644 index f8ac07c28aa1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GeographicallyWeightedRegression.txt +++ /dev/null @@ -1,23 +0,0 @@ -GWR for Single Predictor (Gridded Model Output) -statistics_regression -ParameterVector|POINTS|Points|0|False -ParameterTableField|DEPENDENT|Dependent Variable|POINTS|-1|False -ParameterTableField|PREDICTOR|Predictor|POINTS|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global) -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid -OutputRaster|TARGET_INTERCEPT|Intercept -OutputRaster|TARGET_SLOPE|Slope -OutputRaster|TARGET_QUALITY|Quality \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GeometricFigures.txt b/python/plugins/processing/algs/saga/description/2.2.3/GeometricFigures.txt deleted file mode 100644 index 09a288dc72c0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GeometricFigures.txt +++ /dev/null @@ -1,7 +0,0 @@ -Geometric Figures -grid_calculus -ParameterNumber|CELL_COUNT|Cell Count|None|None|0 -ParameterNumber|CELL_SIZE|Cell Size|None|None|0 -ParameterSelection|FIGURE|Figure|[0] Cone (up);[1] Cone (down);[2] Plane -ParameterNumber|PLANE|Direction of Plane [Degree]|None|None|0 -OutputRaster|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GetShapesExtents.txt b/python/plugins/processing/algs/saga/description/2.2.3/GetShapesExtents.txt deleted file mode 100644 index 9ef1cc7c3ad0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GetShapesExtents.txt +++ /dev/null @@ -1,5 +0,0 @@ -Get Shapes Extents -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterSelection|OUTPUT|Get Extent for|[0] all shapes;[1] each shape;[2] each shape's part -OutputVector|EXTENTS|Extents diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GlobalMoransIforGrids.txt b/python/plugins/processing/algs/saga/description/2.2.3/GlobalMoransIforGrids.txt deleted file mode 100644 index e5de7f60a3af..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GlobalMoransIforGrids.txt +++ /dev/null @@ -1,5 +0,0 @@ -Global Moran's I for Grids -statistics_grid -ParameterRaster|GRID|Grid|False -ParameterSelection|CONTIGUITY|Case of contiguity|[0] Rook;[1] Queen -OutputTable|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GradientVectorfromCartesiantoPolarCoordinates.txt b/python/plugins/processing/algs/saga/description/2.2.3/GradientVectorfromCartesiantoPolarCoordinates.txt deleted file mode 100644 index 8a725be39c07..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GradientVectorfromCartesiantoPolarCoordinates.txt +++ /dev/null @@ -1,10 +0,0 @@ -Gradient Vector from Cartesian to Polar Coordinates -grid_calculus -ParameterRaster|DX|X Component|False -ParameterRaster|DY|Y Component|False -ParameterSelection|UNITS|Polar Angle Units|[0] radians;[1] degree -ParameterSelection|SYSTEM|Polar Coordinate System|[0] mathematical;[1] geographical;[2] user defined -ParameterNumber|SYSTEM_ZERO|User defined Zero Direction|None|None|0.0 -ParameterSelection|SYSTEM_ORIENT|User defined Orientation|[0] clockwise;[1] counterclockwise -OutputRaster|DIR|Direction -OutputRaster|LEN|Length diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GradientVectorfromPolartoCartesianCoordinates.txt b/python/plugins/processing/algs/saga/description/2.2.3/GradientVectorfromPolartoCartesianCoordinates.txt deleted file mode 100644 index 382aa9e6046b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GradientVectorfromPolartoCartesianCoordinates.txt +++ /dev/null @@ -1,10 +0,0 @@ -Gradient Vector from Polar to Cartesian Coordinates -grid_calculus -ParameterRaster|DIR|Direction|False -ParameterRaster|LEN|Length|False -ParameterSelection|UNITS|Polar Angle Units|[0] radians;[1] degree -ParameterSelection|SYSTEM|Polar Coordinate System|[0] mathematical;[1] geographical;[2] user defined -ParameterNumber|SYSTEM_ZERO|User defined Zero Direction|None|None|0.0 -ParameterSelection|SYSTEM_ORIENT|User defined Orientation|[0] clockwise;[1] counterclockwise -OutputRaster|DX|X Component -OutputRaster|DY|Y Component diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GradientVectorsfromDirectionalComponents.txt b/python/plugins/processing/algs/saga/description/2.2.3/GradientVectorsfromDirectionalComponents.txt deleted file mode 100644 index 1a1abf488830..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GradientVectorsfromDirectionalComponents.txt +++ /dev/null @@ -1,10 +0,0 @@ -Gradient Vectors from Directional Components -shapes_grid -ParameterRaster|X|X Component|False -ParameterRaster|Y|Y Component|False -ParameterNumber|STEP|Step|None|None|1 -ParameterNumber|SIZE_MIN|Size Range Min|None|None|25.0 -ParameterNumber|SIZE_MAX|Size Range Max|None|None|100.0 -ParameterSelection|AGGR|Aggregation|[0] nearest neighbour;[1] mean value -ParameterSelection|STYLE|Style|[0] simple line;[1] arrow;[2] arrow (centered to cell) -OutputVector|VECTORS|Gradient Vectors diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GradientVectorsfromDirectionandLength.txt b/python/plugins/processing/algs/saga/description/2.2.3/GradientVectorsfromDirectionandLength.txt deleted file mode 100644 index 628665a5522b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GradientVectorsfromDirectionandLength.txt +++ /dev/null @@ -1,10 +0,0 @@ -Gradient Vectors from Direction and Length -shapes_grid -ParameterRaster|DIR|Direction|False -ParameterRaster|LEN|Length|False -ParameterNumber|STEP|Step|None|None|1 -ParameterNumber|SIZE_MIN|Size Range Min|None|None|25.0 -ParameterNumber|SIZE_MAX|Size Range Max|None|None|100.0 -ParameterSelection|AGGR|Aggregation|[0] nearest neighbour;[1] mean value -ParameterSelection|STYLE|Style|[0] simple line;[1] arrow;[2] arrow (centered to cell) -OutputVector|VECTORS|Gradient Vectors diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GradientVectorsfromSurface.txt b/python/plugins/processing/algs/saga/description/2.2.3/GradientVectorsfromSurface.txt deleted file mode 100644 index 582bf10c03d5..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GradientVectorsfromSurface.txt +++ /dev/null @@ -1,9 +0,0 @@ -Gradient Vectors from Surface -shapes_grid -ParameterRaster|SURFACE|Surface|False -ParameterNumber|STEP|Step|None|None|1 -ParameterNumber|SIZE_MIN|Size Range Min|None|None|25.0 -ParameterNumber|SIZE_MAX|Size Range Max|None|None|100.0 -ParameterSelection|AGGR|Aggregation|[0] nearest neighbour;[1] mean value -ParameterSelection|STYLE|Style|[0] simple line;[1] arrow;[2] arrow (centered to cell) -OutputVector|VECTORS|Gradient Vectors diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GridBuffer.txt b/python/plugins/processing/algs/saga/description/2.2.3/GridBuffer.txt deleted file mode 100644 index da961e9d8736..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GridBuffer.txt +++ /dev/null @@ -1,6 +0,0 @@ -Grid Buffer -grid_tools -ParameterRaster|FEATURES|Features Grid|False -ParameterNumber|DIST|Distance|None|None|1000 -ParameterSelection|BUFFERTYPE|Buffer Distance|[0] Fixed;[1] Cell value -OutputRaster|BUFFER|Buffer Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GridCalculator.txt b/python/plugins/processing/algs/saga/description/2.2.3/GridCalculator.txt deleted file mode 100644 index e8499488134f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GridCalculator.txt +++ /dev/null @@ -1,9 +0,0 @@ -Raster calculator|Grid Calculator -grid_calculus -AllowUnmatching -ParameterRaster|GRIDS|Main input layer|False -ParameterMultipleInput|XGRIDS|Additional layers|3|True -ParameterString|FORMULA|Formula| -ParameterBoolean|USE_NODATA|Use NoData|False -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 -OutputRaster|RESULT|Calculated diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GridCellIndex.txt b/python/plugins/processing/algs/saga/description/2.2.3/GridCellIndex.txt deleted file mode 100644 index 0b8e3ee81ca4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GridCellIndex.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Cell Index -grid_tools -ParameterRaster|GRID|Input Grid|False -ParameterSelection|ORDER|Index|[0] ascending;[1] descending|0 -OutputRaster|INDEX|Sorted Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GridDifference.txt b/python/plugins/processing/algs/saga/description/2.2.3/GridDifference.txt deleted file mode 100644 index c2fa03dbf7ed..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GridDifference.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Difference -grid_calculus -ParameterRaster|A|A|False -ParameterRaster|B|B|False -OutputRaster|C|Difference (A - B) diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GridDivision.txt b/python/plugins/processing/algs/saga/description/2.2.3/GridDivision.txt deleted file mode 100644 index 718d0109fe4a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GridDivision.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Division -grid_calculus -ParameterRaster|A|Dividend|False -ParameterRaster|B|Divisor|False -OutputRaster|C|Quotient diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GridNormalisation.txt b/python/plugins/processing/algs/saga/description/2.2.3/GridNormalisation.txt deleted file mode 100644 index b16dcabcc8cc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GridNormalisation.txt +++ /dev/null @@ -1,6 +0,0 @@ -Grid Normalisation -grid_calculus -ParameterRaster|INPUT|Grid|False -ParameterNumber|RANGE_MIN|Target Range (min)|None|None|0 -ParameterNumber|RANGE_MAX|Target Range (max)|None|None|1 -OutputRaster|OUTPUT|Normalised Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GridOrientation.txt b/python/plugins/processing/algs/saga/description/2.2.3/GridOrientation.txt deleted file mode 100644 index 2eb0de16a857..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GridOrientation.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Orientation -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterSelection|METHOD|Method|[0] Copy;[1] Flip;[2] Mirror;[3] Invert -OutputRaster|RESULT|Changed Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GridProximityBuffer.txt b/python/plugins/processing/algs/saga/description/2.2.3/GridProximityBuffer.txt deleted file mode 100644 index be5df903a0be..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GridProximityBuffer.txt +++ /dev/null @@ -1,8 +0,0 @@ -Grid Proximity Buffer -grid_tools -ParameterRaster|SOURCE|Source Grid|False -ParameterNumber|DIST|Buffer distance|None|None|500.0 -ParameterNumber|IVAL|Equidistance|None|None|100.0 -OutputRaster|DISTANCE|Distance Grid -OutputRaster|ALLOC|Allocation Grid -OutputRaster|BUFFER|Buffer Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GridSkeletonization.txt b/python/plugins/processing/algs/saga/description/2.2.3/GridSkeletonization.txt deleted file mode 100644 index eacd23ff04c4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GridSkeletonization.txt +++ /dev/null @@ -1,9 +0,0 @@ -Grid Skeletonization -imagery_segmentation -ParameterRaster|INPUT|Grid|False -ParameterSelection|METHOD|Method|[0] Standard;[1] Hilditch's Algorithm;[2] Channel Skeleton -ParameterSelection|INIT_METHOD|Initialisation|[0] Less than;[1] Greater than -ParameterNumber|INIT_THRESHOLD|Threshold (Init.)|None|None|0.0 -ParameterNumber|CONVERGENCE|Convergence|None|None|3.0 -OutputRaster|RESULT|Skeleton -OutputVector|VECTOR|Skeleton diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GridStandardisation.txt b/python/plugins/processing/algs/saga/description/2.2.3/GridStandardisation.txt deleted file mode 100644 index 743f2e0aabf2..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GridStandardisation.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Standardisation -grid_calculus -ParameterRaster|INPUT|Grid|False -ParameterNumber|STRETCH|Stretch Factor|0.0|None|1.0 -OutputRaster|OUTPUT|Standardised Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GridValuestoPoints(randomly).txt b/python/plugins/processing/algs/saga/description/2.2.3/GridValuestoPoints(randomly).txt deleted file mode 100644 index 1f04323c6a34..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GridValuestoPoints(randomly).txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Values to Points (randomly) -shapes_grid -ParameterRaster|GRID|Grid|False -ParameterNumber|FREQ|Frequency|None|None|100 -OutputVector|POINTS|Points diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GridValuestoPoints.txt b/python/plugins/processing/algs/saga/description/2.2.3/GridValuestoPoints.txt deleted file mode 100644 index 0e33a303675b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GridValuestoPoints.txt +++ /dev/null @@ -1,7 +0,0 @@ -Grid Values to Points -shapes_grid -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterVector|POLYGONS|Polygons|-1|True -ParameterBoolean|NODATA |Exclude NoData Cells|True -ParameterSelection|TYPE|Type|[0] nodes;[1] cells -OutputVector|SHAPES|Shapes diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GridVolume.txt b/python/plugins/processing/algs/saga/description/2.2.3/GridVolume.txt deleted file mode 100644 index f20c27cc53d0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GridVolume.txt +++ /dev/null @@ -1,5 +0,0 @@ -Grid Volume -grid_calculus -ParameterRaster|GRID|Grid|False -ParameterSelection|METHOD|Method|[0] Count Only Above Base Level;[1] Count Only Below Base Level;[2] Subtract Volumes Below Base Level;[3] Add Volumes Below Base Level -ParameterNumber|LEVEL|Base Level|None|None|0.0 diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GridsProduct.txt b/python/plugins/processing/algs/saga/description/2.2.3/GridsProduct.txt deleted file mode 100644 index 59d864f4fc9b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GridsProduct.txt +++ /dev/null @@ -1,4 +0,0 @@ -Grids Product -grid_calculus -ParameterMultipleInput|GRIDS|Grids|3|False -OutputRaster|RESULT|Product diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GridsSum.txt b/python/plugins/processing/algs/saga/description/2.2.3/GridsSum.txt deleted file mode 100644 index 60b0beebd9f3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/GridsSum.txt +++ /dev/null @@ -1,4 +0,0 @@ -Grids Sum -grid_calculus -ParameterMultipleInput|GRIDS|Grids|3|False -OutputRaster|RESULT|Sum diff --git a/python/plugins/processing/algs/saga/description/2.2.3/HistogramSurface.txt b/python/plugins/processing/algs/saga/description/2.2.3/HistogramSurface.txt deleted file mode 100644 index bde5571c5d18..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/HistogramSurface.txt +++ /dev/null @@ -1,5 +0,0 @@ -Histogram Surface -grid_visualisation -ParameterRaster|GRID|Grid|False -ParameterSelection|METHOD|Method|[0] rows;[1] columns;[2] circle -OutputRaster|HIST|Histogram diff --git a/python/plugins/processing/algs/saga/description/2.2.3/Hypsometry.txt b/python/plugins/processing/algs/saga/description/2.2.3/Hypsometry.txt deleted file mode 100644 index 2ca4a17709bb..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/Hypsometry.txt +++ /dev/null @@ -1,10 +0,0 @@ -Hypsometry -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterNumber|COUNT|Number of Classes|None|None|100.0 -ParameterSelection|SORTING|Sort|[0] up;[1] down -ParameterSelection|METHOD|Classification Constant|[0] height;[1] area -ParameterBoolean|BZRANGE |Use Z-Range|True -ParameterNumber|ZRANGE_MIN|Z-Range Min|None|None|0.0 -ParameterNumber|ZRANGE_MAX|Z-Range Max|None|None|1000.0 -OutputTable|TABLE|Hypsometry diff --git a/python/plugins/processing/algs/saga/description/2.2.3/InverseDistanceWeighted.txt b/python/plugins/processing/algs/saga/description/2.2.3/InverseDistanceWeighted.txt deleted file mode 100644 index 11b2d2a9ca63..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/InverseDistanceWeighted.txt +++ /dev/null @@ -1,22 +0,0 @@ -Inverse Distance Weighted -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -ParameterSelection|DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting scheme -ParameterNumber|DW_IDW_POWER|Inverse Distance Power|0.0|None|2 -ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|False -ParameterNumber|DW_BANDWIDTH|Exponential and Gaussian Weighting Bandwidth|0.0|None|1 -ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global)|1 -ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100.0 -ParameterSelection|SEARCH_POINTS_ALL|Search Range|[0] maximum number of nearest points;[1] all points whitin search distance|0 -ParameterNumber|SEARCH_POINTS_MIN|Minimum|-1|None|-1 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|20|1 -ParameterSelection|SEARCH_DIRECTION|Search Mode|[0] all directions;[1] quadrants -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points -ParameterNumber|SEARCH_POINTS_MAX|Maximum Number of Points|None|None|10 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_DEFINITION|Target Grid System|[0] user defined;[1] grid or grid system -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -ParameterRaster|TARGET_TEMPLATE|Target System|True -OutputRaster|TARGET_OUT_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/InvertDataNo-Data.txt b/python/plugins/processing/algs/saga/description/2.2.3/InvertDataNo-Data.txt deleted file mode 100644 index 79a626fa9482..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/InvertDataNo-Data.txt +++ /dev/null @@ -1,4 +0,0 @@ -Invert Data/No-Data -grid_tools -ParameterRaster|INPUT|Grid|False -OutputRaster|OUTPUT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.3/KernelDensityEstimation.txt b/python/plugins/processing/algs/saga/description/2.2.3/KernelDensityEstimation.txt deleted file mode 100644 index ec9119509d38..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/KernelDensityEstimation.txt +++ /dev/null @@ -1,11 +0,0 @@ -Kernel Density Estimation -grid_gridding -ParameterVector|POINTS|Points|0|False -ParameterTableField|POPULATION|Weight|POINTS|-1|False -ParameterNumber|RADIUS|Radius|None|None|10 -ParameterSelection|KERNEL|Kernel|[0] quartic kernel;[1] gaussian kernel -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Kernel diff --git a/python/plugins/processing/algs/saga/description/2.2.3/LSFactor.txt b/python/plugins/processing/algs/saga/description/2.2.3/LSFactor.txt deleted file mode 100644 index 6522dc4c91c8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/LSFactor.txt +++ /dev/null @@ -1,9 +0,0 @@ -LS Factor -ta_hydrology -ParameterRaster|SLOPE|Slope|False -ParameterRaster|AREA|Catchment Area|False -ParameterSelection|CONV|Area to Length Conversion|[0] no conversion (areas already given as specific catchment area);[1] 1 / cell size (specific catchment area);[2] square root (catchment length) -ParameterSelection|METHOD|Method (LS)|[0] Moore et al. 1991;[1] Desmet & Govers 1996;[2] Boehner & Selige 2006 -ParameterNumber|EROSIVITY|Rill/Interrill Erosivity|None|None|0.0 -ParameterSelection|STABILITY|Stability|[0] stable;[1] instable (thawing) -OutputRaster|LS|LS Factor diff --git a/python/plugins/processing/algs/saga/description/2.2.3/LakeFlood.txt b/python/plugins/processing/algs/saga/description/2.2.3/LakeFlood.txt deleted file mode 100644 index 0328fc6ec474..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/LakeFlood.txt +++ /dev/null @@ -1,7 +0,0 @@ -Lake Flood -ta_hydrology -ParameterRaster|ELEV|DEM|False -ParameterRaster|SEEDS|Seeds|False -ParameterBoolean|LEVEL |Absolute Water Levels|True -OutputRaster|OUTDEPTH|Lake -OutputRaster|OUTLEVEL|Surface diff --git a/python/plugins/processing/algs/saga/description/2.2.3/LandSurfaceTemperature.txt b/python/plugins/processing/algs/saga/description/2.2.3/LandSurfaceTemperature.txt deleted file mode 100644 index 798338997f46..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/LandSurfaceTemperature.txt +++ /dev/null @@ -1,10 +0,0 @@ -Land Surface Temperature -ta_morphometry -ParameterRaster|DEM|Elevation [m]|False -ParameterRaster|SWR|Short Wave Radiation [kW/m2]|False -ParameterRaster|LAI|Leaf Area Index|False -ParameterNumber|Z_REFERENCE|Elevation at Reference Station [m]|None|None|0.0 -ParameterNumber|T_REFERENCE|Temperature at Reference Station [Deg.Celsius]|None|None|0.0 -ParameterNumber|T_GRADIENT|Temperature Gradient [Deg.Celsius/km]|None|None|6.5 -ParameterNumber|C_FACTOR|C Factor|None|None|1.0 -OutputRaster|LST|Land Surface Temperature [Deg.Celsius] diff --git a/python/plugins/processing/algs/saga/description/2.2.3/LaplacianFilter.txt b/python/plugins/processing/algs/saga/description/2.2.3/LaplacianFilter.txt deleted file mode 100644 index e828148a738f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/LaplacianFilter.txt +++ /dev/null @@ -1,8 +0,0 @@ -Laplacian Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|METHOD|Method|[0] standard kernel 1;[1] standard kernel 2;[2] Standard kernel 3;[3] user defined kernel -ParameterNumber|SIGMA|Standard Deviation (Percent of Radius)|None|None|0 -ParameterNumber|RADIUS|Radius|None|None|1 -ParameterSelection|MODE|Search Mode|[0] square;[1] circle -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/Layerofextremevalue.txt b/python/plugins/processing/algs/saga/description/2.2.3/Layerofextremevalue.txt deleted file mode 100644 index 15c6ed213816..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/Layerofextremevalue.txt +++ /dev/null @@ -1,5 +0,0 @@ -Layer of extreme value -grid_analysis -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|CRITERIA|Method|[0] Maximum;[1] Minimum -OutputRaster|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.3/LeastCostPaths.txt b/python/plugins/processing/algs/saga/description/2.2.3/LeastCostPaths.txt deleted file mode 100644 index ecbdd4818234..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/LeastCostPaths.txt +++ /dev/null @@ -1,7 +0,0 @@ -Least Cost Paths -grid_analysis -ParameterVector|SOURCE|Source Point(s)|0|False -ParameterRaster|DEM|Accumulated cost|False -ParameterMultipleInput|VALUES|Values|3|True -OutputVector|POINTS|Profile (points) -OutputVector|LINE|Profile (lines) diff --git a/python/plugins/processing/algs/saga/description/2.2.3/Line-PolygonIntersection.txt b/python/plugins/processing/algs/saga/description/2.2.3/Line-PolygonIntersection.txt deleted file mode 100644 index 9c15f2583b07..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/Line-PolygonIntersection.txt +++ /dev/null @@ -1,6 +0,0 @@ -Line-Polygon Intersection -shapes_lines -ParameterVector|LINES|Lines|1|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterSelection|METHOD|Output|[0] one multi-line per polygon;[1] keep original line attributes -OutputVector|INTERSECT|Intersection diff --git a/python/plugins/processing/algs/saga/description/2.2.3/LineDissolve.txt b/python/plugins/processing/algs/saga/description/2.2.3/LineDissolve.txt deleted file mode 100644 index fb704cc7bb38..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/LineDissolve.txt +++ /dev/null @@ -1,8 +0,0 @@ -Line Dissolve -shapes_lines -ParameterVector|LINES|Lines|-1|False -ParameterTableField|FIELD_1|1. Attribute|LINES|-1|False -ParameterTableField|FIELD_2|2. Attribute|LINES|-1|False -ParameterTableField|FIELD_3|3. Attribute|LINES|-1|False -ParameterSelection|ALL|Dissolve...|[0] lines with same attribute value(s);[1] all lines -OutputVector|DISSOLVED|Dissolved Lines diff --git a/python/plugins/processing/algs/saga/description/2.2.3/LineProperties.txt b/python/plugins/processing/algs/saga/description/2.2.3/LineProperties.txt deleted file mode 100644 index d23d392d964f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/LineProperties.txt +++ /dev/null @@ -1,7 +0,0 @@ -Line Properties -shapes_lines -ParameterVector|LINES|Lines|1|False -ParameterBoolean|BPARTS |Number of Parts|True -ParameterBoolean|BPOINTS |Number of Vertices|True -ParameterBoolean|BLENGTH |Length|True -OutputVector|OUTPUT|Lines with Property Attributes diff --git a/python/plugins/processing/algs/saga/description/2.2.3/LineSimplification.txt b/python/plugins/processing/algs/saga/description/2.2.3/LineSimplification.txt deleted file mode 100644 index b1bb26e2b791..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/LineSimplification.txt +++ /dev/null @@ -1,5 +0,0 @@ -Line Simplification -shapes_lines -ParameterVector|LINES|Lines|1|False -ParameterNumber|TOLERANCE|Tolerance|None|None|1.0 -OutputVector|OUTPUT|Simplified Lines diff --git a/python/plugins/processing/algs/saga/description/2.2.3/LocalMinimaandMaxima.txt b/python/plugins/processing/algs/saga/description/2.2.3/LocalMinimaandMaxima.txt deleted file mode 100644 index 4b415bc9a990..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/LocalMinimaandMaxima.txt +++ /dev/null @@ -1,5 +0,0 @@ -Local Minima and Maxima -shapes_grid -ParameterRaster|GRID|Grid|False -OutputVector|MINIMA|Minima -OutputVector|MAXIMA|Maxima diff --git a/python/plugins/processing/algs/saga/description/2.2.3/MajorityFilter.txt b/python/plugins/processing/algs/saga/description/2.2.3/MajorityFilter.txt deleted file mode 100644 index 7cd6fe5291b8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/MajorityFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Majority Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Radius|1.0|None|1 -ParameterNumber|THRESHOLD|Threshold [Percent]|0.0|None|0 -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/MassBalanceIndex.txt b/python/plugins/processing/algs/saga/description/2.2.3/MassBalanceIndex.txt deleted file mode 100644 index e65fabf52d57..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/MassBalanceIndex.txt +++ /dev/null @@ -1,8 +0,0 @@ -Mass Balance Index -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterRaster|HREL|Vertical Distance to Channel Network|True -ParameterNumber|TSLOPE|T Slope|None|None|15.0 -ParameterNumber|TCURVE|T Curvature|None|None|0.01 -ParameterNumber|THREL|T Vertical Distance to Channel Network|None|None|15.0 -OutputRaster|MBI|Mass Balance Index diff --git a/python/plugins/processing/algs/saga/description/2.2.3/MergeLayers.txt b/python/plugins/processing/algs/saga/description/2.2.3/MergeLayers.txt deleted file mode 100644 index f0d5bb7955cc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/MergeLayers.txt +++ /dev/null @@ -1,6 +0,0 @@ -Merge Layers -shapes_tools -ParameterMultipleInput|INPUT|Input Layers|-1|True -ParameterBoolean|SRCINFO|Add source information|True -ParameterBoolean|MATCH|Match Fields by Name|True -OutputVector|MERGED|Merged Layer \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/MetricConversions.txt b/python/plugins/processing/algs/saga/description/2.2.3/MetricConversions.txt deleted file mode 100644 index 3501a9e33438..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/MetricConversions.txt +++ /dev/null @@ -1,5 +0,0 @@ -Metric Conversions -grid_calculus -ParameterRaster|GRID|Grid|False -ParameterSelection|CONVERSION|Conversion|[0] radians to degree;[1] degree to radians;[2] Celsius to Fahrenheit;[3] Fahrenheit to Celsius -OutputRaster|CONV|Converted Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/MinimumDistanceAnalysis.txt b/python/plugins/processing/algs/saga/description/2.2.3/MinimumDistanceAnalysis.txt deleted file mode 100644 index 200a565bc533..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/MinimumDistanceAnalysis.txt +++ /dev/null @@ -1,4 +0,0 @@ -Minimum Distance Analysis -statistics_points -ParameterVector|POINTS|Points|0|False -OutputTable|TABLE|Minimum Distance Analysis diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ModifiedQuadraticShepard.txt b/python/plugins/processing/algs/saga/description/2.2.3/ModifiedQuadraticShepard.txt deleted file mode 100644 index 3c96918860ec..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ModifiedQuadraticShepard.txt +++ /dev/null @@ -1,11 +0,0 @@ -Modified Quadratic Shepard -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterNumber|QUADRATIC_NEIGHBORS|Quadratic Neighbors|5.0|None|13 -ParameterNumber|WEIGHTING_NEIGHBORS|Weighting Neighbors|3.0|None|19 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/MorphologicalFilter.txt b/python/plugins/processing/algs/saga/description/2.2.3/MorphologicalFilter.txt deleted file mode 100644 index 28dfd3f15bd2..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/MorphologicalFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Morphological Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Radius|None|None|1 -ParameterSelection|METHOD|Method|[0] Dilation;[1] Erosion;[2] Opening;[3] Closing -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/MorphometricProtectionIndex.txt b/python/plugins/processing/algs/saga/description/2.2.3/MorphometricProtectionIndex.txt deleted file mode 100644 index 48d44432cb65..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/MorphometricProtectionIndex.txt +++ /dev/null @@ -1,5 +0,0 @@ -Morphometric Protection Index -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS|Radius|None|None|2000.0 -OutputRaster|PROTECTION|Protection Index diff --git a/python/plugins/processing/algs/saga/description/2.2.3/Multi-BandVariation.txt b/python/plugins/processing/algs/saga/description/2.2.3/Multi-BandVariation.txt deleted file mode 100644 index 8dcf7d017e09..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/Multi-BandVariation.txt +++ /dev/null @@ -1,11 +0,0 @@ -Multi-Band Variation -statistics_grid -ParameterMultipleInput|BANDS|Grids|3|False -ParameterNumber|RADIUS|Radius [Cells]|None|None|1 -ParameterSelection|DISTANCE_WEIGHTING_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1.0 -OutputRaster|MEAN|Mean Distance -OutputRaster|STDDEV|Standard Deviation -OutputRaster|DIFF|Distance diff --git a/python/plugins/processing/algs/saga/description/2.2.3/MultiDirectionLeeFilter.txt b/python/plugins/processing/algs/saga/description/2.2.3/MultiDirectionLeeFilter.txt deleted file mode 100644 index a768db9522f6..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/MultiDirectionLeeFilter.txt +++ /dev/null @@ -1,10 +0,0 @@ -Multi Direction Lee Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterNumber|NOISE_ABS|Estimated Noise (absolute)|None|None|1.0 -ParameterNumber|NOISE_REL|Estimated Noise (relative)|None|None|1.0 -ParameterBoolean|WEIGHTED |Weighted|True -ParameterSelection|METHOD|Method|[0] noise variance given as absolute value;[1] noise variance given relative to mean standard deviation;[2] original calculation (Ringeler) -OutputRaster|RESULT|Filtered Grid -OutputRaster|STDDEV|Minimum Standard Deviation -OutputRaster|DIR|Direction of Minimum Standard Deviation diff --git a/python/plugins/processing/algs/saga/description/2.2.3/MultilevelB-SplineInterpolation(fromGrid).txt b/python/plugins/processing/algs/saga/description/2.2.3/MultilevelB-SplineInterpolation(fromGrid).txt deleted file mode 100644 index 9c59c92868b8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/MultilevelB-SplineInterpolation(fromGrid).txt +++ /dev/null @@ -1,13 +0,0 @@ -Multilevel B-Spline Interpolation (from Grid) -grid_spline -ParameterRaster|GRID|Grid|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterSelection|METHOD|Method|[0] without B-spline refinement;[1] with B-spline refinement -ParameterNumber|EPSILON|Threshold Error|0|None|0.0001 -ParameterNumber|LEVEL_MAX|Maximum Level|1|14|11.0 -ParameterBoolean|UPDATE|Update View|False -ParameterSelection|DATATYPE|Data Type|[0] same as input grid;[1] floating point -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/MultilevelB-SplineInterpolation.txt b/python/plugins/processing/algs/saga/description/2.2.3/MultilevelB-SplineInterpolation.txt deleted file mode 100644 index 118904a97735..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/MultilevelB-SplineInterpolation.txt +++ /dev/null @@ -1,11 +0,0 @@ -Multilevel B-Spline Interpolation -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -ParameterSelection|METHOD|Method|[0] without B-spline refinement;[1] with B-spline refinement -ParameterNumber|EPSILON|Threshold Error|0|None|0.0001 -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/MultilevelB-SplineInterpolationforCategories.txt b/python/plugins/processing/algs/saga/description/2.2.3/MultilevelB-SplineInterpolationforCategories.txt deleted file mode 100644 index e4104cb2ba48..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/MultilevelB-SplineInterpolationforCategories.txt +++ /dev/null @@ -1,11 +0,0 @@ -Multilevel B-Spline Interpolation for Categories -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -ParameterRaster|TARGET_TEMPLATE|Target system|True -OutputRaster|TARGET_CATEGORIES|Categories -OutputRaster|TARGET_PROPABILITY|Propability \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/MultipleRegressionAnalysis(GridGrids).txt b/python/plugins/processing/algs/saga/description/2.2.3/MultipleRegressionAnalysis(GridGrids).txt deleted file mode 100644 index 32635533abf0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/MultipleRegressionAnalysis(GridGrids).txt +++ /dev/null @@ -1,15 +0,0 @@ -Multiple Regression Analysis (Grid/Grids) -statistics_regression -ParameterRaster|DEPENDENT|Dependent|False -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterBoolean|COORD_X |Include X Coordinate|True -ParameterBoolean|COORD_Y |Include Y Coordinate|True -ParameterSelection|METHOD|Method|[0] include all;[1] forward;[2] backward;[3] stepwise -ParameterNumber|P_IN|P in|None|None|5 -ParameterNumber|P_OUT|P out|None|None|5 -OutputRaster|REGRESSION|Regression -OutputRaster|RESIDUALS|Residuals -OutputTable|INFO_COEFF|Details: Coefficients -OutputTable|INFO_MODEL|Details: Model -OutputTable|INFO_STEPS|Details: Steps diff --git a/python/plugins/processing/algs/saga/description/2.2.3/MultipleRegressionAnalysis(PointsGrids).txt b/python/plugins/processing/algs/saga/description/2.2.3/MultipleRegressionAnalysis(PointsGrids).txt deleted file mode 100644 index c5dbbf03c4f8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/MultipleRegressionAnalysis(PointsGrids).txt +++ /dev/null @@ -1,16 +0,0 @@ -Multiple Regression Analysis (Points/Grids) -statistics_regression -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterVector|SHAPES|Shapes|-1|False -ParameterTableField|ATTRIBUTE|Attribute|SHAPES|-1|False -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterBoolean|COORD_X |Include X Coordinate|True -ParameterBoolean|COORD_Y |Include Y Coordinate|True -ParameterSelection|METHOD|Method|[0] include all;[1] forward;[2] backward;[3] stepwise -ParameterNumber|P_IN|P in|None|None|5 -ParameterNumber|P_OUT|P out|None|None|5 -OutputTable|INFO_COEFF|Details: Coefficients -OutputTable|INFO_MODEL|Details: Model -OutputTable|INFO_STEPS|Details: Steps -OutputVector|RESIDUALS|Residuals -OutputRaster|REGRESSION|Regression diff --git a/python/plugins/processing/algs/saga/description/2.2.3/MultiresolutionIndexofValleyBottomFlatness(MRVBF).txt b/python/plugins/processing/algs/saga/description/2.2.3/MultiresolutionIndexofValleyBottomFlatness(MRVBF).txt deleted file mode 100644 index 04d4c3ccbbdf..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/MultiresolutionIndexofValleyBottomFlatness(MRVBF).txt +++ /dev/null @@ -1,13 +0,0 @@ -Multiresolution Index of Valley Bottom Flatness (MRVBF) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|T_SLOPE|Initial Threshold for Slope|None|None|16 -ParameterNumber|T_PCTL_V|Threshold for Elevation Percentile (Lowness)|None|None|0.4 -ParameterNumber|T_PCTL_R|Threshold for Elevation Percentile (Upness)|None|None|0.35 -ParameterNumber|P_SLOPE|Shape Parameter for Slope|None|None|4.0 -ParameterNumber|P_PCTL|Shape Parameter for Elevation Percentile|None|None|3.0 -ParameterBoolean|UPDATE |Update Views|True -ParameterBoolean|CLASSIFY |Classify|True -ParameterNumber|MAX_RES|Maximum Resolution (Percentage)|None|None|100 -OutputRaster|MRVBF|MRVBF -OutputRaster|MRRTF|MRRTF diff --git a/python/plugins/processing/algs/saga/description/2.2.3/NaturalNeighbour.txt b/python/plugins/processing/algs/saga/description/2.2.3/NaturalNeighbour.txt deleted file mode 100644 index 70353b1e695a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/NaturalNeighbour.txt +++ /dev/null @@ -1,10 +0,0 @@ -Natural Neighbour -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterBoolean|SIBSON|Sibson|True -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/NearestNeighbour.txt b/python/plugins/processing/algs/saga/description/2.2.3/NearestNeighbour.txt deleted file mode 100644 index 50a99a9f3613..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/NearestNeighbour.txt +++ /dev/null @@ -1,9 +0,0 @@ -Nearest Neighbour -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/OrderedWeightedAveraging(OWA).txt b/python/plugins/processing/algs/saga/description/2.2.3/OrderedWeightedAveraging(OWA).txt deleted file mode 100644 index 19b0b85a23dc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/OrderedWeightedAveraging(OWA).txt +++ /dev/null @@ -1,5 +0,0 @@ -Ordered Weighted Averaging|Ordered Weighted Averaging (OWA) -grid_analysis -ParameterMultipleInput|GRIDS|Input Grids|3|False -ParameterFixedTable|WEIGHTS|Weights|3|Weight|False -OutputRaster|OUTPUT|Output Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/OrdinaryKriging(Global).txt b/python/plugins/processing/algs/saga/description/2.2.3/OrdinaryKriging(Global).txt deleted file mode 100644 index 9d3c71e004e2..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/OrdinaryKriging(Global).txt +++ /dev/null @@ -1,27 +0,0 @@ -Universal Kriging -statistics_kriging -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterSelection|TQUALITY|Type of Quality Measure|[0] standard deviation;[1] variance -ParameterBoolean|LOG|Logarithmic Transformation|True -ParameterBoolean|BLOCK|Block Kriging|True -ParameterNumber|DBLOCK|Block Size|0|None|100 -ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0 -ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100 -ParameterNumber|VAR_NSKIP|Skip|1|None|1 -ParameterString|VAR_MODEL|Variogram Model|a + b * x -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|PREDICTION|Prediction -OutputRaster|VARIANCE|Quality Measure -ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global -ParameterNumber|SEARCH_RADIUS|Maximum Search Distance|0|None|1000 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -ParameterMultipleInput|PREDICTORS|Predictors|3|True -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterBoolean|COORDS|Coordinates|False diff --git a/python/plugins/processing/algs/saga/description/2.2.3/OrdinaryKriging.txt b/python/plugins/processing/algs/saga/description/2.2.3/OrdinaryKriging.txt deleted file mode 100644 index ec7a8587acfd..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/OrdinaryKriging.txt +++ /dev/null @@ -1,24 +0,0 @@ -Ordinary Kriging -statistics_kriging -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterSelection|TQUALITY|Type of Quality Measure|[0] standard deviation;[1] variance -ParameterBoolean|LOG|Logarithmic Transformation|True -ParameterBoolean|BLOCK|Block Kriging|True -ParameterNumber|DBLOCK|Block Size|0|None|100 -ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0 -ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100 -ParameterNumber|VAR_NSKIP|Skip|1|None|1 -ParameterString|VAR_MODEL|Variogram Model|a + b * x -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|PREDICTION|Prediction -OutputRaster|VARIANCE|Quality Measure -ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global -ParameterNumber|SEARCH_RADIUS|Maximum Search Distance|0|None|1000 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants diff --git a/python/plugins/processing/algs/saga/description/2.2.3/OverlandFlow-KinematicWaveD8.txt b/python/plugins/processing/algs/saga/description/2.2.3/OverlandFlow-KinematicWaveD8.txt deleted file mode 100644 index 0a287008b818..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/OverlandFlow-KinematicWaveD8.txt +++ /dev/null @@ -1,13 +0,0 @@ -Overland Flow - Kinematic Wave D8 -sim_hydrology -ParameterRaster|DEM|Elevation|False -ParameterVector|GAUGES|Gauges|-1|True -ParameterNumber|TIME_SPAN|Simulation Time [h]|None|None|24 -ParameterNumber|TIME_STEP|Simulation Time Step [h]|None|None|0.1 -ParameterNumber|ROUGHNESS|Manning's Roughness|None|None|0.03 -ParameterNumber|NEWTON_MAXITER|Max. Iterations|None|None|100 -ParameterNumber|NEWTON_EPSILON|Epsilon|None|None|0.0001 -ParameterSelection|PRECIP|Precipitation|[0] Homogenous;[1] Above Elevation;[2] Left Half -ParameterNumber|THRESHOLD|Threshold Elevation|None|None|0.0 -OutputRaster|FLOW|Runoff -OutputTable|GAUGES_FLOW|Flow at Gauges diff --git a/python/plugins/processing/algs/saga/description/2.2.3/OverlandFlowDistancetoChannelNetwork.txt b/python/plugins/processing/algs/saga/description/2.2.3/OverlandFlowDistancetoChannelNetwork.txt deleted file mode 100644 index 58f904431d25..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/OverlandFlowDistancetoChannelNetwork.txt +++ /dev/null @@ -1,8 +0,0 @@ -Overland Flow Distance to Channel Network -ta_channels -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|CHANNELS|Channel Network|False -ParameterSelection|METHOD|Flow Algorithm|[0] D8;[1] MFD -OutputRaster|DISTANCE|Overland Flow Distance -OutputRaster|DISTVERT|Vertical Overland Flow Distance -OutputRaster|DISTHORZ|Horizontal Overland Flow Distance diff --git a/python/plugins/processing/algs/saga/description/2.2.3/Patching.txt b/python/plugins/processing/algs/saga/description/2.2.3/Patching.txt deleted file mode 100644 index 6a70404010f4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/Patching.txt +++ /dev/null @@ -1,6 +0,0 @@ -Patching -grid_tools -ParameterRaster|ORIGINAL|Grid|False -ParameterRaster|ADDITIONAL|Patch Grid|False -ParameterSelection|INTERPOLATION|Interpolation Method|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -OutputRaster|COMPLETED|Completed Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/PatternAnalysis.txt b/python/plugins/processing/algs/saga/description/2.2.3/PatternAnalysis.txt deleted file mode 100644 index 5a6d4de632a2..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/PatternAnalysis.txt +++ /dev/null @@ -1,11 +0,0 @@ -Pattern Analysis -grid_analysis -ParameterRaster|INPUT|Input Grid|False -ParameterSelection|WINSIZE|Size of Analysis Window|[0] 3 X 3;[1] 5 X 5;[2] 7 X 7 -ParameterNumber|MAXNUMCLASS|Max. Number of Classes|None|None|0 -OutputRaster|RELATIVE|Relative Richness -OutputRaster|DIVERSITY|Diversity -OutputRaster|DOMINANCE|Dominance -OutputRaster|FRAGMENTATION|Fragmentation -OutputRaster|NDC|Number of Different Classes -OutputRaster|CVN|Center Versus Neighbours diff --git a/python/plugins/processing/algs/saga/description/2.2.3/PointStatisticsforPolygons.txt b/python/plugins/processing/algs/saga/description/2.2.3/PointStatisticsforPolygons.txt deleted file mode 100644 index 02e0aba55cf1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/PointStatisticsforPolygons.txt +++ /dev/null @@ -1,14 +0,0 @@ -Point Statistics for Polygons -shapes_polygons -ParameterVector|POINTS|Points|0|False -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|FIELDS|Attribute Table field|POINTS|-1|False -ParameterSelection|FIELD_NAME|Field Naming Choice|[0] variable type + original name;[1] original name + variable type;[2] original name;[3] variable type -ParameterBoolean|SUM |Sum|True -ParameterBoolean|AVG |Mean|True -ParameterBoolean|VAR |Variance|True -ParameterBoolean|DEV |Deviation|True -ParameterBoolean|MIN |Minimum|True -ParameterBoolean|MAX |Maximum|True -ParameterBoolean|NUM |Count|True -OutputVector|STATISTICS|Statistics diff --git a/python/plugins/processing/algs/saga/description/2.2.3/PointsFilter.txt b/python/plugins/processing/algs/saga/description/2.2.3/PointsFilter.txt deleted file mode 100644 index afb3ee99f331..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/PointsFilter.txt +++ /dev/null @@ -1,12 +0,0 @@ -Points Filter -shapes_points -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterNumber|RADIUS|Radius|None|None|1 -ParameterNumber|MINNUM|Minimum Number of Points|None|None|0 -ParameterNumber|MAXNUM|Maximum Number of Points|None|None|0 -ParameterBoolean|QUADRANTS |Quadrants|True -ParameterSelection|METHOD|Filter Criterion|[0] keep maxima (with tolerance);[1] keep minima (with tolerance);[2] remove maxima (with tolerance);[3] remove minima (with tolerance);[4] remove below percentile;[5] remove above percentile -ParameterNumber|TOLERANCE|Tolerance|None|None|0.0 -ParameterNumber|PERCENT|Percentile|None|None|50 -OutputVector|FILTER|Filtered Points diff --git a/python/plugins/processing/algs/saga/description/2.2.3/PointsThinning.txt b/python/plugins/processing/algs/saga/description/2.2.3/PointsThinning.txt deleted file mode 100644 index 00643e842d88..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/PointsThinning.txt +++ /dev/null @@ -1,6 +0,0 @@ -Points Thinning -shapes_points -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterNumber|RESOLUTION|Resolution|0.0|None|1.0 -OutputVector|THINNED|Thinned Points diff --git a/python/plugins/processing/algs/saga/description/2.2.3/PolartoCartesianCoordinates.txt b/python/plugins/processing/algs/saga/description/2.2.3/PolartoCartesianCoordinates.txt deleted file mode 100644 index 8c9b76b316b1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/PolartoCartesianCoordinates.txt +++ /dev/null @@ -1,8 +0,0 @@ -Polar to Cartesian Coordinates -shapes_tools -ParameterVector|POLAR|Polar Coordinates|-1|False -ParameterTableField|F_EXAGG|Exaggeration|POLAR|-1|False -ParameterNumber|D_EXAGG|Exaggeration Factor|None|None|1 -ParameterNumber|RADIUS|Radius|None|None|6371000.0 -ParameterBoolean|DEGREE |Degree|True -OutputVector|CARTES|Cartesian Coordinates diff --git a/python/plugins/processing/algs/saga/description/2.2.3/Polygon-LineIntersection.txt b/python/plugins/processing/algs/saga/description/2.2.3/Polygon-LineIntersection.txt deleted file mode 100644 index cb4dd7e8e530..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/Polygon-LineIntersection.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygon-Line Intersection -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterVector|LINES|Lines|1|False -OutputVector|INTERSECT|Intersection diff --git a/python/plugins/processing/algs/saga/description/2.2.3/PolygonCentroids.txt b/python/plugins/processing/algs/saga/description/2.2.3/PolygonCentroids.txt deleted file mode 100644 index 5672b7e7f33a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/PolygonCentroids.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygon Centroids -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|METHOD |Centroids for each part|True -OutputVector|CENTROIDS|Centroids diff --git a/python/plugins/processing/algs/saga/description/2.2.3/PolygonClipping.txt b/python/plugins/processing/algs/saga/description/2.2.3/PolygonClipping.txt deleted file mode 100644 index 08c4993e6d7e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/PolygonClipping.txt +++ /dev/null @@ -1,6 +0,0 @@ -Polygon Clipping -shapes_polygons -ParameterVector|CLIP|Clip features|2|False -ParameterVector|S_INPUT|Input features|-1|False -OutputVector|S_OUTPUT|Output features -Hardcoded|-MULTIPLE 0 \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/PolygonDifference.txt b/python/plugins/processing/algs/saga/description/2.2.3/PolygonDifference.txt deleted file mode 100644 index ffb19965a883..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/PolygonDifference.txt +++ /dev/null @@ -1,6 +0,0 @@ -Difference -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Difference diff --git a/python/plugins/processing/algs/saga/description/2.2.3/PolygonDissolve.txt b/python/plugins/processing/algs/saga/description/2.2.3/PolygonDissolve.txt deleted file mode 100644 index 31663861e027..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/PolygonDissolve.txt +++ /dev/null @@ -1,8 +0,0 @@ -Polygon dissolve (by attribute)|Polygon Dissolve -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|FIELD_1|1. Attribute|POLYGONS|-1|True -ParameterTableField|FIELD_2|2. Attribute|POLYGONS|-1|True -ParameterTableField|FIELD_3|3. Attribute|POLYGONS|-1|True -ParameterBoolean|BND_KEEP|Keep inner boundaries|True -OutputVector|DISSOLVED|Dissolved diff --git a/python/plugins/processing/algs/saga/description/2.2.3/PolygonDissolveAllPolygs.txt b/python/plugins/processing/algs/saga/description/2.2.3/PolygonDissolveAllPolygs.txt deleted file mode 100644 index 49133566c5d4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/PolygonDissolveAllPolygs.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygon dissolve (all polygons)|Polygon Dissolve -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|BND_KEEP|Keep inner boundaries|True -OutputVector|DISSOLVED|Dissolved diff --git a/python/plugins/processing/algs/saga/description/2.2.3/PolygonIdentity.txt b/python/plugins/processing/algs/saga/description/2.2.3/PolygonIdentity.txt deleted file mode 100644 index 6cb365fbefba..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/PolygonIdentity.txt +++ /dev/null @@ -1,6 +0,0 @@ -Identity -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Identity diff --git a/python/plugins/processing/algs/saga/description/2.2.3/PolygonIntersect.txt b/python/plugins/processing/algs/saga/description/2.2.3/PolygonIntersect.txt deleted file mode 100644 index 2a822db707c3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/PolygonIntersect.txt +++ /dev/null @@ -1,6 +0,0 @@ -Intersect -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Intersection diff --git a/python/plugins/processing/algs/saga/description/2.2.3/PolygonPartstoSeparatePolygons.txt b/python/plugins/processing/algs/saga/description/2.2.3/PolygonPartstoSeparatePolygons.txt deleted file mode 100644 index 1cab12c11a51..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/PolygonPartstoSeparatePolygons.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygon Parts to Separate Polygons -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|LAKES |Ignore Lakes|True -OutputVector|PARTS|Polygon Parts diff --git a/python/plugins/processing/algs/saga/description/2.2.3/PolygonProperties.txt b/python/plugins/processing/algs/saga/description/2.2.3/PolygonProperties.txt deleted file mode 100644 index eeb063b1e570..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/PolygonProperties.txt +++ /dev/null @@ -1,8 +0,0 @@ -Polygon Properties -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterBoolean|BPARTS |Number of Parts|True -ParameterBoolean|BPOINTS |Number of Vertices|True -ParameterBoolean|BLENGTH |Perimeter|True -ParameterBoolean|BAREA |Area|True -OutputVector|OUTPUT|Polygons with Property Attributes diff --git a/python/plugins/processing/algs/saga/description/2.2.3/PolygonSelfIntersection.txt b/python/plugins/processing/algs/saga/description/2.2.3/PolygonSelfIntersection.txt deleted file mode 100644 index 14359a48701b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/PolygonSelfIntersection.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygon Self-Intersection -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|ID|Identifier|POLYGONS|-1|False -OutputVector|INTERSECT|Intersection \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/PolygonShapeIndices.txt b/python/plugins/processing/algs/saga/description/2.2.3/PolygonShapeIndices.txt deleted file mode 100644 index 468ac18c9956..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/PolygonShapeIndices.txt +++ /dev/null @@ -1,4 +0,0 @@ -Polygon Shape Indices -shapes_polygons -ParameterVector|SHAPES|Shapes|2|False -OutputVector|INDEX|Shape Index diff --git a/python/plugins/processing/algs/saga/description/2.2.3/PolygonSymmetricalDifference.txt b/python/plugins/processing/algs/saga/description/2.2.3/PolygonSymmetricalDifference.txt deleted file mode 100644 index d1e4e3dc584e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/PolygonSymmetricalDifference.txt +++ /dev/null @@ -1,6 +0,0 @@ -Symmetrical Difference -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Symmetrical Difference diff --git a/python/plugins/processing/algs/saga/description/2.2.3/PolygonUnion.txt b/python/plugins/processing/algs/saga/description/2.2.3/PolygonUnion.txt deleted file mode 100644 index 8dd3e56c6d1f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/PolygonUnion.txt +++ /dev/null @@ -1,6 +0,0 @@ -Union -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Union diff --git a/python/plugins/processing/algs/saga/description/2.2.3/PolygonUpdate.txt b/python/plugins/processing/algs/saga/description/2.2.3/PolygonUpdate.txt deleted file mode 100644 index 71914cdc8dfe..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/PolygonUpdate.txt +++ /dev/null @@ -1,6 +0,0 @@ -Update -shapes_polygons -ParameterVector|A|Layer A|2|False -ParameterVector|B|Layer B|2|False -ParameterBoolean|SPLIT|Split Parts|True -OutputVector|RESULT|Updated polygons diff --git a/python/plugins/processing/algs/saga/description/2.2.3/PolygonstoEdgesandNodes.txt b/python/plugins/processing/algs/saga/description/2.2.3/PolygonstoEdgesandNodes.txt deleted file mode 100644 index e9f4628f40a8..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/PolygonstoEdgesandNodes.txt +++ /dev/null @@ -1,5 +0,0 @@ -Polygons to Edges and Nodes -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -OutputVector|EDGES|Edges -OutputVector|NODES|Nodes diff --git a/python/plugins/processing/algs/saga/description/2.2.3/PolynomialRegression.txt b/python/plugins/processing/algs/saga/description/2.2.3/PolynomialRegression.txt deleted file mode 100644 index e7ccd305714b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/PolynomialRegression.txt +++ /dev/null @@ -1,14 +0,0 @@ -Polynomial Regression -statistics_regression -ParameterVector|POINTS|Points|0|False -ParameterTableField|ATTRIBUTE|Attribute|POINTS|-1|False -ParameterSelection|POLYNOM|Polynom|[0] simple planar surface;[1] bi-linear saddle;[2] quadratic surface;[3] cubic surface;[4] user defined -ParameterNumber|XORDER|Maximum X Order|1|None|4 -ParameterNumber|YORDER|Maximum Y Order|1|None|4 -ParameterNumber|TORDER|Maximum Total Order|0|None|4 -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid -OutputVector|RESIDUALS|Residuals diff --git a/python/plugins/processing/algs/saga/description/2.2.3/PrincipleComponentsAnalysis.txt b/python/plugins/processing/algs/saga/description/2.2.3/PrincipleComponentsAnalysis.txt deleted file mode 100644 index f43035a1cc7a..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/PrincipleComponentsAnalysis.txt +++ /dev/null @@ -1,6 +0,0 @@ -Principle Components Analysis -table_calculus -ParameterTable|TABLE|Table|False -ParameterSelection|METHOD|Method|[0] correlation matrix;[1] variance-covariance matrix;[2] sums-of-squares-and-cross-products matrix -ParameterNumber|NFIRST|Number of Components|None|None|3 -OutputTable|PCA|Principle Components diff --git a/python/plugins/processing/algs/saga/description/2.2.3/Profilefrompoints.txt b/python/plugins/processing/algs/saga/description/2.2.3/Profilefrompoints.txt deleted file mode 100644 index 9e21d5fa3540..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/Profilefrompoints.txt +++ /dev/null @@ -1,7 +0,0 @@ -Profile from points table|Profile from points -ta_profiles -ParameterRaster|GRID|Grid|False -ParameterTable|TABLE|Input|False -ParameterTableField|X|X|TABLE|-1|False -ParameterTableField|Y|Y|TABLE|-1|False -OutputTable|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ProfilesfromLines.txt b/python/plugins/processing/algs/saga/description/2.2.3/ProfilesfromLines.txt deleted file mode 100644 index bc32a9f8b05f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ProfilesfromLines.txt +++ /dev/null @@ -1,9 +0,0 @@ -Profiles from Lines -ta_profiles -ParameterRaster|DEM|DEM|False -ParameterMultipleInput|VALUES|Values|3|True -ParameterVector|LINES|Lines|1|False -ParameterTableField|NAME|Name|LINES|-1|False -ParameterBoolean|SPLIT |Each Line as new Profile|True -OutputVector|PROFILE|Profiles -OutputVector|PROFILES|Profiles diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ProximityGrid.txt b/python/plugins/processing/algs/saga/description/2.2.3/ProximityGrid.txt deleted file mode 100644 index b78dad39d795..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ProximityGrid.txt +++ /dev/null @@ -1,6 +0,0 @@ -Proximity Grid -grid_tools -ParameterRaster|FEATURES|Features|False -OutputRaster|DISTANCE|Distance -OutputRaster|DIRECTION|Direction -OutputRaster|ALLOCATION|Allocation diff --git a/python/plugins/processing/algs/saga/description/2.2.3/QuadTreeStructuretoShapes.txt b/python/plugins/processing/algs/saga/description/2.2.3/QuadTreeStructuretoShapes.txt deleted file mode 100644 index 14d3cb722d11..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/QuadTreeStructuretoShapes.txt +++ /dev/null @@ -1,7 +0,0 @@ -QuadTree Structure to Shapes -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterTableField|ATTRIBUTE|Attribute|SHAPES|-1|False -OutputVector|POLYGONS|Polygons -OutputVector|LINES|Lines -OutputVector|POINTS|Duplicated Points diff --git a/python/plugins/processing/algs/saga/description/2.2.3/RGBComposite.txt b/python/plugins/processing/algs/saga/description/2.2.3/RGBComposite.txt deleted file mode 100644 index 271bbc60c10e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/RGBComposite.txt +++ /dev/null @@ -1,24 +0,0 @@ -RGB Composite -grid_visualisation -ParameterRaster|GRID_R|R|False -ParameterRaster|GRID_G|G|False -ParameterRaster|GRID_B|B|False -ParameterSelection|R_METHOD|Method for R value|0 - 255;Rescale to 0 - 255;User defined rescale;Percentiles;Percentage of standard deviation -ParameterSelection|G_METHOD|Method for G value|0 - 255;Rescale to 0 - 255;User defined rescale;Percentiles;Percentage of standard deviation -ParameterSelection|B_METHOD|Method for B value|0 - 255;Rescale to 0 - 255;User defined rescale;Percentiles;Percentage of standard deviation -ParameterNumber|R_RANGE_MIN|Rescale Range for RED min|0|255|0 -ParameterNumber|R_RANGE_MAX|Rescale Range for RED max|0|255|255 -ParameterNumber|R_PERCTL_MIN|Percentiles Range for RED max|1|99|1 -ParameterNumber|R_PERCTL_MAX|Percentiles Range for RED max|1|99|99 -ParameterNumber|R_PERCENT|Percentage of standard deviation for RED|0|None|150.0 -ParameterNumber|G_RANGE_MIN|Rescale Range for GREEN min|0|255|0 -ParameterNumber|G_RANGE_MAX|Rescale Range for GREEN max|0|255|255 -ParameterNumber|G_PERCTL_MIN|Percentiles Range for GREEN max|1|99|1 -ParameterNumber|G_PERCTL_MAX|Percentiles Range for GREEN max|1|99|99 -ParameterNumber|G_PERCENT|Percentage of standard deviation for GREEN|0|None|150.0 -ParameterNumber|B_RANGE_MIN|Rescale Range for BLUE min|0|255|0 -ParameterNumber|B_RANGE_MAX|Rescale Range for BLUE max|0|255|255 -ParameterNumber|B_PERCTL_MIN|Percentiles Range for BLUE max|1|99|1 -ParameterNumber|B_PERCTL_MAX|Percentiles Range for BLUE max|1|99|99 -ParameterNumber|B_PERCENT|Percentage of standard deviation for BLUE|0|None|150.0 -OutputRaster|GRID_RGB|Output RGB diff --git a/python/plugins/processing/algs/saga/description/2.2.3/RadiusofVariance(Grid).txt b/python/plugins/processing/algs/saga/description/2.2.3/RadiusofVariance(Grid).txt deleted file mode 100644 index 6e6d3edaf469..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/RadiusofVariance(Grid).txt +++ /dev/null @@ -1,7 +0,0 @@ -Radius of Variance (Grid) -statistics_grid -ParameterRaster|INPUT|Grid|False -ParameterNumber|VARIANCE|Standard Deviation|0.0|None|1.0 -ParameterNumber|RADIUS|Maximum Search Radius (cells)|0.0|None|20 -ParameterSelection|OUTPUT|Type of Output|[0] Cells;[1] Map Units -OutputRaster|RESULT|Variance Radius diff --git a/python/plugins/processing/algs/saga/description/2.2.3/RandomField.txt b/python/plugins/processing/algs/saga/description/2.2.3/RandomField.txt deleted file mode 100644 index abf32b4caddc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/RandomField.txt +++ /dev/null @@ -1,12 +0,0 @@ -Random Field -grid_calculus -Hardcoded|-DEFINITION 0 -ParameterSelection|METHOD|Method|[0] Uniform;[1] Gaussian -ParameterNumber|RANGE_MIN|Range Min|None|None|0.0 -ParameterNumber|RANGE_MAX|Range Max|None|None|1.0 -ParameterNumber|MEAN|Arithmetic Mean|None|None|0.0 -ParameterNumber|STDDEV|Standard Deviation|None|None|1.0 -Extent USER_XMIN USER_XMAX USER_YMIN USER_YMAX -ParameterNumber|USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|USER_FITS|Method|[0] nodes;[1] cells -OutputRaster|OUT_GRID|Random Field diff --git a/python/plugins/processing/algs/saga/description/2.2.3/RandomTerrainGeneration.txt b/python/plugins/processing/algs/saga/description/2.2.3/RandomTerrainGeneration.txt deleted file mode 100644 index 18043bf01b5b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/RandomTerrainGeneration.txt +++ /dev/null @@ -1,9 +0,0 @@ -Random Terrain Generation -grid_calculus -ParameterNumber|RADIUS|Radius (cells)|None|None|10 -ParameterNumber|ITERATIONS|Iterations|None|None|10 -ParameterSelection|TARGET_TYPE|Target Dimensions|[0] User defined -ParameterNumber|USER_CELL_SIZE|Grid Size|0.0|None|1.0 -ParameterNumber|USER_COLS|Cols|1.0|None|100 -ParameterNumber|USER_ROWS|Rows|1.0|None|100 -OutputRaster|TARGET_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/RankFilter.txt b/python/plugins/processing/algs/saga/description/2.2.3/RankFilter.txt deleted file mode 100644 index b676b15fc287..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/RankFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Rank Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Radius|1.0|None|1 -ParameterNumber|RANK|Rank [Percent]|None|None|50 -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/RealSurfaceArea.txt b/python/plugins/processing/algs/saga/description/2.2.3/RealSurfaceArea.txt deleted file mode 100644 index 065c34e79f04..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/RealSurfaceArea.txt +++ /dev/null @@ -1,4 +0,0 @@ -Real Surface Area -ta_morphometry -ParameterRaster|DEM|Elevation|False -OutputRaster|AREA|Surface Area diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ReclassifyGridValues.txt b/python/plugins/processing/algs/saga/description/2.2.3/ReclassifyGridValues.txt deleted file mode 100644 index d76e5a594793..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ReclassifyGridValues.txt +++ /dev/null @@ -1,18 +0,0 @@ -Reclassify Grid Values -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterSelection|METHOD|Method|[0] single;[1] range;[2] simple table -ParameterNumber|OLD|old value (for single value change)|None|None|0.0 -ParameterNumber|NEW|new value (for single value change)|None|None|1.0 -ParameterSelection|SOPERATOR|operator (for single value change)|[0] =;[1] <;[2] <=;[3] >=;[4] > -ParameterNumber|MIN|minimum value (for range)|None|None|0.0 -ParameterNumber|MAX|maximum value (for range)|None|None|1.0 -ParameterNumber|RNEW|new value(for range)|None|None|2.0 -ParameterSelection|ROPERATOR|operator (for range)|[0] <=;[1] < -ParameterFixedTable|RETAB|Lookup Table|3|minimum;maximum;new|False -ParameterSelection|TOPERATOR|operator (for table)|[0] min <= value < max;[1] min <= value <= max;[2] min < value <= max;[3] min < value < max -ParameterBoolean|NODATAOPT |replace no data values|True -ParameterNumber|NODATA|new value for no data values|None|None|0.0 -ParameterBoolean|OTHEROPT |replace other values|True -ParameterNumber|OTHERS|new value for other values|None|None|0.0 -OutputRaster|RESULT|Reclassified Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/RegressionAnalysis(PointsGrid).txt b/python/plugins/processing/algs/saga/description/2.2.3/RegressionAnalysis(PointsGrid).txt deleted file mode 100644 index fd4134084d40..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/RegressionAnalysis(PointsGrid).txt +++ /dev/null @@ -1,9 +0,0 @@ -Regression analysis|Regression Analysis (Points/Grid) -statistics_regression -ParameterRaster|GRID|Grid|False -ParameterVector|SHAPES|Shapes|-1|False -ParameterTableField|ATTRIBUTE|Attribute|SHAPES|-1|False -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterSelection|METHOD|Regression Function|[0] Y = a + b * X (linear);[1] Y = a + b / X;[2] Y = a / (b - X);[3] Y = a * X^b (power);[4] Y = a e^(b * X) (exponential);[5] Y = a + b * ln(X) (logarithmic) -OutputRaster|REGRESSION|Regression -OutputVector|RESIDUAL|Residuals diff --git a/python/plugins/processing/algs/saga/description/2.2.3/RelativeHeightsandSlopePositions.txt b/python/plugins/processing/algs/saga/description/2.2.3/RelativeHeightsandSlopePositions.txt deleted file mode 100644 index ab3c30b1953e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/RelativeHeightsandSlopePositions.txt +++ /dev/null @@ -1,11 +0,0 @@ -Relative Heights and Slope Positions -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|W|w|None|None|0.5 -ParameterNumber|T|t|None|None|10.0 -ParameterNumber|E|e|None|None|2.0 -OutputRaster|HO|Slope Height -OutputRaster|HU|Valley Depth -OutputRaster|NH|Normalized Height -OutputRaster|SH|Standardized Height -OutputRaster|MS|Mid-Slope Positon diff --git a/python/plugins/processing/algs/saga/description/2.2.3/RemoveDuplicatePoints.txt b/python/plugins/processing/algs/saga/description/2.2.3/RemoveDuplicatePoints.txt deleted file mode 100644 index 5a4d4c1b54ea..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/RemoveDuplicatePoints.txt +++ /dev/null @@ -1,7 +0,0 @@ -Remove Duplicate Points -shapes_points -ParameterVector|POINTS|Points|-1|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterSelection|METHOD|Point to Keep|[0] first point;[1] last point;[2] point with minimum attribute value;[3] point with maximum attribute value -ParameterSelection|NUMERIC|Numeric Attribute Values|[0] take value from the point to be kept;[1] minimum value of all duplicates;[2] maximum value of all duplicates;[3] mean value of all duplicates -OutputVector|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.3/Representativeness(Grid).txt b/python/plugins/processing/algs/saga/description/2.2.3/Representativeness(Grid).txt deleted file mode 100644 index 35a19a47a222..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/Representativeness(Grid).txt +++ /dev/null @@ -1,6 +0,0 @@ -Representativeness|Representativeness (Grid) -statistics_grid -ParameterRaster|INPUT|Grid|False -ParameterNumber|RADIUS|Radius (Cells)|1.0|None|10 -ParameterNumber|EXPONENT|Exponent|None|None|1 -OutputRaster|RESULT|Representativeness diff --git a/python/plugins/processing/algs/saga/description/2.2.3/RunningAverage.txt b/python/plugins/processing/algs/saga/description/2.2.3/RunningAverage.txt deleted file mode 100644 index c0e23d752241..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/RunningAverage.txt +++ /dev/null @@ -1,6 +0,0 @@ -Running Average -table_calculus -ParameterTable|INPUT|Input|False -ParameterTableField|FIELD|Attribute|INPUT|-1|False -ParameterNumber|COUNT|Number of Records|0.0|None|10 -OutputTable|OUTPUT|Output diff --git a/python/plugins/processing/algs/saga/description/2.2.3/SAGAWetnessIndex.txt b/python/plugins/processing/algs/saga/description/2.2.3/SAGAWetnessIndex.txt deleted file mode 100644 index 564f34bd3efd..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/SAGAWetnessIndex.txt +++ /dev/null @@ -1,13 +0,0 @@ -SAGA Wetness Index -ta_hydrology -ParameterRaster|DEM|Elevation|False -ParameterNumber|SUCTION|Suction|0.0|None|10.0 -ParameterSelection|AREA_TYPE|Type of Area|[0] absolute catchment area;[1] square root of catchment area;[2] specific catchment area -ParameterSelection|SLOPE_TYPE|Type of Slope|[0] local slope;[1] catchment slope -ParameterNumber|SLOPE_MIN|Suction|0.0|None|0.0 -ParameterNumber|SLOPE_OFF|Suction|0.0|None|0.1 -ParameterNumber|SLOPE_WEIGHT|Suction|0.0|None|1.0 -OutputRaster|AREA|Catchment area -OutputRaster|SLOPE|Catchment slope -OutputRaster|AREA_MOD|Modified catchment area -OutputRaster|TWI|Topographic Wetness Index diff --git a/python/plugins/processing/algs/saga/description/2.2.3/SeedGeneration.txt b/python/plugins/processing/algs/saga/description/2.2.3/SeedGeneration.txt deleted file mode 100644 index be4f35778ec1..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/SeedGeneration.txt +++ /dev/null @@ -1,11 +0,0 @@ -Seed Generation -imagery_segmentation -ParameterMultipleInput|GRIDS|Features|3|False -ParameterNumber|FACTOR|Bandwidth (Cells)|0.0|None|2 -ParameterSelection|TYPE_SURFACE|Type of Surface|[0] smoothed surface;[1] variance (a);[2] variance (b) -ParameterSelection|TYPE_SEEDS|Extraction of...|[0] minima;[1] maxima;[2] minima and maxima -ParameterSelection|TYPE_MERGE|Feature Aggregation|[0] additive;[1] multiplicative -ParameterBoolean|NORMALIZE |Normalized|True -OutputRaster|SURFACE|Surface -OutputRaster|SEEDS_GRID|Seeds Grid -OutputVector|SEEDS|Seeds diff --git a/python/plugins/processing/algs/saga/description/2.2.3/Separatepointsbydirection.txt b/python/plugins/processing/algs/saga/description/2.2.3/Separatepointsbydirection.txt deleted file mode 100644 index db1ec26664c6..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/Separatepointsbydirection.txt +++ /dev/null @@ -1,6 +0,0 @@ -Separate points by direction -shapes_points -ParameterVector|POINTS|Points|0|False -ParameterNumber|DIRECTIONS|Number of Directions|1.0|None|4 -ParameterNumber|TOLERANCE|Tolerance (Degree)|0.0|None|5 -OutputVector|OUTPUT|Point direction diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ShapesBuffer.txt b/python/plugins/processing/algs/saga/description/2.2.3/ShapesBuffer.txt deleted file mode 100644 index 57e0051d0fce..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ShapesBuffer.txt +++ /dev/null @@ -1,10 +0,0 @@ -Shapes Buffer (Attribute distance)|Shapes Buffer -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterTableField|DIST_FIELD|Buffer Distance|SHAPES|-1|False -ParameterNumber|DIST_SCALE|Scaling Factor for Attribute Value|None|None|1.0 -ParameterNumber|NZONES|Number of Buffer Zones|1.0|None|1.0 -ParameterNumber|DARC|Arc Vertex Distance [Degree]|0.01|45.0|5.0 -ParameterBoolean|DISSOLVE |Dissolve Buffers|True -ParameterBoolean|POLY_INNER |Inner Buffer|False -OutputVector|BUFFER|Buffer \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ShapesBufferFixed.txt b/python/plugins/processing/algs/saga/description/2.2.3/ShapesBufferFixed.txt deleted file mode 100644 index c8c3878f6374..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ShapesBufferFixed.txt +++ /dev/null @@ -1,9 +0,0 @@ -Shapes Buffer (Fixed distance)|Shapes Buffer -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterNumber|DIST_FIELD_DEFAULT|Buffer distance|0.0|None|100.0 -ParameterNumber|NZONES|Number of Buffer Zones|1.0|None|1.0 -ParameterNumber|DARC|Arc Vertex Distance [Degree]|0.01|45.0|5.0 -ParameterBoolean|DISSOLVE |Dissolve Buffers|True -ParameterBoolean|POLY_INNER |Inner Buffer|False -OutputVector|BUFFER|Buffer \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ShapestoGrid.txt b/python/plugins/processing/algs/saga/description/2.2.3/ShapestoGrid.txt deleted file mode 100644 index 7c8db2b9166c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ShapestoGrid.txt +++ /dev/null @@ -1,14 +0,0 @@ -Shapes to Grid -grid_gridding -Hardcoded|-TARGET_DEFINITION 0 -ParameterVector|INPUT|Shapes|-1|False -ParameterTableField|FIELD|Attribute|INPUT|-1|False -ParameterSelection|OUTPUT|Output Values|[0] data / no-data;[1] index number;[2] attribute|2 -ParameterSelection|MULTIPLE|Method for Multiple Values|[0] first;[1] last;[2] minimum;[3] maximum;[4] mean|4 -ParameterSelection|LINE_TYPE|Method for Lines|[0] thin;[1] thick -ParameterSelection|POLY_TYPE|Method for Lines|[0] node;[1] cell -ParameterSelection|GRID_TYPE|Preferred Target Grid Type|[0] Integer (1 byte);[1] Integer (2 byte);[2] Integer (4 byte);[3] Floating Point (4 byte);[4] Floating Point (8 byte)|3 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|GRID|Rasterized diff --git a/python/plugins/processing/algs/saga/description/2.2.3/SharedPolygonEdges.txt b/python/plugins/processing/algs/saga/description/2.2.3/SharedPolygonEdges.txt deleted file mode 100644 index c21fb215f7de..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/SharedPolygonEdges.txt +++ /dev/null @@ -1,8 +0,0 @@ -Shared Polygon Edges -shapes_polygons -ParameterVector|POLYGONS|Polygons|2|False -ParameterTableField|ATTRIBUTE|Attribute|POLYGONS|-1|False -ParameterNumber|EPSILON|Tolerance|0|None|0.000 -ParameterBoolean|VERTICES|Check vertices|False -ParameterBoolean|DOUBLE|Double edges|False -OutputVector|EDGES|Edges \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ShrinkAndExpand.txt b/python/plugins/processing/algs/saga/description/2.2.3/ShrinkAndExpand.txt deleted file mode 100644 index 89675454d4ea..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ShrinkAndExpand.txt +++ /dev/null @@ -1,8 +0,0 @@ -Shrink and Expand -grid_tools -ParameterRaster|INPUT|Grid|False -ParameterSelection|OPERATION|Operation|[0] Shrink;[1] Expand;[2] shrink and expand;[3] expand and shrink|3 -ParameterSelection|CIRCLE|Search Mode|[0] Square;[1] Circle -ParameterNumber|RADIUS|Radius|1|None|1 -ParameterSelection|EXPAND|Method|[0] min;[1] max;[2] mean;[3] majority|3 -OutputRaster|RESULT|Result Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/SimpleFilter.txt b/python/plugins/processing/algs/saga/description/2.2.3/SimpleFilter.txt deleted file mode 100644 index 580d42ae9f3d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/SimpleFilter.txt +++ /dev/null @@ -1,7 +0,0 @@ -Simple Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle -ParameterSelection|METHOD|Filter|[0] Smooth;[1] Sharpen;[2] Edge -ParameterNumber|RADIUS|Radius|None|None|2 -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/SimpleRegionGrowing.txt b/python/plugins/processing/algs/saga/description/2.2.3/SimpleRegionGrowing.txt deleted file mode 100644 index 9fd3d0adb4fb..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/SimpleRegionGrowing.txt +++ /dev/null @@ -1,14 +0,0 @@ -Simple Region Growing -imagery_segmentation -ParameterRaster|SEEDS|Seeds|False -ParameterMultipleInput|FEATURES|Features|3|False -ParameterSelection|METHOD|Method|[0] feature space and position;[1] feature space -ParameterSelection|NEIGHBOUR|Neighbourhood|[0] 4 (von Neumann);[1] 8 (Moore) -ParameterNumber|SIG_1|Variance in Feature Space|None|None|1.0 -ParameterNumber|SIG_2|Variance in Position Space|None|None|1.0 -ParameterNumber|THRESHOLD|Threshold - Similarity|None|None|0.0 -ParameterBoolean|REFRESH |Refresh|True -ParameterNumber|LEAFSIZE|Leaf Size (for Speed Optimisation)|None|None|256 -OutputRaster|SEGMENTS|Segments -OutputRaster|SIMILARITY|Similarity -OutputTable|TABLE|Seeds diff --git a/python/plugins/processing/algs/saga/description/2.2.3/Simulation.txt b/python/plugins/processing/algs/saga/description/2.2.3/Simulation.txt deleted file mode 100644 index 61e9234afa6d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/Simulation.txt +++ /dev/null @@ -1,16 +0,0 @@ -Simulation -sim_fire_spreading -ParameterRaster|DEM|DEM|False -ParameterRaster|FUEL|Fuel Model|False -ParameterRaster|WINDSPD|Wind Speed|False -ParameterRaster|WINDDIR|Wind Direction|False -ParameterRaster|M1H|Dead Fuel Moisture 1H|False -ParameterRaster|M10H|Dead Fuel Moisture 10H|False -ParameterRaster|M100H|Dead Fuel Moisture 100H|False -ParameterRaster|MHERB|Herbaceous Fuel Moisture|False -ParameterRaster|MWOOD|Wood Fuel Moisture|False -ParameterRaster|IGNITION|Ignition Points|False -ParameterBoolean|UPDATEVIEW |Update View|True -OutputRaster|TIME|Time -OutputRaster|FLAME|Flame Length -OutputRaster|INTENSITY|Intensity diff --git a/python/plugins/processing/algs/saga/description/2.2.3/SinkDrainageRouteDetection.txt b/python/plugins/processing/algs/saga/description/2.2.3/SinkDrainageRouteDetection.txt deleted file mode 100644 index c9fc911ade9c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/SinkDrainageRouteDetection.txt +++ /dev/null @@ -1,6 +0,0 @@ -Sink Drainage Route Detection -ta_preprocessor -ParameterRaster|ELEVATION|Elevation|False -ParameterBoolean|THRESHOLD |Threshold|True -ParameterNumber|THRSHEIGHT|Threshold Height|None|None|100.0 -OutputRaster|SINKROUTE|Sink Route diff --git a/python/plugins/processing/algs/saga/description/2.2.3/SinkRemoval.txt b/python/plugins/processing/algs/saga/description/2.2.3/SinkRemoval.txt deleted file mode 100644 index 16ccd4d7468f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/SinkRemoval.txt +++ /dev/null @@ -1,8 +0,0 @@ -Sink Removal -ta_preprocessor -ParameterRaster|DEM|DEM|False -ParameterRaster|SINKROUTE|Sink Route|True -ParameterSelection|METHOD|Method|[0] Deepen Drainage Routes;[1] Fill Sinks -ParameterBoolean|THRESHOLD |Threshold|True -ParameterNumber|THRSHEIGHT|Threshold Height|None|None|100.0 -OutputRaster|DEM_PREPROC|Preprocessed DEM diff --git a/python/plugins/processing/algs/saga/description/2.2.3/SkyViewFactor.txt b/python/plugins/processing/algs/saga/description/2.2.3/SkyViewFactor.txt deleted file mode 100644 index 2114c288ebbc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/SkyViewFactor.txt +++ /dev/null @@ -1,12 +0,0 @@ -Sky View Factor -ta_lighting -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS|Maximum Search Radius|0.0|None|10000 -ParameterSelection|METHOD|Method|[0] multi scale;[1] sectors -ParameterNumber|DLEVEL|Multi Scale Factor|1.25|None|3.00 -ParameterNumber|NDIRS|Number of Sectors|3|None|8 -OutputRaster|VISIBLE|Visible Sky -OutputRaster|SVF|Sky View Factor -OutputRaster|SIMPLE|Sky View Factor (Simplified) -OutputRaster|TERRAIN|Terrain View Factor -OutputRaster|DISTANCE|Terrain View Factor diff --git a/python/plugins/processing/algs/saga/description/2.2.3/Slope,Aspect,Curvature.txt b/python/plugins/processing/algs/saga/description/2.2.3/Slope,Aspect,Curvature.txt deleted file mode 100644 index e9d707c6d0bc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/Slope,Aspect,Curvature.txt +++ /dev/null @@ -1,18 +0,0 @@ -Slope, Aspect, Curvature -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Method|[0] Maximum Slope (Travis et al. 1975);[1] Maximum Triangle Slope (Tarboton 1997);[2] Least Squares Fitted Plane (Horn 1981, Costa-Cabral & Burgess 1996);[3] 6 parameter 2nd order polynom (Evans 1979);[4] 6 parameter 2nd order polynom (Heerdegen & Beran 1982);[5] 6 parameter 2nd order polynom (Bauer, Rohdenburg, Bork 1985);[6] 9 parameter 2nd order polynom (Zevenbergen & Thorne 1987);[7]10 parameter 3rd order polynom (Haralick 1983)|6 -ParameterSelection|UNIT_SLOPE|Slope Units|[0] radians;[1] degree;[2] percent|1 -ParameterSelection|UNIT_ASPECT|Aspect Units|[0] radians;[1] degree|1 -OutputRaster|SLOPE|Slope -OutputRaster|ASPECT|Aspect -OutputRaster|C_GENE|General Curvature -OutputRaster|C_PLAN|Plan Curvature -OutputRaster|C_PROF|Profile Curvature -OutputRaster|C_TANG|Tangential Curvature -OutputRaster|C_LONG|Longitudinal Curvature -OutputRaster|C_CROS|Cross-Sectional Curvature -OutputRaster|C_MINI|Minimal Curvature -OutputRaster|C_MAXI|Maximal Curvature -OutputRaster|C_TOTA|Total Curvature -OutputRaster|C_ROTO|Flow-Line Curvature diff --git a/python/plugins/processing/algs/saga/description/2.2.3/SlopeLength.txt b/python/plugins/processing/algs/saga/description/2.2.3/SlopeLength.txt deleted file mode 100644 index f0e8d3384acc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/SlopeLength.txt +++ /dev/null @@ -1,4 +0,0 @@ -Slope Length -ta_hydrology -ParameterRaster|DEM|Elevation|False -OutputRaster|LENGTH|Slope Length diff --git a/python/plugins/processing/algs/saga/description/2.2.3/SoilTextureClassification.txt b/python/plugins/processing/algs/saga/description/2.2.3/SoilTextureClassification.txt deleted file mode 100644 index 9752948d7c3d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/SoilTextureClassification.txt +++ /dev/null @@ -1,7 +0,0 @@ -Soil Texture Classification -grid_analysis -ParameterRaster|SAND|Sand|True -ParameterRaster|SILT|Silt|True -ParameterRaster|CLAY|Clay|True -OutputRaster|TEXTURE|Soil Texture -OutputRaster|SUM|Sum diff --git a/python/plugins/processing/algs/saga/description/2.2.3/SpatialPointPatternAnalysis.txt b/python/plugins/processing/algs/saga/description/2.2.3/SpatialPointPatternAnalysis.txt deleted file mode 100644 index 4a90797d8d5b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/SpatialPointPatternAnalysis.txt +++ /dev/null @@ -1,7 +0,0 @@ -Spatial Point Pattern Analysis -statistics_points -ParameterVector|POINTS|Points|0|False -ParameterNumber|STEP|Vertex Distance [Degree]|None|None|5 -OutputVector|CENTRE|Mean Centre -OutputVector|STDDIST|Standard Distance -OutputVector|BBOX|Bounding Box diff --git a/python/plugins/processing/algs/saga/description/2.2.3/SplitShapesLayerRandomly.txt b/python/plugins/processing/algs/saga/description/2.2.3/SplitShapesLayerRandomly.txt deleted file mode 100644 index 8d2648b4f40d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/SplitShapesLayerRandomly.txt +++ /dev/null @@ -1,7 +0,0 @@ -Split Shapes Layer Randomly -shapes_tools -ParameterVector|SHAPES|Shapes|-1|False -ParameterNumber|PERCENT|Split ratio (%)|0|100|50 -ParameterBoolean|EXACT |Split exactly|True -OutputVector|A|Group A -OutputVector|B|Group B diff --git a/python/plugins/processing/algs/saga/description/2.2.3/StatisticsforGrids.txt b/python/plugins/processing/algs/saga/description/2.2.3/StatisticsforGrids.txt deleted file mode 100644 index e21300c5fb4c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/StatisticsforGrids.txt +++ /dev/null @@ -1,14 +0,0 @@ -Statistics for Grids -statistics_grid -ParameterMultipleInput|GRIDS|Grids|3|False -ParameterNumber|PCTL_VAL|Percentile|0.0|100.0|50.0 -OutputRaster|MEAN|Arithmetic Mean -OutputRaster|MIN|Minimum -OutputRaster|MAX|Maximum -OutputRaster|VAR|Variance -OutputRaster|SUM|Sum -OutputRaster|RANGE|Range -OutputRaster|PCTL|Percentile -OutputRaster|STDDEV|Standard Deviation -OutputRaster|STDDEVLO|Mean less Standard Deviation -OutputRaster|STDDEVHI|Mean plus Standard Deviation \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/StrahlerOrder.txt b/python/plugins/processing/algs/saga/description/2.2.3/StrahlerOrder.txt deleted file mode 100644 index 87d914794682..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/StrahlerOrder.txt +++ /dev/null @@ -1,4 +0,0 @@ -Strahler Order -ta_channels -ParameterRaster|DEM|Elevation|False -OutputRaster|STRAHLER|Strahler Order diff --git a/python/plugins/processing/algs/saga/description/2.2.3/StreamPowerIndex.txt b/python/plugins/processing/algs/saga/description/2.2.3/StreamPowerIndex.txt deleted file mode 100644 index e33da9b0f9f3..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/StreamPowerIndex.txt +++ /dev/null @@ -1,6 +0,0 @@ -Stream Power Index -ta_hydrology -ParameterRaster|SLOPE|Slope|False -ParameterRaster|AREA|Catchment Area|False -ParameterSelection|CONV|Area Conversion|[0] no conversion (areas already given as specific catchment area);[1] 1 / cell size (pseudo specific catchment area) -OutputRaster|SPI|Stream Power Index diff --git a/python/plugins/processing/algs/saga/description/2.2.3/SupervisedClassification.txt b/python/plugins/processing/algs/saga/description/2.2.3/SupervisedClassification.txt deleted file mode 100644 index 96afab5c993b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/SupervisedClassification.txt +++ /dev/null @@ -1,22 +0,0 @@ -Supervised Classification -imagery_classification -ParameterMultipleInput|GRIDS|Grids|3.0|False -ParameterVector|ROI|Training Areas|2|False -ParameterTableField|ROI_ID|Class Identifier|ROI|-1|False -ParameterTable|STATS|Class Statistics|False -ParameterSelection|STATS_SRC|Get Class Statistics from...|[0] training areas;[1] table -ParameterSelection|METHOD|Method|[0] Binary Encoding;[1] Parallelepiped;[2] Minimum Distance;[3] Mahalanobis Distance;[4] Maximum Likelihood;[5] Spectral Angle Mapping; [6] Winner Takes All -ParameterBoolean|NORMALISE|Normalise|False -ParameterNumber|THRESHOLD_DIST|Distance Threshold|0.0|None|0.0 -ParameterNumber|THRESHOLD_PROB|Probability Threshold (Percent)|0.0|100.0|0.0 -ParameterSelection|RELATIVE_PROB|Probability Reference|[0] absolute;[1] relative -ParameterNumber|THRESHOLD_ANGLE|Spectral Angle Threshold (Degree)|0.0|90.0|0.0 -ParameterBoolean|WTA_0|Binary Encoding|False -ParameterBoolean|WTA_1|Parallelepiped|False -ParameterBoolean|WTA_2|Minimum Distance|False -ParameterBoolean|WTA_3|Mahalanobis Distance|False -ParameterBoolean|WTA_4|Maximum Likelihood|False -ParameterBoolean|WTA_5|Spectral Angle Mapping|False -OutputTable|CLASS_INFO|Class Information -OutputRaster|CLASSES|Classification -OutputRaster|QUALITY|Quality \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/SurfaceSpecificPoints.txt b/python/plugins/processing/algs/saga/description/2.2.3/SurfaceSpecificPoints.txt deleted file mode 100644 index b0762ce1320b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/SurfaceSpecificPoints.txt +++ /dev/null @@ -1,6 +0,0 @@ -Surface Specific Points -ta_morphometry -ParameterRaster|ELEVATION|Elevation|False -ParameterSelection|METHOD|Method|[0] Mark Highest Neighbour;[1] Opposite Neighbours;[2] Flow Direction;[3] Flow Direction (up and down);[4] Peucker & Douglas -ParameterNumber|THRESHOLD|Threshold|None|None|2.0 -OutputRaster|RESULT|Result diff --git a/python/plugins/processing/algs/saga/description/2.2.3/TPIBasedLandformClassification.txt b/python/plugins/processing/algs/saga/description/2.2.3/TPIBasedLandformClassification.txt deleted file mode 100644 index bfed438c79d7..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/TPIBasedLandformClassification.txt +++ /dev/null @@ -1,12 +0,0 @@ -TPI Based Landform Classification -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS_A_MIN|Min Radius A|None|None|0 -ParameterNumber|RADIUS_A_MAX|Max Radius A|None|None|100 -ParameterNumber|RADIUS_B_MIN|Min Radius B|None|None|0 -ParameterNumber|RADIUS_B_MAX|Max Radius B|None|None|1000 -ParameterSelection|DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|0.0|None|1 -ParameterBoolean|DW_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|75.0 -OutputRaster|LANDFORMS|Landforms diff --git a/python/plugins/processing/algs/saga/description/2.2.3/TerrainRuggednessIndex(TRI).txt b/python/plugins/processing/algs/saga/description/2.2.3/TerrainRuggednessIndex(TRI).txt deleted file mode 100644 index bec50e9d3124..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/TerrainRuggednessIndex(TRI).txt +++ /dev/null @@ -1,9 +0,0 @@ -Terrain Ruggedness Index (TRI) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS|Radius (Cells)|1.0|None|1 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|0.0|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|0.0|None|1.0 -OutputRaster|TRI|Terrain Ruggedness Index (TRI) \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ThinPlateSpline(TIN).txt b/python/plugins/processing/algs/saga/description/2.2.3/ThinPlateSpline(TIN).txt deleted file mode 100644 index 0ded5a78195f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ThinPlateSpline(TIN).txt +++ /dev/null @@ -1,12 +0,0 @@ -Thin Plate Spline (TIN) -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterNumber|REGULARISATION|Regularisation|0.0000|None|0.0001 -ParameterSelection|LEVEL|Neighbourhood|[0] immediate;[1] level 1;[2] level 2 -ParameterBoolean|FRAME|Add Frame|True -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ThinPlateSpline.txt b/python/plugins/processing/algs/saga/description/2.2.3/ThinPlateSpline.txt deleted file mode 100644 index f55c020c02f2..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ThinPlateSpline.txt +++ /dev/null @@ -1,17 +0,0 @@ -Thin Plate Spline -grid_spline -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -ParameterNumber|REGULARISATION|Regularisation|0.0000|None|0.0001 -ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global -ParameterNumber|SEARCH_RADIUS|Search Radius|0.0|None|1000.0 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Maximum Number of Points|1|None|16 -ParameterNumber|SEARCH_POINTS_MAX|Maximum Number of Points|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -ParameterRaster|TARGET_TEMPLATE|Target system|True -OutputRaster|TARGET_OUT_GRID|Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ThresholdBuffer.txt b/python/plugins/processing/algs/saga/description/2.2.3/ThresholdBuffer.txt deleted file mode 100644 index ef26b40a4852..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ThresholdBuffer.txt +++ /dev/null @@ -1,8 +0,0 @@ -Threshold Buffer -grid_tools -ParameterRaster|FEATURES|Features Grid|False -ParameterRaster|VALUE|Value Grid|False -ParameterRaster|THRESHOLDGRID|Threshold Grid|True -ParameterNumber|THRESHOLD|Threshold|None|None|0.0 -ParameterSelection|THRESHOLDTYPE|Threshold Type|[0] Absolute;[1] Relative from cell value -OutputRaster|BUFFER|Buffer Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/TopographicCorrection.txt b/python/plugins/processing/algs/saga/description/2.2.3/TopographicCorrection.txt deleted file mode 100644 index 7f80c2469572..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/TopographicCorrection.txt +++ /dev/null @@ -1,11 +0,0 @@ -Topographic Correction -ta_lighting -ParameterRaster|DEM|Elevation|False -ParameterRaster|ORIGINAL|Original Image|False -ParameterNumber|AZI|Azimuth|None|None|180.0 -ParameterNumber|HGT|Height|None|None|45.0 -ParameterSelection|METHOD|Method|[0] Cosine Correction (Teillet et al. 1982);[1] Cosine Correction (Civco 1989);[2] Minnaert Correction;[3] Minnaert Correction with Slope (Riano et al. 2003);[4] Minnaert Correction with Slope (Law & Nichol 2004);[5] C Correction;[6] Normalization (after Civco, modified by Law & Nichol) -ParameterNumber|MINNAERT|Minnaert Correction|None|None|0.5 -ParameterNumber|MAXCELLS|Maximum Cells (C Correction Analysis)|None|None|1000 -ParameterSelection|MAXVALUE|Value Range|[0] 1 byte (0-255);[1] 2 byte (0-65535) -OutputRaster|CORRECTED|Corrected Image diff --git a/python/plugins/processing/algs/saga/description/2.2.3/TopographicPositionIndex(TPI).txt b/python/plugins/processing/algs/saga/description/2.2.3/TopographicPositionIndex(TPI).txt deleted file mode 100644 index 13a397fd255d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/TopographicPositionIndex(TPI).txt +++ /dev/null @@ -1,11 +0,0 @@ -Topographic Position Index (TPI) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterBoolean|STANDARD |Standardize|True -ParameterNumber|RADIUS_MIN|Min Radius|0.0|None|0.0 -ParameterNumber|RADIUS_MAX|Max Radius|None|None|100.0 -ParameterSelection|DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|None|None|1 -ParameterBoolean|DW_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|75.0 -OutputRaster|TPI|Topographic Position Index \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/TopographicWetnessIndex(TWI).txt b/python/plugins/processing/algs/saga/description/2.2.3/TopographicWetnessIndex(TWI).txt deleted file mode 100644 index b2d63ccea8d5..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/TopographicWetnessIndex(TWI).txt +++ /dev/null @@ -1,8 +0,0 @@ -Topographic Wetness Index (TWI) -ta_hydrology -ParameterRaster|SLOPE|Slope|False -ParameterRaster|AREA|Catchment Area|False -ParameterRaster|TRANS|Transmissivity|True -ParameterSelection|CONV|Area Conversion|[0] no conversion (areas already given as specific catchment area);[1] 1 / cell size (pseudo specific catchment area)|1 -ParameterSelection|METHOD|Method (TWI)|[0] Standard;[1] TOPMODEL -OutputRaster|TWI|Topographic Wetness Index diff --git a/python/plugins/processing/algs/saga/description/2.2.3/Transectthroughpolygonshapefile.txt b/python/plugins/processing/algs/saga/description/2.2.3/Transectthroughpolygonshapefile.txt deleted file mode 100644 index 99eb6654f605..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/Transectthroughpolygonshapefile.txt +++ /dev/null @@ -1,6 +0,0 @@ -Transect through polygon shapefile -shapes_transect -ParameterVector|TRANSECT|Line Transect(s)|1|False -ParameterVector|THEME|Theme|-1|False -ParameterTableField|THEME_FIELD|Theme Field|THEME|-1|False -OutputTable|TRANSECT_RESULT|Result table diff --git a/python/plugins/processing/algs/saga/description/2.2.3/TransformShapes.txt b/python/plugins/processing/algs/saga/description/2.2.3/TransformShapes.txt deleted file mode 100644 index 40e58628af9e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/TransformShapes.txt +++ /dev/null @@ -1,11 +0,0 @@ -Transform Shapes -shapes_tools -ParameterVector|IN|Shapes|-1|False -ParameterNumber|DX|dX|None|None|0.0 -ParameterNumber|DY|dY|None|None|0.0 -ParameterNumber|ANGLE|Angle|None|None|0.0 -ParameterNumber|SCALEX|Scale Factor X|None|None|1.0 -ParameterNumber|SCALEY|Scale Factor Y|None|None|1.0 -ParameterNumber|ANCHORX|X|None|None|0.0 -ParameterNumber|ANCHORY|Y|None|None|0.0 -OutputVector|OUT|Transformed diff --git a/python/plugins/processing/algs/saga/description/2.2.3/TransposeGrids.txt b/python/plugins/processing/algs/saga/description/2.2.3/TransposeGrids.txt deleted file mode 100644 index 8ff6bff31e87..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/TransposeGrids.txt +++ /dev/null @@ -1,6 +0,0 @@ -Transpose Grids -grid_tools -ParameterRaster|GRIDS|Input Grid|False -ParameterBoolean|MIRROR_X|Mirror Horizontally|False -ParameterBoolean|MIRROR_Y|Mirror Vertically|False -OutputRaster|TRANSPOSED|Transposed Grid \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/Triangulation.txt b/python/plugins/processing/algs/saga/description/2.2.3/Triangulation.txt deleted file mode 100644 index 39a2dcbc578e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/Triangulation.txt +++ /dev/null @@ -1,9 +0,0 @@ -Triangulation -grid_gridding -ParameterVector|SHAPES|Points|0|False -ParameterTableField|FIELD|Attribute|SHAPES|-1|False -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|TARGET_OUT_GRID|Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/UniversalKriging(Global).txt b/python/plugins/processing/algs/saga/description/2.2.3/UniversalKriging(Global).txt deleted file mode 100644 index c27e4e4dd06b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/UniversalKriging(Global).txt +++ /dev/null @@ -1,32 +0,0 @@ -Regression Kriging -statistics_kriging -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterMultipleInput|PREDICTORS|Predictors|3|False -OutputRaster|REGRESSION|Regression -OutputRaster|PREDICTION|Prediction -OutputRaster|RESIDUALS|Residuals -OutputRaster|VARIANCE|Quality Measure -ParameterSelection|TQUALITY|Type of Quality Measure|[0] standard deviation;[1] variance -ParameterBoolean|LOG|Logarithmic Transformation|True -ParameterBoolean|BLOCK|Block Kriging|True -ParameterNumber|DBLOCK|Block Size|0|None|100 -ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0 -ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100 -ParameterNumber|VAR_NSKIP|Skip|1|None|1 -ParameterString|VAR_MODEL|Variogram Model|a + b * x -OutputTable|INFO_COEFF|Regression: Coefficients -OutputTable|INFO_MODEL|Regression: Model -OutputTable|INFO_STEPS|Regression: Steps -ParameterBoolean|COORD_X|Include X Coordinate|False -ParameterBoolean|COORD_Y|Include Y Coordinate|False -ParameterBoolean|INTERCEPT|Intercept|True -ParameterSelection|METHOD|Method|[0] include all;[1] forward;[2] backward;[3] stepwise|3 -ParameterNumber|P_VALUE|Significance Level|0|100.0|5.0 -ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation -ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global -ParameterNumber|SEARCH_RADIUS|Maximum Search Distance|0|None|1000 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/UniversalKriging.txt b/python/plugins/processing/algs/saga/description/2.2.3/UniversalKriging.txt deleted file mode 100644 index 45d4d35e84e0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/UniversalKriging.txt +++ /dev/null @@ -1,24 +0,0 @@ -Simple Kriging -statistics_kriging -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterSelection|TQUALITY|Type of Quality Measure|[0] standard deviation;[1] variance -ParameterBoolean|LOG|Logarithmic Transformation|True -ParameterBoolean|BLOCK|Block Kriging|True -ParameterNumber|DBLOCK|Block Size|0|None|100 -ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0 -ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100 -ParameterNumber|VAR_NSKIP|Skip|1|None|1 -ParameterString|VAR_MODEL|Variogram Model|a + b * x -Hardcoded|-TARGET_DEFINITION 0 -Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX -ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0 -ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells -OutputRaster|PREDICTION|Prediction -OutputRaster|VARIANCE|Quality Measure -ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global -ParameterNumber|SEARCH_RADIUS|Maximum Search Distance|0|None|1000 -ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance -ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4 -ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20 -ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants \ No newline at end of file diff --git a/python/plugins/processing/algs/saga/description/2.2.3/UpslopeArea.txt b/python/plugins/processing/algs/saga/description/2.2.3/UpslopeArea.txt deleted file mode 100644 index 903e4ba30111..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/UpslopeArea.txt +++ /dev/null @@ -1,10 +0,0 @@ -Upslope Area|4 -ta_hydrology -ParameterRaster|TARGET|Target Area|True -ParameterNumber|TARGET_PT_X|Target X coordinate|None|None|0.0 -ParameterNumber|TARGET_PT_Y|Target Y coordinate|None|None|0.0 -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|SINKROUTE|Sink Routes|True -ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Deterministic Infinity;[2] Multiple Flow Direction -ParameterNumber|CONVERGE|Convergence|None|None|1.1 -OutputRaster|AREA|Upslope Area diff --git a/python/plugins/processing/algs/saga/description/2.2.3/UserDefinedFilter.txt b/python/plugins/processing/algs/saga/description/2.2.3/UserDefinedFilter.txt deleted file mode 100644 index e28c9e4eac0e..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/UserDefinedFilter.txt +++ /dev/null @@ -1,6 +0,0 @@ -User Defined Filter -grid_filter -ParameterRaster|INPUT|Grid|False -ParameterTable|FILTER|Filter Matrix|True -ParameterFixedTable|FILTER_3X3|Default Filter Matrix (3x3)|3|1;2;3|True -OutputRaster|RESULT|Filtered Grid diff --git a/python/plugins/processing/algs/saga/description/2.2.3/VariogramCloud.txt b/python/plugins/processing/algs/saga/description/2.2.3/VariogramCloud.txt deleted file mode 100644 index 74d1463978cc..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/VariogramCloud.txt +++ /dev/null @@ -1,7 +0,0 @@ -Variogram Cloud -statistics_points -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterNumber|DISTMAX|Maximum Distance|None|None|0.0 -ParameterNumber|NSKIP|Skip Number|None|None|1 -OutputTable|RESULT|Variogram Cloud diff --git a/python/plugins/processing/algs/saga/description/2.2.3/VariogramSurface.txt b/python/plugins/processing/algs/saga/description/2.2.3/VariogramSurface.txt deleted file mode 100644 index 4f09961aab9c..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/VariogramSurface.txt +++ /dev/null @@ -1,9 +0,0 @@ -Variogram Surface -statistics_points -ParameterVector|POINTS|Points|0|False -ParameterTableField|FIELD|Attribute|POINTS|-1|False -ParameterNumber|DISTCOUNT|Number of Distance Classes|1.0|None|10 -ParameterNumber|NSKIP|Skip Number|None|None|1 -OutputRaster|COUNT|Number of Pairs -OutputRaster|VARIANCE|Variogram Surface -OutputRaster|COVARIANCE|Covariance Surface diff --git a/python/plugins/processing/algs/saga/description/2.2.3/VectorRuggednessMeasure(VRM).txt b/python/plugins/processing/algs/saga/description/2.2.3/VectorRuggednessMeasure(VRM).txt deleted file mode 100644 index 072311d5aaf6..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/VectorRuggednessMeasure(VRM).txt +++ /dev/null @@ -1,9 +0,0 @@ -Vector Ruggedness Measure (VRM) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterNumber|RADIUS|Radius (Cells)|None|None|1 -ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting -ParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|0.0|None|1 -ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET |Inverse Distance Offset|True -ParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|0.0|None|1 -OutputRaster|VRM|Vector Terrain Ruggedness (VRM) diff --git a/python/plugins/processing/algs/saga/description/2.2.3/VectorisingGridClasses.txt b/python/plugins/processing/algs/saga/description/2.2.3/VectorisingGridClasses.txt deleted file mode 100644 index d3e37cde34f0..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/VectorisingGridClasses.txt +++ /dev/null @@ -1,7 +0,0 @@ -Vectorising Raster Classes -shapes_grid -ParameterRaster|GRID|Grid|False -ParameterSelection|CLASS_ALL|Class Selection|[0] one single class specified by class identifier;[1] all classes|1 -ParameterNumber|CLASS_ID|Class Identifier|None|None|0 -ParameterSelection|SPLIT|Vectorised class as...|[0] one single (multi-)polygon object;[1] each island as separated polygon|1 -OutputVector|POLYGONS|Vectorized diff --git a/python/plugins/processing/algs/saga/description/2.2.3/VegetationIndex(SlopeBased).txt b/python/plugins/processing/algs/saga/description/2.2.3/VegetationIndex(SlopeBased).txt deleted file mode 100644 index fd89e6a18416..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/VegetationIndex(SlopeBased).txt +++ /dev/null @@ -1,13 +0,0 @@ -Vegetation Index (Slope Based) -imagery_tools -ParameterRaster|NIR|Near Infrared Reflectance|False -ParameterRaster|RED|Red Reflectance|False -ParameterNumber|SOIL|Soil Adjustment Factor|0.0|1.0|0.5 -OutputRaster|DVI|Difference Vegetation Index -OutputRaster|NDVI|Normalized Difference Vegetation Index -OutputRaster|RVI|Ratio Vegetation Index -OutputRaster|NRVI|Normalized Ratio Vegetation Index -OutputRaster|TVI|Transformed Vegetation Index -OutputRaster|CTVI|Corrected Transformed Vegetation Index -OutputRaster|TTVI|Thiam's Transformed Vegetation Index -OutputRaster|SAVI|Soil Adjusted Vegetation Index diff --git a/python/plugins/processing/algs/saga/description/2.2.3/VerticalDistancetoChannelNetwork.txt b/python/plugins/processing/algs/saga/description/2.2.3/VerticalDistancetoChannelNetwork.txt deleted file mode 100644 index 5e1c7b29b27b..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/VerticalDistancetoChannelNetwork.txt +++ /dev/null @@ -1,8 +0,0 @@ -Vertical Distance to Channel Network -ta_channels -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|CHANNELS|Channel Network|False -ParameterNumber|THRESHOLD|Tension Threshold [Percentage of Cell Size]|None|None|1 -ParameterBoolean|NOUNDERGROUND |Keep Base Level below Surface|True -OutputRaster|DISTANCE|Vertical Distance to Channel Network -OutputRaster|BASELEVEL|Channel Network Base Level diff --git a/python/plugins/processing/algs/saga/description/2.2.3/WaterRetentionCapacity.txt b/python/plugins/processing/algs/saga/description/2.2.3/WaterRetentionCapacity.txt deleted file mode 100644 index ccc8c6c4b12f..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/WaterRetentionCapacity.txt +++ /dev/null @@ -1,6 +0,0 @@ -Water Retention Capacity -sim_hydrology -ParameterVector|SHAPES|Plot Holes|-1|False -ParameterRaster|DEM|DEM|False -OutputVector|OUTPUT|Final Parameters -OutputRaster|RETENTION|Water Retention Capacity diff --git a/python/plugins/processing/algs/saga/description/2.2.3/WatershedBasins.txt b/python/plugins/processing/algs/saga/description/2.2.3/WatershedBasins.txt deleted file mode 100644 index d79f537ba368..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/WatershedBasins.txt +++ /dev/null @@ -1,7 +0,0 @@ -Watershed Basins -ta_channels -ParameterRaster|ELEVATION|Elevation|False -ParameterRaster|CHANNELS|Channel Network|False -ParameterRaster|SINKROUTE|Sink Route|True -ParameterNumber|MINSIZE|Min. Size|None|None|0 -OutputRaster|BASINS|Watershed Basins diff --git a/python/plugins/processing/algs/saga/description/2.2.3/WatershedSegmentation.txt b/python/plugins/processing/algs/saga/description/2.2.3/WatershedSegmentation.txt deleted file mode 100644 index 02edfa11f2e4..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/WatershedSegmentation.txt +++ /dev/null @@ -1,12 +0,0 @@ -Watershed Segmentation -imagery_segmentation -ParameterRaster|GRID|Grid|False -ParameterSelection|OUTPUT|Output|[0] Seed Value;[1] Segment ID -ParameterSelection|DOWN|Method|[0] Minima;[1] Maxima -ParameterSelection|JOIN|Join Segments based on Threshold Value|[0] do not join;[1] seed to saddle difference;[2] seeds difference -ParameterNumber|THRESHOLD|Threshold|None|None|0 -ParameterBoolean|EDGE |Allow Edge Pixels to be Seeds|True -ParameterBoolean|BBORDERS |Borders|True -OutputRaster|SEGMENTS|Segments -OutputVector|SEEDS|Seed Points -OutputRaster|BORDERS|Borders diff --git a/python/plugins/processing/algs/saga/description/2.2.3/WindEffect(WindwardLeewardIndex).txt b/python/plugins/processing/algs/saga/description/2.2.3/WindEffect(WindwardLeewardIndex).txt deleted file mode 100644 index 57495dc57ce9..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/WindEffect(WindwardLeewardIndex).txt +++ /dev/null @@ -1,15 +0,0 @@ -Wind effect|Wind Effect (Windward / Leeward Index) -ta_morphometry -ParameterRaster|DEM|Elevation|False -ParameterRaster|DIR|Wind Direction|True -ParameterRaster|LEN|Wind Speed|True -ParameterNumber|DIR_CONST|Constant Wind Direction [Degree]|None|None|135 -ParameterBoolean|OLDVER |Old Version|True -ParameterNumber|MAXDIST|Search Distance [km]|0.0|None|300.0 -ParameterNumber|ACCEL|Acceleration|0.0|None|1.5 -ParameterBoolean|PYRAMIDS |Use Pyramids|True -ParameterSelection|DIR_UNITS|Wind Direction Units|[0] radians;[1] degree -ParameterNumber|LEN_SCALE|Wind Speed Scale Factor|0.0|None|1.0 -OutputRaster|EFFECT|Wind Effect -OutputRaster|LUV|Windward Effect -OutputRaster|LEE|Leeward Effect diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ZonalGridStatistics.txt b/python/plugins/processing/algs/saga/description/2.2.3/ZonalGridStatistics.txt deleted file mode 100644 index 10d91c892d4d..000000000000 --- a/python/plugins/processing/algs/saga/description/2.2.3/ZonalGridStatistics.txt +++ /dev/null @@ -1,8 +0,0 @@ -Zonal Grid Statistics -statistics_grid -ParameterRaster|ZONES|Zone Grid|False -ParameterMultipleInput|CATLIST|Categorial Grids|3|True -ParameterMultipleInput|STATLIST|Grids to analyse|3|True -ParameterRaster|ASPECT|Aspect|True -ParameterBoolean|SHORTNAMES|Short Field Names|True -OutputTable|OUTTAB|Zonal Statistics diff --git a/python/plugins/processing/algs/saga/description/2.1.2/AccumulatedCost(Anisotropic).txt b/python/plugins/processing/algs/saga/description/AccumulatedCost(Anisotropic).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/AccumulatedCost(Anisotropic).txt rename to python/plugins/processing/algs/saga/description/AccumulatedCost(Anisotropic).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/AccumulatedCost(Isotropic).txt b/python/plugins/processing/algs/saga/description/AccumulatedCost(Isotropic).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/AccumulatedCost(Isotropic).txt rename to python/plugins/processing/algs/saga/description/AccumulatedCost(Isotropic).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/AddCoordinatestopoints.txt b/python/plugins/processing/algs/saga/description/AddCoordinatestopoints.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/AddCoordinatestopoints.txt rename to python/plugins/processing/algs/saga/description/AddCoordinatestopoints.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/AddGridValuestoPoints.txt b/python/plugins/processing/algs/saga/description/AddGridValuestoPoints.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/AddGridValuestoPoints.txt rename to python/plugins/processing/algs/saga/description/AddGridValuestoPoints.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/AddGridValuestoShapes.txt b/python/plugins/processing/algs/saga/description/AddGridValuestoShapes.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/AddGridValuestoShapes.txt rename to python/plugins/processing/algs/saga/description/AddGridValuestoShapes.txt diff --git a/python/plugins/processing/algs/saga/description/2.2.0/AddPointAttributestoPolygons.txt b/python/plugins/processing/algs/saga/description/AddPointAttributestoPolygons.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.0/AddPointAttributestoPolygons.txt rename to python/plugins/processing/algs/saga/description/AddPointAttributestoPolygons.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/AddPolygonAttributestoPoints.txt b/python/plugins/processing/algs/saga/description/AddPolygonAttributestoPoints.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/AddPolygonAttributestoPoints.txt rename to python/plugins/processing/algs/saga/description/AddPolygonAttributestoPoints.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/Aggregate.txt b/python/plugins/processing/algs/saga/description/Aggregate.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/Aggregate.txt rename to python/plugins/processing/algs/saga/description/Aggregate.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/AggregatePointObservations.txt b/python/plugins/processing/algs/saga/description/AggregatePointObservations.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/AggregatePointObservations.txt rename to python/plugins/processing/algs/saga/description/AggregatePointObservations.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/AggregationIndex.txt b/python/plugins/processing/algs/saga/description/AggregationIndex.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/AggregationIndex.txt rename to python/plugins/processing/algs/saga/description/AggregationIndex.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/AnalyticalHierarchyProcess.txt b/python/plugins/processing/algs/saga/description/AnalyticalHierarchyProcess.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/AnalyticalHierarchyProcess.txt rename to python/plugins/processing/algs/saga/description/AnalyticalHierarchyProcess.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/AnalyticalHillshading.txt b/python/plugins/processing/algs/saga/description/AnalyticalHillshading.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/AnalyticalHillshading.txt rename to python/plugins/processing/algs/saga/description/AnalyticalHillshading.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/B-SplineApproximation.txt b/python/plugins/processing/algs/saga/description/B-SplineApproximation.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/B-SplineApproximation.txt rename to python/plugins/processing/algs/saga/description/B-SplineApproximation.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/BurnStreamNetworkintoDEM.txt b/python/plugins/processing/algs/saga/description/BurnStreamNetworkintoDEM.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/BurnStreamNetworkintoDEM.txt rename to python/plugins/processing/algs/saga/description/BurnStreamNetworkintoDEM.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/CellBalance.txt b/python/plugins/processing/algs/saga/description/CellBalance.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/CellBalance.txt rename to python/plugins/processing/algs/saga/description/CellBalance.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ChangeDateFormat.txt b/python/plugins/processing/algs/saga/description/ChangeDateFormat.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ChangeDateFormat.txt rename to python/plugins/processing/algs/saga/description/ChangeDateFormat.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ChangeDetection.txt b/python/plugins/processing/algs/saga/description/ChangeDetection.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ChangeDetection.txt rename to python/plugins/processing/algs/saga/description/ChangeDetection.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ChangeGridValues.txt b/python/plugins/processing/algs/saga/description/ChangeGridValues.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ChangeGridValues.txt rename to python/plugins/processing/algs/saga/description/ChangeGridValues.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ChangeTimeFormat.txt b/python/plugins/processing/algs/saga/description/ChangeTimeFormat.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ChangeTimeFormat.txt rename to python/plugins/processing/algs/saga/description/ChangeTimeFormat.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ChannelNetwork.txt b/python/plugins/processing/algs/saga/description/ChannelNetwork.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ChannelNetwork.txt rename to python/plugins/processing/algs/saga/description/ChannelNetwork.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ChannelNetworkandDrainageBasins.txt b/python/plugins/processing/algs/saga/description/ChannelNetworkandDrainageBasins.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ChannelNetworkandDrainageBasins.txt rename to python/plugins/processing/algs/saga/description/ChannelNetworkandDrainageBasins.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ClipGridwithPolygon.txt b/python/plugins/processing/algs/saga/description/ClipGridwithPolygon.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ClipGridwithPolygon.txt rename to python/plugins/processing/algs/saga/description/ClipGridwithPolygon.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ClipPointswithPolygons.txt b/python/plugins/processing/algs/saga/description/ClipPointswithPolygons.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ClipPointswithPolygons.txt rename to python/plugins/processing/algs/saga/description/ClipPointswithPolygons.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/CloseGaps.txt b/python/plugins/processing/algs/saga/description/CloseGaps.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/CloseGaps.txt rename to python/plugins/processing/algs/saga/description/CloseGaps.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/CloseGapswithSpline.txt b/python/plugins/processing/algs/saga/description/CloseGapswithSpline.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/CloseGapswithSpline.txt rename to python/plugins/processing/algs/saga/description/CloseGapswithSpline.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/CloseOneCellGaps.txt b/python/plugins/processing/algs/saga/description/CloseOneCellGaps.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/CloseOneCellGaps.txt rename to python/plugins/processing/algs/saga/description/CloseOneCellGaps.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ClusterAnalysisforGrids.txt b/python/plugins/processing/algs/saga/description/ClusterAnalysisforGrids.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ClusterAnalysisforGrids.txt rename to python/plugins/processing/algs/saga/description/ClusterAnalysisforGrids.txt diff --git a/python/plugins/processing/algs/saga/description/2.2.2/ConfusionMatrix(GridPolygons).txt b/python/plugins/processing/algs/saga/description/ConfusionMatrix(GridPolygons).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.2/ConfusionMatrix(GridPolygons).txt rename to python/plugins/processing/algs/saga/description/ConfusionMatrix(GridPolygons).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ContourLinesfromGrid.txt b/python/plugins/processing/algs/saga/description/ContourLinesfromGrid.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/ContourLinesfromGrid.txt rename to python/plugins/processing/algs/saga/description/ContourLinesfromGrid.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ConvergenceIndex(SearchRadius).txt b/python/plugins/processing/algs/saga/description/ConvergenceIndex(SearchRadius).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ConvergenceIndex(SearchRadius).txt rename to python/plugins/processing/algs/saga/description/ConvergenceIndex(SearchRadius).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ConvergenceIndex.txt b/python/plugins/processing/algs/saga/description/ConvergenceIndex.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ConvergenceIndex.txt rename to python/plugins/processing/algs/saga/description/ConvergenceIndex.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ConvertDataStorageType.txt b/python/plugins/processing/algs/saga/description/ConvertDataStorageType.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ConvertDataStorageType.txt rename to python/plugins/processing/algs/saga/description/ConvertDataStorageType.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ConvertLinestoPoints.txt b/python/plugins/processing/algs/saga/description/ConvertLinestoPoints.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ConvertLinestoPoints.txt rename to python/plugins/processing/algs/saga/description/ConvertLinestoPoints.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ConvertLinestoPolygons.txt b/python/plugins/processing/algs/saga/description/ConvertLinestoPolygons.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ConvertLinestoPolygons.txt rename to python/plugins/processing/algs/saga/description/ConvertLinestoPolygons.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ConvertMultipointstoPoints.txt b/python/plugins/processing/algs/saga/description/ConvertMultipointstoPoints.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ConvertMultipointstoPoints.txt rename to python/plugins/processing/algs/saga/description/ConvertMultipointstoPoints.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ConvertPointstoLine(s).txt b/python/plugins/processing/algs/saga/description/ConvertPointstoLine(s).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ConvertPointstoLine(s).txt rename to python/plugins/processing/algs/saga/description/ConvertPointstoLine(s).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ConvertPolygonLineVerticestoPoints.txt b/python/plugins/processing/algs/saga/description/ConvertPolygonLineVerticestoPoints.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ConvertPolygonLineVerticestoPoints.txt rename to python/plugins/processing/algs/saga/description/ConvertPolygonLineVerticestoPoints.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ConvertPolygonstoLines.txt b/python/plugins/processing/algs/saga/description/ConvertPolygonstoLines.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ConvertPolygonstoLines.txt rename to python/plugins/processing/algs/saga/description/ConvertPolygonstoLines.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ConvexHull.txt b/python/plugins/processing/algs/saga/description/ConvexHull.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ConvexHull.txt rename to python/plugins/processing/algs/saga/description/ConvexHull.txt diff --git a/python/plugins/processing/algs/saga/description/2.2.3/CreateLinesGraticule.txt b/python/plugins/processing/algs/saga/description/CreateLinesGraticule.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.3/CreateLinesGraticule.txt rename to python/plugins/processing/algs/saga/description/CreateLinesGraticule.txt diff --git a/python/plugins/processing/algs/saga/description/2.2.3/CreatePolygonsGraticule.txt b/python/plugins/processing/algs/saga/description/CreatePolygonsGraticule.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.3/CreatePolygonsGraticule.txt rename to python/plugins/processing/algs/saga/description/CreatePolygonsGraticule.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/CropToData.txt b/python/plugins/processing/algs/saga/description/CropToData.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/CropToData.txt rename to python/plugins/processing/algs/saga/description/CropToData.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/Cross-ClassificationandTabulation.txt b/python/plugins/processing/algs/saga/description/Cross-ClassificationandTabulation.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/Cross-ClassificationandTabulation.txt rename to python/plugins/processing/algs/saga/description/Cross-ClassificationandTabulation.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/CrossProfiles.txt b/python/plugins/processing/algs/saga/description/CrossProfiles.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/CrossProfiles.txt rename to python/plugins/processing/algs/saga/description/CrossProfiles.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/CubicSplineApproximation.txt b/python/plugins/processing/algs/saga/description/CubicSplineApproximation.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/CubicSplineApproximation.txt rename to python/plugins/processing/algs/saga/description/CubicSplineApproximation.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/CurvatureClassification.txt b/python/plugins/processing/algs/saga/description/CurvatureClassification.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/CurvatureClassification.txt rename to python/plugins/processing/algs/saga/description/CurvatureClassification.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/CutShapesLayer.txt b/python/plugins/processing/algs/saga/description/CutShapesLayer.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/CutShapesLayer.txt rename to python/plugins/processing/algs/saga/description/CutShapesLayer.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/DTMFilter(slope-based).txt b/python/plugins/processing/algs/saga/description/DTMFilter(slope-based).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/DTMFilter(slope-based).txt rename to python/plugins/processing/algs/saga/description/DTMFilter(slope-based).txt diff --git a/python/plugins/processing/algs/saga/description/2.2.3/DiffusiveHillslopeEvolution(ADI).txt b/python/plugins/processing/algs/saga/description/DiffusiveHillslopeEvolution(ADI).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.3/DiffusiveHillslopeEvolution(ADI).txt rename to python/plugins/processing/algs/saga/description/DiffusiveHillslopeEvolution(ADI).txt diff --git a/python/plugins/processing/algs/saga/description/2.2.3/DiffusiveHillslopeEvolution(FTCS).txt b/python/plugins/processing/algs/saga/description/DiffusiveHillslopeEvolution(FTCS).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.3/DiffusiveHillslopeEvolution(FTCS).txt rename to python/plugins/processing/algs/saga/description/DiffusiveHillslopeEvolution(FTCS).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/DirectionalStatisticsforSingleGrid.txt b/python/plugins/processing/algs/saga/description/DirectionalStatisticsforSingleGrid.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/DirectionalStatisticsforSingleGrid.txt rename to python/plugins/processing/algs/saga/description/DirectionalStatisticsforSingleGrid.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/DistanceMatrix.txt b/python/plugins/processing/algs/saga/description/DistanceMatrix.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/DistanceMatrix.txt rename to python/plugins/processing/algs/saga/description/DistanceMatrix.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/DiurnalAnisotropicHeating.txt b/python/plugins/processing/algs/saga/description/DiurnalAnisotropicHeating.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/DiurnalAnisotropicHeating.txt rename to python/plugins/processing/algs/saga/description/DiurnalAnisotropicHeating.txt diff --git a/python/plugins/processing/algs/saga/description/2.2.3/DiversityOfCategories.txt b/python/plugins/processing/algs/saga/description/DiversityOfCategories.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.3/DiversityOfCategories.txt rename to python/plugins/processing/algs/saga/description/DiversityOfCategories.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/DownslopeDistanceGradient.txt b/python/plugins/processing/algs/saga/description/DownslopeDistanceGradient.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/DownslopeDistanceGradient.txt rename to python/plugins/processing/algs/saga/description/DownslopeDistanceGradient.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/EdgeContamination.txt b/python/plugins/processing/algs/saga/description/EdgeContamination.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/EdgeContamination.txt rename to python/plugins/processing/algs/saga/description/EdgeContamination.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/EffectiveAirFlowHeights.txt b/python/plugins/processing/algs/saga/description/EffectiveAirFlowHeights.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/EffectiveAirFlowHeights.txt rename to python/plugins/processing/algs/saga/description/EffectiveAirFlowHeights.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/FastRegionGrowingAlgorithm.txt b/python/plugins/processing/algs/saga/description/FastRegionGrowingAlgorithm.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/FastRegionGrowingAlgorithm.txt rename to python/plugins/processing/algs/saga/description/FastRegionGrowingAlgorithm.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/FastRepresentativeness.txt b/python/plugins/processing/algs/saga/description/FastRepresentativeness.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/FastRepresentativeness.txt rename to python/plugins/processing/algs/saga/description/FastRepresentativeness.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/FillGapsinRecords.txt b/python/plugins/processing/algs/saga/description/FillGapsinRecords.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/FillGapsinRecords.txt rename to python/plugins/processing/algs/saga/description/FillGapsinRecords.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/FillSinks(PlanchonDarboux,2001).txt b/python/plugins/processing/algs/saga/description/FillSinks(PlanchonDarboux,2001).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/FillSinks(PlanchonDarboux,2001).txt rename to python/plugins/processing/algs/saga/description/FillSinks(PlanchonDarboux,2001).txt diff --git a/python/plugins/processing/algs/saga/description/2.2.3/FillSinks(QMofESP).txt b/python/plugins/processing/algs/saga/description/FillSinks(QMofESP).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.3/FillSinks(QMofESP).txt rename to python/plugins/processing/algs/saga/description/FillSinks(QMofESP).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/FillSinks(WangLiu).txt b/python/plugins/processing/algs/saga/description/FillSinks(WangLiu).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/FillSinks(WangLiu).txt rename to python/plugins/processing/algs/saga/description/FillSinks(WangLiu).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/FillSinksXXL(WangLiu).txt b/python/plugins/processing/algs/saga/description/FillSinksXXL(WangLiu).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/FillSinksXXL(WangLiu).txt rename to python/plugins/processing/algs/saga/description/FillSinksXXL(WangLiu).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/FilterClumps.txt b/python/plugins/processing/algs/saga/description/FilterClumps.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/FilterClumps.txt rename to python/plugins/processing/algs/saga/description/FilterClumps.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/FireRiskAnalysis.txt b/python/plugins/processing/algs/saga/description/FireRiskAnalysis.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/FireRiskAnalysis.txt rename to python/plugins/processing/algs/saga/description/FireRiskAnalysis.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/FitNPointstoshape.txt b/python/plugins/processing/algs/saga/description/FitNPointstoshape.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/FitNPointstoshape.txt rename to python/plugins/processing/algs/saga/description/FitNPointstoshape.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/FlatDetection.txt b/python/plugins/processing/algs/saga/description/FlatDetection.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/FlatDetection.txt rename to python/plugins/processing/algs/saga/description/FlatDetection.txt diff --git a/python/plugins/processing/algs/saga/description/2.2.0/FlattenPolygonLayer.txt b/python/plugins/processing/algs/saga/description/FlattenPolygonLayer.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.0/FlattenPolygonLayer.txt rename to python/plugins/processing/algs/saga/description/FlattenPolygonLayer.txt diff --git a/python/plugins/processing/algs/saga/description/2.2.0/FlowAccumulation(FlowTracing).txt b/python/plugins/processing/algs/saga/description/FlowAccumulation(FlowTracing).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.0/FlowAccumulation(FlowTracing).txt rename to python/plugins/processing/algs/saga/description/FlowAccumulation(FlowTracing).txt diff --git a/python/plugins/processing/algs/saga/description/2.2.3/FlowAccumulation(QMofESP).txt b/python/plugins/processing/algs/saga/description/FlowAccumulation(QMofESP).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.3/FlowAccumulation(QMofESP).txt rename to python/plugins/processing/algs/saga/description/FlowAccumulation(QMofESP).txt diff --git a/python/plugins/processing/algs/saga/description/2.2.0/FlowAccumulation(Recursive).txt b/python/plugins/processing/algs/saga/description/FlowAccumulation(Recursive).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.0/FlowAccumulation(Recursive).txt rename to python/plugins/processing/algs/saga/description/FlowAccumulation(Recursive).txt diff --git a/python/plugins/processing/algs/saga/description/2.2.0/FlowAccumulation(Top-Down).txt b/python/plugins/processing/algs/saga/description/FlowAccumulation(Top-Down).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.0/FlowAccumulation(Top-Down).txt rename to python/plugins/processing/algs/saga/description/FlowAccumulation(Top-Down).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/FlowPathLength.txt b/python/plugins/processing/algs/saga/description/FlowPathLength.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/FlowPathLength.txt rename to python/plugins/processing/algs/saga/description/FlowPathLength.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/FlowWidthandSpecificCatchmentArea.txt b/python/plugins/processing/algs/saga/description/FlowWidthandSpecificCatchmentArea.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/FlowWidthandSpecificCatchmentArea.txt rename to python/plugins/processing/algs/saga/description/FlowWidthandSpecificCatchmentArea.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/Fragmentation(Alternative).txt b/python/plugins/processing/algs/saga/description/Fragmentation(Alternative).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/Fragmentation(Alternative).txt rename to python/plugins/processing/algs/saga/description/Fragmentation(Alternative).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/Fragmentation(Standard).txt b/python/plugins/processing/algs/saga/description/Fragmentation(Standard).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/Fragmentation(Standard).txt rename to python/plugins/processing/algs/saga/description/Fragmentation(Standard).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/FragmentationClassesfromDensityandConnectivity.txt b/python/plugins/processing/algs/saga/description/FragmentationClassesfromDensityandConnectivity.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/FragmentationClassesfromDensityandConnectivity.txt rename to python/plugins/processing/algs/saga/description/FragmentationClassesfromDensityandConnectivity.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/Function.txt b/python/plugins/processing/algs/saga/description/Function.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/Function.txt rename to python/plugins/processing/algs/saga/description/Function.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/Fuzzify.txt b/python/plugins/processing/algs/saga/description/Fuzzify.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/Fuzzify.txt rename to python/plugins/processing/algs/saga/description/Fuzzify.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/FuzzyIntersection(AND).txt b/python/plugins/processing/algs/saga/description/FuzzyIntersection(AND).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/FuzzyIntersection(AND).txt rename to python/plugins/processing/algs/saga/description/FuzzyIntersection(AND).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/FuzzyUnion(OR).txt b/python/plugins/processing/algs/saga/description/FuzzyUnion(OR).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/FuzzyUnion(OR).txt rename to python/plugins/processing/algs/saga/description/FuzzyUnion(OR).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GaussianFilter.txt b/python/plugins/processing/algs/saga/description/GaussianFilter.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GaussianFilter.txt rename to python/plugins/processing/algs/saga/description/GaussianFilter.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GeographicallyWeightedMultipleRegression(Points).txt b/python/plugins/processing/algs/saga/description/GeographicallyWeightedMultipleRegression(Points).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/GeographicallyWeightedMultipleRegression(Points).txt rename to python/plugins/processing/algs/saga/description/GeographicallyWeightedMultipleRegression(Points).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GeographicallyWeightedMultipleRegression(PointsGrids).txt b/python/plugins/processing/algs/saga/description/GeographicallyWeightedMultipleRegression(PointsGrids).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/GeographicallyWeightedMultipleRegression(PointsGrids).txt rename to python/plugins/processing/algs/saga/description/GeographicallyWeightedMultipleRegression(PointsGrids).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GeographicallyWeightedMultipleRegression.txt b/python/plugins/processing/algs/saga/description/GeographicallyWeightedMultipleRegression.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/GeographicallyWeightedMultipleRegression.txt rename to python/plugins/processing/algs/saga/description/GeographicallyWeightedMultipleRegression.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GeographicallyWeightedRegression(PointsGrid).txt b/python/plugins/processing/algs/saga/description/GeographicallyWeightedRegression(PointsGrid).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/GeographicallyWeightedRegression(PointsGrid).txt rename to python/plugins/processing/algs/saga/description/GeographicallyWeightedRegression(PointsGrid).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/GeographicallyWeightedRegression.txt b/python/plugins/processing/algs/saga/description/GeographicallyWeightedRegression.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/GeographicallyWeightedRegression.txt rename to python/plugins/processing/algs/saga/description/GeographicallyWeightedRegression.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GeometricFigures.txt b/python/plugins/processing/algs/saga/description/GeometricFigures.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GeometricFigures.txt rename to python/plugins/processing/algs/saga/description/GeometricFigures.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GetShapesExtents.txt b/python/plugins/processing/algs/saga/description/GetShapesExtents.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GetShapesExtents.txt rename to python/plugins/processing/algs/saga/description/GetShapesExtents.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GlobalMoransIforGrids.txt b/python/plugins/processing/algs/saga/description/GlobalMoransIforGrids.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GlobalMoransIforGrids.txt rename to python/plugins/processing/algs/saga/description/GlobalMoransIforGrids.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GradientVectorfromCartesiantoPolarCoordinates.txt b/python/plugins/processing/algs/saga/description/GradientVectorfromCartesiantoPolarCoordinates.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GradientVectorfromCartesiantoPolarCoordinates.txt rename to python/plugins/processing/algs/saga/description/GradientVectorfromCartesiantoPolarCoordinates.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GradientVectorfromPolartoCartesianCoordinates.txt b/python/plugins/processing/algs/saga/description/GradientVectorfromPolartoCartesianCoordinates.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GradientVectorfromPolartoCartesianCoordinates.txt rename to python/plugins/processing/algs/saga/description/GradientVectorfromPolartoCartesianCoordinates.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GradientVectorsfromDirectionalComponents.txt b/python/plugins/processing/algs/saga/description/GradientVectorsfromDirectionalComponents.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GradientVectorsfromDirectionalComponents.txt rename to python/plugins/processing/algs/saga/description/GradientVectorsfromDirectionalComponents.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GradientVectorsfromDirectionandLength.txt b/python/plugins/processing/algs/saga/description/GradientVectorsfromDirectionandLength.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GradientVectorsfromDirectionandLength.txt rename to python/plugins/processing/algs/saga/description/GradientVectorsfromDirectionandLength.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GradientVectorsfromSurface.txt b/python/plugins/processing/algs/saga/description/GradientVectorsfromSurface.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GradientVectorsfromSurface.txt rename to python/plugins/processing/algs/saga/description/GradientVectorsfromSurface.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GridBuffer.txt b/python/plugins/processing/algs/saga/description/GridBuffer.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GridBuffer.txt rename to python/plugins/processing/algs/saga/description/GridBuffer.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GridCalculator.txt b/python/plugins/processing/algs/saga/description/GridCalculator.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GridCalculator.txt rename to python/plugins/processing/algs/saga/description/GridCalculator.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GridCellIndex.txt b/python/plugins/processing/algs/saga/description/GridCellIndex.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GridCellIndex.txt rename to python/plugins/processing/algs/saga/description/GridCellIndex.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GridDifference.txt b/python/plugins/processing/algs/saga/description/GridDifference.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GridDifference.txt rename to python/plugins/processing/algs/saga/description/GridDifference.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GridDivision.txt b/python/plugins/processing/algs/saga/description/GridDivision.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GridDivision.txt rename to python/plugins/processing/algs/saga/description/GridDivision.txt diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GridMasking.txt b/python/plugins/processing/algs/saga/description/GridMasking.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.3/GridMasking.txt rename to python/plugins/processing/algs/saga/description/GridMasking.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GridNormalisation.txt b/python/plugins/processing/algs/saga/description/GridNormalisation.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GridNormalisation.txt rename to python/plugins/processing/algs/saga/description/GridNormalisation.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GridOrientation.txt b/python/plugins/processing/algs/saga/description/GridOrientation.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GridOrientation.txt rename to python/plugins/processing/algs/saga/description/GridOrientation.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GridProximityBuffer.txt b/python/plugins/processing/algs/saga/description/GridProximityBuffer.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GridProximityBuffer.txt rename to python/plugins/processing/algs/saga/description/GridProximityBuffer.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GridSkeletonization.txt b/python/plugins/processing/algs/saga/description/GridSkeletonization.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GridSkeletonization.txt rename to python/plugins/processing/algs/saga/description/GridSkeletonization.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GridStandardisation.txt b/python/plugins/processing/algs/saga/description/GridStandardisation.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GridStandardisation.txt rename to python/plugins/processing/algs/saga/description/GridStandardisation.txt diff --git a/python/plugins/processing/algs/saga/description/2.2.3/GridStatisticsforPolygons.txt b/python/plugins/processing/algs/saga/description/GridStatisticsforPolygons.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.3/GridStatisticsforPolygons.txt rename to python/plugins/processing/algs/saga/description/GridStatisticsforPolygons.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GridValuestoPoints(randomly).txt b/python/plugins/processing/algs/saga/description/GridValuestoPoints(randomly).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GridValuestoPoints(randomly).txt rename to python/plugins/processing/algs/saga/description/GridValuestoPoints(randomly).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GridValuestoPoints.txt b/python/plugins/processing/algs/saga/description/GridValuestoPoints.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GridValuestoPoints.txt rename to python/plugins/processing/algs/saga/description/GridValuestoPoints.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GridVolume.txt b/python/plugins/processing/algs/saga/description/GridVolume.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GridVolume.txt rename to python/plugins/processing/algs/saga/description/GridVolume.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GridsProduct.txt b/python/plugins/processing/algs/saga/description/GridsProduct.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GridsProduct.txt rename to python/plugins/processing/algs/saga/description/GridsProduct.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/GridsSum.txt b/python/plugins/processing/algs/saga/description/GridsSum.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/GridsSum.txt rename to python/plugins/processing/algs/saga/description/GridsSum.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/HistogramSurface.txt b/python/plugins/processing/algs/saga/description/HistogramSurface.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/HistogramSurface.txt rename to python/plugins/processing/algs/saga/description/HistogramSurface.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/Hypsometry.txt b/python/plugins/processing/algs/saga/description/Hypsometry.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/Hypsometry.txt rename to python/plugins/processing/algs/saga/description/Hypsometry.txt diff --git a/python/plugins/processing/algs/saga/description/2.2.0/InverseDistanceWeighted.txt b/python/plugins/processing/algs/saga/description/InverseDistanceWeighted.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.0/InverseDistanceWeighted.txt rename to python/plugins/processing/algs/saga/description/InverseDistanceWeighted.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/InvertDataNo-Data.txt b/python/plugins/processing/algs/saga/description/InvertDataNo-Data.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/InvertDataNo-Data.txt rename to python/plugins/processing/algs/saga/description/InvertDataNo-Data.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/KernelDensityEstimation.txt b/python/plugins/processing/algs/saga/description/KernelDensityEstimation.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/KernelDensityEstimation.txt rename to python/plugins/processing/algs/saga/description/KernelDensityEstimation.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/LSFactor.txt b/python/plugins/processing/algs/saga/description/LSFactor.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/LSFactor.txt rename to python/plugins/processing/algs/saga/description/LSFactor.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/LakeFlood.txt b/python/plugins/processing/algs/saga/description/LakeFlood.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/LakeFlood.txt rename to python/plugins/processing/algs/saga/description/LakeFlood.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/LandSurfaceTemperature.txt b/python/plugins/processing/algs/saga/description/LandSurfaceTemperature.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/LandSurfaceTemperature.txt rename to python/plugins/processing/algs/saga/description/LandSurfaceTemperature.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/LaplacianFilter.txt b/python/plugins/processing/algs/saga/description/LaplacianFilter.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/LaplacianFilter.txt rename to python/plugins/processing/algs/saga/description/LaplacianFilter.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/Layerofextremevalue.txt b/python/plugins/processing/algs/saga/description/Layerofextremevalue.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/Layerofextremevalue.txt rename to python/plugins/processing/algs/saga/description/Layerofextremevalue.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/LeastCostPaths.txt b/python/plugins/processing/algs/saga/description/LeastCostPaths.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/LeastCostPaths.txt rename to python/plugins/processing/algs/saga/description/LeastCostPaths.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/Line-PolygonIntersection.txt b/python/plugins/processing/algs/saga/description/Line-PolygonIntersection.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/Line-PolygonIntersection.txt rename to python/plugins/processing/algs/saga/description/Line-PolygonIntersection.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/LineDissolve.txt b/python/plugins/processing/algs/saga/description/LineDissolve.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/LineDissolve.txt rename to python/plugins/processing/algs/saga/description/LineDissolve.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/LineProperties.txt b/python/plugins/processing/algs/saga/description/LineProperties.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/LineProperties.txt rename to python/plugins/processing/algs/saga/description/LineProperties.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/LineSimplification.txt b/python/plugins/processing/algs/saga/description/LineSimplification.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/LineSimplification.txt rename to python/plugins/processing/algs/saga/description/LineSimplification.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/LocalMinimaandMaxima.txt b/python/plugins/processing/algs/saga/description/LocalMinimaandMaxima.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/LocalMinimaandMaxima.txt rename to python/plugins/processing/algs/saga/description/LocalMinimaandMaxima.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/MajorityFilter.txt b/python/plugins/processing/algs/saga/description/MajorityFilter.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/MajorityFilter.txt rename to python/plugins/processing/algs/saga/description/MajorityFilter.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/MassBalanceIndex.txt b/python/plugins/processing/algs/saga/description/MassBalanceIndex.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/MassBalanceIndex.txt rename to python/plugins/processing/algs/saga/description/MassBalanceIndex.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/MergeLayers.txt b/python/plugins/processing/algs/saga/description/MergeLayers.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/MergeLayers.txt rename to python/plugins/processing/algs/saga/description/MergeLayers.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/MetricConversions.txt b/python/plugins/processing/algs/saga/description/MetricConversions.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/MetricConversions.txt rename to python/plugins/processing/algs/saga/description/MetricConversions.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/MinimumDistanceAnalysis.txt b/python/plugins/processing/algs/saga/description/MinimumDistanceAnalysis.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/MinimumDistanceAnalysis.txt rename to python/plugins/processing/algs/saga/description/MinimumDistanceAnalysis.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ModifiedQuadraticShepard.txt b/python/plugins/processing/algs/saga/description/ModifiedQuadraticShepard.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/ModifiedQuadraticShepard.txt rename to python/plugins/processing/algs/saga/description/ModifiedQuadraticShepard.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/MorphologicalFilter.txt b/python/plugins/processing/algs/saga/description/MorphologicalFilter.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/MorphologicalFilter.txt rename to python/plugins/processing/algs/saga/description/MorphologicalFilter.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/MorphometricProtectionIndex.txt b/python/plugins/processing/algs/saga/description/MorphometricProtectionIndex.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/MorphometricProtectionIndex.txt rename to python/plugins/processing/algs/saga/description/MorphometricProtectionIndex.txt diff --git a/python/plugins/processing/algs/saga/description/2.2.3/Mosaicking.txt b/python/plugins/processing/algs/saga/description/Mosaicking.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.3/Mosaicking.txt rename to python/plugins/processing/algs/saga/description/Mosaicking.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/Multi-BandVariation.txt b/python/plugins/processing/algs/saga/description/Multi-BandVariation.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/Multi-BandVariation.txt rename to python/plugins/processing/algs/saga/description/Multi-BandVariation.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/MultiDirectionLeeFilter.txt b/python/plugins/processing/algs/saga/description/MultiDirectionLeeFilter.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/MultiDirectionLeeFilter.txt rename to python/plugins/processing/algs/saga/description/MultiDirectionLeeFilter.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/MultilevelB-SplineInterpolation(fromGrid).txt b/python/plugins/processing/algs/saga/description/MultilevelB-SplineInterpolation(fromGrid).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/MultilevelB-SplineInterpolation(fromGrid).txt rename to python/plugins/processing/algs/saga/description/MultilevelB-SplineInterpolation(fromGrid).txt diff --git a/python/plugins/processing/algs/saga/description/2.2.2/MultilevelB-SplineInterpolation.txt b/python/plugins/processing/algs/saga/description/MultilevelB-SplineInterpolation.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.2/MultilevelB-SplineInterpolation.txt rename to python/plugins/processing/algs/saga/description/MultilevelB-SplineInterpolation.txt diff --git a/python/plugins/processing/algs/saga/description/2.2.0/MultilevelB-SplineInterpolationforCategories.txt b/python/plugins/processing/algs/saga/description/MultilevelB-SplineInterpolationforCategories.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.0/MultilevelB-SplineInterpolationforCategories.txt rename to python/plugins/processing/algs/saga/description/MultilevelB-SplineInterpolationforCategories.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/MultipleRegressionAnalysis(GridGrids).txt b/python/plugins/processing/algs/saga/description/MultipleRegressionAnalysis(GridGrids).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/MultipleRegressionAnalysis(GridGrids).txt rename to python/plugins/processing/algs/saga/description/MultipleRegressionAnalysis(GridGrids).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/MultipleRegressionAnalysis(PointsGrids).txt b/python/plugins/processing/algs/saga/description/MultipleRegressionAnalysis(PointsGrids).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/MultipleRegressionAnalysis(PointsGrids).txt rename to python/plugins/processing/algs/saga/description/MultipleRegressionAnalysis(PointsGrids).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/MultiresolutionIndexofValleyBottomFlatness(MRVBF).txt b/python/plugins/processing/algs/saga/description/MultiresolutionIndexofValleyBottomFlatness(MRVBF).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/MultiresolutionIndexofValleyBottomFlatness(MRVBF).txt rename to python/plugins/processing/algs/saga/description/MultiresolutionIndexofValleyBottomFlatness(MRVBF).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/NaturalNeighbour.txt b/python/plugins/processing/algs/saga/description/NaturalNeighbour.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/NaturalNeighbour.txt rename to python/plugins/processing/algs/saga/description/NaturalNeighbour.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/NearestNeighbour.txt b/python/plugins/processing/algs/saga/description/NearestNeighbour.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/NearestNeighbour.txt rename to python/plugins/processing/algs/saga/description/NearestNeighbour.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/OrderedWeightedAveraging(OWA).txt b/python/plugins/processing/algs/saga/description/OrderedWeightedAveraging(OWA).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/OrderedWeightedAveraging(OWA).txt rename to python/plugins/processing/algs/saga/description/OrderedWeightedAveraging(OWA).txt diff --git a/python/plugins/processing/algs/saga/description/2.2.2/OrdinaryKriging(Global).txt b/python/plugins/processing/algs/saga/description/OrdinaryKriging(Global).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.2/OrdinaryKriging(Global).txt rename to python/plugins/processing/algs/saga/description/OrdinaryKriging(Global).txt diff --git a/python/plugins/processing/algs/saga/description/2.2.2/OrdinaryKriging.txt b/python/plugins/processing/algs/saga/description/OrdinaryKriging.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.2/OrdinaryKriging.txt rename to python/plugins/processing/algs/saga/description/OrdinaryKriging.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/OverlandFlow-KinematicWaveD8.txt b/python/plugins/processing/algs/saga/description/OverlandFlow-KinematicWaveD8.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/OverlandFlow-KinematicWaveD8.txt rename to python/plugins/processing/algs/saga/description/OverlandFlow-KinematicWaveD8.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/OverlandFlowDistancetoChannelNetwork.txt b/python/plugins/processing/algs/saga/description/OverlandFlowDistancetoChannelNetwork.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/OverlandFlowDistancetoChannelNetwork.txt rename to python/plugins/processing/algs/saga/description/OverlandFlowDistancetoChannelNetwork.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/Patching.txt b/python/plugins/processing/algs/saga/description/Patching.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/Patching.txt rename to python/plugins/processing/algs/saga/description/Patching.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/PatternAnalysis.txt b/python/plugins/processing/algs/saga/description/PatternAnalysis.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/PatternAnalysis.txt rename to python/plugins/processing/algs/saga/description/PatternAnalysis.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/PointStatisticsforPolygons.txt b/python/plugins/processing/algs/saga/description/PointStatisticsforPolygons.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/PointStatisticsforPolygons.txt rename to python/plugins/processing/algs/saga/description/PointStatisticsforPolygons.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/PointsFilter.txt b/python/plugins/processing/algs/saga/description/PointsFilter.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/PointsFilter.txt rename to python/plugins/processing/algs/saga/description/PointsFilter.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/PointsThinning.txt b/python/plugins/processing/algs/saga/description/PointsThinning.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/PointsThinning.txt rename to python/plugins/processing/algs/saga/description/PointsThinning.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/PolartoCartesianCoordinates.txt b/python/plugins/processing/algs/saga/description/PolartoCartesianCoordinates.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/PolartoCartesianCoordinates.txt rename to python/plugins/processing/algs/saga/description/PolartoCartesianCoordinates.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/Polygon-LineIntersection.txt b/python/plugins/processing/algs/saga/description/Polygon-LineIntersection.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/Polygon-LineIntersection.txt rename to python/plugins/processing/algs/saga/description/Polygon-LineIntersection.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/PolygonCentroids.txt b/python/plugins/processing/algs/saga/description/PolygonCentroids.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/PolygonCentroids.txt rename to python/plugins/processing/algs/saga/description/PolygonCentroids.txt diff --git a/python/plugins/processing/algs/saga/description/2.2.0/PolygonClipping.txt b/python/plugins/processing/algs/saga/description/PolygonClipping.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.0/PolygonClipping.txt rename to python/plugins/processing/algs/saga/description/PolygonClipping.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/PolygonDifference.txt b/python/plugins/processing/algs/saga/description/PolygonDifference.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/PolygonDifference.txt rename to python/plugins/processing/algs/saga/description/PolygonDifference.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/PolygonDissolve.txt b/python/plugins/processing/algs/saga/description/PolygonDissolve.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/PolygonDissolve.txt rename to python/plugins/processing/algs/saga/description/PolygonDissolve.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/PolygonDissolveAllPolygs.txt b/python/plugins/processing/algs/saga/description/PolygonDissolveAllPolygs.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/PolygonDissolveAllPolygs.txt rename to python/plugins/processing/algs/saga/description/PolygonDissolveAllPolygs.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/PolygonIdentity.txt b/python/plugins/processing/algs/saga/description/PolygonIdentity.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/PolygonIdentity.txt rename to python/plugins/processing/algs/saga/description/PolygonIdentity.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/PolygonIntersect.txt b/python/plugins/processing/algs/saga/description/PolygonIntersect.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/PolygonIntersect.txt rename to python/plugins/processing/algs/saga/description/PolygonIntersect.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/PolygonPartstoSeparatePolygons.txt b/python/plugins/processing/algs/saga/description/PolygonPartstoSeparatePolygons.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/PolygonPartstoSeparatePolygons.txt rename to python/plugins/processing/algs/saga/description/PolygonPartstoSeparatePolygons.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/PolygonProperties.txt b/python/plugins/processing/algs/saga/description/PolygonProperties.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/PolygonProperties.txt rename to python/plugins/processing/algs/saga/description/PolygonProperties.txt diff --git a/python/plugins/processing/algs/saga/description/2.2.0/PolygonSelfIntersection.txt b/python/plugins/processing/algs/saga/description/PolygonSelfIntersection.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.0/PolygonSelfIntersection.txt rename to python/plugins/processing/algs/saga/description/PolygonSelfIntersection.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/PolygonShapeIndices.txt b/python/plugins/processing/algs/saga/description/PolygonShapeIndices.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/PolygonShapeIndices.txt rename to python/plugins/processing/algs/saga/description/PolygonShapeIndices.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/PolygonSymmetricalDifference.txt b/python/plugins/processing/algs/saga/description/PolygonSymmetricalDifference.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/PolygonSymmetricalDifference.txt rename to python/plugins/processing/algs/saga/description/PolygonSymmetricalDifference.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/PolygonUnion.txt b/python/plugins/processing/algs/saga/description/PolygonUnion.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/PolygonUnion.txt rename to python/plugins/processing/algs/saga/description/PolygonUnion.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/PolygonUpdate.txt b/python/plugins/processing/algs/saga/description/PolygonUpdate.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/PolygonUpdate.txt rename to python/plugins/processing/algs/saga/description/PolygonUpdate.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/PolygonstoEdgesandNodes.txt b/python/plugins/processing/algs/saga/description/PolygonstoEdgesandNodes.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/PolygonstoEdgesandNodes.txt rename to python/plugins/processing/algs/saga/description/PolygonstoEdgesandNodes.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/PolynomialRegression.txt b/python/plugins/processing/algs/saga/description/PolynomialRegression.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/PolynomialRegression.txt rename to python/plugins/processing/algs/saga/description/PolynomialRegression.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/PrincipleComponentsAnalysis.txt b/python/plugins/processing/algs/saga/description/PrincipleComponentsAnalysis.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/PrincipleComponentsAnalysis.txt rename to python/plugins/processing/algs/saga/description/PrincipleComponentsAnalysis.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/Profilefrompoints.txt b/python/plugins/processing/algs/saga/description/Profilefrompoints.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/Profilefrompoints.txt rename to python/plugins/processing/algs/saga/description/Profilefrompoints.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ProfilesfromLines.txt b/python/plugins/processing/algs/saga/description/ProfilesfromLines.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ProfilesfromLines.txt rename to python/plugins/processing/algs/saga/description/ProfilesfromLines.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ProximityGrid.txt b/python/plugins/processing/algs/saga/description/ProximityGrid.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ProximityGrid.txt rename to python/plugins/processing/algs/saga/description/ProximityGrid.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/QuadTreeStructuretoShapes.txt b/python/plugins/processing/algs/saga/description/QuadTreeStructuretoShapes.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/QuadTreeStructuretoShapes.txt rename to python/plugins/processing/algs/saga/description/QuadTreeStructuretoShapes.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/RGBComposite.txt b/python/plugins/processing/algs/saga/description/RGBComposite.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/RGBComposite.txt rename to python/plugins/processing/algs/saga/description/RGBComposite.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/RadiusofVariance(Grid).txt b/python/plugins/processing/algs/saga/description/RadiusofVariance(Grid).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/RadiusofVariance(Grid).txt rename to python/plugins/processing/algs/saga/description/RadiusofVariance(Grid).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/RandomField.txt b/python/plugins/processing/algs/saga/description/RandomField.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/RandomField.txt rename to python/plugins/processing/algs/saga/description/RandomField.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/RandomTerrainGeneration.txt b/python/plugins/processing/algs/saga/description/RandomTerrainGeneration.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/RandomTerrainGeneration.txt rename to python/plugins/processing/algs/saga/description/RandomTerrainGeneration.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/RankFilter.txt b/python/plugins/processing/algs/saga/description/RankFilter.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/RankFilter.txt rename to python/plugins/processing/algs/saga/description/RankFilter.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/RealSurfaceArea.txt b/python/plugins/processing/algs/saga/description/RealSurfaceArea.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/RealSurfaceArea.txt rename to python/plugins/processing/algs/saga/description/RealSurfaceArea.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ReclassifyGridValues.txt b/python/plugins/processing/algs/saga/description/ReclassifyGridValues.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ReclassifyGridValues.txt rename to python/plugins/processing/algs/saga/description/ReclassifyGridValues.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/RegressionAnalysis(PointsGrid).txt b/python/plugins/processing/algs/saga/description/RegressionAnalysis(PointsGrid).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/RegressionAnalysis(PointsGrid).txt rename to python/plugins/processing/algs/saga/description/RegressionAnalysis(PointsGrid).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/RelativeHeightsandSlopePositions.txt b/python/plugins/processing/algs/saga/description/RelativeHeightsandSlopePositions.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/RelativeHeightsandSlopePositions.txt rename to python/plugins/processing/algs/saga/description/RelativeHeightsandSlopePositions.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/RemoveDuplicatePoints.txt b/python/plugins/processing/algs/saga/description/RemoveDuplicatePoints.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/RemoveDuplicatePoints.txt rename to python/plugins/processing/algs/saga/description/RemoveDuplicatePoints.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/Representativeness(Grid).txt b/python/plugins/processing/algs/saga/description/Representativeness(Grid).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/Representativeness(Grid).txt rename to python/plugins/processing/algs/saga/description/Representativeness(Grid).txt diff --git a/python/plugins/processing/algs/saga/description/2.2.3/Resampling.txt b/python/plugins/processing/algs/saga/description/Resampling.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.3/Resampling.txt rename to python/plugins/processing/algs/saga/description/Resampling.txt diff --git a/python/plugins/processing/algs/saga/description/2.2.3/ResidualAnalysis(Grid).txt b/python/plugins/processing/algs/saga/description/ResidualAnalysis(Grid).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.3/ResidualAnalysis(Grid).txt rename to python/plugins/processing/algs/saga/description/ResidualAnalysis(Grid).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/RunningAverage.txt b/python/plugins/processing/algs/saga/description/RunningAverage.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/RunningAverage.txt rename to python/plugins/processing/algs/saga/description/RunningAverage.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/SAGAWetnessIndex.txt b/python/plugins/processing/algs/saga/description/SAGAWetnessIndex.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/SAGAWetnessIndex.txt rename to python/plugins/processing/algs/saga/description/SAGAWetnessIndex.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/SeedGeneration.txt b/python/plugins/processing/algs/saga/description/SeedGeneration.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/SeedGeneration.txt rename to python/plugins/processing/algs/saga/description/SeedGeneration.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/Separatepointsbydirection.txt b/python/plugins/processing/algs/saga/description/Separatepointsbydirection.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/Separatepointsbydirection.txt rename to python/plugins/processing/algs/saga/description/Separatepointsbydirection.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ShapesBuffer.txt b/python/plugins/processing/algs/saga/description/ShapesBuffer.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ShapesBuffer.txt rename to python/plugins/processing/algs/saga/description/ShapesBuffer.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ShapesBufferFixed.txt b/python/plugins/processing/algs/saga/description/ShapesBufferFixed.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ShapesBufferFixed.txt rename to python/plugins/processing/algs/saga/description/ShapesBufferFixed.txt diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ShapestoGrid.txt b/python/plugins/processing/algs/saga/description/ShapestoGrid.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.0/ShapestoGrid.txt rename to python/plugins/processing/algs/saga/description/ShapestoGrid.txt diff --git a/python/plugins/processing/algs/saga/description/2.2.0/SharedPolygonEdges.txt b/python/plugins/processing/algs/saga/description/SharedPolygonEdges.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.0/SharedPolygonEdges.txt rename to python/plugins/processing/algs/saga/description/SharedPolygonEdges.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ShrinkAndExpand.txt b/python/plugins/processing/algs/saga/description/ShrinkAndExpand.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ShrinkAndExpand.txt rename to python/plugins/processing/algs/saga/description/ShrinkAndExpand.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/SimpleFilter.txt b/python/plugins/processing/algs/saga/description/SimpleFilter.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/SimpleFilter.txt rename to python/plugins/processing/algs/saga/description/SimpleFilter.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/SimpleRegionGrowing.txt b/python/plugins/processing/algs/saga/description/SimpleRegionGrowing.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/SimpleRegionGrowing.txt rename to python/plugins/processing/algs/saga/description/SimpleRegionGrowing.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/Simulation.txt b/python/plugins/processing/algs/saga/description/Simulation.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/Simulation.txt rename to python/plugins/processing/algs/saga/description/Simulation.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/SinkDrainageRouteDetection.txt b/python/plugins/processing/algs/saga/description/SinkDrainageRouteDetection.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/SinkDrainageRouteDetection.txt rename to python/plugins/processing/algs/saga/description/SinkDrainageRouteDetection.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/SinkRemoval.txt b/python/plugins/processing/algs/saga/description/SinkRemoval.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/SinkRemoval.txt rename to python/plugins/processing/algs/saga/description/SinkRemoval.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/SkyViewFactor.txt b/python/plugins/processing/algs/saga/description/SkyViewFactor.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/SkyViewFactor.txt rename to python/plugins/processing/algs/saga/description/SkyViewFactor.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/Slope,Aspect,Curvature.txt b/python/plugins/processing/algs/saga/description/Slope,Aspect,Curvature.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/Slope,Aspect,Curvature.txt rename to python/plugins/processing/algs/saga/description/Slope,Aspect,Curvature.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/SlopeLength.txt b/python/plugins/processing/algs/saga/description/SlopeLength.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/SlopeLength.txt rename to python/plugins/processing/algs/saga/description/SlopeLength.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/SoilTextureClassification.txt b/python/plugins/processing/algs/saga/description/SoilTextureClassification.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/SoilTextureClassification.txt rename to python/plugins/processing/algs/saga/description/SoilTextureClassification.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/SpatialPointPatternAnalysis.txt b/python/plugins/processing/algs/saga/description/SpatialPointPatternAnalysis.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/SpatialPointPatternAnalysis.txt rename to python/plugins/processing/algs/saga/description/SpatialPointPatternAnalysis.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/SplitShapesLayerRandomly.txt b/python/plugins/processing/algs/saga/description/SplitShapesLayerRandomly.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/SplitShapesLayerRandomly.txt rename to python/plugins/processing/algs/saga/description/SplitShapesLayerRandomly.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/StatisticsforGrids.txt b/python/plugins/processing/algs/saga/description/StatisticsforGrids.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/StatisticsforGrids.txt rename to python/plugins/processing/algs/saga/description/StatisticsforGrids.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/StrahlerOrder.txt b/python/plugins/processing/algs/saga/description/StrahlerOrder.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/StrahlerOrder.txt rename to python/plugins/processing/algs/saga/description/StrahlerOrder.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/StreamPowerIndex.txt b/python/plugins/processing/algs/saga/description/StreamPowerIndex.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/StreamPowerIndex.txt rename to python/plugins/processing/algs/saga/description/StreamPowerIndex.txt diff --git a/python/plugins/processing/algs/saga/description/2.2.3/SuccessiveFlowRouting.txt b/python/plugins/processing/algs/saga/description/SuccessiveFlowRouting.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.3/SuccessiveFlowRouting.txt rename to python/plugins/processing/algs/saga/description/SuccessiveFlowRouting.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/SupervisedClassification.txt b/python/plugins/processing/algs/saga/description/SupervisedClassification.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/SupervisedClassification.txt rename to python/plugins/processing/algs/saga/description/SupervisedClassification.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/SurfaceSpecificPoints.txt b/python/plugins/processing/algs/saga/description/SurfaceSpecificPoints.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/SurfaceSpecificPoints.txt rename to python/plugins/processing/algs/saga/description/SurfaceSpecificPoints.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/TPIBasedLandformClassification.txt b/python/plugins/processing/algs/saga/description/TPIBasedLandformClassification.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/TPIBasedLandformClassification.txt rename to python/plugins/processing/algs/saga/description/TPIBasedLandformClassification.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/TerrainRuggednessIndex(TRI).txt b/python/plugins/processing/algs/saga/description/TerrainRuggednessIndex(TRI).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/TerrainRuggednessIndex(TRI).txt rename to python/plugins/processing/algs/saga/description/TerrainRuggednessIndex(TRI).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/ThinPlateSpline(TIN).txt b/python/plugins/processing/algs/saga/description/ThinPlateSpline(TIN).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/ThinPlateSpline(TIN).txt rename to python/plugins/processing/algs/saga/description/ThinPlateSpline(TIN).txt diff --git a/python/plugins/processing/algs/saga/description/2.2.0/ThinPlateSpline.txt b/python/plugins/processing/algs/saga/description/ThinPlateSpline.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.0/ThinPlateSpline.txt rename to python/plugins/processing/algs/saga/description/ThinPlateSpline.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ThresholdBuffer.txt b/python/plugins/processing/algs/saga/description/ThresholdBuffer.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ThresholdBuffer.txt rename to python/plugins/processing/algs/saga/description/ThresholdBuffer.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/TopographicCorrection.txt b/python/plugins/processing/algs/saga/description/TopographicCorrection.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/TopographicCorrection.txt rename to python/plugins/processing/algs/saga/description/TopographicCorrection.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/TopographicPositionIndex(TPI).txt b/python/plugins/processing/algs/saga/description/TopographicPositionIndex(TPI).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/TopographicPositionIndex(TPI).txt rename to python/plugins/processing/algs/saga/description/TopographicPositionIndex(TPI).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/TopographicWetnessIndex(TWI).txt b/python/plugins/processing/algs/saga/description/TopographicWetnessIndex(TWI).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/TopographicWetnessIndex(TWI).txt rename to python/plugins/processing/algs/saga/description/TopographicWetnessIndex(TWI).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/Transectthroughpolygonshapefile.txt b/python/plugins/processing/algs/saga/description/Transectthroughpolygonshapefile.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/Transectthroughpolygonshapefile.txt rename to python/plugins/processing/algs/saga/description/Transectthroughpolygonshapefile.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/TransformShapes.txt b/python/plugins/processing/algs/saga/description/TransformShapes.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/TransformShapes.txt rename to python/plugins/processing/algs/saga/description/TransformShapes.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/TransposeGrids.txt b/python/plugins/processing/algs/saga/description/TransposeGrids.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/TransposeGrids.txt rename to python/plugins/processing/algs/saga/description/TransposeGrids.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.3/Triangulation.txt b/python/plugins/processing/algs/saga/description/Triangulation.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.3/Triangulation.txt rename to python/plugins/processing/algs/saga/description/Triangulation.txt diff --git a/python/plugins/processing/algs/saga/description/2.2.0/UniversalKriging(Global).txt b/python/plugins/processing/algs/saga/description/UniversalKriging(Global).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.0/UniversalKriging(Global).txt rename to python/plugins/processing/algs/saga/description/UniversalKriging(Global).txt diff --git a/python/plugins/processing/algs/saga/description/2.2.2/UniversalKriging.txt b/python/plugins/processing/algs/saga/description/UniversalKriging.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.2/UniversalKriging.txt rename to python/plugins/processing/algs/saga/description/UniversalKriging.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/UpslopeArea.txt b/python/plugins/processing/algs/saga/description/UpslopeArea.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/UpslopeArea.txt rename to python/plugins/processing/algs/saga/description/UpslopeArea.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/UserDefinedFilter.txt b/python/plugins/processing/algs/saga/description/UserDefinedFilter.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/UserDefinedFilter.txt rename to python/plugins/processing/algs/saga/description/UserDefinedFilter.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/VariogramCloud.txt b/python/plugins/processing/algs/saga/description/VariogramCloud.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/VariogramCloud.txt rename to python/plugins/processing/algs/saga/description/VariogramCloud.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/VariogramSurface.txt b/python/plugins/processing/algs/saga/description/VariogramSurface.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/VariogramSurface.txt rename to python/plugins/processing/algs/saga/description/VariogramSurface.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/VectorRuggednessMeasure(VRM).txt b/python/plugins/processing/algs/saga/description/VectorRuggednessMeasure(VRM).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/VectorRuggednessMeasure(VRM).txt rename to python/plugins/processing/algs/saga/description/VectorRuggednessMeasure(VRM).txt diff --git a/python/plugins/processing/algs/saga/description/2.2.2/VectorisingGridClasses.txt b/python/plugins/processing/algs/saga/description/VectorisingGridClasses.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.2.2/VectorisingGridClasses.txt rename to python/plugins/processing/algs/saga/description/VectorisingGridClasses.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/VegetationIndex(SlopeBased).txt b/python/plugins/processing/algs/saga/description/VegetationIndex(SlopeBased).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/VegetationIndex(SlopeBased).txt rename to python/plugins/processing/algs/saga/description/VegetationIndex(SlopeBased).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/VerticalDistancetoChannelNetwork.txt b/python/plugins/processing/algs/saga/description/VerticalDistancetoChannelNetwork.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/VerticalDistancetoChannelNetwork.txt rename to python/plugins/processing/algs/saga/description/VerticalDistancetoChannelNetwork.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/WaterRetentionCapacity.txt b/python/plugins/processing/algs/saga/description/WaterRetentionCapacity.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/WaterRetentionCapacity.txt rename to python/plugins/processing/algs/saga/description/WaterRetentionCapacity.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/WatershedBasins.txt b/python/plugins/processing/algs/saga/description/WatershedBasins.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/WatershedBasins.txt rename to python/plugins/processing/algs/saga/description/WatershedBasins.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/WatershedSegmentation.txt b/python/plugins/processing/algs/saga/description/WatershedSegmentation.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/WatershedSegmentation.txt rename to python/plugins/processing/algs/saga/description/WatershedSegmentation.txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/WindEffect(WindwardLeewardIndex).txt b/python/plugins/processing/algs/saga/description/WindEffect(WindwardLeewardIndex).txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/WindEffect(WindwardLeewardIndex).txt rename to python/plugins/processing/algs/saga/description/WindEffect(WindwardLeewardIndex).txt diff --git a/python/plugins/processing/algs/saga/description/2.1.2/ZonalGridStatistics.txt b/python/plugins/processing/algs/saga/description/ZonalGridStatistics.txt similarity index 100% rename from python/plugins/processing/algs/saga/description/2.1.2/ZonalGridStatistics.txt rename to python/plugins/processing/algs/saga/description/ZonalGridStatistics.txt