petekio 0.2.5

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
//! `algorithms` — petekIO's internal numeric/geostatistical kernels, **grouped
//! by discipline** (`wells`, … ; more land as they arrive).
//!
//! The discipline (see `SPEC.md` constitution): high-value numeric routines live
//! here as **pure, type-light functions** — primitives + `foundation` types
//! (`Point3`, `GeoError`) in and out, no domain-object (`Surface`/`Well`/…) or IO
//! coupling. Domain types in `core`/`analysis` call into these kernels rather
//! than inlining a formula, and a kernel's math has exactly one home (no
//! duplicated formula across call sites).
//!
//! Two payoffs: each kernel is trivial to **QC in isolation** (analytic tests on
//! raw numbers), and a kernel that proves high-value is a cheap **lift-and-shift
//! into the external `petekAlgorithms` library** (this module mirrors its
//! type-light boundary). Imports only from `foundation`.

pub mod wells;