├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.rst ├── changelog.md ├── doc ├── api.rst ├── auto_examples │ ├── auto_examples_jupyter.zip │ ├── auto_examples_python.zip │ ├── images │ │ └── thumb │ │ │ ├── sphx_glr_wolfcamp_bulk_thumb.png │ │ │ └── sphx_glr_wolfcamp_single_thumb.png │ ├── index.rst │ ├── wolfcamp_bulk.ipynb │ ├── wolfcamp_bulk.py │ ├── wolfcamp_bulk.rst │ ├── wolfcamp_bulk_codeobj.pickle │ ├── wolfcamp_single.ipynb │ ├── wolfcamp_single.py │ ├── wolfcamp_single.rst │ └── wolfcamp_single_codeobj.pickle ├── class │ ├── Log.rst │ └── LogViewer.rst ├── conf.py ├── function │ ├── dataset.rst │ ├── download.rst │ └── electrofacies.rst ├── index.rst ├── modules │ └── generated │ │ ├── petropy.Log.add_pay_flag.examples │ │ ├── petropy.Log.examples │ │ ├── petropy.Log.fluid_properties.examples │ │ ├── petropy.Log.fluid_properties_parameters_from_csv.examples │ │ ├── petropy.Log.formation_fluid_properties.examples │ │ ├── petropy.Log.formation_multimineral_model.examples │ │ ├── petropy.Log.multimineral_model.examples │ │ ├── petropy.Log.multimineral_parameters_from_csv.examples │ │ ├── petropy.Log.next_formation_depth.examples │ │ ├── petropy.Log.precondition.examples │ │ ├── petropy.Log.statistics.examples │ │ ├── petropy.Log.statistics_to_csv.examples │ │ ├── petropy.Log.summations.examples │ │ ├── petropy.Log.to_csv.examples │ │ ├── petropy.Log.tops_from_csv.examples │ │ ├── petropy.Log.write.examples │ │ ├── petropy.LogViewer.examples │ │ ├── petropy.LogViewer.show.examples │ │ ├── petropy.create_log_inventory_table.examples │ │ ├── petropy.electrofacies.examples │ │ ├── petropy.kgs_download.examples │ │ ├── petropy.log_data.examples │ │ └── petropy.ul_lands_download.examples └── static │ ├── fluid_properties_parameters.csv │ ├── multimineral_parameters.csv │ ├── petropy_logo.png │ ├── petropy_logo_icon.ico │ ├── petropy_logo_square.png │ ├── tops.csv │ └── university_6-18W_no1.png ├── examples ├── 42303347740000.las ├── README.txt ├── UNIVERSITY 6-17 NO1_processed.las ├── UNIVERSITY 6-17 NO1_processed.png ├── company_logo.png ├── tops.csv ├── wfmp_edited_las │ ├── UNIVERSITY 6-17 NO1_edited.las │ ├── UNIVERSITY 6-18W NO1_edited.las │ └── UNIVERSITY 6-7 NO1_edited.las ├── wfmp_processed_las │ ├── UNIVERSITY 6-17 NO1_processed.las │ ├── UNIVERSITY 6-17 NO1_processed.png │ ├── UNIVERSITY 6-18W NO1_processed.las │ ├── UNIVERSITY 6-18W NO1_processed.png │ ├── UNIVERSITY 6-7 NO1_processed.las │ ├── UNIVERSITY 6-7 NO1_processed.png │ └── wfmp_statistics.csv ├── wfmp_raw_las │ ├── 38334746.las │ ├── 38334774.las │ ├── 38334800.las │ └── wfmp_tops.csv ├── wfmp_statistics.csv ├── wolfcamp_bulk.py └── wolfcamp_single.py ├── make.bat ├── petropy ├── __init__.py ├── data │ ├── 42303347740000.las │ ├── curve_alias.xml │ ├── default_gas_full_template.xml │ ├── default_multimin_gas_sum_template.xml │ ├── default_multimin_gas_template.xml │ ├── default_multimin_oil_sum_template.xml │ ├── default_multimin_oil_template.xml │ ├── default_oil_full_template.xml │ ├── default_raw_template.xml │ ├── fluid_properties_parameters.csv │ ├── images │ │ ├── bulk.png │ │ ├── draw.png │ │ └── save.png │ ├── multimineral_parameters.csv │ └── tops.csv ├── datasets.py ├── download.py ├── electrofacies.py ├── graphs.py └── log.py ├── petropy_logo.png ├── requirements.txt ├── setup.py └── university_6-18W_no1.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/README.rst -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/changelog.md -------------------------------------------------------------------------------- /doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/api.rst -------------------------------------------------------------------------------- /doc/auto_examples/auto_examples_jupyter.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/auto_examples/auto_examples_jupyter.zip -------------------------------------------------------------------------------- /doc/auto_examples/auto_examples_python.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/auto_examples/auto_examples_python.zip -------------------------------------------------------------------------------- /doc/auto_examples/images/thumb/sphx_glr_wolfcamp_bulk_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/auto_examples/images/thumb/sphx_glr_wolfcamp_bulk_thumb.png -------------------------------------------------------------------------------- /doc/auto_examples/images/thumb/sphx_glr_wolfcamp_single_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/auto_examples/images/thumb/sphx_glr_wolfcamp_single_thumb.png -------------------------------------------------------------------------------- /doc/auto_examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/auto_examples/index.rst -------------------------------------------------------------------------------- /doc/auto_examples/wolfcamp_bulk.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/auto_examples/wolfcamp_bulk.ipynb -------------------------------------------------------------------------------- /doc/auto_examples/wolfcamp_bulk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/auto_examples/wolfcamp_bulk.py -------------------------------------------------------------------------------- /doc/auto_examples/wolfcamp_bulk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/auto_examples/wolfcamp_bulk.rst -------------------------------------------------------------------------------- /doc/auto_examples/wolfcamp_bulk_codeobj.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/auto_examples/wolfcamp_bulk_codeobj.pickle -------------------------------------------------------------------------------- /doc/auto_examples/wolfcamp_single.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/auto_examples/wolfcamp_single.ipynb -------------------------------------------------------------------------------- /doc/auto_examples/wolfcamp_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/auto_examples/wolfcamp_single.py -------------------------------------------------------------------------------- /doc/auto_examples/wolfcamp_single.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/auto_examples/wolfcamp_single.rst -------------------------------------------------------------------------------- /doc/auto_examples/wolfcamp_single_codeobj.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/auto_examples/wolfcamp_single_codeobj.pickle -------------------------------------------------------------------------------- /doc/class/Log.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/class/Log.rst -------------------------------------------------------------------------------- /doc/class/LogViewer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/class/LogViewer.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/function/dataset.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/function/dataset.rst -------------------------------------------------------------------------------- /doc/function/download.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/function/download.rst -------------------------------------------------------------------------------- /doc/function/electrofacies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/function/electrofacies.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/modules/generated/petropy.Log.add_pay_flag.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/modules/generated/petropy.Log.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/modules/generated/petropy.Log.fluid_properties.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/modules/generated/petropy.Log.fluid_properties_parameters_from_csv.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/modules/generated/petropy.Log.formation_fluid_properties.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/modules/generated/petropy.Log.formation_multimineral_model.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/modules/generated/petropy.Log.multimineral_model.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/modules/generated/petropy.Log.multimineral_parameters_from_csv.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/modules/generated/petropy.Log.next_formation_depth.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/modules/generated/petropy.Log.precondition.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/modules/generated/petropy.Log.statistics.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/modules/generated/petropy.Log.statistics_to_csv.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/modules/generated/petropy.Log.summations.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/modules/generated/petropy.Log.to_csv.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/modules/generated/petropy.Log.tops_from_csv.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/modules/generated/petropy.Log.write.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/modules/generated/petropy.LogViewer.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/modules/generated/petropy.LogViewer.show.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/modules/generated/petropy.create_log_inventory_table.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/modules/generated/petropy.electrofacies.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/modules/generated/petropy.kgs_download.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/modules/generated/petropy.log_data.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/modules/generated/petropy.ul_lands_download.examples: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/static/fluid_properties_parameters.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/static/fluid_properties_parameters.csv -------------------------------------------------------------------------------- /doc/static/multimineral_parameters.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/static/multimineral_parameters.csv -------------------------------------------------------------------------------- /doc/static/petropy_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/static/petropy_logo.png -------------------------------------------------------------------------------- /doc/static/petropy_logo_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/static/petropy_logo_icon.ico -------------------------------------------------------------------------------- /doc/static/petropy_logo_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/static/petropy_logo_square.png -------------------------------------------------------------------------------- /doc/static/tops.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/static/tops.csv -------------------------------------------------------------------------------- /doc/static/university_6-18W_no1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/doc/static/university_6-18W_no1.png -------------------------------------------------------------------------------- /examples/42303347740000.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/42303347740000.las -------------------------------------------------------------------------------- /examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/README.txt -------------------------------------------------------------------------------- /examples/UNIVERSITY 6-17 NO1_processed.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/UNIVERSITY 6-17 NO1_processed.las -------------------------------------------------------------------------------- /examples/UNIVERSITY 6-17 NO1_processed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/UNIVERSITY 6-17 NO1_processed.png -------------------------------------------------------------------------------- /examples/company_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/company_logo.png -------------------------------------------------------------------------------- /examples/tops.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/tops.csv -------------------------------------------------------------------------------- /examples/wfmp_edited_las/UNIVERSITY 6-17 NO1_edited.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/wfmp_edited_las/UNIVERSITY 6-17 NO1_edited.las -------------------------------------------------------------------------------- /examples/wfmp_edited_las/UNIVERSITY 6-18W NO1_edited.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/wfmp_edited_las/UNIVERSITY 6-18W NO1_edited.las -------------------------------------------------------------------------------- /examples/wfmp_edited_las/UNIVERSITY 6-7 NO1_edited.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/wfmp_edited_las/UNIVERSITY 6-7 NO1_edited.las -------------------------------------------------------------------------------- /examples/wfmp_processed_las/UNIVERSITY 6-17 NO1_processed.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/wfmp_processed_las/UNIVERSITY 6-17 NO1_processed.las -------------------------------------------------------------------------------- /examples/wfmp_processed_las/UNIVERSITY 6-17 NO1_processed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/wfmp_processed_las/UNIVERSITY 6-17 NO1_processed.png -------------------------------------------------------------------------------- /examples/wfmp_processed_las/UNIVERSITY 6-18W NO1_processed.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/wfmp_processed_las/UNIVERSITY 6-18W NO1_processed.las -------------------------------------------------------------------------------- /examples/wfmp_processed_las/UNIVERSITY 6-18W NO1_processed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/wfmp_processed_las/UNIVERSITY 6-18W NO1_processed.png -------------------------------------------------------------------------------- /examples/wfmp_processed_las/UNIVERSITY 6-7 NO1_processed.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/wfmp_processed_las/UNIVERSITY 6-7 NO1_processed.las -------------------------------------------------------------------------------- /examples/wfmp_processed_las/UNIVERSITY 6-7 NO1_processed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/wfmp_processed_las/UNIVERSITY 6-7 NO1_processed.png -------------------------------------------------------------------------------- /examples/wfmp_processed_las/wfmp_statistics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/wfmp_processed_las/wfmp_statistics.csv -------------------------------------------------------------------------------- /examples/wfmp_raw_las/38334746.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/wfmp_raw_las/38334746.las -------------------------------------------------------------------------------- /examples/wfmp_raw_las/38334774.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/wfmp_raw_las/38334774.las -------------------------------------------------------------------------------- /examples/wfmp_raw_las/38334800.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/wfmp_raw_las/38334800.las -------------------------------------------------------------------------------- /examples/wfmp_raw_las/wfmp_tops.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/wfmp_raw_las/wfmp_tops.csv -------------------------------------------------------------------------------- /examples/wfmp_statistics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/wfmp_statistics.csv -------------------------------------------------------------------------------- /examples/wolfcamp_bulk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/wolfcamp_bulk.py -------------------------------------------------------------------------------- /examples/wolfcamp_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/examples/wolfcamp_single.py -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/make.bat -------------------------------------------------------------------------------- /petropy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/petropy/__init__.py -------------------------------------------------------------------------------- /petropy/data/42303347740000.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/petropy/data/42303347740000.las -------------------------------------------------------------------------------- /petropy/data/curve_alias.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/petropy/data/curve_alias.xml -------------------------------------------------------------------------------- /petropy/data/default_gas_full_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/petropy/data/default_gas_full_template.xml -------------------------------------------------------------------------------- /petropy/data/default_multimin_gas_sum_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/petropy/data/default_multimin_gas_sum_template.xml -------------------------------------------------------------------------------- /petropy/data/default_multimin_gas_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/petropy/data/default_multimin_gas_template.xml -------------------------------------------------------------------------------- /petropy/data/default_multimin_oil_sum_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/petropy/data/default_multimin_oil_sum_template.xml -------------------------------------------------------------------------------- /petropy/data/default_multimin_oil_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/petropy/data/default_multimin_oil_template.xml -------------------------------------------------------------------------------- /petropy/data/default_oil_full_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/petropy/data/default_oil_full_template.xml -------------------------------------------------------------------------------- /petropy/data/default_raw_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/petropy/data/default_raw_template.xml -------------------------------------------------------------------------------- /petropy/data/fluid_properties_parameters.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/petropy/data/fluid_properties_parameters.csv -------------------------------------------------------------------------------- /petropy/data/images/bulk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/petropy/data/images/bulk.png -------------------------------------------------------------------------------- /petropy/data/images/draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/petropy/data/images/draw.png -------------------------------------------------------------------------------- /petropy/data/images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/petropy/data/images/save.png -------------------------------------------------------------------------------- /petropy/data/multimineral_parameters.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/petropy/data/multimineral_parameters.csv -------------------------------------------------------------------------------- /petropy/data/tops.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/petropy/data/tops.csv -------------------------------------------------------------------------------- /petropy/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/petropy/datasets.py -------------------------------------------------------------------------------- /petropy/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/petropy/download.py -------------------------------------------------------------------------------- /petropy/electrofacies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/petropy/electrofacies.py -------------------------------------------------------------------------------- /petropy/graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/petropy/graphs.py -------------------------------------------------------------------------------- /petropy/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/petropy/log.py -------------------------------------------------------------------------------- /petropy_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/petropy_logo.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/setup.py -------------------------------------------------------------------------------- /university_6-18W_no1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddheitmann/PetroPy/HEAD/university_6-18W_no1.png --------------------------------------------------------------------------------