gis-tools 1.13.1

A collection of geospatial tools primarily designed for WGS84, Web Mercator, and S2.
Documentation
/// Box Index
pub mod box_index;
/// Cache System with a max size
pub mod cache;
/// Flat Queue
pub mod flat_queue;
/// Point Cluster
pub mod point_cluster;
/// Point Grid
pub mod point_grid;
/// Point Index
pub mod point_index;
/// Priority Queue
pub mod priority_queue;
/// Tile Structure
pub mod tile;

pub use box_index::*;
pub use cache::*;
pub use flat_queue::*;
pub use point_cluster::*;
pub use point_grid::*;
pub use point_index::*;
pub use priority_queue::*;
pub use tile::*;