petektools 0.1.0

Standalone numerics & geostatistics kernels for Rust: scattered-data gridding (minimum-curvature, IDW, nearest) and a curated numeric front-door. Pure leaf; PyO3 bindings planned.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! `foundation` — the type-agnostic vocabulary every kernel speaks: the error
//! type, the `Result` alias, and the rotatable [`Lattice`] (with its `BBox`).
//!
//! Deliberately tiny and dependency-free beyond `thiserror`: this is the bedrock
//! the higher layers (`gridding`, and later `stats` / `sampling`) build on.

pub mod error;
pub mod lattice;

pub use error::{AlgoError, Result};
pub use lattice::{BBox, Lattice};