https://github.com/postpdm/earthscipy
https://github.com/postpdm/earthscipy
earth-science python-library
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/postpdm/earthscipy
- Owner: postpdm
- License: bsd-3-clause
- Created: 2016-07-27T08:41:21.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-03-27T22:31:58.000Z (about 9 years ago)
- Last Synced: 2024-12-30T03:45:46.901Z (over 1 year ago)
- Topics: earth-science, python-library
- Language: Python
- Size: 27.3 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EarthSciPy
[](http://earthscipy.readthedocs.io/en/latest/?badge=latest)
Python library for [Earth science](https://en.wikipedia.org/wiki/Earth_science) (main in geology and petro science).
## Requirements
Python 3.3 or above.
## Testing
python3 -m unittest tests/wells_tests.py
## Usage example
```python
from earthscipy.wells import *
WF = WellField( "North" ) # create wells field
w = Well( 'N_well#1', 0, 0 ) # create well
w.add_geometry_step( 10, 0 ) # add inclinometry data
w.add_geometry_step( 10, 45 )
w.add_geometry_step( 10, 90 )
w.add_geometry_step( 100, 0 )
WF.add_well( w ) # add well to field
```
See `examples\wells_example.py` for more.