petekio 0.2.0

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
//! `manager` โ€” the `GeoData` substrate + views: load once, named/collection
//! access, broadcastable filtered views. The top layer; imports from all below.
//!
//! [`GeoData`] is the load-once project (surfaces/wells/points/polygons keyed by
//! name); [`WellsView`] is the lightweight, filterable borrow over its wells
//! behind the broadcast ergonomic. Realizes `API.md` ยง"GeoData".

mod geodata; // GeoData โ€” the load-once project + named/collection access
mod wells_view; // WellsView โ€” broadcastable, filterable borrow over wells

pub use geodata::GeoData;
pub use wells_view::WellsView;