dataio.export.rms.structure_depth_isochores module

export_structure_depth_isochores(project, zone_folder)[source]

Simplified interface when exporting modelled depth isochores from RMS.

Parameters:
  • project (Any) – The ‘magic’ project variable in RMS.

  • zone_folder (str) – Name of zone folder in RMS.

Return type:

ExportResult

Examples

Example usage in an RMS script:

from fmu.dataio.export.rms import export_structure_depth_isochores

export_results = export_structure_depth_isochores(
    project, "IS_extracted"
)

for result in export_results.items:
    print(f"Output isochore surfaces to {result.absolute_path}")