petekio 0.3.7

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
//! `io::container` — the `.pproj` section container.
//!
//! The generic framing (file magic + JSON header + per-section `zstd(payload)`
//! blobs + byte-lossless `filter_to`/`merge_to`) was **lifted into petekTools**
//! (`petektools::container`) as a domain-agnostic toolkit — the on-disk format
//! is unchanged. petekIO re-exports it here so its GeoData element DTOs
//! (`serial` + `core::persist` + `manager::project`) keep layering on `container::`
//! exactly as before. `petektools::AlgoError` composes into [`GeoError`] via the
//! `#[from]` seam, so the `?` operator keeps working across the boundary.
//!
//! [`GeoError`]: crate::foundation::GeoError

pub use petektools::container::{filter_to, merge_to, open, write, Section};