Skip to content

postpdm/EarthSciPy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EarthSciPy

Documentation Status

Python library for Earth science (main in geology and petro science).

Requirements

Python 3.3 or above.

Testing

python3 -m unittest tests/wells_tests.py

Usage example

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.

Releases

No releases published

Packages

No packages published

Languages