A golang implementation of the Natural Neighbour Interpolation algorithm in 2D
Wikipedia entry for algorithm.
Takes a list of 2D input points with attached values. Gets interpolated values from arbitrary locations within the points.
// Create 1000 random points of source data.
dataPoints := make([]*delaunay.Point, 1000)
for i := 0; i < 1000; i++ {
dataPoints[i] = interpolation.NewPoint(rand.Float64(), rand.Float64(), rand.Float64())
}
// Create an interpolator that will use the source data.
interpolator, err := interpolation.New(dataPoints)
// Interpolate at the point (0.5, 0.5)
result, err := interpolator.Interpolate(0.5, 0.5)
The following is a rendering of discrete data points showing the time to drive to different locations from my house:
Here is a map generated by interpolating within the data for every pixel in the image.