An open-source Python package for writing DLIS files.
Project description
dliswriter
Welcome to dliswriter
- an open-source Python package for writing DLIS files.
The package allows you to specify the structure, data, and metadata of your DLIS file in a simple and flexible fashion. A minimal example is shown below.
import numpy as np # for creating mock datasets
from dliswriter import DLISFile, enums
df = DLISFile()
df.add_origin("MY-ORIGIN") # required; can contain metadata about the well, scan procedure, etc.
# define channels with numerical data and additional information
n_rows = 100 # all datasets must have the same number of rows
ch1 = df.add_channel('DEPTH', data=np.linspace(0, 10, n_rows), units=enums.Unit.METER)
ch2 = df.add_channel("RPM", data=np.arange(n_rows) % 10)
ch3 = df.add_channel("AMPLITUDE", data=np.random.rand(n_rows, 5))
# define frame, referencing the above defined channels
main_frame = df.add_frame("MAIN-FRAME", channels=(ch1, ch2, ch3), index_type=enums.FrameIndexType.BOREHOLE_DEPTH)
# write the data and metadata to a physical DLIS file
df.write('./new_dlis_file.DLIS')
For more details about the DLIS file format and using dliswriter
, please see the documentation.
Performance
According to our rough measurements, the file writing time seems to be pretty much linearly dependent on the
amount of data, in particular the number of rows. There is also some dependency on the dimensionality
of the data - e.g a single image (2D dataset) with 1000 columns will write about 20% faster
than 10 images of 100 columns each. A rough estimate of the writing speed is about 20M float64
values per second
(measured on an x64-based PC with Intel Core i9-8950HK with MS Windows 11 and Python 3.9.19).
The performance may be further tuned by adjusting the input_chunk_size
and output_chunk_size
of the writer
(see this example). The former limits how much of the input
data are loaded to memory at a time; the latter denotes the number of output bytes kept in memory before each partial
file write action. The optimal values depend on the hardware/software configuration and the characteristics of the data
(number and dimensionality of the datasets), but the defaults should in general be a good starting point.
Compatibility notes
Please note that some DLIS viewer applications are not fully compliant with the DLIS standard.
If a DLIS file produced by dliswriter
causes issues in some of the viewers, it might not necessarily
be a dliswriter
bug.
Some of the known compatibility issues - and ways of dealing with them - are described
in a dedicated section of the documentation.
If you run into problems not covered by the documentation, please open a new issue.
Installation
dliswriter
can be installed from PyPI:
pip install dliswriter
Anaconda installation option is coming soon.
For developers
Setting up dliswriter
for development purposes requires:
Once these requirements are fulfilled, follow the steps below:
-
Clone the repository and enter it. From a console:
git clone https://github.com/well-id/dliswriter.git cd dliswriter
-
Create the
dlis-writer
environment from theenvironment.yaml
file and activate it:conda env create -f environment.yaml conda activate dlis-writer
-
Install DLIS Writer in editable mode using
pip
:pip install --no-build-isolation --no-deps -e .
For explanation of the required flags, see this issue.
-
You're good to go! For verification, you can run the tests for the package (still from inside the
dliswriter
directory):pytest .
Contributing
To contribute to the dliswriter
, please follow this procedure:
- Fork the repository
- Clone the fork to your computer
- Check out the
devel
branch:git checkout devel
- Create a new branch from
devel
:git checkout -b <your branch name>
- Make your changes, commit them, and push them
- From the GitHub page of your fork, create a pull request to the original repository.
You can find some more detailed instructions about the fork-and-pull request workflow in the GitHub Docs.
You might also want to have a look at our issues log.
Authors
dliswriter
has been developed at Well ID by:
- Dominika Dlugosz
- Magne Lauritzen
- Kamil Grunwald
- Omer Faruk Sari
Based on the definition of the RP66 v1 standard.
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 Distribution
Built Distribution
Hashes for dliswriter-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7f75abd25f534ca1fe04c559b29302cf50270448cb17218ae6223f7c65222b83 |
|
MD5 | 325dbc5c082a65020f4b9cf56131c5a9 |
|
BLAKE2b-256 | d48aa2a480793555e686b7e0299a0840736f0a032dd8cf8c893f6f51debb0f45 |