Skip to content

Commit ba47823

Browse files
author
volayaf@gmail.com
committed
changed saga descriptions to new format (still need to be checked and improved)
git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@33 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d
1 parent 93aacbc commit ba47823

File tree

750 files changed

+3080
-18523
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

750 files changed

+3080
-18523
lines changed

src/sextante/r/RAlgorithm.py

+8-5
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,12 @@ def processParameterLine(self,line):
9494
elif tokens[1].lower().strip() == "boolean":
9595
default = tokens[1].strip()[len("boolean")+1:]
9696
param = ParameterBoolean(tokens[0], desc, default)
97-
elif tokens[ 1].lower().strip().startswith("number"):
98-
default = tokens[1].strip()[len("number")+1:]
99-
param = ParameterNumber(tokens[0], desc, default=default)
97+
elif tokens[1].lower().strip().startswith("number"):
98+
try:
99+
default = float(tokens[1].strip()[len("number")+1:])
100+
param = ParameterNumber(tokens[0], desc, default=default)
101+
except:
102+
raise WrongScriptException("Could not load R script:" + self.descriptionFile + ".\n Problem with line \"" + line + "\"")
100103
elif tokens[1].lower().strip().startswith("field"):
101104
field = tokens[1].strip()[len("field")+1:]
102105
found = False
@@ -136,7 +139,7 @@ def processAlgorithm(self, progress):
136139
if self.showPlots:
137140
htmlfilename = self.getOutputValue(RAlgorithm.RPLOTS)
138141
f = open(htmlfilename, "w")
139-
f.write("<img src=\"" + self.plotsFilename + "/>")
142+
f.write("<img src=\"" + self.plotsFilename + "\"/>")
140143
f.close()
141144
if self.showConsoleOutput:
142145
htmlfilename = self.getOutputValue(RAlgorithm.R_CONSOLE_OUTPUT)
@@ -202,7 +205,7 @@ def getImportCommands(self):
202205
if isinstance(param, (ParameterTableField, ParameterString)):
203206
commands.append(param.name + "=\"" + param.value + "\"")
204207
if isinstance(param, ParameterNumber):
205-
commands.append(param.name + "=" + param.value)
208+
commands.append(param.name + "=" + str(param.value))
206209
if isinstance(param, ParameterBoolean):
207210
b = (param.value == str(True))
208211
if b:

src/sextante/r/RUtils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def executeRAlgorithm(alg):
5454
pass
5555

5656
proc = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stdin=subprocess.PIPE,stderr=subprocess.STDOUT, universal_newlines=True)
57-
57+
proc.wait()
5858
RUtils.createConsoleOutput()
5959

6060

Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//polyg=vector
2-
//numpoints=number
3-
//output=output vector
4-
//[Example scripts]=group
1+
##polyg=vector
2+
##numpoints=number 10
3+
##output=output vector
4+
##[Example scripts]=group
55
pts=spsample(polyg,numpoints,type="regular")
66
output=SpatialPointsDataFrame(pts, as.data.frame(pts))

