mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-15 00:04:00 -04:00
Merge pull request #2447 from NaturalGIS/fix_saga_220_kriging
[processing] fix SAGA 2.2.0 kriging
This commit is contained in:
commit
c483411034
@ -1,7 +1,7 @@
|
||||
Ordinary Kriging (Global)
|
||||
Universal Kriging
|
||||
statistics_kriging
|
||||
ParameterVector|POINTS|Points|0|False
|
||||
ParameterTableField|ZFIELD|Attribute|POINTS|-1|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
|
||||
@ -10,9 +10,18 @@ ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0
|
||||
ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100
|
||||
ParameterNumber|VAR_NSKIP|Skip|1|None|1
|
||||
ParameterString|VAR_MODEL|Variogram Model|a + b * x
|
||||
ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global
|
||||
ParameterNumber|SEARCH_RADIUS|Maximum Search Distance|0|None|1000
|
||||
ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance
|
||||
ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4
|
||||
ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20
|
||||
ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants
|
||||
ParameterMultipleInput|PREDICTORS|Predictors|3|True
|
||||
ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation
|
||||
ParameterBoolean|COORDS|Coordinates|False
|
||||
Hardcoded|-TARGET_DEFINITION 0
|
||||
Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX
|
||||
ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0
|
||||
ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells
|
||||
OutputRaster|TARGET_PREDICTION|Prediction
|
||||
OutputRaster|TARGET_VARIANCE|Quality Measure
|
||||
OutputRaster|TARGET_VARIANCE|Quality Measure
|
@ -1,8 +1,7 @@
|
||||
Ordinary Kriging
|
||||
statistics_kriging
|
||||
ParameterVector|POINTS|Points|0|False
|
||||
ParameterTableField|ZFIELD|Attribute|POINTS|-1|False
|
||||
Hardcoded|-TARGET_DEFINITION 0
|
||||
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
|
||||
@ -17,6 +16,7 @@ ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of near
|
||||
ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4
|
||||
ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20
|
||||
ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants
|
||||
Hardcoded|-TARGET_DEFINITION 0
|
||||
Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX
|
||||
ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0
|
||||
ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells
|
||||
|
@ -1,7 +1,12 @@
|
||||
Universal Kriging (Global)
|
||||
Regression Kriging
|
||||
statistics_kriging
|
||||
ParameterVector|POINTS|Points|0|False
|
||||
ParameterTableField|ZFIELD|Attribute|POINTS|-1|False
|
||||
ParameterTableField|FIELD|Attribute|POINTS|-1|False
|
||||
ParameterMultipleInput|PREDICTORS|Predictors|3|False
|
||||
OutputRaster|REGRESSION|Regression
|
||||
OutputRaster|PREDICTION|Prediction
|
||||
OutputRaster|RESIDUALS|Residuals
|
||||
OutputRaster|VARIANCE|Quality Measure
|
||||
ParameterSelection|TQUALITY|Type of Quality Measure|[0] standard deviation;[1] variance
|
||||
ParameterBoolean|LOG|Logarithmic Transformation|True
|
||||
ParameterBoolean|BLOCK|Block Kriging|True
|
||||
@ -10,12 +15,18 @@ ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0
|
||||
ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100
|
||||
ParameterNumber|VAR_NSKIP|Skip|1|None|1
|
||||
ParameterString|VAR_MODEL|Variogram Model|a + b * x
|
||||
ParameterMultipleInput|GRIDS|Input Grids|3|True
|
||||
OutputTable|INFO_COEFF|Regression: Coefficients
|
||||
OutputTable|INFO_MODEL|Regression: Model
|
||||
OutputTable|INFO_STEPS|Regression: Steps
|
||||
ParameterBoolean|COORD_X|Include X Coordinate|False
|
||||
ParameterBoolean|COORD_Y|Include Y Coordinate|False
|
||||
ParameterBoolean|INTERCEPT|Intercept|True
|
||||
ParameterSelection|METHOD|Method|[0] include all;[1] forward;[2] backward;[3] stepwise|3
|
||||
ParameterNumber|P_VALUES|Significance Level|0|100.0|5.0
|
||||
ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation
|
||||
ParameterBoolean|COORDS|Coordinates|False
|
||||
Hardcoded|-TARGET_DEFINITION 0
|
||||
Extent TARGET_USER_XMIN TARGET_USER_XMAX TARGET_USER_YMIN TARGET_USER_YMAX
|
||||
ParameterNumber|TARGET_USER_SIZE|Cellsize|None|None|100.0
|
||||
ParameterSelection|TARGET_USER_FITS|Fit|[0] nodes;[1] cells
|
||||
OutputRaster|TARGET_PREDICTION|Prediction
|
||||
OutputRaster|TARGET_VARIANCE|Quality Measure
|
||||
ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global
|
||||
ParameterNumber|SEARCH_RADIUS|Maximum Search Distance|0|None|1000
|
||||
ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance
|
||||
ParameterNumber|SEARCH_POINTS_MIN|Minimum|1|None|4
|
||||
ParameterNumber|SEARCH_POINTS_MAX|Maximum|1|None|20
|
||||
ParameterSelection|SEARCH_DIRECTION|Search Direction|[0] all directions;[1] quadrants
|
@ -1,7 +1,7 @@
|
||||
Universal Kriging
|
||||
Simple Kriging
|
||||
statistics_kriging
|
||||
ParameterVector|POINTS|Points|0|False
|
||||
ParameterTableField|ZFIELD|Attribute|POINTS|-1|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
|
||||
@ -10,9 +10,6 @@ ParameterNumber|VAR_MAXDIST|Maximum Distance|None|None|-1.0
|
||||
ParameterNumber|VAR_NCLASSES|Lag Distance Classes|1|None|100
|
||||
ParameterNumber|VAR_NSKIP|Skip|1|None|1
|
||||
ParameterString|VAR_MODEL|Variogram Model|a + b * x
|
||||
ParameterMultipleInput|GRIDS|Input Grids|3|True
|
||||
ParameterSelection|INTERPOL|Grid Interpolation|[0] Nearest Neighbor;[1] Bilinear Interpolation;[2] Inverse Distance Interpolation;[3] Bicubic Spline Interpolation;[4] B-Spline Interpolation
|
||||
ParameterBoolean|COORDS|Coordinates|False
|
||||
ParameterSelection|SEARCH_RANGE|Search Range|[0] local;[1] global
|
||||
ParameterNumber|SEARCH_RADIUS|Maximum Search Distance|0|None|1000
|
||||
ParameterSelection|SEARCH_POINTS_ALL|Number of Points|[0] maximum number of nearest points;[1] all points within search distance
|
||||
|
Loading…
x
Reference in New Issue
Block a user