equinor / dlisio

Python library for working with the well log formats Digital Log Interchange Standard (DLIS V1) and Log Information Standard (LIS79)
https://dlisio.readthedocs.io/en/latest/
Other
121 stars 39 forks source link

DLIS WELL Data extraction #389

Closed abhishekbyroju closed 3 years ago

abhishekbyroju commented 3 years ago

Can we extract well site data and job data from DLIS file as I dont see any attribute name other than file header, origin, etc?

achaikou commented 3 years ago

Hi,

I am not sure what you actually mean by well site data and job data?

If you mean the curves data aka usually the main content of the file, you need to call my_frame.curves() method on every frame in your logical file.

It can also happen that file that you check has no frames, thus no curves data. You can call my_logical_file.describe() to see what other useful objects apart from FileHeader and Origin exist in your particular file.

If you need full API reference, you can find it here.