Skip to content

Commit

Permalink
Add a brief summary of the advantage of natural neighbour interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
asinghvi17 committed Apr 23, 2024
1 parent b587eaf commit ca6a850
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/interpolators.jl
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,11 @@ to interpolate the data. This uses Delaunay triangulations and
the corresponding Voronoi diagram to interpolate the data, and offers
a variety of methods like `Sibson(::Int)`, `Nearest()`, and `Triangle()`.
The advantage of Voronoi-diagram based methods is that they are more robust to
irregularly distributed datasets and some discontinuities, which may throw off
some polynomial based methods as well as independant distance weighting (kriging).
See [this Discourse post](https://discourse.julialang.org/t/ann-naturalneighbours-jl-natural-neighbour-interpolation-and-derivative-generation/99164/11) for more information on why NaturalNeighbours are cool!
To access the methods easily, you should run `using NearestNeighbours`.
See the [NaturalNeighbours documentation](https://github.com/DanielVandH/NaturalNeighbours.jl) for more details.
Expand Down

0 comments on commit ca6a850

Please sign in to comment.