Natural-neighbor interpolation
Natural-neighbor interpolation or Sibson interpolation is a method of spatial interpolation, developed by Robin Sibson. The method is based on Voronoi tessellation of a discrete set of spatial points. This has advantages over simpler methods of interpolation, such as nearest-neighbor interpolation, in that it provides a smoother approximation to the underlying "true" function.
Formulation
The basic equation is:where is the estimate at, are the weights and are the known data at. The weights,, are calculated by finding how much of each of the surrounding areas is "stolen" when inserting into the tessellation.
;Sibson weights
where is the volume of the new cell centered in, and is the volume of the intersection between the new cell centered in and the old cell centered in.
[image:Natural-neighbors-coefficients-Laplace-example.png|200px|thumb|right|Natural neighbor interpolation with Laplace weights. The interface between the cells linked to and is in blue, while the distance between and is in red.]
;Laplace weights
where is the measure of the interface between the cells linked to and in the Voronoi diagram and, the distance between and.
Properties
There are several useful properties of natural neighbor interpolation:- The method is an exact interpolator, in that the original data values are retained at the reference data points.
- The method creates a smooth surface free from any discontinuities.
- The method is entirely local, as it is based on a minimal subset of data locations that excludes locations that, while close, are more distant than another location in a similar direction.
- The method is spatially adaptive, automatically adapting to local variation in data density or spatial arrangement.
- There is no requirement to make statistical assumptions.
- The method can be applied to very small datasets as it is not statistically based.
- The method is parameter free, so no input parameters that will affect the success of the interpolation need to be specified.