sphereql_index/lib.rs
1//! Spatial indexing with shell/sector partitioning.
2//!
3//! Partitions S² into radial shells and angular sectors for fast spatial
4//! queries: cone, cap, shell, band, wedge lookups and k-nearest-neighbor search.
5
6pub mod cache;
7pub mod composite;
8pub mod item;
9pub mod sector;
10pub mod shell;
11
12pub use cache::*;
13pub use composite::*;
14pub use item::*;
15pub use sector::*;
16pub use shell::*;