equinor / fmu-dataio

FMU data standard and data export with rich metadata in the FMU context
https://fmu-dataio.readthedocs.io/en/latest/
Apache License 2.0
10 stars 14 forks source link

Add `export_fault_lines()` one liner export #763

Open mferrera opened 3 weeks ago

mferrera commented 3 weeks ago

Currently fault polygons are exported from RMS projects in the following way:

Simplification

A possible one-liner export could instead look something like this:

for hname in HORIZON_NAMES:
    for fmt in ("csv", "irap_ascii"):
        export_fault_polygons(
            project: Any, 
            folder=POLYGON_FOLDER,
            vertical_domain="depth",  # or "time"
            fformat=fmt,
            workflow="RMS Structural Model",  # Can be set to something default instead?
            # classification=,  ? needed ?
            # cfg=CFG,  ? needed ?
        )

Unanswered questions

Tasks

mferrera commented 2 weeks ago

Consider naming this fault_lines over fault_polygons to prefer the data product over the data type.