dataio.export.rms.field_outline module

export_field_outline(project)[source]

Simplified interface when exporting field outline from RMS.

Parameters:

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

Return type:

ExportResult

Examples

Example usage in an RMS script:

from fmu.dataio.export.rms import export_field_outline

export_results = export_field_outline(project)

for result in export_results.items:
    print(f"Output field outline polygon to {result.absolute_path}")