cegal-welltools

Cegal AS-provided well log package


License
BSD-3-Clause
Install
pip install cegal-welltools==0.1.0

Documentation

Cegal



Cegal Tools package
- Loading and Visualising well log data

A geoscience tool for loading, plotting and evaluating well log data using python 🐍




The Cegal Tools package aims to minimize time and effort for a geoscientist wanting to work with well logs using python.

Based on open source tools such as plotly, pandas and lasio, Cegal Tools allow for simple loading, manipulation and visualising of well logs from las files.

Several built in plotting methods provides an easy to use, out of the box well log tool for geoscientists using or wanting to learn python.



Cegal well tool package; written by Hilde Tveit Håland and Thomas Bartholomew Grant, Cegal ASA, August 2020.

License: BSD-3-Clause


Check out the Example notebooks in the Notebooks folder for more detailed examples 🍰



Content




Using the well plotter from the Cegal Tools package


Installing cegal tools package:

  • !pip install cegaltools

The purpose of Cegal Tools Plotting is create a quick and easy way to QC well logs in a jupyter notebook. It's built using plotly, so run in a different IDEs html plots will launch in your default browser.



from cegaltools.plotting import CegalWellPlotter as cwp

cwp.plot_logs(df=dataframe, 
          logs=['gammaray','density', 'porosity'], 
          log_scale_logs='resistivity',
          lithology_logs='lithology', 
          lithology_proba_logs='lithology_probability')
          
out:

Log viewer

The four log options for cwp.plot_logs are:

  1. logs: logs to plot with normal scale
  2. log_scale_logs: logs to plot with logarithmic scale
  3. lithology_logs: lithology logs to plot as full trace color fill
  4. lithology_proba_logs: lithology probability logs scaled from 0 to 1



cwp.plot_correlation(df=dataframe)

out:

correlation plot



cwp.plot_coverage(df=dataframe)

out: 

Coverage plot



Creating a Well object using the Cegal Tools

from cegaltools.wells import Well

Create a Well object from las file:

well_from_las = Well(filename='well_log.las', path='../path to file/')

If you have well log data as a dataframe you can create a Well object by passing the dataframe instead of a filename and setting there parameter from_dataframe to True.

You also have the option of passing a well name, this will be added to the las file header values if you save the Well object to a las file:

well_from_df = Well(filename=df, from_dataframe=True, dataframe_name='test_well')

Attributes on the Well object:

well_from_las.__dict__

out:
{'path': '',
 'filename': 'well_log.las',
 'well_object': <lasio.las.LASFile at 0x1902a0941c0>,
 'id': 'ddb49e54ffc6b02e4043025647809060a2dba1c491f59e927ae99dd1'}

Lasio is used to read the las file, by accessing the well_object attribute you can work with and edit the well log file as per the excellent lasio project and documentation.



Built in plots for the Well object

The Cegal Well Plotter functions can be called as methods for the Well object:

well_from_las.plot_logs()

well_from_las.plot_correlation()

well_from_las.plot_coverage()



Adding logs and writing Well object as las file


Adding a new log

Adding logs to a Well object is done indirectly via lasios insert curve function, however the Well object requires the Well object id (sha244 hash generated for the Well object) to be passed together with new curve. The purpose for this is to assure that logs are written to the correct Well object if called from functions or in loops etc.

The new curve should be passed as a tuple with the Well object id:

(Well_object.id, new_curve)

well_from_las.add_to_well((well_from_las.id, new_curve), log_name='this_is_a_new_curve')



Writing Well object to las file


To save the Well object with the added curve back to a las file we can simply call write_las on the object, while providing a name for the file to be written. The file will be saved in the current directory:

well_from_las.write_las(filename='edited_well')

Check out the Example notebooks in the Notebooks folder for more detailed examples 🍰



Cegal