Skip to content

A golang implementation of the Natural Neighbour Interpolation algorithm in 2D

License

Notifications You must be signed in to change notification settings

edwardbrowncross/naturalneighbour

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

naturalneighbour

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.

Usage

// 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)

Example

The following is a rendering of discrete data points showing the time to drive to different locations from my house: discrete data points

Here is a map generated by interpolating within the data for every pixel in the image. interpolated data

About

A golang implementation of the Natural Neighbour Interpolation algorithm in 2D

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages