NaturalNeighbor 1.1.1
dotnet add package NaturalNeighbor --version 1.1.1
NuGet\Install-Package NaturalNeighbor -Version 1.1.1
<PackageReference Include="NaturalNeighbor" Version="1.1.1" />
paket add NaturalNeighbor --version 1.1.1
#r "nuget: NaturalNeighbor, 1.1.1"
// Install NaturalNeighbor as a Cake Addin #addin nuget:?package=NaturalNeighbor&version=1.1.1 // Install NaturalNeighbor as a Cake Tool #tool nuget:?package=NaturalNeighbor&version=1.1.1
NaturalNeighbor
The library focues on spatial interpolation for scattered 2D data, such as GIS data or similar.
Classes
Interpolator2d
Description :
Produces an interpolating function that can be queried at arbitrary location within interpolation boundaries. The underlying triangulation is created once and reused for subsequent queries. Supported interpolation methods : Nearest Neighbor, Linear, and Natural Neighbor
Usage :
using NaturalNeighbor;
...
var interp = Interpolator2d.Create(datapoints);
// interp.Method = InterpolationMethod.Nearest;
// interp.Method = InterpolationMethod.Natural (default)
// interp.Method = InterpolationMethod.Linear;
// Single lookup
var z = interp.Lookup(1.3f, 2.1f);
//Batch evaluation - single thread
interp.LookupRange(points, zvalues);
// Batch evaluation - parallel execution
interp.LookupRange(points, zValues, System.Threading.Tasks.ParallelOptions{});
SubDivision2d
Description :
Performs planar subdivision on a set of 2D points represented by collection of Vector2
. The class subdivides a plane into triangles using Delaunay's algorithm, which corresponds to the dual graph of the Voronoi diagram. The subdivision can be used for fast location of points on the plane or building special graphs.
Usage :
var subdiv = new SubDivision2d(points);
var nodeId = subdiv.FindNearest(x, y, out var pt);
if (nodeId.HasValue)
{
Console.WriteLine($"Nearest point: {pt}");
}
foreach(var triangle in subdiv.GetDelaunayTriangles())
{
// Process triangles
...
}
foreach(var facet in subdiv.GetVoronoiFacets())
{
// Process Voronoi facets
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 is compatible. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.7.2
- System.Collections.Immutable (>= 5.0.0)
- System.Numerics.Vectors (>= 4.5.0)
-
.NETStandard 2.0
- System.Collections.Immutable (>= 5.0.0)
- System.Numerics.Vectors (>= 4.5.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.