├── .gitattributes ├── .gitignore ├── 0_python101 └── python101.ipynb ├── 1_data ├── Data.ipynb ├── archive.zip ├── archived_book2.txt ├── book.txt ├── book1.txt ├── book2.txt ├── cupboard │ ├── my_first_sequel.txt │ └── one_last_book.txt ├── different_book.txt ├── knopoff_gardner1974.bkp ├── knopoff_gardner1974.txt ├── my_first_novel.txt ├── nd_eqs.bkp ├── nd_eqs.txt ├── temperature_data.csv ├── temperature_data.xlsx └── txt_files │ ├── archived_book2.txt │ ├── book.txt │ ├── book1.txt │ ├── book2.txt │ ├── different_book.txt │ ├── knopoff_gardner1974.txt │ ├── my_first_novel.txt │ └── nd_eqs.txt ├── 2_visualisation ├── Visualisation.ipynb ├── earthquake_movie.mp4 ├── eq_movie.py ├── groningen_reservoir.png ├── histogram.py ├── img │ ├── cartopy1.png │ ├── cartopy2.png │ ├── cartopy3.png │ └── example1.png ├── line_plot.py ├── mesh_plot.py ├── my_empty_figure.png ├── nd_eqs.txt ├── scatter_plot.png └── scatter_plot.py ├── 3_models ├── Models.ipynb ├── lpm_inversion.py └── uncertainty.ipynb ├── LICENSE.md ├── README.md ├── aznbsetup.sh ├── data ├── PW1.dat ├── poroperm.csv ├── topo.csv ├── wk_pressure_history.csv └── wk_production_history.csv ├── index.ipynb ├── intro.ipynb ├── my_script.py └── quick-start.pdf /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/.gitignore -------------------------------------------------------------------------------- /0_python101/python101.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/0_python101/python101.ipynb -------------------------------------------------------------------------------- /1_data/Data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/1_data/Data.ipynb -------------------------------------------------------------------------------- /1_data/archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/1_data/archive.zip -------------------------------------------------------------------------------- /1_data/archived_book2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/1_data/archived_book2.txt -------------------------------------------------------------------------------- /1_data/book.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/1_data/book.txt -------------------------------------------------------------------------------- /1_data/book1.txt: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /1_data/book2.txt: -------------------------------------------------------------------------------- 1 | some more text -------------------------------------------------------------------------------- /1_data/cupboard/my_first_sequel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/1_data/cupboard/my_first_sequel.txt -------------------------------------------------------------------------------- /1_data/cupboard/one_last_book.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/1_data/cupboard/one_last_book.txt -------------------------------------------------------------------------------- /1_data/different_book.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/1_data/different_book.txt -------------------------------------------------------------------------------- /1_data/knopoff_gardner1974.bkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/1_data/knopoff_gardner1974.bkp -------------------------------------------------------------------------------- /1_data/knopoff_gardner1974.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/1_data/knopoff_gardner1974.txt -------------------------------------------------------------------------------- /1_data/my_first_novel.txt: -------------------------------------------------------------------------------- 1 | Python Odyssey 2 | by David Dempsey -------------------------------------------------------------------------------- /1_data/nd_eqs.bkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/1_data/nd_eqs.bkp -------------------------------------------------------------------------------- /1_data/nd_eqs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/1_data/nd_eqs.txt -------------------------------------------------------------------------------- /1_data/temperature_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/1_data/temperature_data.csv -------------------------------------------------------------------------------- /1_data/temperature_data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/1_data/temperature_data.xlsx -------------------------------------------------------------------------------- /1_data/txt_files/archived_book2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/1_data/txt_files/archived_book2.txt -------------------------------------------------------------------------------- /1_data/txt_files/book.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/1_data/txt_files/book.txt -------------------------------------------------------------------------------- /1_data/txt_files/book1.txt: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /1_data/txt_files/book2.txt: -------------------------------------------------------------------------------- 1 | some more text -------------------------------------------------------------------------------- /1_data/txt_files/different_book.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/1_data/txt_files/different_book.txt -------------------------------------------------------------------------------- /1_data/txt_files/knopoff_gardner1974.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/1_data/txt_files/knopoff_gardner1974.txt -------------------------------------------------------------------------------- /1_data/txt_files/my_first_novel.txt: -------------------------------------------------------------------------------- 1 | Python Odyssey 2 | by David Dempsey -------------------------------------------------------------------------------- /1_data/txt_files/nd_eqs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/1_data/txt_files/nd_eqs.txt -------------------------------------------------------------------------------- /2_visualisation/Visualisation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/2_visualisation/Visualisation.ipynb -------------------------------------------------------------------------------- /2_visualisation/earthquake_movie.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/2_visualisation/earthquake_movie.mp4 -------------------------------------------------------------------------------- /2_visualisation/eq_movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/2_visualisation/eq_movie.py -------------------------------------------------------------------------------- /2_visualisation/groningen_reservoir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/2_visualisation/groningen_reservoir.png -------------------------------------------------------------------------------- /2_visualisation/histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/2_visualisation/histogram.py -------------------------------------------------------------------------------- /2_visualisation/img/cartopy1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/2_visualisation/img/cartopy1.png -------------------------------------------------------------------------------- /2_visualisation/img/cartopy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/2_visualisation/img/cartopy2.png -------------------------------------------------------------------------------- /2_visualisation/img/cartopy3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/2_visualisation/img/cartopy3.png -------------------------------------------------------------------------------- /2_visualisation/img/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/2_visualisation/img/example1.png -------------------------------------------------------------------------------- /2_visualisation/line_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/2_visualisation/line_plot.py -------------------------------------------------------------------------------- /2_visualisation/mesh_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/2_visualisation/mesh_plot.py -------------------------------------------------------------------------------- /2_visualisation/my_empty_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/2_visualisation/my_empty_figure.png -------------------------------------------------------------------------------- /2_visualisation/nd_eqs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/2_visualisation/nd_eqs.txt -------------------------------------------------------------------------------- /2_visualisation/scatter_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/2_visualisation/scatter_plot.png -------------------------------------------------------------------------------- /2_visualisation/scatter_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/2_visualisation/scatter_plot.py -------------------------------------------------------------------------------- /3_models/Models.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/3_models/Models.ipynb -------------------------------------------------------------------------------- /3_models/lpm_inversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/3_models/lpm_inversion.py -------------------------------------------------------------------------------- /3_models/uncertainty.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/3_models/uncertainty.ipynb -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/README.md -------------------------------------------------------------------------------- /aznbsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/aznbsetup.sh -------------------------------------------------------------------------------- /data/PW1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/data/PW1.dat -------------------------------------------------------------------------------- /data/poroperm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/data/poroperm.csv -------------------------------------------------------------------------------- /data/topo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/data/topo.csv -------------------------------------------------------------------------------- /data/wk_pressure_history.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/data/wk_pressure_history.csv -------------------------------------------------------------------------------- /data/wk_production_history.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/data/wk_production_history.csv -------------------------------------------------------------------------------- /index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/index.ipynb -------------------------------------------------------------------------------- /intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/intro.ipynb -------------------------------------------------------------------------------- /my_script.py: -------------------------------------------------------------------------------- 1 | import numpy as np 2 | # a comment 3 | a = 'hello, world' 4 | print(a) -------------------------------------------------------------------------------- /quick-start.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddempsey/python_for_geoscientists/HEAD/quick-start.pdf --------------------------------------------------------------------------------