mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
Fix SAGA boolean parameters
This commit is contained in:
parent
178708590d
commit
ca0b7a2639
@ -32,6 +32,7 @@ from qgis.core import (QgsProcessingUtils,
|
||||
QgsProcessingException,
|
||||
QgsMessageLog,
|
||||
QgsProcessingParameterRasterLayer,
|
||||
QgsProcessingParameterBoolean,
|
||||
QgsProcessingParameterNumber)
|
||||
from processing.core.ProcessingConfig import ProcessingConfig
|
||||
from processing.core.parameters import (getParameterFromString,
|
||||
@ -39,7 +40,6 @@ from processing.core.parameters import (getParameterFromString,
|
||||
ParameterVector,
|
||||
ParameterTable,
|
||||
ParameterMultipleInput,
|
||||
ParameterBoolean,
|
||||
ParameterFixedTable,
|
||||
ParameterSelection)
|
||||
from processing.core.outputs import (getOutputFromString,
|
||||
@ -226,7 +226,7 @@ class SagaAlgorithm(SagaAlgorithmBase):
|
||||
for layer in list(self.exportedLayers.keys()):
|
||||
s = s.replace(layer, self.exportedLayers[layer])
|
||||
command += ' -' + param.name() + ' "' + s + '"'
|
||||
elif isinstance(param, ParameterBoolean):
|
||||
elif isinstance(param, QgsProcessingParameterBoolean):
|
||||
if parameters[param.name()]:
|
||||
command += ' -' + param.name().strip() + " true"
|
||||
else:
|
||||
|
@ -8,5 +8,5 @@ QgsProcessingParameterRasterLayer|CTRL_LINEAR|Linear Flow Control Grid|None|True
|
||||
QgsProcessingParameterRasterDestination|FLUX|Flux
|
||||
QgsProcessingParameterRasterDestination|STATE_OUT|State t + 1
|
||||
ParameterSelection|OPERATION|Operation|[0] accuflux;[1] accucapacityflux / state;[2] accufractionflux / state;[3] accuthresholdflux / state;[4] accutriggerflux / state| 0
|
||||
ParameterBoolean|LINEAR|Switch to Linear Flow|True
|
||||
QgsProcessingParameterBoolean|LINEAR|Switch to Linear Flow|True
|
||||
QgsProcessingParameterNumber|THRES_LINEAR|Threshold Linear Flow|QgsProcessingParameterNumber.Double|0.000000|False|None|None
|
@ -3,5 +3,5 @@ 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
|
||||
QgsProcessingParameterBoolean|ADD_LOCATION_INFO|Add location info|False
|
||||
OutputVector|OUTPUT|Result
|
@ -19,5 +19,5 @@ QgsProcessingParameterNumber|SEARCH_POINTS_MAX|Maximum|QgsProcessingParameterNum
|
||||
ParameterSelection|SEARCH_DIRECTION|Direction|[0] all directions;[1] quadrants| 0
|
||||
ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting| 1
|
||||
QgsProcessingParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|QgsProcessingParameterNumber.Double|2.000000|False| 0.000000|None
|
||||
ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|False
|
||||
QgsProcessingParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|False
|
||||
QgsProcessingParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|QgsProcessingParameterNumber.Double|1.000000|False| 0.000000|None
|
@ -1,7 +1,7 @@
|
||||
Artificial Neural Network Classification (OpenCV)
|
||||
imagery_opencv
|
||||
ParameterMultipleInput|FEATURES|Features|3|False
|
||||
ParameterBoolean|NORMALIZE|Normalize|False
|
||||
QgsProcessingParameterBoolean|NORMALIZE|Normalize|False
|
||||
ParameterVector|TRAIN_AREAS|Training Areas|2|False
|
||||
ParameterTable|TRAIN_CLASS|Class Identifier|False
|
||||
QgsProcessingParameterRasterDestination|CLASSES|Classification
|
||||
|
@ -6,9 +6,9 @@ QgsProcessingParameterRasterLayer|BAND4|Landsat Band 4|None|False
|
||||
QgsProcessingParameterRasterLayer|BAND5|Landsat Band 5|None|False
|
||||
QgsProcessingParameterRasterLayer|BAND6|Landsat Band 6|None|False
|
||||
QgsProcessingParameterRasterDestination|CLOUD|Cloud Cover
|
||||
ParameterBoolean|FILTER|Apply post-processing filter to remove small holes|True
|
||||
QgsProcessingParameterBoolean|FILTER|Apply post-processing filter to remove small holes|True
|
||||
QgsProcessingParameterNumber|B56C|B56 Composite (step 6)|QgsProcessingParameterNumber.Double|225.000000|False|None|None
|
||||
QgsProcessingParameterNumber|B45R|B45 Ratio: Desert detection (step 10)|QgsProcessingParameterNumber.Double|1.000000|False|None|None
|
||||
ParameterBoolean|CSIG|Always use cloud signature (step 14)|True
|
||||
ParameterBoolean|PASS2|Bypass second-pass processing, and merge warm (not ambiguous) and cold clouds|True
|
||||
ParameterBoolean|SHADOW|Include a category for cloud shadows|True
|
||||
QgsProcessingParameterBoolean|CSIG|Always use cloud signature (step 14)|True
|
||||
QgsProcessingParameterBoolean|PASS2|Bypass second-pass processing, and merge warm (not ambiguous) and cold clouds|True
|
||||
QgsProcessingParameterBoolean|SHADOW|Include a category for cloud shadows|True
|
@ -1,15 +1,15 @@
|
||||
Boosting Classification (OpenCV)
|
||||
imagery_opencv
|
||||
ParameterMultipleInput|FEATURES|Features|3|False
|
||||
ParameterBoolean|NORMALIZE|Normalize|False
|
||||
QgsProcessingParameterBoolean|NORMALIZE|Normalize|False
|
||||
ParameterVector|TRAIN_AREAS|Training Areas|-1|False
|
||||
ParameterTable|TRAIN_CLASS|Class Identifier|False
|
||||
QgsProcessingParameterRasterDestination|CLASSES|Classification
|
||||
QgsProcessingParameterNumber|MAX_DEPTH|Maximum Tree Depth|QgsProcessingParameterNumber.Integer|10|False| 1|None
|
||||
QgsProcessingParameterNumber|MIN_SAMPLES|Minimum Sample Count|QgsProcessingParameterNumber.Integer|2|False| 2|None
|
||||
QgsProcessingParameterNumber|MAX_CATEGRS|Maximum Categories|QgsProcessingParameterNumber.Integer|10|False| 1|None
|
||||
ParameterBoolean|1SE_RULE|Use 1SE Rule|True
|
||||
ParameterBoolean|TRUNC_PRUNED|Truncate Pruned Trees|True
|
||||
QgsProcessingParameterBoolean|1SE_RULE|Use 1SE Rule|True
|
||||
QgsProcessingParameterBoolean|TRUNC_PRUNED|Truncate Pruned Trees|True
|
||||
QgsProcessingParameterNumber|REG_ACCURACY|Regression Accuracy|QgsProcessingParameterNumber.Double|0.010000|False| 0.000000|None
|
||||
QgsProcessingParameterNumber|WEAK_COUNT|Weak Count|QgsProcessingParameterNumber.Integer|100|False| 0|None
|
||||
QgsProcessingParameterNumber|WGT_TRIM_RATE|Weight Trim Rate|QgsProcessingParameterNumber.Double|0.950000|False| 0.000000| 1.000000
|
||||
|
@ -10,7 +10,7 @@ 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
|
||||
QgsProcessingParameterBoolean|NOCHANGE |Report Unchanged Classes|True
|
||||
ParameterSelection|OUTPUT|Output as...|[0] cells;[1] percent;[2] area
|
||||
QgsProcessingParameterRasterDestination|CHANGE|Changes
|
||||
OutputTable|CHANGES|Changes
|
||||
|
@ -5,7 +5,7 @@ QgsProcessingParameterRasterLayer|MASK|Mask|None|True
|
||||
QgsProcessingParameterNumber|MAXGAPCELLS|Only Process Gaps with Less Cells|QgsProcessingParameterNumber.Integer|0|False|None|None
|
||||
QgsProcessingParameterNumber|MAXPOINTS|Maximum Points|QgsProcessingParameterNumber.Integer|1000|False|None|None
|
||||
QgsProcessingParameterNumber|LOCALPOINTS|Number of Points for Local Interpolation|QgsProcessingParameterNumber.Integer|10|False|None|None
|
||||
ParameterBoolean|EXTENDED |Extended Neighourhood|True
|
||||
QgsProcessingParameterBoolean|EXTENDED |Extended Neighourhood|True
|
||||
ParameterSelection|NEIGHBOURS|Neighbourhood|[0] Neumann;[1] Moore
|
||||
QgsProcessingParameterNumber|RADIUS|Radius (Cells)|QgsProcessingParameterNumber.Integer|0|False|None|None
|
||||
QgsProcessingParameterNumber|RELAXATION|Relaxation|QgsProcessingParameterNumber.Double|0.0|False|None|None
|
||||
|
@ -5,6 +5,6 @@ QgsProcessingParameterRasterLayer|MASK|Mask|None|True
|
||||
QgsProcessingParameterRasterDestination|RESULT|Result
|
||||
ParameterSelection|RESAMPLING|Resampling|[0] Nearest Neighbour;[1] Bilinear Interpolation;[2] Bicubic Spline Interpolation;[3] B-Spline Interpolation| 3
|
||||
QgsProcessingParameterNumber|GROW|Grow Factor|QgsProcessingParameterNumber.Double|2.000000|False| 1.000000|None
|
||||
ParameterBoolean|PYRAMIDS|Use Pyramids|False
|
||||
QgsProcessingParameterBoolean|PYRAMIDS|Use Pyramids|False
|
||||
ParameterSelection|START|Start Size|[0] grid cell size;[1] user defined size| 0
|
||||
QgsProcessingParameterNumber|START_SIZE|User Defined Size|QgsProcessingParameterNumber.Double|1.000000|False| 0.000000|None
|
@ -7,4 +7,4 @@ ParameterTable|CLUSTER|Cluster|False
|
||||
ParameterTable|STATISTICS|Statistics|False
|
||||
ParameterSelection|METHOD|Method|[0] Iterative Minimum Distance (Forgy 1965);[1] Hill-Climbing (Rubin 1967);[2] Combined Minimum Distance / Hillclimbing| 1
|
||||
QgsProcessingParameterNumber|NCLUSTER|Clusters|QgsProcessingParameterNumber.Integer|10|False| 2|None
|
||||
ParameterBoolean|NORMALISE|Normalise|False
|
||||
QgsProcessingParameterBoolean|NORMALISE|Normalise|False
|
@ -7,4 +7,4 @@ ParameterTable|CLUSTER|Cluster|False
|
||||
ParameterTable|STATISTICS|Statistics|False
|
||||
ParameterSelection|METHOD|Method|[0] Iterative Minimum Distance (Forgy 1965);[1] Hill-Climbing (Rubin 1967);[2] Combined Minimum Distance / Hillclimbing| 1
|
||||
QgsProcessingParameterNumber|NCLUSTER|Clusters|QgsProcessingParameterNumber.Integer|10|False| 2|None
|
||||
ParameterBoolean|NORMALISE|Normalise|False
|
||||
QgsProcessingParameterBoolean|NORMALISE|Normalise|False
|
@ -4,8 +4,8 @@ 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
|
||||
QgsProcessingParameterNumber|NCLUSTER|Clusters|QgsProcessingParameterNumber.Integer|10|False|2|None
|
||||
QgsProcessingParameterNumber|MAXITER|Maximum Iterations|QgsProcessingParameterNumber.Integer|0|False|0|None
|
||||
ParameterBoolean|NORMALISE|Normalise|True
|
||||
ParameterBoolean|OLDVERSION|Old Version|False
|
||||
ParameterBoolean|UPDATEVIEW|Update View|False
|
||||
QgsProcessingParameterBoolean|NORMALISE|Normalise|True
|
||||
QgsProcessingParameterBoolean|OLDVERSION|Old Version|False
|
||||
QgsProcessingParameterBoolean|UPDATEVIEW|Update View|False
|
||||
QgsProcessingParameterRasterDestination|CLUSTER|Clusters
|
||||
OutputTable|STATISTICS|Statistics
|
||||
|
@ -11,7 +11,7 @@ ParameterTable|TWO_LUT_MIN|Value|False
|
||||
ParameterTable|TWO_LUT_MAX|Value (Maximum)|False
|
||||
ParameterTable|TWO_LUT_NAM|Name|False
|
||||
QgsProcessingParameterRasterDestination|COMBINED|Combined Classes
|
||||
ParameterBoolean|NOCHANGE|Report Unchanged Classes|True
|
||||
QgsProcessingParameterBoolean|NOCHANGE|Report Unchanged Classes|True
|
||||
ParameterTable|CONFUSION|Confusion Matrix|False
|
||||
ParameterSelection|OUTPUT|Output as...|[0] cells;[1] percent;[2] area| 0
|
||||
ParameterTable|CLASSES|Class Values|False
|
||||
|
@ -2,9 +2,9 @@ Connectivity Analysis
|
||||
grid_filter
|
||||
QgsProcessingParameterRasterLayer|INPUT_GRID|Input Binary Grid|None|False
|
||||
QgsProcessingParameterRasterDestination|FILTERED_MASK|Filtered Image
|
||||
ParameterBoolean|FILTER|Apply Filter?|True
|
||||
QgsProcessingParameterBoolean|FILTER|Apply Filter?|True
|
||||
QgsProcessingParameterNumber|SIZE|Filter Size (Radius)|QgsProcessingParameterNumber.Integer|3|False|None|None
|
||||
QgsProcessingParameterRasterDestination|SYMBOLIC_IMAGE|Symbolic Image
|
||||
OutputVector|OUTLINES|Outlines
|
||||
ParameterBoolean|BORDER_PIXEL_CENTERS|Pixel Centers?|False
|
||||
ParameterBoolean|REMOVE_MARGINAL_REGIONS|Remove Border Regions?|False
|
||||
QgsProcessingParameterBoolean|BORDER_PIXEL_CENTERS|Pixel Centers?|False
|
||||
QgsProcessingParameterBoolean|REMOVE_MARGINAL_REGIONS|Remove Border Regions?|False
|
@ -4,8 +4,8 @@ QgsProcessingParameterRasterLayer|ELEVATION|Elevation|None|False
|
||||
QgsProcessingParameterNumber|RADIUS|Radius [Cells]|QgsProcessingParameterNumber.Double|10.0|False|1.0|None
|
||||
ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting
|
||||
QgsProcessingParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|QgsProcessingParameterNumber.Double|1.0|False|0.0|None
|
||||
ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|QgsProcessingParameterNumber.Double|1.0|False|0.0|None
|
||||
ParameterBoolean|SLOPE|Gradient|True
|
||||
QgsProcessingParameterBoolean|SLOPE|Gradient|True
|
||||
ParameterSelection|DIFFERENCE|Weighting Function|[0] direction to the center cell;[1] center cell's aspect direction
|
||||
QgsProcessingParameterRasterDestination|CONVERGENCE|Convergence Index
|
@ -1,6 +1,6 @@
|
||||
Convert Lines to Points
|
||||
shapes_points
|
||||
ParameterVector|LINES|Lines|1|False
|
||||
ParameterBoolean|ADD |Insert Additional Points|True
|
||||
QgsProcessingParameterBoolean|ADD |Insert Additional Points|True
|
||||
QgsProcessingParameterNumber|DIST|Insert Distance|QgsProcessingParameterNumber.Double|1.0|False|0.0|None
|
||||
OutputVector|POINTS|Points
|
||||
|
@ -3,6 +3,6 @@ grid_filter
|
||||
QgsProcessingParameterRasterLayer|INPUT|Grid to filter|None|False
|
||||
QgsProcessingParameterNumber|RADIUS|Search Radius|QgsProcessingParameterNumber.Integer|2|False|1.0|None
|
||||
QgsProcessingParameterNumber|TERRAINSLOPE|Approx. Terrain Slope|QgsProcessingParameterNumber.Double|30.0|False|None|None
|
||||
ParameterBoolean|STDDEV |Use Confidence Interval|True
|
||||
QgsProcessingParameterBoolean|STDDEV |Use Confidence Interval|True
|
||||
QgsProcessingParameterRasterDestination|GROUND|Bare Earth
|
||||
QgsProcessingParameterRasterDestination|NONGROUND|Removed Objects
|
||||
|
@ -1,13 +1,13 @@
|
||||
Decision Tree Classification (OpenCV)
|
||||
imagery_opencv
|
||||
ParameterMultipleInput|FEATURES|Features|3|False
|
||||
ParameterBoolean|NORMALIZE|Normalize|False
|
||||
QgsProcessingParameterBoolean|NORMALIZE|Normalize|False
|
||||
ParameterVector|TRAIN_AREAS|Training Areas|-1|False
|
||||
ParameterTable|TRAIN_CLASS|Class Identifier|False
|
||||
QgsProcessingParameterRasterDestination|CLASSES|Classification
|
||||
QgsProcessingParameterNumber|MAX_DEPTH|Maximum Tree Depth|QgsProcessingParameterNumber.Integer|10|False| 1|None
|
||||
QgsProcessingParameterNumber|MIN_SAMPLES|Minimum Sample Count|QgsProcessingParameterNumber.Integer|2|False| 2|None
|
||||
QgsProcessingParameterNumber|MAX_CATEGRS|Maximum Categories|QgsProcessingParameterNumber.Integer|10|False| 1|None
|
||||
ParameterBoolean|1SE_RULE|Use 1SE Rule|True
|
||||
ParameterBoolean|TRUNC_PRUNED|Truncate Pruned Trees|True
|
||||
QgsProcessingParameterBoolean|1SE_RULE|Use 1SE Rule|True
|
||||
QgsProcessingParameterBoolean|TRUNC_PRUNED|Truncate Pruned Trees|True
|
||||
QgsProcessingParameterNumber|REG_ACCURACY|Regression Accuracy|QgsProcessingParameterNumber.Double|0.010000|False| 0.000000|None
|
@ -3,4 +3,4 @@ shapes_polygons
|
||||
ParameterVector|A|Layer A|-1|False
|
||||
ParameterVector|B|Layer B|-1|False
|
||||
OutputVector|RESULT|Difference
|
||||
ParameterBoolean|SPLIT|Split Parts|True
|
||||
QgsProcessingParameterBoolean|SPLIT|Split Parts|True
|
@ -2,7 +2,7 @@ Diffusive Hillslope Evolution (ADI)
|
||||
sim_qm_of_esp
|
||||
QgsProcessingParameterRasterLayer|DEM|Elevation|None|False
|
||||
QgsProcessingParameterRasterLayer|CHANNELS|Channel Mask|None|True
|
||||
ParameterBoolean|UPDATE|Update|True
|
||||
QgsProcessingParameterBoolean|UPDATE|Update|True
|
||||
QgsProcessingParameterNumber|KAPPA|Diffusivity [m2/kyr]|QgsProcessingParameterNumber.Double|10.0|False|0.0|None
|
||||
QgsProcessingParameterNumber|DURATION|Simulation Time [kyr]|QgsProcessingParameterNumber.Double|10000.0|False|0.0|None
|
||||
ParameterSelection|TIMESTEP|Time Step|[0] user defined;[1] automatically|1
|
||||
|
@ -1,7 +1,7 @@
|
||||
Diffusive Hillslope Evolution (FTCS)
|
||||
sim_qm_of_esp
|
||||
QgsProcessingParameterRasterLayer|DEM|Elevation|None|False
|
||||
ParameterBoolean|UPDATE|Update|True
|
||||
QgsProcessingParameterBoolean|UPDATE|Update|True
|
||||
QgsProcessingParameterNumber|KAPPA|Diffusivity [m2/kyr]|QgsProcessingParameterNumber.Double|1.0|False|0.0|None
|
||||
QgsProcessingParameterNumber|DURATION|Simulation Time [kyr]|QgsProcessingParameterNumber.Double|100.0|False|0.0|None
|
||||
ParameterSelection|TIMESTEP|Time Step|[0] user defined;[1] automatically|1
|
||||
|
@ -7,7 +7,7 @@ QgsProcessingParameterNumber|TOLERANCE|Tolerance [Degree]|QgsProcessingParameter
|
||||
QgsProcessingParameterNumber|MAXDISTANCE|Maximum Distance [Cells]|QgsProcessingParameterNumber.Integer|0|False|None|None
|
||||
ParameterSelection|DISTANCE_WEIGHTING_DW_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting
|
||||
QgsProcessingParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|QgsProcessingParameterNumber.Integer|1|False|None|None
|
||||
ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|QgsProcessingParameterNumber.Double|1.0|False|None|None
|
||||
QgsProcessingParameterRasterDestination|MEAN|Arithmetic Mean
|
||||
QgsProcessingParameterRasterDestination|DIFMEAN|Difference from Arithmetic Mean
|
||||
|
@ -6,7 +6,7 @@ QgsProcessingParameterNumber|SEARCH_RADIUS|Search Radius Distance|QgsProcessingP
|
||||
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
|
||||
QgsProcessingParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|QgsProcessingParameterNumber.Integer|1|False|0.0|None
|
||||
ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|QgsProcessingParameterNumber.Double|0.7|False|0.0|None
|
||||
QgsProcessingParameterRasterDestination|COUNT|Number of Categories
|
||||
QgsProcessingParameterRasterDestination|DIVERSITY|Diversity
|
||||
|
@ -4,10 +4,10 @@ QgsProcessingParameterRasterLayer|DEM|Elevation|None|False
|
||||
QgsProcessingParameterRasterLayer|DIR|Wind Direction|None|True
|
||||
QgsProcessingParameterRasterLayer|LEN|Wind Speed|None|True
|
||||
QgsProcessingParameterNumber|DIR_CONST|Constant Wind Direction [Degree]|QgsProcessingParameterNumber.Integer|135|False|None|None
|
||||
ParameterBoolean|OLDVER |Old Version|True
|
||||
QgsProcessingParameterBoolean|OLDVER |Old Version|True
|
||||
QgsProcessingParameterNumber|MAXDIST|Search Distance [km]|QgsProcessingParameterNumber.Integer|300|False|0.0|None
|
||||
QgsProcessingParameterNumber|ACCEL|Acceleration|QgsProcessingParameterNumber.Double|1.5|False|None|None
|
||||
ParameterBoolean|PYRAMIDS |Use Pyramids with New Version|True
|
||||
QgsProcessingParameterBoolean|PYRAMIDS |Use Pyramids with New Version|True
|
||||
QgsProcessingParameterNumber|LEEFACT|Lee Factor|QgsProcessingParameterNumber.Double|0.5|False|None|None
|
||||
QgsProcessingParameterNumber|LUVFACT|Luv Factor|QgsProcessingParameterNumber.Double|1.0|False|None|None
|
||||
ParameterSelection|DIR_UNITS|Wind Direction Units|[0] radians;[1] degree
|
||||
|
@ -10,7 +10,7 @@ QgsProcessingParameterRasterLayer|ACCU_TARGET|Accumulation Target|None|True
|
||||
QgsProcessingParameterNumber|STEP|Step|QgsProcessingParameterNumber.Integer|1|False|None|None
|
||||
ParameterSelection|METHOD|Method|[0] Rho 8;[1] Kinematic Routing Algorithm;[2] DEMON
|
||||
QgsProcessingParameterNumber|MINDQV|DEMON - Min. DQV|QgsProcessingParameterNumber.Double|0.0|False|None|None
|
||||
ParameterBoolean|CORRECT|Flow Correction|False
|
||||
QgsProcessingParameterBoolean|CORRECT|Flow Correction|False
|
||||
QgsProcessingParameterRasterDestination|FLOW|Flow Accumulation
|
||||
QgsProcessingParameterRasterDestination|VAL_MEAN|Mean over Catchment
|
||||
QgsProcessingParameterRasterDestination|ACCU_TOTAL|Accumulated Material
|
||||
|
@ -11,7 +11,7 @@ QgsProcessingParameterNumber|STEP|Step|QgsProcessingParameterNumber.Integer|1|Fa
|
||||
QgsProcessingParameterRasterLayer|TARGETS|Target Areas|None|True
|
||||
ParameterSelection|METHOD|Method|[0] Deterministic 8;[1] Rho 8;[2] Deterministic Infinity;[3] Multiple Flow Direction
|
||||
QgsProcessingParameterNumber|CONVERGENCE|Convergence|QgsProcessingParameterNumber.Double|1.1|False|None|None
|
||||
ParameterBoolean|NO_NEGATIVES|Prevent Negative Flow Accumulation|True
|
||||
QgsProcessingParameterBoolean|NO_NEGATIVES|Prevent Negative Flow Accumulation|True
|
||||
QgsProcessingParameterRasterDestination|FLOW|Catchment Area
|
||||
QgsProcessingParameterRasterDestination|VAL_MEAN|Mean over Catchment
|
||||
QgsProcessingParameterRasterDestination|ACCU_TOTAL|Accumulated Material
|
||||
|
@ -2,7 +2,7 @@ Flow Path Length
|
||||
ta_hydrology
|
||||
QgsProcessingParameterRasterLayer|ELEVATION|Elevation|None|False
|
||||
QgsProcessingParameterRasterLayer|SEED|Seeds|None|True
|
||||
ParameterBoolean|SEEDS_ONLY |Seeds Only|True
|
||||
QgsProcessingParameterBoolean|SEEDS_ONLY |Seeds Only|True
|
||||
ParameterSelection|METHOD|Flow Routing Algorithm|[0] Deterministic 8 (D8);[1] Multiple Flow Direction (FD8)
|
||||
QgsProcessingParameterNumber|CONVERGENCE|Convergence (FD8)|QgsProcessingParameterNumber.Double|1.1|False|None|None
|
||||
QgsProcessingParameterRasterDestination|LENGTH|Flow Path Length
|
||||
|
@ -3,4 +3,4 @@ imagery_vigra
|
||||
QgsProcessingParameterRasterLayer|INPUT|Input|None|False
|
||||
QgsProcessingParameterRasterDestination|REAL|Real
|
||||
QgsProcessingParameterRasterDestination|IMAG|Imaginary
|
||||
ParameterBoolean|CENTER|Centered|True
|
||||
QgsProcessingParameterBoolean|CENTER|Centered|True
|
@ -3,4 +3,4 @@ imagery_vigra
|
||||
QgsProcessingParameterRasterLayer|REAL|Real|None|False
|
||||
QgsProcessingParameterRasterLayer|IMAG|Imaginary|None|False
|
||||
QgsProcessingParameterRasterDestination|OUTPUT|Output
|
||||
ParameterBoolean|CENTER|Centered|True
|
||||
QgsProcessingParameterBoolean|CENTER|Centered|True
|
@ -5,12 +5,12 @@ QgsProcessingParameterNumber|CLASS|Class Identifier|QgsProcessingParameterNumber
|
||||
QgsProcessingParameterNumber|NEIGHBORHOOD_MIN|Neighborhood Min|QgsProcessingParameterNumber.Integer|1|False|1.0|None
|
||||
QgsProcessingParameterNumber|NEIGHBORHOOD_MAX|Neighborhood Max|QgsProcessingParameterNumber.Integer|1|False|1.0|None
|
||||
ParameterSelection|AGGREGATION|Level Aggregation|[0] average;[1] multiplicative
|
||||
ParameterBoolean|BORDER |Add Border|True
|
||||
QgsProcessingParameterBoolean|BORDER |Add Border|True
|
||||
QgsProcessingParameterNumber|WEIGHT|Connectivity Weighting|QgsProcessingParameterNumber.Double|1.1|False|None|None
|
||||
QgsProcessingParameterNumber|DENSITY_MIN|Minimum Density [Percent]|QgsProcessingParameterNumber.Integer|10|False|None|None
|
||||
QgsProcessingParameterNumber|DENSITY_INT|Minimum Density for Interior Forest [Percent]|QgsProcessingParameterNumber.Integer|99|False|None|None
|
||||
QgsProcessingParameterNumber|LEVEL_GROW|Search Distance Increment|QgsProcessingParameterNumber.Double|0.0|False|None|None
|
||||
ParameterBoolean|DENSITY_MEAN |Density from Neighbourhood|True
|
||||
QgsProcessingParameterBoolean|DENSITY_MEAN |Density from Neighbourhood|True
|
||||
QgsProcessingParameterRasterDestination|DENSITY|Density [Percent]
|
||||
QgsProcessingParameterRasterDestination|CONNECTIVITY|Connectivity [Percent]
|
||||
QgsProcessingParameterRasterDestination|FRAGMENTATION|Fragmentation
|
||||
|
@ -5,12 +5,12 @@ QgsProcessingParameterNumber|CLASS|Class Identifier|QgsProcessingParameterNumber
|
||||
QgsProcessingParameterNumber|NEIGHBORHOOD_MIN|Neighborhood Min|QgsProcessingParameterNumber.Integer|1|False|1.0|None
|
||||
QgsProcessingParameterNumber|NEIGHBORHOOD_MAX|Neighborhood Max|QgsProcessingParameterNumber.Integer|3|False|1.0|None
|
||||
ParameterSelection|AGGREGATION|Level Aggregation|[0] average;[1] multiplicative
|
||||
ParameterBoolean|BORDER|Add Border|True
|
||||
QgsProcessingParameterBoolean|BORDER|Add Border|True
|
||||
QgsProcessingParameterNumber|WEIGHT|Connectivity Weighting|QgsProcessingParameterNumber.Double|1.1|False|None|None
|
||||
QgsProcessingParameterNumber|DENSITY_MIN|Minimum Density [Percent]|QgsProcessingParameterNumber.Integer|10|False|None|None
|
||||
QgsProcessingParameterNumber|DENSITY_INT|Minimum Density for Interior Forest [Percent]|QgsProcessingParameterNumber.Integer|99|False|None|None
|
||||
ParameterSelection|CIRCULAR|Neighborhood Type|[0] square;[1] circle
|
||||
ParameterBoolean|DIAGONAL|Include diagonal neighbour relations|True
|
||||
QgsProcessingParameterBoolean|DIAGONAL|Include diagonal neighbour relations|True
|
||||
QgsProcessingParameterRasterDestination|DENSITY|Density [Percent]
|
||||
QgsProcessingParameterRasterDestination|CONNECTIVITY|Connectivity [Percent]
|
||||
QgsProcessingParameterRasterDestination|FRAGMENTATION|Fragmentation
|
||||
|
@ -2,7 +2,7 @@ Fragmentation Classes from Density and Connectivity
|
||||
grid_analysis
|
||||
QgsProcessingParameterRasterLayer|DENSITY|Density [Percent]|None|False
|
||||
QgsProcessingParameterRasterLayer|CONNECTIVITY|Connectivity [Percent]|None|False
|
||||
ParameterBoolean|BORDER|Add Border|True
|
||||
QgsProcessingParameterBoolean|BORDER|Add Border|True
|
||||
QgsProcessingParameterNumber|WEIGHT|Connectivity Weighting|QgsProcessingParameterNumber.Integer|0|False|None|None
|
||||
QgsProcessingParameterNumber|DENSITY_MIN|Minimum Density [Percent]|QgsProcessingParameterNumber.Integer|10|False|0.0|100.0
|
||||
QgsProcessingParameterNumber|DENSITY_INT|Minimum Density for Interior Forest [Percent]|QgsProcessingParameterNumber.Integer|99|False|0.0|100.0
|
||||
|
@ -6,5 +6,5 @@ QgsProcessingParameterNumber|B|B|QgsProcessingParameterNumber.Double|0.0|False|N
|
||||
QgsProcessingParameterNumber|C|C|QgsProcessingParameterNumber.Double|0.0|False|None|None
|
||||
QgsProcessingParameterNumber|D|D|QgsProcessingParameterNumber.Double|0.0|False|None|None
|
||||
ParameterSelection|TYPE|Membership Function Type|[0] linear;[1] sigmoidal;[2] j-shaped
|
||||
ParameterBoolean|AUTOFIT |Adjust to Grid|True
|
||||
QgsProcessingParameterBoolean|AUTOFIT |Adjust to Grid|True
|
||||
QgsProcessingParameterRasterDestination|OUTPUT|Fuzzified Grid
|
||||
|
@ -6,7 +6,7 @@ ParameterTable|PREDICTORS|Predictors|False
|
||||
OutputVector|REGRESSION|Regression
|
||||
ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting| 3
|
||||
QgsProcessingParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|QgsProcessingParameterNumber.Double|1.000000|False| 0.000000|None
|
||||
ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|QgsProcessingParameterNumber.Double|1.000000|False| 0.000000|None
|
||||
ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global| 0
|
||||
QgsProcessingParameterNumber|SEARCH_RADIUS|Maximum Search Distance|QgsProcessingParameterNumber.Double|1000.000000|False| 0.000000|None
|
||||
|
@ -17,7 +17,7 @@ QgsProcessingParameterRasterDestination|SLOPE|Slope
|
||||
QgsProcessingParameterRasterDestination|QUALITY|Quality
|
||||
ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting| 3
|
||||
QgsProcessingParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|QgsProcessingParameterNumber.Double|1.000000|False| 0.000000|None
|
||||
ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|QgsProcessingParameterNumber.Double|1.000000|False| 0.000000|None
|
||||
ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global| 0
|
||||
QgsProcessingParameterNumber|SEARCH_RADIUS|Maximum Search Distance|QgsProcessingParameterNumber.Double|1000.000000|False| 0.000000|None
|
||||
|
@ -10,7 +10,7 @@ QgsProcessingParameterRasterDestination|INTERCEPT|Intercept
|
||||
QgsProcessingParameterRasterDestination|SLOPE|Slope
|
||||
ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting| 3
|
||||
QgsProcessingParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|QgsProcessingParameterNumber.Double|1.000000|False| 0.000000|None
|
||||
ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|QgsProcessingParameterNumber.Double|1.000000|False| 0.000000|None
|
||||
ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global| 0
|
||||
QgsProcessingParameterNumber|SEARCH_RADIUS|Maximum Search Distance|QgsProcessingParameterNumber.Double|1000.000000|False| 0.000000|None
|
||||
|
@ -4,6 +4,6 @@ QgsProcessingParameterRasterLayer|INPUT_GRID|Input Grid|None|False
|
||||
QgsProcessingParameterRasterDestination|OBJECT_GRID|Object Grid
|
||||
QgsProcessingParameterRasterDestination|DIFFERENCE_GRID|Difference Input - Reconstruction
|
||||
QgsProcessingParameterNumber|SHIFT_VALUE|Shift value|QgsProcessingParameterNumber.Double|5.000000|False|None|None
|
||||
ParameterBoolean|BORDER_YES_NO|Preserve 1px border Yes/No|True
|
||||
ParameterBoolean|BIN_YES_NO|Create a binary mask Yes/No|True
|
||||
QgsProcessingParameterBoolean|BORDER_YES_NO|Preserve 1px border Yes/No|True
|
||||
QgsProcessingParameterBoolean|BIN_YES_NO|Create a binary mask Yes/No|True
|
||||
QgsProcessingParameterNumber|THRESHOLD|Threshold|QgsProcessingParameterNumber.Double|1.000000|False|None|None
|
@ -5,7 +5,7 @@ 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
|
||||
QgsProcessingParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|QgsProcessingParameterNumber.Integer|1|False|None|None
|
||||
ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|QgsProcessingParameterNumber.Integer|1|False|None|None
|
||||
ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global)
|
||||
QgsProcessingParameterNumber|SEARCH_RADIUS|Search Radius|QgsProcessingParameterNumber.Integer|100|False|None|None
|
||||
|
@ -7,7 +7,7 @@ ParameterSelection|RESOLUTION|Model Resolution|[0] same as predictors;[1] user d
|
||||
QgsProcessingParameterNumber|RESOLUTION_VAL|Resolution|QgsProcessingParameterNumber.Integer|1|False|0|None
|
||||
ParameterSelection|DW_WEIGHTING|Weighting Function|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting
|
||||
QgsProcessingParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|QgsProcessingParameterNumber.Integer|1|False|None|None
|
||||
ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|QgsProcessingParameterNumber.Integer|1|False|None|None
|
||||
ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global)
|
||||
QgsProcessingParameterNumber|SEARCH_RADIUS|Search Radius|QgsProcessingParameterNumber.Integer|100|False|None|None
|
||||
|
@ -6,7 +6,7 @@ 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
|
||||
QgsProcessingParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|QgsProcessingParameterNumber.Integer|1|False|None|None
|
||||
ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|QgsProcessingParameterNumber.Integer|1|False|None|None
|
||||
ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global)
|
||||
QgsProcessingParameterNumber|SEARCH_RADIUS|Search Radius|QgsProcessingParameterNumber.Integer|100|False|None|None
|
||||
|
@ -5,7 +5,7 @@ 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
|
||||
QgsProcessingParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|QgsProcessingParameterNumber.Integer|1|False|None|None
|
||||
ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|QgsProcessingParameterNumber.Integer|1|False|None|None
|
||||
ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global)
|
||||
QgsProcessingParameterNumber|SEARCH_RADIUS|Search Radius|QgsProcessingParameterNumber.Integer|100|False|None|None
|
||||
|
@ -6,7 +6,7 @@ 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
|
||||
QgsProcessingParameterNumber|DW_IDW_POWER|Inverse Distance Weighting Power|QgsProcessingParameterNumber.Integer|1|False|None|None
|
||||
ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterNumber|DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|QgsProcessingParameterNumber.Integer|1|False|None|None
|
||||
ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global)
|
||||
QgsProcessingParameterNumber|SEARCH_RADIUS|Search Radius|QgsProcessingParameterNumber.Integer|100|False|None|None
|
||||
|
@ -5,6 +5,6 @@ QgsProcessingParameterRasterLayer|GRIDS|Main input layer|None|False
|
||||
ParameterMultipleInput|XGRIDS|Additional layers|3|True
|
||||
ParameterString|FORMULA|Formula|
|
||||
ParameterSelection|RESAMPLING|Resampling Method|[0] Nearest Neighbour;[1] Bilinear Interpolation;[2] Bicubic Spline Interpolation;[3] B-Spline Interpolation|3
|
||||
ParameterBoolean|USE_NODATA|Use NoData|False
|
||||
QgsProcessingParameterBoolean|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
|
||||
QgsProcessingParameterRasterDestination|RESULT|Calculated
|
||||
|
@ -4,9 +4,9 @@ QgsProcessingParameterRasterLayer|INPUT|Gelaendemodell (DTM)|None|False
|
||||
ParameterFile|Folder1|Pfad WaterGap Raster|False|False
|
||||
QgsProcessingParameterNumber|sY|Start-Jahr|QgsProcessingParameterNumber.Integer|1990|False| 1906| 2000
|
||||
QgsProcessingParameterNumber|eY|End-Jahr|QgsProcessingParameterNumber.Integer|1990|False| 1906| 2000
|
||||
ParameterBoolean|DomW|Domestic Water|True
|
||||
ParameterBoolean|ElecW|Electricity Water|True
|
||||
ParameterBoolean|LiveW|Livestock Water|True
|
||||
ParameterBoolean|ManW|Manufacturing Water|True
|
||||
ParameterBoolean|IrrW|Irrigation Water|True
|
||||
QgsProcessingParameterBoolean|DomW|Domestic Water|True
|
||||
QgsProcessingParameterBoolean|ElecW|Electricity Water|True
|
||||
QgsProcessingParameterBoolean|LiveW|Livestock Water|True
|
||||
QgsProcessingParameterBoolean|ManW|Manufacturing Water|True
|
||||
QgsProcessingParameterBoolean|IrrW|Irrigation Water|True
|
||||
ParameterSelection|FvA|Flaechenverbrauch-Auswahl (FvA)|[0] Resultierendes Raster ueber WasserENTNAHME erstellen;[1] Resultierendes Raster ueber WasserNUTZUNG erstellen| 0
|
@ -6,12 +6,12 @@ ParameterSelection|KERNEL_TYPE|Kernel Type|[0] square;[1] circle| 0
|
||||
QgsProcessingParameterNumber|KERNEL_SIZE|Kernel Size|QgsProcessingParameterNumber.Integer|1|False| 1|None
|
||||
ParameterSelection|NAMING|Field Naming|[0] grid number;[1] grid name| 1
|
||||
OutputVector|RESULT|Statistics
|
||||
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
|
||||
QgsProcessingParameterBoolean|COUNT|Number of Cells|True
|
||||
QgsProcessingParameterBoolean|MIN|Minimum|True
|
||||
QgsProcessingParameterBoolean|MAX|Maximum|True
|
||||
QgsProcessingParameterBoolean|RANGE|Range|True
|
||||
QgsProcessingParameterBoolean|SUM|Sum|True
|
||||
QgsProcessingParameterBoolean|MEAN|Mean|True
|
||||
QgsProcessingParameterBoolean|VAR|Variance|True
|
||||
QgsProcessingParameterBoolean|STDDEV|Standard Deviation|True
|
||||
QgsProcessingParameterNumber|QUANTILE|Quantile|QgsProcessingParameterNumber.Integer|0|False| 0| 50
|
@ -4,13 +4,13 @@ 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
|
||||
QgsProcessingParameterBoolean|COUNT|Number of Cells|True
|
||||
QgsProcessingParameterBoolean|MIN|Minimum|True
|
||||
QgsProcessingParameterBoolean|MAX|Maximum|True
|
||||
QgsProcessingParameterBoolean|RANGE|Range|True
|
||||
QgsProcessingParameterBoolean|SUM|Sum|True
|
||||
QgsProcessingParameterBoolean|MEAN|Mean|True
|
||||
QgsProcessingParameterBoolean|VAR|Variance|True
|
||||
QgsProcessingParameterBoolean|STDDEV|Standard Deviation|True
|
||||
QgsProcessingParameterNumber|QUANTILE|Quantiles|QgsProcessingParameterNumber.Integer|0|False|None|None
|
||||
OutputVector|RESULT|Statistics
|
@ -2,6 +2,6 @@ Grid Values to Points
|
||||
shapes_grid
|
||||
ParameterMultipleInput|GRIDS|Grids|3|False
|
||||
ParameterVector|POLYGONS|Polygons|-1|True
|
||||
ParameterBoolean|NODATA |Exclude NoData Cells|True
|
||||
QgsProcessingParameterBoolean|NODATA |Exclude NoData Cells|True
|
||||
ParameterSelection|TYPE|Type|[0] nodes;[1] cells
|
||||
OutputVector|SHAPES|Shapes
|
||||
|
@ -4,7 +4,7 @@ QgsProcessingParameterRasterLayer|ELEVATION|Elevation|None|False
|
||||
QgsProcessingParameterNumber|COUNT|Number of Classes|QgsProcessingParameterNumber.Double|100.0|False|None|None
|
||||
ParameterSelection|SORTING|Sort|[0] up;[1] down
|
||||
ParameterSelection|METHOD|Classification Constant|[0] height;[1] area
|
||||
ParameterBoolean|BZRANGE |Use Z-Range|True
|
||||
QgsProcessingParameterBoolean|BZRANGE |Use Z-Range|True
|
||||
QgsProcessingParameterNumber|ZRANGE_MIN|Z-Range Min|QgsProcessingParameterNumber.Double|0.0|False|None|None
|
||||
QgsProcessingParameterNumber|ZRANGE_MAX|Z-Range Max|QgsProcessingParameterNumber.Double|1000.0|False|None|None
|
||||
OutputTable|TABLE|Hypsometry
|
||||
|
@ -3,7 +3,7 @@ imagery_classification
|
||||
ParameterMultipleInput|FEATURES|Features|3|False
|
||||
QgsProcessingParameterRasterDestination|CLUSTER|Clusters
|
||||
ParameterTable|STATISTICS|Statistics|False
|
||||
ParameterBoolean|NORMALIZE|Normalize|False
|
||||
QgsProcessingParameterBoolean|NORMALIZE|Normalize|False
|
||||
QgsProcessingParameterNumber|ITERATIONS|Maximum Number of Iterations|QgsProcessingParameterNumber.Integer|20|False| 3|None
|
||||
QgsProcessingParameterNumber|CLUSTER_INI|Initial Number of Clusters|QgsProcessingParameterNumber.Integer|5|False| 0|None
|
||||
QgsProcessingParameterNumber|CLUSTER_MAX|Maximum Number of Clusters|QgsProcessingParameterNumber.Integer|16|False| 3|None
|
||||
|
@ -3,4 +3,4 @@ shapes_polygons
|
||||
ParameterVector|A|Layer A|-1|False
|
||||
ParameterVector|B|Layer B|-1|False
|
||||
OutputVector|RESULT|Identity
|
||||
ParameterBoolean|SPLIT|Split Parts|True
|
||||
QgsProcessingParameterBoolean|SPLIT|Split Parts|True
|
@ -3,4 +3,4 @@ shapes_polygons
|
||||
ParameterVector|A|Layer A|-1|False
|
||||
ParameterVector|B|Layer B|-1|False
|
||||
OutputVector|RESULT|Intersect
|
||||
ParameterBoolean|SPLIT|Split Parts|True
|
||||
QgsProcessingParameterBoolean|SPLIT|Split Parts|True
|
@ -4,7 +4,7 @@ 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
|
||||
QgsProcessingParameterNumber|DW_IDW_POWER|Inverse Distance Power|QgsProcessingParameterNumber.Integer|2|False|0.0|None
|
||||
ParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|False
|
||||
QgsProcessingParameterBoolean|DW_IDW_OFFSET|Inverse Distance Offset|False
|
||||
QgsProcessingParameterNumber|DW_BANDWIDTH|Exponential and Gaussian Weighting Bandwidth|QgsProcessingParameterNumber.Integer|1|False|0.0|None
|
||||
ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global)|1
|
||||
QgsProcessingParameterNumber|SEARCH_RADIUS|Search Radius|QgsProcessingParameterNumber.Double|100.0|False|None|None
|
||||
|
@ -6,6 +6,6 @@ ParameterTable|STATISTICS|Statistics|False
|
||||
ParameterSelection|METHOD|Method|[0] Iterative Minimum Distance (Forgy 1965);[1] Hill-Climbing (Rubin 1967);[2] Combined Minimum Distance / Hillclimbing| 1
|
||||
QgsProcessingParameterNumber|NCLUSTER|Clusters|QgsProcessingParameterNumber.Integer|10|False| 2|None
|
||||
QgsProcessingParameterNumber|MAXITER|Maximum Iterations|QgsProcessingParameterNumber.Integer|0|False| 0|None
|
||||
ParameterBoolean|NORMALISE|Normalise|False
|
||||
ParameterBoolean|OLDVERSION|Old Version|False
|
||||
ParameterBoolean|UPDATEVIEW|Update View|True
|
||||
QgsProcessingParameterBoolean|NORMALISE|Normalise|False
|
||||
QgsProcessingParameterBoolean|OLDVERSION|Old Version|False
|
||||
QgsProcessingParameterBoolean|UPDATEVIEW|Update View|True
|
@ -1,7 +1,7 @@
|
||||
K-Nearest Neighbours Classification (OpenCV)
|
||||
imagery_opencv
|
||||
ParameterMultipleInput|FEATURES|Features|3|False
|
||||
ParameterBoolean|NORMALIZE|Normalize|False
|
||||
QgsProcessingParameterBoolean|NORMALIZE|Normalize|False
|
||||
ParameterVector|TRAIN_AREAS|Training Areas|-1|False
|
||||
ParameterTable|TRAIN_CLASS|Class Identifier|False
|
||||
QgsProcessingParameterRasterDestination|CLASSES|Classification
|
||||
|
@ -11,6 +11,6 @@ QgsProcessingParameterRasterDestination|BALANCE|Sediment Balance
|
||||
ParameterSelection|METHOD|LS Calculation|[0] Moore & Nieber 1989;[1] Desmet & Govers 1996;[2] Wischmeier & Smith 1978| 0
|
||||
ParameterSelection|METHOD_SLOPE|Type of Slope|[0] local slope;[1] distance weighted average catchment slope| 0
|
||||
ParameterSelection|METHOD_AREA|Specific Catchment Area|[0] specific catchment area (contour length simply as cell size);[1] specific catchment area (contour length dependent on aspect);[2] catchment length (square root of catchment area);[3] effective flow length| 1
|
||||
ParameterBoolean|STOP_AT_EDGE|Stop at Edge|True
|
||||
QgsProcessingParameterBoolean|STOP_AT_EDGE|Stop at Edge|True
|
||||
QgsProcessingParameterNumber|EROSIVITY|Rill/Interrill Erosivity|QgsProcessingParameterNumber.Double|1.000000|False| 0.000000|None
|
||||
ParameterSelection|STABILITY|Stability|[0] stable;[1] instable (thawing)| 0
|
@ -2,6 +2,6 @@ Lake Flood
|
||||
ta_hydrology
|
||||
QgsProcessingParameterRasterLayer|ELEV|DEM|None|False
|
||||
QgsProcessingParameterRasterLayer|SEEDS|Seeds|None|False
|
||||
ParameterBoolean|LEVEL |Absolute Water Levels|True
|
||||
QgsProcessingParameterBoolean|LEVEL |Absolute Water Levels|True
|
||||
QgsProcessingParameterRasterDestination|OUTDEPTH|Lake
|
||||
QgsProcessingParameterRasterDestination|OUTLEVEL|Surface
|
||||
|
@ -1,7 +1,7 @@
|
||||
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
|
||||
QgsProcessingParameterBoolean|BPARTS |Number of Parts|True
|
||||
QgsProcessingParameterBoolean|BPOINTS |Number of Vertices|True
|
||||
QgsProcessingParameterBoolean|BLENGTH |Length|True
|
||||
OutputVector|OUTPUT|Lines with Property Attributes
|
||||
|
@ -11,7 +11,7 @@ ParameterFile|YT_FILE_LOAD|Load from File...|False|False
|
||||
ParameterFile|YT_FILE_SAVE|Save to File...|False|False
|
||||
ParameterSelection|YT_REGUL|Regularization|[0] none;[1] L1;[2] L2| 1
|
||||
QgsProcessingParameterNumber|YT_REGUL_VAL|Regularization Factor|QgsProcessingParameterNumber.Double|1.000000|False| 0.000000|None
|
||||
ParameterBoolean|YT_NUMASREAL|Real-valued Numerical Features|True
|
||||
QgsProcessingParameterBoolean|YT_NUMASREAL|Real-valued Numerical Features|True
|
||||
QgsProcessingParameterNumber|DL_ALPHA|Alpha|QgsProcessingParameterNumber.Double|0.100000|False|None|None
|
||||
QgsProcessingParameterNumber|DL_THRESHOLD|Threshold|QgsProcessingParameterNumber.Double|0.000000|False| 0.000000|None
|
||||
QgsProcessingParameterNumber|DL_ITERATIONS|Maximum Iterations|QgsProcessingParameterNumber.Integer|100|False| 1|None
|
||||
|
@ -1,6 +1,6 @@
|
||||
Merge Layers
|
||||
shapes_tools
|
||||
ParameterMultipleInput|INPUT|Input Layers|-1|True
|
||||
ParameterBoolean|SRCINFO|Add source information|True
|
||||
ParameterBoolean|MATCH|Match Fields by Name|True
|
||||
QgsProcessingParameterBoolean|SRCINFO|Add source information|True
|
||||
QgsProcessingParameterBoolean|MATCH|Match Fields by Name|True
|
||||
OutputVector|MERGED|Merged Layer
|
@ -6,4 +6,4 @@ QgsProcessingParameterNumber|SIGMA|Threshold|QgsProcessingParameterNumber.Double
|
||||
QgsProcessingParameterNumber|ITER|Number of Iterations for Normal Updating|QgsProcessingParameterNumber.Integer|5|False| 1|None
|
||||
QgsProcessingParameterNumber|VITER|Number of Iterations for Vertex Updating|QgsProcessingParameterNumber.Integer|50|False| 1|None
|
||||
ParameterSelection|NB_CV|Common Edge Type of Face Neighbourhood|[0] Common Vertex;[1] Common Edge| 0
|
||||
ParameterBoolean|ZONLY|Only Z-Direction Position is Updated|False
|
||||
QgsProcessingParameterBoolean|ZONLY|Only Z-Direction Position is Updated|False
|
@ -5,4 +5,4 @@ QgsProcessingParameterRasterDestination|OUTPUT|Output
|
||||
ParameterSelection|TYPE|Operation|[0] Dilation;[1] Erosion;[2] Median;[3] User defined rank| 0
|
||||
QgsProcessingParameterNumber|RADIUS|Radius (cells)|QgsProcessingParameterNumber.Integer|1|False| 0|None
|
||||
QgsProcessingParameterNumber|RANK|User defined rank|QgsProcessingParameterNumber.Double|0.500000|False| 0.000000| 1.000000
|
||||
ParameterBoolean|RESCALE|Rescale Values (0-255)|True
|
||||
QgsProcessingParameterBoolean|RESCALE|Rescale Values (0-255)|True
|
@ -16,4 +16,4 @@ QgsProcessingParameterNumber|TOL_SLOPE|Slope Tolerance|QgsProcessingParameterNum
|
||||
QgsProcessingParameterNumber|TOL_CURVE|Curvature Tolerance|QgsProcessingParameterNumber.Double|0.000100|False|None|None
|
||||
QgsProcessingParameterNumber|EXPONENT|Distance Weighting Exponent|QgsProcessingParameterNumber.Double|0.000000|False| 0.000000| 4.000000
|
||||
QgsProcessingParameterNumber|ZSCALE|Vertical Scaling|QgsProcessingParameterNumber.Double|1.000000|False|None|None
|
||||
ParameterBoolean|CONSTRAIN|Constrain|False
|
||||
QgsProcessingParameterBoolean|CONSTRAIN|Constrain|False
|
@ -4,7 +4,7 @@ ParameterMultipleInput|BANDS|Grids|3|False
|
||||
QgsProcessingParameterNumber|RADIUS|Radius [Cells]|QgsProcessingParameterNumber.Integer|1|False|None|None
|
||||
ParameterSelection|DISTANCE_WEIGHTING_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting
|
||||
QgsProcessingParameterNumber|DISTANCE_WEIGHTING_IDW_POWER|Inverse Distance Weighting Power|QgsProcessingParameterNumber.Integer|1|False|None|None
|
||||
ParameterBoolean|DISTANCE_WEIGHTING_IDW_OFFSET |Inverse Distance Offset|True
|
||||
QgsProcessingParameterBoolean|DISTANCE_WEIGHTING_IDW_OFFSET |Inverse Distance Offset|True
|
||||
QgsProcessingParameterNumber|DISTANCE_WEIGHTING_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|QgsProcessingParameterNumber.Double|1.0|False|None|None
|
||||
QgsProcessingParameterRasterDestination|MEAN|Mean Distance
|
||||
QgsProcessingParameterRasterDestination|STDDEV|Standard Deviation
|
||||
|
@ -3,7 +3,7 @@ grid_filter
|
||||
QgsProcessingParameterRasterLayer|INPUT|Grid|None|False
|
||||
QgsProcessingParameterNumber|NOISE_ABS|Estimated Noise (absolute)|QgsProcessingParameterNumber.Double|1.0|False|None|None
|
||||
QgsProcessingParameterNumber|NOISE_REL|Estimated Noise (relative)|QgsProcessingParameterNumber.Double|1.0|False|None|None
|
||||
ParameterBoolean|WEIGHTED |Weighted|True
|
||||
QgsProcessingParameterBoolean|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)
|
||||
QgsProcessingParameterRasterDestination|RESULT|Filtered Grid
|
||||
QgsProcessingParameterRasterDestination|STDDEV|Minimum Standard Deviation
|
||||
|
@ -5,7 +5,7 @@ Hardcoded|-TARGET_DEFINITION 0
|
||||
ParameterSelection|METHOD|Method|[0] without B-spline refinement;[1] with B-spline refinement
|
||||
QgsProcessingParameterNumber|EPSILON|Threshold Error|QgsProcessingParameterNumber.Double|0.0001|False|0|None
|
||||
QgsProcessingParameterNumber|LEVEL_MAX|Maximum Level|QgsProcessingParameterNumber.Double|11.0|False|1|14
|
||||
ParameterBoolean|UPDATE|Update View|False
|
||||
QgsProcessingParameterBoolean|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
|
||||
QgsProcessingParameterNumber|TARGET_USER_SIZE|Cellsize|QgsProcessingParameterNumber.Double|100.0|False|None|None
|
||||
|
@ -3,8 +3,8 @@ statistics_regression
|
||||
QgsProcessingParameterRasterLayer|DEPENDENT|Dependent|None|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
|
||||
QgsProcessingParameterBoolean|COORD_X |Include X Coordinate|True
|
||||
QgsProcessingParameterBoolean|COORD_Y |Include Y Coordinate|True
|
||||
ParameterSelection|METHOD|Method|[0] include all;[1] forward;[2] backward;[3] stepwise
|
||||
QgsProcessingParameterNumber|P_IN|P in|QgsProcessingParameterNumber.Integer|5|False|None|None
|
||||
QgsProcessingParameterNumber|P_OUT|P out|QgsProcessingParameterNumber.Integer|5|False|None|None
|
||||
|
@ -8,8 +8,8 @@ ParameterTable|INFO_COEFF|Details: Coefficients|True
|
||||
ParameterTable|INFO_MODEL|Details: Model|True
|
||||
ParameterTable|INFO_STEPS|Details: Steps|True
|
||||
ParameterSelection|RESAMPLING|Resampling|[0] Nearest Neighbour;[1] Bilinear Interpolation;[2] Bicubic Spline Interpolation;[3] B-Spline Interpolation| 3
|
||||
ParameterBoolean|COORD_X|Include X Coordinate|False
|
||||
ParameterBoolean|COORD_Y|Include Y Coordinate|False
|
||||
QgsProcessingParameterBoolean|COORD_X|Include X Coordinate|False
|
||||
QgsProcessingParameterBoolean|COORD_Y|Include Y Coordinate|False
|
||||
ParameterSelection|METHOD|Method|[0] include all;[1] forward;[2] backward;[3] stepwise| 3
|
||||
QgsProcessingParameterNumber|P_VALUE|Significance Level|QgsProcessingParameterNumber.Double|5.000000|False| 0.000000| 100.000000
|
||||
ParameterSelection|CROSSVAL|Cross Validation|[0] none;[1] leave one out;[2] 2-fold;[3] k-fold| 0
|
||||
|
@ -4,8 +4,8 @@ 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
|
||||
QgsProcessingParameterBoolean|COORD_X |Include X Coordinate|True
|
||||
QgsProcessingParameterBoolean|COORD_Y |Include Y Coordinate|True
|
||||
ParameterSelection|METHOD|Method|[0] include all;[1] forward;[2] backward;[3] stepwise
|
||||
QgsProcessingParameterNumber|P_IN|P in|QgsProcessingParameterNumber.Integer|5|False|None|None
|
||||
QgsProcessingParameterNumber|P_OUT|P out|QgsProcessingParameterNumber.Integer|5|False|None|None
|
||||
|
@ -10,9 +10,9 @@ OutputVector|RESIDUALS|Residuals
|
||||
QgsProcessingParameterRasterDestination|REGRESSION|Regression
|
||||
QgsProcessingParameterRasterDestination|REGRESCORR|Regression with Residual Correction
|
||||
ParameterSelection|RESAMPLING|Resampling|[0] Nearest Neighbour;[1] Bilinear Interpolation;[2] Bicubic Spline Interpolation;[3] B-Spline Interpolation| 3
|
||||
ParameterBoolean|COORD_X|Include X Coordinate|False
|
||||
ParameterBoolean|COORD_Y|Include Y Coordinate|False
|
||||
ParameterBoolean|INTERCEPT|Intercept|True
|
||||
QgsProcessingParameterBoolean|COORD_X|Include X Coordinate|False
|
||||
QgsProcessingParameterBoolean|COORD_Y|Include Y Coordinate|False
|
||||
QgsProcessingParameterBoolean|INTERCEPT|Intercept|True
|
||||
ParameterSelection|METHOD|Method|[0] include all;[1] forward;[2] backward;[3] stepwise| 3
|
||||
QgsProcessingParameterNumber|P_VALUE|Significance Level|QgsProcessingParameterNumber.Double|5.000000|False| 0.000000| 100.000000
|
||||
ParameterSelection|CROSSVAL|Cross Validation|[0] none;[1] leave one out;[2] 2-fold;[3] k-fold| 0
|
||||
|
@ -6,8 +6,8 @@ QgsProcessingParameterNumber|T_PCTL_V|Threshold for Elevation Percentile (Lownes
|
||||
QgsProcessingParameterNumber|T_PCTL_R|Threshold for Elevation Percentile (Upness)|QgsProcessingParameterNumber.Double|0.35|False|None|None
|
||||
QgsProcessingParameterNumber|P_SLOPE|Shape Parameter for Slope|QgsProcessingParameterNumber.Double|4.0|False|None|None
|
||||
QgsProcessingParameterNumber|P_PCTL|Shape Parameter for Elevation Percentile|QgsProcessingParameterNumber.Double|3.0|False|None|None
|
||||
ParameterBoolean|UPDATE |Update Views|True
|
||||
ParameterBoolean|CLASSIFY |Classify|True
|
||||
QgsProcessingParameterBoolean|UPDATE |Update Views|True
|
||||
QgsProcessingParameterBoolean|CLASSIFY |Classify|True
|
||||
QgsProcessingParameterNumber|MAX_RES|Maximum Resolution (Percentage)|QgsProcessingParameterNumber.Integer|100|False|None|None
|
||||
QgsProcessingParameterRasterDestination|MRVBF|MRVBF
|
||||
QgsProcessingParameterRasterDestination|MRRTF|MRRTF
|
||||
|
@ -3,7 +3,7 @@ grid_gridding
|
||||
ParameterVector|SHAPES|Points|0|False
|
||||
ParameterTableField|FIELD|Attribute|SHAPES|-1|False
|
||||
Hardcoded|-TARGET_DEFINITION 0
|
||||
ParameterBoolean|SIBSON|Sibson|True
|
||||
QgsProcessingParameterBoolean|SIBSON|Sibson|True
|
||||
Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX
|
||||
QgsProcessingParameterNumber|TARGET_USER_SIZE|Cellsize|QgsProcessingParameterNumber.Double|100.0|False|None|None
|
||||
ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells
|
||||
|
@ -1,7 +1,7 @@
|
||||
Normal Bayes Classification (OpenCV)
|
||||
imagery_opencv
|
||||
ParameterMultipleInput|FEATURES|Features|3|False
|
||||
ParameterBoolean|NORMALIZE|Normalize|False
|
||||
QgsProcessingParameterBoolean|NORMALIZE|Normalize|False
|
||||
QgsProcessingParameterRasterDestination|PROBABILITY|Probability
|
||||
ParameterVector|TRAIN_AREAS|Training Areas|-1|False
|
||||
ParameterTable|TRAIN_CLASS|Class Identifier|False
|
||||
|
@ -3,8 +3,8 @@ 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
|
||||
QgsProcessingParameterBoolean|LOG|Logarithmic Transformation|True
|
||||
QgsProcessingParameterBoolean|BLOCK|Block Kriging|True
|
||||
QgsProcessingParameterNumber|DBLOCK|Block Size|QgsProcessingParameterNumber.Integer|100|False|0|None
|
||||
QgsProcessingParameterNumber|VAR_MAXDIST|Maximum Distance|QgsProcessingParameterNumber.Integer|-1.0|False|None|None
|
||||
QgsProcessingParameterNumber|VAR_NCLASSES|Lag Distance Classes|QgsProcessingParameterNumber.Integer|100|False|1|None
|
||||
@ -24,4 +24,4 @@ QgsProcessingParameterNumber|SEARCH_POINTS_MAX|Maximum|QgsProcessingParameterNum
|
||||
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
|
||||
QgsProcessingParameterBoolean|COORDS|Coordinates|False
|
||||
|
@ -3,8 +3,8 @@ 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
|
||||
QgsProcessingParameterBoolean|LOG|Logarithmic Transformation|True
|
||||
QgsProcessingParameterBoolean|BLOCK|Block Kriging|True
|
||||
QgsProcessingParameterNumber|DBLOCK|Block Size|QgsProcessingParameterNumber.Integer|100|False|0|None
|
||||
QgsProcessingParameterNumber|VAR_MAXDIST|Maximum Distance|QgsProcessingParameterNumber.Integer|-1.0|False|None|None
|
||||
QgsProcessingParameterNumber|VAR_NCLASSES|Lag Distance Classes|QgsProcessingParameterNumber.Integer|100|False|1|None
|
||||
|
@ -4,11 +4,11 @@ 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
|
||||
QgsProcessingParameterBoolean|SUM |Sum|True
|
||||
QgsProcessingParameterBoolean|AVG |Mean|True
|
||||
QgsProcessingParameterBoolean|VAR |Variance|True
|
||||
QgsProcessingParameterBoolean|DEV |Deviation|True
|
||||
QgsProcessingParameterBoolean|MIN |Minimum|True
|
||||
QgsProcessingParameterBoolean|MAX |Maximum|True
|
||||
QgsProcessingParameterBoolean|NUM |Count|True
|
||||
OutputVector|STATISTICS|Statistics
|
||||
|
@ -5,7 +5,7 @@ ParameterTableField|FIELD|Attribute|POINTS|-1|False
|
||||
QgsProcessingParameterNumber|RADIUS|Radius|QgsProcessingParameterNumber.Integer|1|False|None|None
|
||||
QgsProcessingParameterNumber|MINNUM|Minimum Number of Points|QgsProcessingParameterNumber.Integer|0|False|None|None
|
||||
QgsProcessingParameterNumber|MAXNUM|Maximum Number of Points|QgsProcessingParameterNumber.Integer|0|False|None|None
|
||||
ParameterBoolean|QUADRANTS |Quadrants|True
|
||||
QgsProcessingParameterBoolean|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
|
||||
QgsProcessingParameterNumber|TOLERANCE|Tolerance|QgsProcessingParameterNumber.Double|0.0|False|None|None
|
||||
QgsProcessingParameterNumber|PERCENT|Percentile|QgsProcessingParameterNumber.Integer|50|False|None|None
|
||||
|
@ -4,5 +4,5 @@ ParameterVector|POLAR|Polar Coordinates|-1|False
|
||||
ParameterTableField|F_EXAGG|Exaggeration|POLAR|-1|False
|
||||
QgsProcessingParameterNumber|D_EXAGG|Exaggeration Factor|QgsProcessingParameterNumber.Integer|1|False|None|None
|
||||
QgsProcessingParameterNumber|RADIUS|Radius|QgsProcessingParameterNumber.Double|6371000.0|False|None|None
|
||||
ParameterBoolean|DEGREE |Degree|True
|
||||
QgsProcessingParameterBoolean|DEGREE |Degree|True
|
||||
OutputVector|CARTES|Cartesian Coordinates
|
||||
|
@ -1,5 +1,5 @@
|
||||
Polygon Centroids
|
||||
shapes_polygons
|
||||
ParameterVector|POLYGONS|Polygons|2|False
|
||||
ParameterBoolean|METHOD |Centroids for each part|True
|
||||
QgsProcessingParameterBoolean|METHOD |Centroids for each part|True
|
||||
OutputVector|CENTROIDS|Centroids
|
||||
|
@ -2,5 +2,5 @@ Difference
|
||||
shapes_polygons
|
||||
ParameterVector|A|Layer A|2|False
|
||||
ParameterVector|B|Layer B|2|False
|
||||
ParameterBoolean|SPLIT|Split Parts|True
|
||||
QgsProcessingParameterBoolean|SPLIT|Split Parts|True
|
||||
OutputVector|RESULT|Difference
|
||||
|
@ -4,5 +4,5 @@ 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
|
||||
QgsProcessingParameterBoolean|BND_KEEP|Keep inner boundaries|True
|
||||
OutputVector|DISSOLVED|Dissolved
|
||||
|
@ -1,5 +1,5 @@
|
||||
Polygon dissolve (all polygons)|Polygon Dissolve
|
||||
shapes_polygons
|
||||
ParameterVector|POLYGONS|Polygons|2|False
|
||||
ParameterBoolean|BND_KEEP|Keep inner boundaries|True
|
||||
QgsProcessingParameterBoolean|BND_KEEP|Keep inner boundaries|True
|
||||
OutputVector|DISSOLVED|Dissolved
|
||||
|
@ -2,5 +2,5 @@ Identity
|
||||
shapes_polygons
|
||||
ParameterVector|A|Layer A|2|False
|
||||
ParameterVector|B|Layer B|2|False
|
||||
ParameterBoolean|SPLIT|Split Parts|True
|
||||
QgsProcessingParameterBoolean|SPLIT|Split Parts|True
|
||||
OutputVector|RESULT|Identity
|
||||
|
@ -2,5 +2,5 @@ Intersect
|
||||
shapes_polygons
|
||||
ParameterVector|A|Layer A|2|False
|
||||
ParameterVector|B|Layer B|2|False
|
||||
ParameterBoolean|SPLIT|Split Parts|True
|
||||
QgsProcessingParameterBoolean|SPLIT|Split Parts|True
|
||||
OutputVector|RESULT|Intersection
|
||||
|
@ -1,5 +1,5 @@
|
||||
Polygon Parts to Separate Polygons
|
||||
shapes_polygons
|
||||
ParameterVector|POLYGONS|Polygons|2|False
|
||||
ParameterBoolean|LAKES |Ignore Lakes|True
|
||||
QgsProcessingParameterBoolean|LAKES |Ignore Lakes|True
|
||||
OutputVector|PARTS|Polygon Parts
|
||||
|
@ -1,8 +1,8 @@
|
||||
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
|
||||
QgsProcessingParameterBoolean|BPARTS |Number of Parts|True
|
||||
QgsProcessingParameterBoolean|BPOINTS |Number of Vertices|True
|
||||
QgsProcessingParameterBoolean|BLENGTH |Perimeter|True
|
||||
QgsProcessingParameterBoolean|BAREA |Area|True
|
||||
OutputVector|OUTPUT|Polygons with Property Attributes
|
||||
|
@ -2,5 +2,5 @@ Symmetrical Difference
|
||||
shapes_polygons
|
||||
ParameterVector|A|Layer A|2|False
|
||||
ParameterVector|B|Layer B|2|False
|
||||
ParameterBoolean|SPLIT|Split Parts|True
|
||||
QgsProcessingParameterBoolean|SPLIT|Split Parts|True
|
||||
OutputVector|RESULT|Symmetrical Difference
|
||||
|
@ -2,5 +2,5 @@ Union
|
||||
shapes_polygons
|
||||
ParameterVector|A|Layer A|2|False
|
||||
ParameterVector|B|Layer B|2|False
|
||||
ParameterBoolean|SPLIT|Split Parts|True
|
||||
QgsProcessingParameterBoolean|SPLIT|Split Parts|True
|
||||
OutputVector|RESULT|Union
|
||||
|
@ -2,5 +2,5 @@ Update
|
||||
shapes_polygons
|
||||
ParameterVector|A|Layer A|2|False
|
||||
ParameterVector|B|Layer B|2|False
|
||||
ParameterBoolean|SPLIT|Split Parts|True
|
||||
QgsProcessingParameterBoolean|SPLIT|Split Parts|True
|
||||
OutputVector|RESULT|Updated polygons
|
||||
|
@ -4,6 +4,6 @@ QgsProcessingParameterRasterLayer|DEM|DEM|None|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
|
||||
QgsProcessingParameterBoolean|SPLIT |Each Line as new Profile|True
|
||||
OutputVector|PROFILE|Profiles
|
||||
OutputVector|PROFILES|Profiles
|
||||
|
@ -1,14 +1,14 @@
|
||||
Random Forest Classification (OpenCV)
|
||||
imagery_opencv
|
||||
ParameterMultipleInput|FEATURES|Features|3|False
|
||||
ParameterBoolean|NORMALIZE|Normalize|False
|
||||
QgsProcessingParameterBoolean|NORMALIZE|Normalize|False
|
||||
ParameterVector|TRAIN_AREAS|Training Areas|-1|False
|
||||
ParameterTable|TRAIN_CLASS|Class Identifier|False
|
||||
QgsProcessingParameterRasterDestination|CLASSES|Classification
|
||||
QgsProcessingParameterNumber|MAX_DEPTH|Maximum Tree Depth|QgsProcessingParameterNumber.Integer|10|False| 1|None
|
||||
QgsProcessingParameterNumber|MIN_SAMPLES|Minimum Sample Count|QgsProcessingParameterNumber.Integer|2|False| 2|None
|
||||
QgsProcessingParameterNumber|MAX_CATEGRS|Maximum Categories|QgsProcessingParameterNumber.Integer|10|False| 1|None
|
||||
ParameterBoolean|1SE_RULE|Use 1SE Rule|True
|
||||
ParameterBoolean|TRUNC_PRUNED|Truncate Pruned Trees|True
|
||||
QgsProcessingParameterBoolean|1SE_RULE|Use 1SE Rule|True
|
||||
QgsProcessingParameterBoolean|TRUNC_PRUNED|Truncate Pruned Trees|True
|
||||
QgsProcessingParameterNumber|REG_ACCURACY|Regression Accuracy|QgsProcessingParameterNumber.Double|0.010000|False| 0.000000|None
|
||||
QgsProcessingParameterNumber|ACTIVE_VARS|Active Variable Count|QgsProcessingParameterNumber.Integer|0|False| 0|None
|
@ -5,16 +5,16 @@ QgsProcessingParameterRasterDestination|PREDICTION|Presence Prediction
|
||||
QgsProcessingParameterRasterDestination|PROBABILITY|Presence Probability
|
||||
ParameterVector|PRESENCE|Presence Data|-1|False
|
||||
QgsProcessingParameterNumber|BACKGROUND|Background Sample Density [Percent]|QgsProcessingParameterNumber.Double|1.000000|False| 0.000000| 100.000000
|
||||
ParameterBoolean|DO_MRMR|Minimum Redundancy Feature Selection|False
|
||||
QgsProcessingParameterBoolean|DO_MRMR|Minimum Redundancy Feature Selection|False
|
||||
QgsProcessingParameterNumber|mRMR_NFEATURES|Number of Features|QgsProcessingParameterNumber.Integer|50|False| 1|None
|
||||
ParameterBoolean|mRMR_DISCRETIZE|Discretization|True
|
||||
QgsProcessingParameterBoolean|mRMR_DISCRETIZE|Discretization|True
|
||||
QgsProcessingParameterNumber|mRMR_THRESHOLD|Discretization Threshold|QgsProcessingParameterNumber.Double|1.000000|False| 0.000000|None
|
||||
ParameterSelection|mRMR_METHOD|Selection Method|[0] Mutual Information Difference (MID);[1] Mutual Information Quotient (MIQ)| 0
|
||||
ParameterFile|RF_IMPORT|Import from File|False|False
|
||||
ParameterFile|RF_EXPORT|Export to File|False|False
|
||||
QgsProcessingParameterNumber|RF_TREE_COUNT|Tree Count|QgsProcessingParameterNumber.Integer|32|False| 1|None
|
||||
QgsProcessingParameterNumber|RF_TREE_SAMPLES|Samples per Tree|QgsProcessingParameterNumber.Double|1.000000|False| 0.000000| 1.000000
|
||||
ParameterBoolean|RF_REPLACE|Sample with Replacement|True
|
||||
QgsProcessingParameterBoolean|RF_REPLACE|Sample with Replacement|True
|
||||
QgsProcessingParameterNumber|RF_SPLIT_MIN_SIZE|Minimum Node Split Size|QgsProcessingParameterNumber.Integer|1|False| 1|None
|
||||
ParameterSelection|RF_NODE_FEATURES|Features per Node|[0] logarithmic;[1] square root;[2] all| 1
|
||||
ParameterSelection|RF_STRATIFICATION|Stratification|[0] none;[1] equal;[2] proportional| 0
|
@ -11,8 +11,8 @@ QgsProcessingParameterNumber|RNEW|new value(for range)|QgsProcessingParameterNum
|
||||
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
|
||||
QgsProcessingParameterBoolean|NODATAOPT |replace no data values|True
|
||||
QgsProcessingParameterNumber|NODATA|new value for no data values|QgsProcessingParameterNumber.Double|0.0|False|None|None
|
||||
ParameterBoolean|OTHEROPT |replace other values|True
|
||||
QgsProcessingParameterBoolean|OTHEROPT |replace other values|True
|
||||
QgsProcessingParameterNumber|OTHERS|new value for other values|QgsProcessingParameterNumber.Double|0.0|False|None|None
|
||||
QgsProcessingParameterRasterDestination|RESULT|Reclassified Grid
|
||||
|
@ -8,8 +8,8 @@ QgsProcessingParameterRasterDestination|PREDICTION|Prediction
|
||||
QgsProcessingParameterRasterDestination|RESIDUALS|Residuals
|
||||
QgsProcessingParameterRasterDestination|VARIANCE|Quality Measure
|
||||
ParameterSelection|TQUALITY|Type of Quality Measure|[0] standard deviation;[1] variance| 0
|
||||
ParameterBoolean|LOG|Logarithmic Transformation|False
|
||||
ParameterBoolean|BLOCK|Block Kriging|False
|
||||
QgsProcessingParameterBoolean|LOG|Logarithmic Transformation|False
|
||||
QgsProcessingParameterBoolean|BLOCK|Block Kriging|False
|
||||
QgsProcessingParameterNumber|DBLOCK|Block Size|QgsProcessingParameterNumber.Double|100.000000|False| 0.000000|None
|
||||
QgsProcessingParameterNumber|VAR_MAXDIST|Maximum Distance|QgsProcessingParameterNumber.Integer|-1.000000|False|None|None
|
||||
QgsProcessingParameterNumber|VAR_NCLASSES|Lag Distance Classes|QgsProcessingParameterNumber.Integer|100|False| 1|None
|
||||
@ -18,9 +18,9 @@ ParameterString|VAR_MODEL|Variogram Model
|
||||
ParameterTable|INFO_COEFF|Regression: Coefficients|True
|
||||
ParameterTable|INFO_MODEL|Regression: Model|True
|
||||
ParameterTable|INFO_STEPS|Regression: Steps|True
|
||||
ParameterBoolean|COORD_X|Include X Coordinate|False
|
||||
ParameterBoolean|COORD_Y|Include Y Coordinate|False
|
||||
ParameterBoolean|INTERCEPT|Intercept|True
|
||||
QgsProcessingParameterBoolean|COORD_X|Include X Coordinate|False
|
||||
QgsProcessingParameterBoolean|COORD_Y|Include Y Coordinate|False
|
||||
QgsProcessingParameterBoolean|INTERCEPT|Intercept|True
|
||||
ParameterSelection|METHOD|Method|[0] include all;[1] forward;[2] backward;[3] stepwise| 3
|
||||
QgsProcessingParameterNumber|P_VALUE|Significance Level|QgsProcessingParameterNumber.Double|5.000000|False| 0.000000| 100.000000
|
||||
ParameterSelection|RESAMPLING|Resampling|[0] Nearest Neighbour;[1] Bilinear Interpolation;[2] Bicubic Spline Interpolation;[3] B-Spline Interpolation| 3
|
||||
|
@ -1,7 +1,7 @@
|
||||
Resampling
|
||||
grid_tools
|
||||
QgsProcessingParameterRasterLayer|INPUT|Grid|None|False
|
||||
ParameterBoolean|KEEP_TYPE|Preserve Data Type|True
|
||||
QgsProcessingParameterBoolean|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
|
||||
|
@ -3,10 +3,10 @@ statistics_grid
|
||||
QgsProcessingParameterRasterLayer|GRID|Grid|None|False
|
||||
ParameterSelection|MODE|Search Mode|[0] square;[1] circle|1
|
||||
QgsProcessingParameterNumber|RADIUS|Radius (Cells)|QgsProcessingParameterNumber.Integer|7|False|1.0|None
|
||||
ParameterBoolean|BCENTER|Include Center Cell|True
|
||||
QgsProcessingParameterBoolean|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|0
|
||||
QgsProcessingParameterNumber|DISTANCE_WEIGHTING_DW_IDW_POWER|Inverse Distance Weighting Power|QgsProcessingParameterNumber.Integer|1|False|0.0|None
|
||||
ParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterBoolean|DISTANCE_WEIGHTING_DW_IDW_OFFSET|Inverse Distance Offset|True
|
||||
QgsProcessingParameterNumber|DISTANCE_WEIGHTING_DW_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|QgsProcessingParameterNumber.Double|1.0|False|0.0|None
|
||||
QgsProcessingParameterRasterDestination|MEAN|Mean Value
|
||||
QgsProcessingParameterRasterDestination|DIFF|Difference from Mean Value
|
||||
|
@ -3,7 +3,7 @@ sim_rivflow
|
||||
QgsProcessingParameterRasterLayer|INPUT|DTM|None|False
|
||||
QgsProcessingParameterRasterLayer|INPUT2|HGGrid|None|False
|
||||
QgsProcessingParameterRasterLayer|INPUT3|statisches Entnahmeraster|None|True
|
||||
ParameterBoolean|WCons|Anteilige Flaechenwasserentnahme|False
|
||||
QgsProcessingParameterBoolean|WCons|Anteilige Flaechenwasserentnahme|False
|
||||
ParameterSelection|WCons2|Dynamische Flaechenwassernutzung...|[0] ...anteilig aus den Flussrasterzellen;[1] ...anteilig aus Rasterzellen der Teileinzugegebiete| 0
|
||||
QgsProcessingParameterRasterDestination|OUTPUT2|Grad
|
||||
QgsProcessingParameterRasterDestination|OUTPUT3|Direc
|
||||
@ -15,5 +15,5 @@ QgsProcessingParameterRasterDestination|OUTPUT8|statWUse
|
||||
QgsProcessingParameterRasterDestination|OUTPUT9|NumInFlowCells
|
||||
QgsProcessingParameterNumber|pCr|Hauptgerinne-Parameter pHG|QgsProcessingParameterNumber.Double|0.003500|False| 0.000000|None
|
||||
QgsProcessingParameterNumber|nCr|Hauptgerinne-Speicherkaskade nHG|QgsProcessingParameterNumber.Integer|1|False| 1|None
|
||||
ParameterBoolean|EnfVmax|Maximal Geschwindigkeit des Hauptgerinnes beruecksichtigen|True
|
||||
QgsProcessingParameterBoolean|EnfVmax|Maximal Geschwindigkeit des Hauptgerinnes beruecksichtigen|True
|
||||
QgsProcessingParameterNumber|VTresh|Maximalgeschwindigkeit im Hauptgerinne in km/h|QgsProcessingParameterNumber.Double|4.000000|False| 0.000000| 10.000000
|
@ -6,4 +6,4 @@ QgsProcessingParameterNumber|SX|Abflusspfad-Quelle, x-Wert|QgsProcessingParamete
|
||||
QgsProcessingParameterNumber|SY|Abflusspfad-Quelle, y-Wert|QgsProcessingParameterNumber.Integer|0|False| 0|None
|
||||
QgsProcessingParameterNumber|MX|Abflusspfad-Mündung, x-Wert|QgsProcessingParameterNumber.Integer|0|False| 0|None
|
||||
QgsProcessingParameterNumber|MY|Abflusspfad-Mündung, y-Wert|QgsProcessingParameterNumber.Integer|0|False| 0|None
|
||||
ParameterBoolean|Owrite|Overwrite RiverGridCells|False
|
||||
QgsProcessingParameterBoolean|Owrite|Overwrite RiverGridCells|False
|
@ -3,7 +3,7 @@ imagery_svm
|
||||
ParameterMultipleInput|GRIDS|Grids|3|False
|
||||
QgsProcessingParameterRasterDestination|CLASSES|Classification
|
||||
ParameterSelection|SCALING|Scaling|[0] none;[1] normalize (0-1);[2] standardize| 2
|
||||
ParameterBoolean|MESSAGE|Verbose Messages|False
|
||||
QgsProcessingParameterBoolean|MESSAGE|Verbose Messages|False
|
||||
ParameterSelection|MODEL_SRC|Model Source|[0] create from training areas;[1] restore from file| 0
|
||||
ParameterFile|MODEL_LOAD|Restore Model from File|False|False
|
||||
ParameterVector|ROI|Training Areas|-1|False
|
||||
@ -19,6 +19,6 @@ QgsProcessingParameterNumber|NU|nu-SVR|QgsProcessingParameterNumber.Double|0.500
|
||||
QgsProcessingParameterNumber|EPS_SVR|SVR Epsilon|QgsProcessingParameterNumber.Double|0.100000|False|None|None
|
||||
QgsProcessingParameterNumber|CACHE_SIZE|Cache Size|QgsProcessingParameterNumber.Double|100.000000|False|None|None
|
||||
QgsProcessingParameterNumber|EPS|Epsilon|QgsProcessingParameterNumber.Double|0.001000|False|None|None
|
||||
ParameterBoolean|SHRINKING|Shrinking|False
|
||||
ParameterBoolean|PROBABILITY|Probability Estimates|False
|
||||
QgsProcessingParameterBoolean|SHRINKING|Shrinking|False
|
||||
QgsProcessingParameterBoolean|PROBABILITY|Probability Estimates|False
|
||||
QgsProcessingParameterNumber|CROSSVAL|Cross Validation|QgsProcessingParameterNumber.Integer|1|False| 1|None
|
@ -5,7 +5,7 @@ QgsProcessingParameterNumber|FACTOR|Bandwidth (Cells)|QgsProcessingParameterNumb
|
||||
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
|
||||
QgsProcessingParameterBoolean|NORMALIZE |Normalized|True
|
||||
QgsProcessingParameterRasterDestination|SURFACE|Surface
|
||||
QgsProcessingParameterRasterDestination|SEEDS_GRID|Seeds Grid
|
||||
OutputVector|SEEDS|Seeds
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user