kiddo 5.0.3

A high-performance, flexible, ergonomic k-d tree library. Ideal for geo- and astro- nearest-neighbour and k-nearest-neighbor queries
Documentation
1
2
3
4
5
6
7
8
9
10
//! Floating point k-d tree, for use when the co-ordinates of the points being stored in the tree
//! are floats. [`f64`] or [`f32`] are supported currently.

#[doc(hidden)]
pub mod construction;
pub mod distance;
pub mod kdtree;
pub mod neighbour;
#[doc(hidden)]
pub mod query;