Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stevejpurves/logconverter
https://github.com/stevejpurves/logconverter
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/stevejpurves/logconverter
- Owner: stevejpurves
- Created: 2016-03-18T13:08:01.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-18T13:12:12.000Z (almost 9 years ago)
- Last Synced: 2024-10-24T08:55:41.544Z (3 months ago)
- Language: Jupyter Notebook
- Size: 47.9 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# log converter
DT log unit converstion and a notebook to look at well logs. Easily customiable to do more.
## Pre requisites
1. Install [Anaconda python](https://www.continuum.io/downloads) (or some other scientific python distro)
1. Install LAS file IO [lasio](http://pythonhosted.org/lasio/). From the Anaconda Commdn Prompt type `pip install lasio`## Usage
The repo has a converter script and an ipython notebook
### to run the script
las_conv.py will run from the command line `ipython las_conv.py` but you will need to customise the
main section (at the bottom of las_conv.py to point to the folder with your las files and provide the right filenames.
if __name__ == "__main__":
data_path = 'D:\\MyDataPath\\Logs\\'
filenames = ['F-O1.las', 'F-O2.las', 'F-O3.las', 'F-O4.las']
batch_convert(data_path, filenames)### To use the notebook
type `ipython notebook` in this folder and open the notebook in the browser. Customise!