1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
//! `GeoData` — the load-once project substrate.
//!
//! A [`GeoData`] holds a project's surfaces, wells, points, and polygons keyed
//! by name (insertion-ordered [`IndexMap`]s) under a single declared [`Unit`].
//! The loaders ingest a file once and hand back a borrow (`Result<&T>`); named
//! getters and collection views (`surfaces()` / `wells()`) read it back. This is
//! the SPEC's "manager substrate": operations broadcast across a collection via
//! [`WellsView`], never per-item loops in caller code.
//!
//! This module holds the project state + named/collection access + strat hints;
//! the extension-dispatched `load_*` ingest and its well-routing helpers live in
//! the sibling [`loaders`](super::loaders) module.
use crate::core::{
PointSet, PolygonSet, StructuredMeshSurface, Surface, SurfaceIntersection, Well,
};
use crate::foundation::{GeoError, Result, Unit};
use crate::manager::wells_view::WellsView;
use indexmap::IndexMap;
/// A load-once subsurface project: named surfaces, wells, points, and polygons
/// under one declared length [`Unit`].
pub struct GeoData {
/// The project's length unit; surfaces/wells/points/polygons share it.
pub unit: Unit,
pub(crate) surfaces: IndexMap<String, Surface>,
/// Explicit-node structured surfaces. Kept separate so the existing Rust
/// regular-surface API remains source-compatible; names are nevertheless
/// unique across both surface collections.
pub(crate) structured_surfaces: IndexMap<String, StructuredMeshSurface>,
pub(crate) wells: IndexMap<String, Well>,
pub(crate) points: IndexMap<String, PointSet>,
pub(crate) polygons: IndexMap<String, PolygonSet>,
/// Global lithostratigraphic column (top names, shallow→deep) derived from
/// the last loaded well-tops file across *all* its wells. Empty until
/// [`load_well_tops`](GeoData::load_well_tops) runs; pushed down into every
/// well so `zones()`/`zone_stats()` present in this order.
pub(crate) strat_order: Vec<String>,
/// User-supplied soft ordering hints `(above, below)` as raw name tokens
/// (possibly partial). Applied during `load_well_tops` — resolved to actual
/// top names, then honoured only where the data leaves the pair unordered.
pub(crate) strat_hints: Vec<(String, String)>,
/// Project metadata persisted to a `.pproj` manifest (owner / tags / created;
/// `modified` is stamped at save time).
pub(crate) owner: Option<String>,
pub(crate) tags: Vec<String>,
pub(crate) created: Option<u64>,
/// Per-element custom tags (keyed by element name), written into each section
/// so `export`-by-tag can select a shareable subset.
pub(crate) element_tags: IndexMap<String, Vec<String>>,
/// petekSim's opaque model sidecar: `model/<seg>/…` sections held as raw
/// bytes + a per-section version. petekIO frames/compresses them on save and
/// hands them back untouched — it never parses their contents.
pub(crate) model_sections: IndexMap<String, crate::manager::ModelSection>,
/// Generic project assets (viewer templates today, other provider-owned
/// values later). They are persisted separately from domain/model sections
/// and retain their envelope + payload bytes exactly.
pub(crate) assets: IndexMap<String, crate::manager::ProjectAsset>,
/// Opt-in curve-mnemonic canonicalization applied at `load_well` time. When
/// `Some`, each loaded log's mnemonic is passed through
/// [`canonical_mnemonic_with`](crate::analysis::canonical_mnemonic_with)
/// (the user map first, then the built-in table + vintage `_YYYY` strip), so
/// e.g. `PHIE_2025` → `PHIE`. `None` (default) preserves raw mnemonics.
pub(crate) curve_aliases: Option<crate::analysis::NameMap>,
}
/// One persisted formation-pick row aggregated from a well bore.
#[derive(Debug, Clone, PartialEq)]
pub struct WellTopRow {
pub well: String,
pub bore: String,
pub md: f64,
pub xyz: Option<crate::foundation::Point3>,
}
impl GeoData {
/// An empty project in `unit`.
pub fn new(unit: Unit) -> GeoData {
GeoData {
unit,
surfaces: IndexMap::new(),
structured_surfaces: IndexMap::new(),
wells: IndexMap::new(),
points: IndexMap::new(),
polygons: IndexMap::new(),
strat_order: Vec::new(),
strat_hints: Vec::new(),
owner: None,
tags: Vec::new(),
created: None,
element_tags: IndexMap::new(),
model_sections: IndexMap::new(),
assets: IndexMap::new(),
curve_aliases: None,
}
}
/// Enable curve-mnemonic canonicalization for subsequent `load_well` calls:
/// each loaded log's mnemonic is mapped to canonical via `aliases` first
/// (raw vendor mnemonic → canonical, e.g. `PHIE_2025` → `PHIE`), then the
/// built-in table + vintage `_YYYY` strip. Pass an empty [`NameMap`] to get
/// pure auto-canonicalization (vintage strip + table) with no explicit
/// mappings. Off by default (raw mnemonics preserved).
pub fn set_curve_aliases(&mut self, aliases: crate::analysis::NameMap) {
self.curve_aliases = Some(aliases);
}
/// Load a well with a **per-call** curve-alias map — declarative, non-sticky:
/// `aliases` is applied to this load only (the project's own
/// [`set_curve_aliases`](GeoData::set_curve_aliases) state is preserved and
/// restored around the call, and `None` means no canonicalization for this
/// load regardless of prior sticky state). The value behind the Python
/// `IngestSpec` applied at `load_well(..., ingest=)`; returns `Ok(())` (the
/// loaded well is read back by id).
pub fn load_well_with(
&mut self,
id: &str,
head: (f64, f64),
kb: f64,
files: impl AsRef<std::path::Path>,
aliases: Option<&crate::analysis::NameMap>,
) -> Result<()> {
let saved = self.curve_aliases.clone();
self.curve_aliases = aliases.cloned();
let r = self.load_well(id, head, kb, files).map(|_| ());
self.curve_aliases = saved;
r
}
/// The global lithostratigraphic column (top names, shallow→deep) derived by
/// the last [`load_well_tops`](GeoData::load_well_tops) across every well in
/// that file. Empty before any tops are loaded.
pub fn strat_order(&self) -> &[String] {
&self.strat_order
}
/// Add a soft lithostratigraphic hint: place `above` shallower than `below`.
/// `above`/`below` may be partial top names (resolved at `load_well_tops`).
/// A hint is honoured only where the *data* leaves the pair unordered — it
/// never overrides a strict MD relationship. Add hints **before**
/// `load_well_tops`. See [`strat_hint`](GeoData::strat_hint) for shorthand.
pub fn add_strat_hint(&mut self, above: &str, below: &str) {
self.strat_hints
.push((above.to_string(), below.to_string()));
}
/// Shorthand for [`add_strat_hint`](GeoData::add_strat_hint): `"A < B"` reads
/// "A above B"; `"A > B"` reads "A below B". Sides may be partial names.
/// `Err` if the spec carries neither `<` nor `>` or has an empty side.
pub fn strat_hint(&mut self, spec: &str) -> Result<()> {
let mut h = crate::analysis::StratHints::new();
h.push_spec(spec)?;
self.add_strat_hints(&h);
Ok(())
}
/// Apply a declarative [`StratHints`](crate::analysis::StratHints) value:
/// append its `(above, below)` token pairs to the project's soft ordering
/// hints (honoured by the next `load_well_tops`, data always winning). The
/// declarative counterpart of [`add_strat_hint`](GeoData::add_strat_hint) /
/// [`strat_hint`](GeoData::strat_hint) — the value carried by the Python
/// `IngestSpec`, applied at load.
pub fn add_strat_hints(&mut self, hints: &crate::analysis::StratHints) {
self.strat_hints.extend(hints.pairs().iter().cloned());
}
/// The surface stored under `name`, or `None`.
pub fn surface(&self, name: &str) -> Option<&Surface> {
self.surfaces.get(name)
}
/// The structured mesh surface stored under `name`, or `None`.
pub fn structured_surface(&self, name: &str) -> Option<&StructuredMeshSurface> {
self.structured_surfaces.get(name)
}
/// Rename a stored surface.
pub fn rename_surface(&mut self, old: &str, new: &str) -> Result<()> {
if old == new {
return Ok(());
}
if self.surfaces.contains_key(new) || self.structured_surfaces.contains_key(new) {
return Err(GeoError::Parse(format!(
"rename_surface: destination '{new}' already exists"
)));
}
if self.surfaces.contains_key(old) {
rename_key(&mut self.surfaces, old, new, "surface")?;
} else if self.structured_surfaces.contains_key(old) {
rename_key(&mut self.structured_surfaces, old, new, "surface")?;
} else {
return Err(GeoError::NotFound(format!("surface '{old}'")));
}
rename_element_tags(&mut self.element_tags, old, new);
Ok(())
}
/// Delete a stored surface. Returns whether anything was removed.
pub fn delete_surface(&mut self, name: &str) -> bool {
let removed = self.surfaces.shift_remove(name).is_some()
|| self.structured_surfaces.shift_remove(name).is_some();
if removed {
self.element_tags.shift_remove(name);
}
removed
}
/// The well stored under `id`, or `None`.
pub fn well(&self, id: &str) -> Option<&Well> {
self.wells.get(id)
}
/// Rename a stored well.
pub fn rename_well(&mut self, old: &str, new: &str) -> Result<()> {
rename_key(&mut self.wells, old, new, "well")?;
rename_element_tags(&mut self.element_tags, old, new);
Ok(())
}
/// Delete a stored well. Returns whether anything was removed.
pub fn delete_well(&mut self, id: &str) -> bool {
let removed = self.wells.shift_remove(id).is_some();
if removed {
self.element_tags.shift_remove(id);
}
removed
}
/// Mutable access to the well stored under `id`, or `None` — for in-place
/// selection such as [`Well::set_default_bore`](crate::Well::set_default_bore)
/// on a multi-bore well (the Python `Well.set_default_bore` routes here).
pub fn well_mut(&mut self, id: &str) -> Option<&mut Well> {
self.wells.get_mut(id)
}
/// Distinct formation-top names across all bores, in first-seen order.
pub fn well_top_names(&self) -> Vec<String> {
let mut names = Vec::new();
for well in self.wells.values() {
for bore in well.sidetracks() {
for top in bore.tops() {
if !names
.iter()
.any(|name: &String| name.eq_ignore_ascii_case(&top.name))
{
names.push(top.name.clone());
}
}
}
}
names
}
/// All persisted picks named `name`, with recomputed XYZ where positioned.
pub fn well_top_set(&self, name: &str) -> Vec<WellTopRow> {
let mut rows = Vec::new();
for well in self.wells.values() {
for bore in well.sidetracks() {
for top in bore
.tops()
.filter(|top| top.name.eq_ignore_ascii_case(name))
{
rows.push(WellTopRow {
well: well.id.clone(),
bore: bore.label.clone(),
md: top.md,
xyz: bore.xyz(top.md),
});
}
}
}
rows
}
/// Remove a named formation horizon globally. Returns picks removed.
pub fn delete_well_top(&mut self, name: &str) -> usize {
let mut removed = 0;
for well in self.wells.values_mut() {
for label in well.bores().map(str::to_string).collect::<Vec<_>>() {
let bore = well.sidetrack_mut(&label);
let before = bore.tops().count();
bore.retain_tops_except(name);
removed += before - bore.tops().count();
}
}
removed
}
/// Atomically replace the complete named horizon with one validated hit per
/// bore. Validation performs no mutation; the subsequent replacement pass
/// is infallible and removes stale picks outside the hit set.
pub fn replace_well_top_set(&mut self, name: &str, hits: &[SurfaceIntersection]) -> Result<()> {
let name = name.trim();
if name.is_empty() {
return Err(GeoError::Parse("well-top name cannot be empty".into()));
}
let mut keys = std::collections::HashSet::new();
for hit in hits {
let well_id = hit.well.as_deref().ok_or_else(|| {
GeoError::Parse("project well-top assignment needs hit.well identity".into())
})?;
let bore_label = hit.bore.as_deref().ok_or_else(|| {
GeoError::Parse("project well-top assignment needs hit.bore identity".into())
})?;
if !keys.insert((well_id.to_string(), bore_label.to_string())) {
return Err(GeoError::Parse(format!(
"well-top assignment has multiple hits for {well_id}/{bore_label}; select one crossing per bore"
)));
}
let well = self.wells.get(well_id).ok_or_else(|| {
GeoError::NotFound(format!("intersection well '{well_id}' in this project"))
})?;
let bore = well.sidetrack(bore_label).ok_or_else(|| {
GeoError::NotFound(format!(
"intersection bore '{bore_label}' on well '{well_id}'"
))
})?;
bore.validate_intersection(hit)?;
}
self.delete_well_top(name);
for hit in hits {
let well_id = hit.well.as_deref().expect("validated well identity");
let bore_label = hit.bore.as_deref().expect("validated bore identity");
self.wells
.get_mut(well_id)
.expect("validated well")
.sidetrack_mut(bore_label)
.push_top_validated(name.to_string(), hit.md);
}
Ok(())
}
/// The point set stored under `name`, or `None`.
pub fn points(&self, name: &str) -> Option<&PointSet> {
self.points.get(name)
}
/// Rename a stored point set.
pub fn rename_points(&mut self, old: &str, new: &str) -> Result<()> {
rename_key(&mut self.points, old, new, "point set")?;
rename_element_tags(&mut self.element_tags, old, new);
Ok(())
}
/// Delete a stored point set. Returns whether anything was removed.
pub fn delete_points(&mut self, name: &str) -> bool {
let removed = self.points.shift_remove(name).is_some();
if removed {
self.element_tags.shift_remove(name);
}
removed
}
/// The polygon set stored under `name`, or `None`.
pub fn polygons(&self, name: &str) -> Option<&PolygonSet> {
self.polygons.get(name)
}
/// Rename a stored polygon set.
pub fn rename_polygons(&mut self, old: &str, new: &str) -> Result<()> {
rename_key(&mut self.polygons, old, new, "polygon set")?;
rename_element_tags(&mut self.element_tags, old, new);
Ok(())
}
/// Delete a stored polygon set. Returns whether anything was removed.
pub fn delete_polygons(&mut self, name: &str) -> bool {
let removed = self.polygons.shift_remove(name).is_some();
if removed {
self.element_tags.shift_remove(name);
}
removed
}
/// All surfaces in insertion order.
pub fn surfaces(&self) -> impl Iterator<Item = &Surface> {
self.surfaces.values()
}
/// All surfaces with their names, in insertion order.
pub fn surfaces_named(&self) -> impl Iterator<Item = (&str, &Surface)> {
self.surfaces.iter().map(|(k, v)| (k.as_str(), v))
}
/// All structured mesh surfaces in insertion order.
pub fn structured_surfaces(&self) -> impl Iterator<Item = &StructuredMeshSurface> {
self.structured_surfaces.values()
}
/// All structured mesh surfaces with names, in insertion order.
pub fn structured_surfaces_named(
&self,
) -> impl Iterator<Item = (&str, &StructuredMeshSurface)> {
self.structured_surfaces
.iter()
.map(|(k, v)| (k.as_str(), v))
}
/// All polygon sets with their names, in insertion order.
pub fn polygons_named(&self) -> impl Iterator<Item = (&str, &PolygonSet)> {
self.polygons.iter().map(|(k, v)| (k.as_str(), v))
}
/// A broadcastable, filterable view over all wells (insertion order).
pub fn wells(&self) -> WellsView<'_> {
WellsView::new(self.wells.values().collect())
}
/// A borrowed view over the requested well ids, preserving request order.
/// Missing ids are omitted; primarily used by the Python filtered view.
#[doc(hidden)]
pub fn wells_by_ids(&self, ids: &[String]) -> WellsView<'_> {
WellsView::new(ids.iter().filter_map(|id| self.wells.get(id)).collect())
}
/// All wells with ids, in insertion order.
pub fn wells_named(&self) -> impl Iterator<Item = (&str, &Well)> {
self.wells.iter().map(|(id, well)| (id.as_str(), well))
}
}
fn rename_key<T>(map: &mut IndexMap<String, T>, old: &str, new: &str, kind: &str) -> Result<()> {
if old == new {
return Ok(());
}
if map.contains_key(new) {
return Err(GeoError::Parse(format!(
"rename_{kind}: destination '{new}' already exists"
)));
}
let Some(value) = map.shift_remove(old) else {
return Err(GeoError::NotFound(format!("{kind} '{old}'")));
};
map.insert(new.to_string(), value);
Ok(())
}
fn rename_element_tags(tags: &mut IndexMap<String, Vec<String>>, old: &str, new: &str) {
if old == new {
return;
}
if let Some(value) = tags.shift_remove(old) {
tags.insert(new.to_string(), value);
}
}
#[cfg(test)]
mod tests {
use super::*;
use approx::assert_relative_eq;
const IRAP: &str = "tests/fixtures/simple.irap";
const WELL_DIR: &str = "tests/fixtures/wells/15_9-A1";
const LAS: &str = "tests/fixtures/sample.las";
const XYZ: &str = "tests/fixtures/points.xyz";
const POL: &str = "tests/fixtures/square.pol";
#[test]
fn new_is_empty_and_carries_unit() {
let geo = GeoData::new(Unit::Feet);
assert_eq!(geo.unit, Unit::Feet);
assert_eq!(geo.surfaces().count(), 0);
assert!(geo.wells().is_empty());
assert!(geo.surface("nope").is_none());
}
#[test]
fn load_surfaces_named_and_collection() {
let mut geo = GeoData::new(Unit::Metres);
geo.load_surface("top", IRAP).unwrap();
geo.load_surface("base", IRAP).unwrap();
assert!(geo.surface("top").is_some());
assert!(geo.surface("base").is_some());
assert!(geo.surface("missing").is_none()); // miss → None
assert_eq!(geo.surfaces().count(), 2);
}
#[test]
fn load_points_and_polygons_by_extension() {
let mut geo = GeoData::new(Unit::Metres);
geo.load_points("wells_xy", XYZ).unwrap();
geo.load_polygons("outline", POL).unwrap();
assert_eq!(geo.points("wells_xy").unwrap().len(), 3);
assert!(geo.polygons("outline").unwrap().contains(0.5, 0.5));
assert!(geo.points("nope").is_none());
assert!(geo.polygons("nope").is_none());
}
#[test]
fn unsupported_extension_errors() {
let mut geo = GeoData::new(Unit::Metres);
assert!(geo.load_surface("s", "x.segy").is_err());
}
#[test]
fn load_well_from_directory_attaches_logs_and_tops() {
let mut geo = GeoData::new(Unit::Metres);
geo.load_well("15/9-A1", (1200.0, 1500.0), 82.0, WELL_DIR)
.unwrap();
let w = geo.well("15/9-A1").unwrap();
assert_eq!(w.head, (1200.0, 1500.0));
// Tops attached → Brent interval resolves; NTG log clips to it.
let stats = w.top("Brent").unwrap().log("NTG").unwrap().stats();
assert_eq!(stats.count, 5);
assert_relative_eq!(stats.mean, 0.3, epsilon = 1e-12);
// Synthesized vertical trajectory → positions resolve.
let p = w.xyz(2420.0).unwrap();
assert_relative_eq!(p.x, 1200.0, epsilon = 1e-9);
assert_relative_eq!(p.z, 82.0 - 2420.0, epsilon = 1e-9); // negative-down elevation
assert_relative_eq!(w.tvd(2420.0).unwrap(), 2420.0 - 82.0, epsilon = 1e-9);
}
#[test]
fn load_well_from_single_file() {
let mut geo = GeoData::new(Unit::Metres);
geo.load_well("only-logs", (0.0, 0.0), 0.0, LAS).unwrap();
let w = geo.well("only-logs").unwrap();
assert!(w.log("GR").is_some());
assert!(w.top("Brent").is_none()); // no tops file → no tops
}
#[test]
fn wells_view_iter_filter_and_tops() {
let mut geo = GeoData::new(Unit::Metres);
geo.load_well("15/9-A1", (1200.0, 1500.0), 82.0, WELL_DIR)
.unwrap();
geo.load_well("no-tops", (0.0, 0.0), 0.0, LAS).unwrap();
assert_eq!(geo.wells().iter().count(), 2);
// Filter on a well predicate.
let east = geo.wells().filter(|w| w.head.0 > 1000.0);
assert_eq!(east.len(), 1);
assert_eq!(east.iter().next().unwrap().id, "15/9-A1");
// tops() narrows to wells that have the marker.
let brent = geo.wells().tops("Brent");
assert_eq!(brent.len(), 1);
assert_eq!(brent.iter().next().unwrap().id, "15/9-A1");
// Broadcast-style reduction over the narrowed view.
let means: Vec<f64> = geo
.wells()
.tops("Brent")
.iter()
.filter_map(|w| Some(w.top("Brent")?.log("NTG")?.stats().mean))
.collect();
assert_eq!(means.len(), 1);
assert_relative_eq!(means[0], 0.3, epsilon = 1e-12);
}
}