Cegal AS-provided well log package
Project description
Cegal Tools package - Loading and Visualising well log data
A geoscience tool for loading, plotting and evaluating well log data using python 🐍
The Cegal WellTools 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
The cegal.welltools package is licensed under the BSD-3-Clause license.
Examples
Check out the Example notebooks in the Notebooks folder for more detailed examples 🍰
Content
- Using the well plotter from the Cegal Tools package
- Creating a Well object using the Cegal Tools
- Built in plots for the Well object
- Adding logs and writing Well object as las file
Using the well plotter from the Cegal Tools package
Installing cegal tools package:
!pip install cegal.welltools
The purpose of Cegal Welltools 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:
The four log options for cwp.plot_logs are:
- logs: logs to plot with normal scale
- log_scale_logs: logs to plot with logarithmic scale
- lithology_logs: lithology logs to plot as full trace color fill
- lithology_proba_logs: lithology probability logs scaled from 0 to 1
cwp.plot_correlation(df=dataframe)
out:
cwp.plot_coverage(df=dataframe)
out:
Creating a Well object using the Cegal Tools
from cegal.welltools 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 🍰
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file cegal_welltools-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: cegal_welltools-0.1.0-py3-none-any.whl
- Upload date:
- Size: 21.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 039c907bd61de9ff42577ed34151e9a0201447b33e3e8fe6dba6718e1a5f4342 |
|
MD5 | 244fba5da32acb5625a46cf6da10dadf |
|
BLAKE2b-256 | 1cb8aac4ea092b65443ccca6259402bf7260aad76aa1e5ee8a678c5fb5c025e1 |