src/sextante/r/scripts/F_function_-_distance_from_a_point_to nearest event.rsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//[Example scripts]=group
2-
//points=vector
3-
//showplots
1+
##[Example scripts]=group
2+
##points=vector
3+
##showplots
44
library("maptools")
55
library("spatstat")
66
ppp=as(as(points, "SpatialPoints"),"ppp")
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Average With Thereshold 1
2+
contrib_a_perego
3+
ParameterRaster|INPUT|Input|False
4+
ParameterNumber|RX|Radius X|0|None|1
5+
ParameterNumber|RY|Radius Y|0|None|1
6+
ParameterNumber|THRESH|Threshold|None|None|10
7+
OutputRaster|RESULT|AWT Grid
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Average With Thereshold 2
2+
contrib_a_perego
3+
ParameterRaster|INPUT|Input|False
4+
ParameterNumber|RX|Radius X|1|None|3
5+
ParameterNumber|RY|Radius Y|1|None|3
6+
ParameterNumber|THRESH|Threshold|None|None|0
7+
OutputRaster|RESULT|AWT Grid
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Residual Analysis (Grid)
2+
geostatistics_grid
3+
ParameterRaster|GRID|Grid|False
4+
ParameterNumber|RADIUS|Radius (Cells)|1|None|7
5+
ParameterSelection|DISTANCE_WEIGHTING_WEIGHTING|Distance Weighting|[0] no distance weighting;[1] inverse distance to a power;[2] exponential;[3] gaussian weighting
6+
ParameterNumber|DISTANCE_WEIGHTING_IDW_POWER|Inverse Distance Weighting Power|None|None|1
7+
ParameterBoolean|DISTANCE_WEIGHTING_IDW_OFFSET|Inverse Distance Offset|True
8+
ParameterNumber|DISTANCE_WEIGHTING_BANDWIDTH|Gaussian and Exponential Weighting Bandwidth|None|None|1
9+
OutputRaster|MEAN|Mean Value
10+
OutputRaster|DIFF|Difference from Mean Value
11+
OutputRaster|STDDEV|Standard Deviation
12+
OutputRaster|RANGE|Value Range
13+
OutputRaster|MIN|Minimum Value
14+
OutputRaster|MAX|Maximum Value
15+
OutputRaster|DEVMEAN|Deviation from Mean Value
16+
OutputRaster|PERCENT|Percentile
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Multilevel B-Spline Interpolation (from Grid)
2+
grid_spline
3+
ParameterRaster|GRIDPOINTS|Grid|False
4+
ParameterSelection|TARGET|Target Grid|[0] user defined;[1] grid
5+
ParameterSelection|METHOD|Method|[0] without B-spline refinement;[1] with B-spline refinement
6+
ParameterNumber|EPSILON|Threshold Error|None|None|0
7+
ParameterNumber|LEVEL_MAX|Maximum Level|None|None|0
8+
ParameterBoolean|UPDATE |Update View|True
9+
ParameterSelection|DATATYPE|Data Type|[0] same as input grid;[1] floating point
10+
ParameterNumber|USER_XMIN|Left|None|None|0
11+
ParameterNumber|USER_XMAX|Right|None|None|0
12+
ParameterNumber|USER_YMIN|Bottom|None|None|0
13+
ParameterNumber|USER_YMAX|Top|None|None|0
14+
ParameterNumber|USER_SIZE|Cellsize|None|None|0
15+
OutputRaster|USER_GRID|Grid
16+
OutputRaster|GRID_GRID|Grid
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Cubic Spline Approximation
2+
grid_spline
3+
ParameterVector|SHAPES|Points|-1|False
4+
ParameterTableField|FIELD|Attribute|SHAPES
5+
ParameterSelection|TARGET|Target Grid|[0] user defined;[1] grid
6+
ParameterNumber|NPMIN|Minimal Number of Points|None|None|0
7+
ParameterNumber|NPMAX|Maximal Number of Points|None|None|0
8+
ParameterNumber|NPPC|Points per Square|None|None|0
9+
ParameterNumber|K|Tolerance|None|None|0
10+
ParameterNumber|USER_XMIN|Left|None|None|0
11+
ParameterNumber|USER_XMAX|Right|None|None|0
12+
ParameterNumber|USER_YMIN|Bottom|None|None|0
13+
ParameterNumber|USER_YMAX|Top|None|None|0
14+
ParameterNumber|USER_SIZE|Cellsize|None|None|0
15+
OutputRaster|USER_GRID|Grid
16+
OutputRaster|GRID_GRID|Grid
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Resampling
2+
grid_tools
3+
ParameterRaster|INPUT|Grid|False
4+
ParameterMultipleInput|INPUT_ADD|Additional Grids|3|True
5+
ParameterBoolean|KEEP_TYPE |Preserve Data Type|True
6+
ParameterSelection|TARGET|Target Grid|[0] user defined;[1] grid
7+
ParameterSelection|SCALE_UP_METHOD|Interpolation 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
8+
ParameterSelection|SCALE_DOWN_METHOD|Interpolation Method|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation
9+
ParameterNumber|USER_XMIN|Left|None|None|0
10+
ParameterNumber|USER_XMAX|Right|None|None|0
11+
ParameterNumber|USER_YMIN|Bottom|None|None|0
12+
ParameterNumber|USER_YMAX|Top|None|None|0
13+
ParameterNumber|USER_SIZE|Cellsize|None|None|0
14+
OutputRaster|OUTPUT_ADD|Additional Grids
15+
OutputRaster|USER_GRID|Grid
16+
OutputRaster|GRID_GRID|Grid
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Aggregate
2+
grid_tools
3+
ParameterRaster|INPUT|Grid|False
4+
ParameterNumber|SIZE|Aggregation Size|None|None|0
5+
ParameterSelection|METHOD|Method|[0] Sum;[1] Min;[2] Max
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Grid Proximity Buffer
2+
grid_tools
3+
ParameterRaster|SOURCE|Source Grid|False
4+
ParameterNumber|DIST|Buffer distance|None|None|0
5+
ParameterNumber|IVAL|Equidistance|None|None|0
6+
OutputRaster|DISTANCE|Distance Grid
7+
OutputRaster|ALLOC|Allocation Grid
8+
OutputRaster|BUFFER|Buffer Grid
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Convert Data Storage Type
2+
grid_tools
3+
ParameterRaster|INPUT|Grid|False
4+
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
5+
OutputRaster|OUTPUT|Converted Grid
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Change Grid Values
2+
grid_tools
3+
ParameterRaster|GRID_IN|Grid|False
4+
ParameterSelection|METHOD|Replace Condition|[0] Grid value equals low value;[1] Low value < grid value < high value;[2] Low value <= grid value < high value
5+
ParameterFixedTable|LOOKUP|Lookup Table|3| Low Value; High Value; Replace with|False
6+
OutputRaster|GRID_OUT|Changed Grid
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Reclassify Grid Values
2+
grid_tools
3+
ParameterRaster|INPUT|Grid|False
4+
ParameterSelection|METHOD|Method|[0] single;[1] range;[2] simple table;[3] user supplied table
5+
ParameterNumber|OLD|old value|None|None|0
6+
ParameterNumber|NEW|new value|None|None|0
7+
ParameterSelection|SOPERATOR|operator|[0] =;[1] <;[2] <=;[3] >=;[4] >
8+
ParameterNumber|MIN|minimum value|None|None|0
9+
ParameterNumber|MAX|maximum value|None|None|0
10+
ParameterNumber|RNEW|new value|None|None|0
11+
ParameterSelection|ROPERATOR|operator|[0] <=;[1] <
12+
ParameterFixedTable|RETAB|Lookup Table|3| minimum; maximum; new|False
13+
ParameterSelection|TOPERATOR|operator|[0] min <= value < max;[1] min <= value <= max;[2] min < value <= max;[3] min < value < max
14+
ParameterTable|RETAB_2|Lookup Table|True
15+
ParameterBoolean|NODATAOPT |no data values|True
16+
ParameterNumber|NODATA|new value|None|None|0
17+
ParameterBoolean|OTHEROPT |other values|True
18+
ParameterNumber|OTHERS|new value|None|None|0
19+
OutputRaster|RESULT|Reclassified Grid
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Crop to Data
2+
grid_tools
3+
ParameterMultipleInput|INPUT|Grids|3|False
4+
OutputRaster|OUTPUT|Cropped Grids
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Invert Data/No-Data
2+
grid_tools
3+
ParameterRaster|INPUT|Grid|False
4+
OutputRaster|OUTPUT|Result
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Representativeness (Grid)
2+
geostatistics_grid
3+
ParameterRaster|INPUT|Grid|False
4+
ParameterNumber|RADIUS|Radius (Cells)|1|None|10
5+
ParameterNumber|EXPONENT|Exponent|None|None|1
6+
OutputRaster|RESULT|Representativeness
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Grid Orientation
2+
grid_tools
3+
ParameterRaster|INPUT|Grid|False
4+
ParameterSelection|METHOD|Method|[0] Copy;[1] Flip;[2] Mirror;[3] Invert
5+
OutputRaster|RESULT|Changed Grid
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Combine Grids
2+
grid_tools
3+
ParameterRaster|GRID1|Grid 1|False
4+
ParameterRaster|GRID2|Grid 2|False
5+
ParameterFixedTable|LOOKUP|LookUp Table|3| Value in Grid 1; Value in Grid 2; Resulting Value|False
6+
OutputRaster|RESULT|Result
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Sort Grid
2+
grid_tools
3+
ParameterRaster|GRID|Input Grid|False
4+
ParameterBoolean|DOWN |Down sort|True
5+
OutputRaster|OUTPUT|Sorted Grid
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Grids from classified grid and table
2+
grid_tools
3+
ParameterTable|TABLE|Table|False
4+
ParameterTableField|ID_FIELD|Attribute|TABLE
5+
ParameterRaster|CLASSES|Classes|False
6+
OutputRaster|GRIDS|Grids
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Create Grid System
2+
grid_tools
3+
ParameterSelection|M_EXTENT|Set extent by|[0] xMin, yMin, NX, NY;[1] xMin, yMin, xMax, yMax;[2] Shape(s);[3] Grid(s)
4+
ParameterNumber|XMIN|xMin|None|None|0
5+
ParameterNumber|YMIN|yMin|None|None|0
6+
ParameterNumber|XMAX|xMax|None|None|0
7+
ParameterNumber|YMAX|yMax|None|None|0
8+
ParameterNumber|NX|NX|None|None|0
9+
ParameterNumber|NY|NY|None|None|0
10+
ParameterNumber|CELLSIZE|Cellsize|None|None|0
11+
ParameterSelection|ADJUST|Adjust|[0] Extent to CellSize;[1] CellSize to W-E Extent;[2] CellSize to S-N Extent
12+
ParameterBoolean|USEOFF |Use Offset|True
13+
ParameterNumber|XOFFSET|X offset|None|None|0
14+
ParameterNumber|YOFFSET|Y offset|None|None|0
15+
ParameterNumber|INIT|Initialization Value|None|None|0
16+
ParameterMultipleInput|SHAPESLIST|Shape(s)|-1|True
17+
ParameterMultipleInput|GRIDLIST|Grid(s)|3|True
18+
OutputRaster|GRID|Dummy Grid
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Grid Masking
2+
grid_tools
3+
ParameterRaster|GRID|Grid|False
4+
ParameterRaster|MASK|Mask|False
5+
OutputRaster|MASKED|Masked Grid
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Close Gaps with Spline
2+
grid_tools
3+
ParameterRaster|GRID|Grid|False
4+
ParameterRaster|MASK|Mask|True
5+
ParameterNumber|MAXGAPCELLS|Only Process Gaps with Less Cells|None|None|0
6+
ParameterNumber|MAXPOINTS|Maximum Points|None|None|0
7+
ParameterNumber|LOCALPOINTS|Number of Points for Local Interpolation|None|None|0
8+
ParameterBoolean|EXTENDED |Extended Neighourhood|True
9+
ParameterSelection|NEIGHBOURS|Neighbourhood|[0] Neumann;[1] Moore
10+
ParameterNumber|RADIUS|Radius (Cells)|None|None|0
11+
ParameterNumber|RELAXATION|Relaxation|None|None|0
12+
OutputRaster|CLOSED|Closed Gaps Grid
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Proximity Grid
2+
grid_tools
3+
ParameterRaster|FEATURES|Features|False
4+
OutputRaster|DISTANCE|Distance
5+
OutputRaster|DIRECTION|Direction
6+
OutputRaster|ALLOCATION|Allocation
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Tiling
2+
grid_tools
3+
ParameterRaster|GRID|Grid|False
4+
ParameterNumber|OVERLAP|Overlapping Cells|None|None|0
5+
ParameterSelection|OVERLAP_SYM|Add Cells|[0] symmetric;[1] bottom / left;[2] top / right
6+
ParameterSelection|METHOD|Tile Size Definition|[0] number of grid cells per tile;[1] coordinates (offset, range, cell size, tile size)
7+
ParameterNumber|NX|Number of Column Cells|None|None|0
8+
ParameterNumber|NY|Number of Row Cells|None|None|0
9+
ParameterRange|XRANGE_MIN|Offset and Range (X)
10+
ParameterRange|XRANGE_MAX|Offset and Range (X)
11+
ParameterRange|YRANGE_MIN|Offset and Range (Y)
12+
ParameterRange|YRANGE_MAX|Offset and Range (Y)
13+
ParameterNumber|DCELL|Cell Size|None|None|0
14+
ParameterNumber|DX|Tile Size (X)|None|None|0
15+
ParameterNumber|DY|Tile Size (Y)|None|None|0
16+
OutputRaster|TILES|Tiles
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Grid Shrink/Expand
2+
grid_tools
3+
ParameterRaster|INPUT|Grid|False
4+
ParameterSelection|OPERATION|Operation|[0] Shrink;[1] Expand
5+
ParameterSelection|MODE|Search Mode|[0] Square;[1] Circle
6+
ParameterNumber|RADIUS|Radius|None|None|0
7+
ParameterSelection|METHOD_EXPAND|Method|[0] min;[1] max;[2] mean;[3] majority
8+
OutputRaster|RESULT|Result Grid
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Radius of Variance (Grid)
2+
geostatistics_grid
3+
ParameterRaster|INPUT|Grid|False
4+
ParameterNumber|VARIANCE|Standard Deviation|0|None|1
5+
ParameterNumber|RADIUS|Maximum Search Radius (cells)|0|None|20
6+
ParameterSelection|OUTPUT|Type of Output|[0] Cells;[1] Map Units
7+
OutputRaster|RESULT|Variance Radius
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Merging
2+
grid_tools
3+
ParameterMultipleInput|GRIDS|Grids to Merge|3|False
4+
ParameterSelection|TYPE|Preferred data storage type|[0] 1 bit;[1] 1 byte unsigned integer;[2] 1 byte signed integer;[3] 2 byte unsigned integer;[4] 2 byte signed integer;[5] 4 byte unsigned integer;[6] 4 byte signed integer;[7] 4 byte floating point;[8] 8 byte floating point
5+
ParameterSelection|INTERPOL|Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation
6+
ParameterSelection|OVERLAP|Overlapping Cells|[0] mean value;[1] first value in order of grid list
7+
ParameterNumber|MERGE_INFO_MESH_SIZE|Cell Size|None|None|0
8+
OutputRaster|GRID_TARGET|Target Grid
9+
OutputRaster|MERGED|Merged Grid
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Create Constant Grid
2+
grid_tools
3+
ParameterRaster|GRID|Base Grid|False
4+
ParameterNumber|VALUE|Value|None|None|0
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Patching
2+
grid_tools
3+
ParameterRaster|ORIGINAL|Grid|False
4+
ParameterRaster|ADDITIONAL|Patch Grid|False
5+
ParameterSelection|INTERPOLATION|Interpolation Method|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation
6+
OutputRaster|COMPLETED|Completed Grid
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Close One Cell Gaps
2+
grid_tools
3+
ParameterRaster|INPUT|Grid|False
4+
OutputRaster|RESULT|Changed Grid
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Close Gaps
2+
grid_tools
3+
ParameterRaster|INPUT|Grid|False
4+
ParameterRaster|MASK|Mask|True
5+
ParameterNumber|THRESHOLD|Tension Threshold|None|None|0
6+
OutputRaster|RESULT|Changed Grid
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Grid Buffer
2+
grid_tools
3+
ParameterRaster|FEATURES|Features Grid|False
4+
ParameterNumber|DIST|Distance|None|None|0
5+
ParameterSelection|BUFFERTYPE|Buffer Distance|[0] Fixed;[1] Cell value
6+
OutputRaster|BUFFER|Buffer Grid
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Threshold Buffer
2+
grid_tools
3+
ParameterRaster|FEATURES|Features Grid|False
4+
ParameterRaster|VALUE|Value Grid|False
5+
ParameterRaster|THRESHOLDGRID|Threshold Grid|True
6+
ParameterNumber|THRESHOLD|Threshold|None|None|0
7+
ParameterSelection|THRESHOLDTYPE|Threshold Type|[0] Absolute;[1] Relative from cell value
8+
OutputRaster|BUFFER|Buffer Grid
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Color Palette Rotation
2+
grid_visualisation
3+
ParameterRaster|GRID|Grid|False
4+
ParameterBoolean|DIR |Down|True
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Color Blending
2+
grid_visualisation
3+
ParameterMultipleInput|GRIDS|Grids|3|False
4+
ParameterNumber|NSTEPS|Interpolation Steps|None|None|0
5+
ParameterSelection|RANGE|Color Stretch|[0] fit to each grid;[1] fit to overall range;[2] fit to overall 1.5 standard deviation;[3] fit to overall 2.0 standard deviation
6+
OutputRaster|GRID|Grid
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Fit Color Palette to Grid Values
2+
grid_visualisation
3+
ParameterRaster|GRID|Grid|False
4+
ParameterNumber|COUNT|Number of Colors|None|None|0
5+
ParameterSelection|SCALE|Scale|[0] Grid range;[1] User defined range
6+
ParameterRange|RANGE_MIN|User defined range
7+
ParameterRange|RANGE_MAX|User defined range
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Statistics for Grids
2+
geostatistics_grid
3+
ParameterMultipleInput|GRIDS|Grids|3|False
4+
OutputRaster|MEAN|Arithmetic Mean
5+
OutputRaster|MIN|Minimum
6+
OutputRaster|MAX|Maximum
7+
OutputRaster|VAR|Variance
8+
OutputRaster|STDDEV|Standard Deviation
9+
OutputRaster|STDDEVLO|Mean less Standard Deviation
10+
OutputRaster|STDDEVHI|Mean plus Standard Deviation

0 commit comments

Comments
 (0)