use crate::core::{PointSet, PolygonSet, Surface, Well};
use crate::foundation::{Result, Unit};
use crate::manager::wells_view::WellsView;
use indexmap::IndexMap;
pub struct GeoData {
pub unit: Unit,
pub(crate) surfaces: IndexMap<String, Surface>,
pub(crate) wells: IndexMap<String, Well>,
pub(crate) points: IndexMap<String, PointSet>,
pub(crate) polygons: IndexMap<String, PolygonSet>,
pub(crate) strat_order: Vec<String>,
pub(crate) strat_hints: Vec<(String, String)>,
pub(crate) owner: Option<String>,
pub(crate) tags: Vec<String>,
pub(crate) created: Option<u64>,
pub(crate) element_tags: IndexMap<String, Vec<String>>,
pub(crate) model_sections: IndexMap<String, crate::manager::ModelSection>,
pub(crate) curve_aliases: Option<crate::analysis::NameMap>,
}
impl GeoData {
pub fn new(unit: Unit) -> GeoData {
GeoData {
unit,
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(),
curve_aliases: None,
}
}
pub fn set_curve_aliases(&mut self, aliases: crate::analysis::NameMap) {
self.curve_aliases = Some(aliases);
}
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
}
pub fn strat_order(&self) -> &[String] {
&self.strat_order
}
pub fn add_strat_hint(&mut self, above: &str, below: &str) {
self.strat_hints
.push((above.to_string(), below.to_string()));
}
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(())
}
pub fn add_strat_hints(&mut self, hints: &crate::analysis::StratHints) {
self.strat_hints.extend(hints.pairs().iter().cloned());
}
pub fn surface(&self, name: &str) -> Option<&Surface> {
self.surfaces.get(name)
}
pub fn well(&self, id: &str) -> Option<&Well> {
self.wells.get(id)
}
pub fn well_mut(&mut self, id: &str) -> Option<&mut Well> {
self.wells.get_mut(id)
}
pub fn points(&self, name: &str) -> Option<&PointSet> {
self.points.get(name)
}
pub fn polygons(&self, name: &str) -> Option<&PolygonSet> {
self.polygons.get(name)
}
pub fn surfaces(&self) -> impl Iterator<Item = &Surface> {
self.surfaces.values()
}
pub fn surfaces_named(&self) -> impl Iterator<Item = (&str, &Surface)> {
self.surfaces.iter().map(|(k, v)| (k.as_str(), v))
}
pub fn polygons_named(&self) -> impl Iterator<Item = (&str, &PolygonSet)> {
self.polygons.iter().map(|(k, v)| (k.as_str(), v))
}
pub fn wells(&self) -> WellsView<'_> {
WellsView::new(self.wells.values().collect())
}
}
#[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()); 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));
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);
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); 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()); }
#[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);
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");
let brent = geo.wells().tops("Brent");
assert_eq!(brent.len(), 1);
assert_eq!(brent.iter().next().unwrap().id, "15/9-A1");
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);
}
}