Skip to content

Commit 322d9e6

Browse files
author
Médéric RIBREUX
committedFeb 20, 2016
Add r.resamp.bspline algorithm
1 parent b06d808 commit 322d9e6

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
 
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
r.resamp.bspline
2+
Performs bilinear or bicubic spline interpolation with Tykhonov regularization.
3+
Raster (r.*)
4+
ParameterRaster|input|Input raster layer|False
5+
ParameterRaster|mask|Name of raster map to use for masking. Only cells that are not NULL and not zero are interpolated|True
6+
ParameterSelection|method|Sampling interpolation method|bilinear;bicubic|1|False
7+
ParameterString|ew_step|Length (float) of each spline step in the east-west direction|None|False|True
8+
ParameterString|ns_step|Length (float) of each spline step in the north-south direction|None|False|True
9+
ParameterNumber|lambda|Tykhonov regularization parameter (affects smoothing)|0.0|None|0.01|True
10+
ParameterNumber|memory|Maximum memory to be used (in MB). Cache size for raster rows|10|None|300|True
11+
*ParameterBoolean|-n|Only interpolate null cells in input raster map|False|True
12+
*ParameterBoolean|-c|Find the best Tykhonov regularizing parameter using a "leave-one-out" cross validation method|False|True
13+
OutputRaster|output|Resampled BSpline
14+
OutputVector|grid|Interpolation Grid

0 commit comments

Comments
 (0)
Please sign in to comment.