Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 539 Bytes

File metadata and controls

25 lines (19 loc) · 539 Bytes

Python

GeoRead

Python library for reading reservoir model data.

Features

  • Read reservoir models in Eclipse (E100, E300) format.
  • Read Eclipse binary files

Usage

Reading model in Eclipse text format.

import pathlib
from georead import load
data = load(pathlib.Path('path_to_model.DATA'))

Reading model binary files.

import pathlib
import georead.binary
binary_data = georead.binary.load(pathlib.Path('path_to_model.DATA'))