Natural Neighbor Interpolation
Dinesh Shrestha
GIS Specialist / Geospatial Data Analyst: | ArcGIS Pro | ArcGIS Online | ArcGIS Dashboard |Python | PowerBI
Introduction
Natural Neighbor Interpolation is a spatial interpolation method used in GIS (Geographic Information System) that estimates values at unsampled locations based on the values of surrounding data points. It is a non-parametric method that considers the proximity of the unsampled location to neighboring data points to determine the weights for interpolation. Natural Neighbor interpolation finds the closest subset of input samples to a query point and applies weights to them based on proportionate areas to interpolate a value (Sibson, 1981). It is also known as Sibson or "area-stealing" interpolation.
The algorithm used by the Natural Neighbor?interpolation tool finds the closest subset of input samples to a query point and applies weights to them based on proportionate areas to interpolate a value (Sibson 1981). It is also known as Sibson or "area-stealing" interpolation. Its basic properties are that it's local, using only a subset of samples that surround a query point, and interpolated heights are guaranteed to be within the range of the samples used. It does not infer trends and will not produce peaks, pits, ridges, or valleys that are not already represented by the input samples. The surface passes through the input samples and is smooth everywhere except at the locations of the input samples.
Advantages of Natural Neighbor Interpolation:
领英推荐
Applications of Natural Neighbor Interpolation:
Limitations of Natural Neighbor Interpolation:
In summary, Natural Neighbor Interpolation offers advantages such as boundary preservation, local variability representation, and flexibility in handling irregularly spaced data. However, it also has limitations concerning computation, sensitivity to outliers, and challenges with extrapolation. Its applications are diverse, including elevation modeling, environmental monitoring, and interpolating image or raster data. It is important to consider the specific characteristics of the dataset and research goals when choosing an interpolation method.