sphere-knn 0.1.0

fast nearest-neighbor lookups on a sphere. This is useful if, for example, you have a database of geographic points (latitude, longitude) and want to swiftly look up which of those points are near a given latitude, longitude pair.
Documentation
1
2
3
4
5
6
7
8
9
mod lla_node;
mod neighbors;
mod tree;
mod utils;

pub mod sphere_knn;
pub use self::lla_node::{CartesianPosition, LLANode, LocationData, Opts, SphereKnnGetters};
pub use self::sphere_knn::run;
pub use self::tree::build_tree;