kenro 0.1.0

SpatiaLite-style spatial SQL for SQLite in pure Rust — PostGIS-compatible ST_ functions, GeoPackage R-tree, CRS transform, H3, MVT. Use via rusqlite, loadable extension, or WASM
Documentation
//! Pure counterparts of the SQL functions. No SQLite types appear anywhere
//! in this module tree: every function takes `&[u8]` / `&str` / scalars and
//! returns `Result` — the binding layers (rusqlite, and later the loadable
//! extension and WASM) are thin value-mapping shims over these.

pub mod accessors;
pub mod affine;
pub(crate) mod classify;
#[cfg(feature = "geojson")]
pub mod geojson;
#[cfg(feature = "h3")]
pub mod h3;
pub mod io;
pub mod manifest;
pub mod measures;
#[cfg(feature = "mvt")]
pub mod mvt;
#[cfg(feature = "overlay")]
pub mod overlay;
pub mod predicates;
pub mod processing;
pub mod rtree;
pub mod stubs;
#[cfg(feature = "transform")]
pub mod transform;