mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-15 00:02:52 -04:00
[processing] added descriptions for SAGA 2.2.3
This commit is contained in:
parent
61a92e2fac
commit
5c62a1750e
@ -4,6 +4,7 @@ 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)
|
||||
|
||||
ADD_SUBDIRECTORY(ext)
|
||||
@ -14,4 +15,5 @@ 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})
|
||||
|
@ -0,0 +1,8 @@
|
||||
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
|
@ -0,0 +1,7 @@
|
||||
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
|
@ -0,0 +1,4 @@
|
||||
Add Coordinates to points
|
||||
shapes_points
|
||||
ParameterVector|INPUT|Points|0|False
|
||||
OutputVector|OUTPUT|Points with coordinates
|
@ -0,0 +1,7 @@
|
||||
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
|
@ -0,0 +1,7 @@
|
||||
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
|
@ -0,0 +1,6 @@
|
||||
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
|
@ -0,0 +1,5 @@
|
||||
Aggregate
|
||||
grid_tools
|
||||
ParameterRaster|INPUT|Grid|False
|
||||
ParameterNumber|SIZE|Aggregation Size|None|None|3
|
||||
ParameterSelection|METHOD|Method|[0] Sum;[1] Min;[2] Max
|
@ -0,0 +1,14 @@
|
||||
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
|
@ -0,0 +1,5 @@
|
||||
Aggregation Index
|
||||
grid_analysis
|
||||
ParameterRaster|INPUT|Input Grid|False
|
||||
ParameterNumber|MAXNUMCLASS|Max. Number of Classes|None|None|5
|
||||
OutputTable|RESULT|Result
|
@ -0,0 +1,5 @@
|
||||
Analytical Hierarchy Process
|
||||
grid_analysis
|
||||
ParameterMultipleInput|GRIDS|Input Grids|3|False
|
||||
ParameterTable|TABLE|Pairwise Comparisons Table|False
|
||||
OutputRaster|OUTPUT|Output Grid
|
@ -0,0 +1,8 @@
|
||||
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
|
@ -0,0 +1,10 @@
|
||||
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
|
@ -0,0 +1,8 @@
|
||||
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
|
@ -0,0 +1,7 @@
|
||||
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
|
@ -0,0 +1,7 @@
|
||||
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
|
@ -0,0 +1,16 @@
|
||||
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
|
@ -0,0 +1,6 @@
|
||||
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
|
@ -0,0 +1,7 @@
|
||||
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
|
@ -0,0 +1,14 @@
|
||||
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
|
@ -0,0 +1,11 @@
|
||||
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
|
@ -0,0 +1,5 @@
|
||||
Clip Grid with Polygon
|
||||
shapes_grid
|
||||
ParameterRaster|INPUT|Input|False
|
||||
ParameterVector|POLYGONS|Polygons|2|False
|
||||
OutputRaster|OUTPUT|Clipped
|
@ -0,0 +1,7 @@
|
||||
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
|
@ -0,0 +1,6 @@
|
||||
Close Gaps
|
||||
grid_tools
|
||||
ParameterRaster|INPUT|Grid|False
|
||||
ParameterRaster|MASK|Mask|True
|
||||
ParameterNumber|THRESHOLD|Tension Threshold|None|None|0.1
|
||||
OutputRaster|RESULT|Changed Grid
|
@ -0,0 +1,12 @@
|
||||
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
|
@ -0,0 +1,4 @@
|
||||
Close One Cell Gaps
|
||||
grid_tools
|
||||
ParameterRaster|INPUT|Grid|False
|
||||
OutputRaster|RESULT|Changed Grid
|
@ -0,0 +1,9 @@
|
||||
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
|
@ -0,0 +1,8 @@
|
||||
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
|
@ -0,0 +1,11 @@
|
||||
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
|
@ -0,0 +1,6 @@
|
||||
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
|
@ -0,0 +1,5 @@
|
||||
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
|
@ -0,0 +1,6 @@
|
||||
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
|
@ -0,0 +1,4 @@
|
||||
Convert Lines to Polygons
|
||||
shapes_polygons
|
||||
ParameterVector|LINES|Lines|1|False
|
||||
OutputVector|POLYGONS|Polygons
|
@ -0,0 +1,4 @@
|
||||
Convert Multipoints to Points
|
||||
shapes_points
|
||||
ParameterVector|MULTIPOINTS|Multipoints|0|False
|
||||
OutputVector|POINTS|Points
|
@ -0,0 +1,6 @@
|
||||
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
|
@ -0,0 +1,4 @@
|
||||
Convert Polygon/Line Vertices to Points
|
||||
shapes_polygons
|
||||
ParameterVector|SHAPES|Shapes|-1|False
|
||||
OutputVector|POINTS|Points
|
@ -0,0 +1,4 @@
|
||||
Convert Polygons to Lines
|
||||
shapes_lines
|
||||
ParameterVector|POLYGONS|Polygons|2|False
|
||||
OutputVector|LINES|Lines
|
@ -0,0 +1,6 @@
|
||||
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
|
@ -0,0 +1,8 @@
|
||||
Create Graticule
|
||||
shapes_tools
|
||||
ParameterVector|EXTENT|Extent|-1|True
|
||||
Extent EXTENT_X_MIN EXTENT_X_MAX EXTENT_Y_MIN EXTENT_Y_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
|
@ -0,0 +1,4 @@
|
||||
Crop to Data
|
||||
grid_tools
|
||||
ParameterRaster|INPUT|Input layer|False
|
||||
OutputRaster|OUTPUT|Cropped
|
@ -0,0 +1,7 @@
|
||||
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
|
@ -0,0 +1,8 @@
|
||||
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
|
@ -0,0 +1,13 @@
|
||||
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
|
@ -0,0 +1,5 @@
|
||||
Curvature Classification
|
||||
ta_morphometry
|
||||
ParameterRaster|DEM|Elevation|False
|
||||
ParameterNumber|THRESHOLD|Threshold for plane|0.0000|None|0.0005
|
||||
OutputRaster|CLASS|Curvature Classification
|
@ -0,0 +1,7 @@
|
||||
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
|
@ -0,0 +1,8 @@
|
||||
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
|
@ -0,0 +1,23 @@
|
||||
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_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|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
|
@ -0,0 +1,4 @@
|
||||
Distance Matrix
|
||||
shapes_points
|
||||
ParameterVector|POINTS|Points|0|False
|
||||
OutputTable|TABLE|Distance Matrix Table
|
@ -0,0 +1,5 @@
|
||||
Diurnal Anisotropic Heating
|
||||
ta_morphometry
|
||||
ParameterRaster|DEM|Elevation|False
|
||||
ParameterNumber|ALPHA_MAX|Alpha Max (Degree)|None|None|202.5
|
||||
OutputRaster|DAH|Diurnal Anisotropic Heating
|
@ -0,0 +1,7 @@
|
||||
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
|
@ -0,0 +1,4 @@
|
||||
Edge Contamination
|
||||
ta_hydrology
|
||||
ParameterRaster|DEM|Elevation|False
|
||||
OutputRaster|CONTAMINATION|Edge Contamination
|
@ -0,0 +1,15 @@
|
||||
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
|
@ -0,0 +1,7 @@
|
||||
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
|
@ -0,0 +1,7 @@
|
||||
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
|
@ -0,0 +1,6 @@
|
||||
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
|
@ -0,0 +1,5 @@
|
||||
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
|
@ -0,0 +1,7 @@
|
||||
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
|
@ -0,0 +1,5 @@
|
||||
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
|
@ -0,0 +1,5 @@
|
||||
Filter Clumps
|
||||
grid_filter
|
||||
ParameterRaster|GRID|Input Grid|False
|
||||
ParameterNumber|THRESHOLD|Min. Size|1.0|None|10
|
||||
OutputRaster|OUTPUT|Filtered Grid
|
@ -0,0 +1,18 @@
|
||||
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
|
@ -0,0 +1,5 @@
|
||||
Fit N Points to shape
|
||||
shapes_points
|
||||
ParameterVector|SHAPES|Shapes|2|False
|
||||
ParameterNumber|NUMPOINTS|Number of points|1.0|None|10
|
||||
OutputVector|POINTS|Points
|
@ -0,0 +1,6 @@
|
||||
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
|
@ -0,0 +1,17 @@
|
||||
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
|
@ -0,0 +1,18 @@
|
||||
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
|
@ -0,0 +1,5 @@
|
||||
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
|
@ -0,0 +1,8 @@
|
||||
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
|
@ -0,0 +1,7 @@
|
||||
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)
|
@ -0,0 +1,17 @@
|
||||
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
|
@ -0,0 +1,17 @@
|
||||
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
|
@ -0,0 +1,9 @@
|
||||
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
|
@ -0,0 +1,8 @@
|
||||
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
|
@ -0,0 +1,10 @@
|
||||
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
|
@ -0,0 +1,5 @@
|
||||
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
|
@ -0,0 +1,5 @@
|
||||
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
|
@ -0,0 +1,7 @@
|
||||
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
|
@ -0,0 +1,16 @@
|
||||
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
|
@ -0,0 +1,20 @@
|
||||
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
|
@ -0,0 +1,23 @@
|
||||
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
|
@ -0,0 +1,20 @@
|
||||
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
|
@ -0,0 +1,23 @@
|
||||
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
|
@ -0,0 +1,7 @@
|
||||
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
|
@ -0,0 +1,5 @@
|
||||
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
|
@ -0,0 +1,5 @@
|
||||
Global Moran's I for Grids
|
||||
statistics_grid
|
||||
ParameterRaster|GRID|Grid|False
|
||||
ParameterSelection|CONTIGUITY|Case of contiguity|[0] Rook;[1] Queen
|
||||
OutputTable|RESULT|Result
|
@ -0,0 +1,10 @@
|
||||
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
|
@ -0,0 +1,10 @@
|
||||
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
|
@ -0,0 +1,10 @@
|
||||
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
|
@ -0,0 +1,10 @@
|
||||
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
|
@ -0,0 +1,9 @@
|
||||
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
|
@ -0,0 +1,6 @@
|
||||
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
|
@ -0,0 +1,9 @@
|
||||
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
|
@ -0,0 +1,5 @@
|
||||
Grid Cell Index
|
||||
grid_tools
|
||||
ParameterRaster|GRID|Input Grid|False
|
||||
ParameterSelection|ORDER|Index|[0] ascending;[1] descending|0
|
||||
OutputRaster|INDEX|Sorted Grid
|
@ -0,0 +1,5 @@
|
||||
Grid Difference
|
||||
grid_calculus
|
||||
ParameterRaster|A|A|False
|
||||
ParameterRaster|B|B|False
|
||||
OutputRaster|C|Difference (A - B)
|
@ -0,0 +1,5 @@
|
||||
Grid Division
|
||||
grid_calculus
|
||||
ParameterRaster|A|Dividend|False
|
||||
ParameterRaster|B|Divisor|False
|
||||
OutputRaster|C|Quotient
|
@ -0,0 +1,5 @@
|
||||
Grid Masking
|
||||
grid_tools
|
||||
ParameterRaster|GRID|Grid|False
|
||||
ParameterRaster|MASK|Mask|False
|
||||
OutputRaster|MASKED|Masked Grid
|
@ -0,0 +1,6 @@
|
||||
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
|
@ -0,0 +1,5 @@
|
||||
Grid Orientation
|
||||
grid_tools
|
||||
ParameterRaster|INPUT|Grid|False
|
||||
ParameterSelection|METHOD|Method|[0] Copy;[1] Flip;[2] Mirror;[3] Invert
|
||||
OutputRaster|RESULT|Changed Grid
|
@ -0,0 +1,8 @@
|
||||
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
|
@ -0,0 +1,9 @@
|
||||
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
|
@ -0,0 +1,5 @@
|
||||
Grid Standardisation
|
||||
grid_calculus
|
||||
ParameterRaster|INPUT|Grid|False
|
||||
ParameterNumber|STRETCH|Stretch Factor|0.0|None|1.0
|
||||
OutputRaster|OUTPUT|Standardised Grid
|
@ -0,0 +1,14 @@
|
||||
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
|
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