This function interpolates values from a set of points to a raster using inverse distance weighting (IDW).
# S4 method for GVector,GRaster
interpIDW(x, y, field, nPoints = Inf, power = 2)
A GRaster
.
A "points" GVector
.
A GRaster
to serve as a template for interpolation: Only points in x
that fall inside the extent of the raster will be used for interpolation. You can increase the extent of a GRaster
using extend()
.
Character, integer, or numeric integer: Name or index of the column in x
with values to interpolate. If NULL
and if x
is a 3-dimensional "points" GVector
, then the interpolation will act on the z-coordinate of each point.
Integer or numeric integer: Number of nearest points to use for interpolation. The default is to use all points (Inf
).
Numeric value > 0: Power to which to take distance when interpolating. The default value is two, so the value of each point used for interpolation is \(1 / d^2\) where d is distance.
terra::interpIDW()
, interpSplines()
, fillNAs()
, GRASS module v.surf.idw
(se grassHelp("v.surf.idw")
)