petekio 0.3.15

Subsurface data ingestion + structure layer: surfaces, wells, points, polygons with loading, interpolation, and statistics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! `foundation` — the bottom layer: errors, units, geometry primitives, and the
//! universal `Stats` aggregation result. Imports from nothing above it.

pub mod error;
pub mod geometry;
pub mod history;
pub mod stats;
pub mod units;
pub mod uncertain;

pub use error::{GeoError, Result};
pub use geometry::{BBox, GridGeometry, Point3};
pub use history::{HasHistory, OperationHistory};
pub use stats::Stats;
pub use uncertain::{Distribution, Provenance, Uncertain};
pub use units::Unit;