Skip to content

Commit b83eb9f

Browse files
committedApr 9, 2015
Merge pull request #1984 from NaturalGIS/fix_saga_interpolations
fix saga interpolations modules
2 parents 7d812dd + c78374b commit b83eb9f

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed
 

‎python/plugins/processing/algs/saga/description/2.1.3/InverseDistanceWeighted.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ Inverse Distance Weighted
22
grid_gridding
33
ParameterVector|SHAPES|Points|0|False
44
ParameterTableField|FIELD|Attribute|SHAPES|-1|False
5-
Hardcoded|-TARGET_DEFINITION 0
5+
ParameterRaster|TARGET_TEMPLATE|Target System|True
66
ParameterSelection|WEIGHTING|Distance Weighting|[0] inverse distance to a power;[1] linearly decreasing within search radius;[2] exponential weighting scheme;[3] gaussian weighting scheme
77
ParameterNumber|WEIGHT_POWER|Inverse Distance Power|0.0|None|2
88
ParameterNumber|WEIGHT_BANDWIDTH|Exponential and Gaussian Weighting Bandwidth|0.0|None|1
99
ParameterSelection|SEARCH_RANGE|Search Range|[0] search radius (local);[1] no search radius (global)
1010
ParameterNumber|SEARCH_RADIUS|Search Radius|None|None|100.0
1111
ParameterSelection|SEARCH_DIRECTION|Search Mode|[0] all directions;[1] quadrants
12-
ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points
13-
ParameterNumber|SEARCH_POINTS_MAX|Maximum Number of Points|None|None|10
1412
Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX
15-
ParameterNumber|USER_SIZE|Cellsize|None|None|100.0
16-
OutputRaster|USER_GRID|Grid
13+
ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0
14+
ParameterSelection|TARGET_DEFINITION|Target Grid System|[0] user defined;[1] grid or grid system
15+
ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells
16+
OutputRaster|TARGET_OUT_GRID|Grid

‎python/plugins/processing/algs/saga/description/2.1.3/MultilevelB-SplineInterpolation.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@ Multilevel B-Spline Interpolation
22
grid_spline
33
ParameterVector|SHAPES|Points|0|False
44
ParameterTableField|FIELD|Attribute|SHAPES|-1|False
5-
Hardcoded|-TARGET_DEFINITION 0
5+
ParameterRaster|TARGET_TEMPLATE|Target System|True
66
ParameterSelection|METHOD|Method|[0] without B-spline refinement;[1] with B-spline refinement
77
ParameterNumber|EPSILON|Threshold Error|None|None|0.0001
8-
ParameterNumber|LEVEL_MAX|Maximum Level|None|None|11.0
8+
ParameterBoolean|UPDATE|Update View|False
99
Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX
1010
ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0
11-
OutputRaster|TARGET_OUT_GRID|Grid
11+
ParameterSelection|TARGET_DEFINITION|Target Grid System|[0] user defined;[1] grid or grid system
12+
ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells
13+
OutputRaster|TARGET_OUT_GRID|Grid
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
Statistics for Grids
22
statistics_grid
33
ParameterMultipleInput|GRIDS|Grids|3|False
4+
ParameterNumber|PCTL_VAL|Percentile|0.0|100.0|50.0
45
OutputRaster|MEAN|Arithmetic Mean
56
OutputRaster|MIN|Minimum
67
OutputRaster|MAX|Maximum
78
OutputRaster|VAR|Variance
9+
OutputRaster|SUM|Sum
10+
OutputRaster|RANGE|Range
11+
OutputRaster|PCTL|Percentile
812
OutputRaster|STDDEV|Standard Deviation
913
OutputRaster|STDDEVLO|Mean less Standard Deviation
10-
OutputRaster|STDDEVHI|Mean plus Standard Deviation
14+
OutputRaster|STDDEVHI|Mean plus Standard Deviation

0 commit comments

Comments
 (0)
Please sign in to comment.