├── .gitignore ├── LICENSE ├── README.md ├── aznbsetup.sh ├── data ├── 3X_75_PR.SGY ├── EChTISYWkAA6_DV.jpeg ├── EChTISYWkAA6_DV.png ├── P-129.LAS ├── Penobscot_Seabed.npy ├── README.md ├── ZoneA.dat ├── nuclear_test_tweet.png ├── offshore_wells.geojson ├── offshore_wells_2011_Geographic_NAD27.dbf ├── offshore_wells_2011_Geographic_NAD27.prj ├── offshore_wells_2011_Geographic_NAD27.sbn ├── offshore_wells_2011_Geographic_NAD27.sbx ├── offshore_wells_2011_Geographic_NAD27.shp ├── offshore_wells_2011_Geographic_NAD27.shx ├── offshore_wells_2011_UTM20_NAD83.cpg ├── offshore_wells_2011_UTM20_NAD83.dbf ├── offshore_wells_2011_UTM20_NAD83.prj ├── offshore_wells_2011_UTM20_NAD83.shp ├── offshore_wells_2011_UTM20_NAD83.shx └── periods.csv ├── environment.yml └── notebooks ├── 00_Synthetic_wedge_model.ipynb ├── 01_Read_and_write_SEG-Y.ipynb ├── 02_Get_info_from_the_web.ipynb ├── 03_AVO_plot.ipynb ├── 04_Machine_learning.ipynb ├── 05_Read_and_write_SHP.ipynb ├── 06_Read_and_write_CSV.ipynb ├── 07_Find_and_analyse_seismograph_data.ipynb ├── 08_Read_and_write_LAS.ipynb ├── 09_Code_golf_in_Bruges.ipynb ├── 10_Contour_maps.ipynb ├── 11_Gridding_map_data.ipynb ├── 12_Ternary_diagrams.ipynb ├── 13_Physical_units_with_pint.ipynb ├── 14_Loading_images.ipynb ├── 15_Basemaps_with_contextily.ipynb └── 16_Stereonets_with_mplstereonet.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/README.md -------------------------------------------------------------------------------- /aznbsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/aznbsetup.sh -------------------------------------------------------------------------------- /data/3X_75_PR.SGY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/data/3X_75_PR.SGY -------------------------------------------------------------------------------- /data/EChTISYWkAA6_DV.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/data/EChTISYWkAA6_DV.jpeg -------------------------------------------------------------------------------- /data/EChTISYWkAA6_DV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/data/EChTISYWkAA6_DV.png -------------------------------------------------------------------------------- /data/P-129.LAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/data/P-129.LAS -------------------------------------------------------------------------------- /data/Penobscot_Seabed.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/data/Penobscot_Seabed.npy -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/data/README.md -------------------------------------------------------------------------------- /data/ZoneA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/data/ZoneA.dat -------------------------------------------------------------------------------- /data/nuclear_test_tweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/data/nuclear_test_tweet.png -------------------------------------------------------------------------------- /data/offshore_wells.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/data/offshore_wells.geojson -------------------------------------------------------------------------------- /data/offshore_wells_2011_Geographic_NAD27.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/data/offshore_wells_2011_Geographic_NAD27.dbf -------------------------------------------------------------------------------- /data/offshore_wells_2011_Geographic_NAD27.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/data/offshore_wells_2011_Geographic_NAD27.prj -------------------------------------------------------------------------------- /data/offshore_wells_2011_Geographic_NAD27.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/data/offshore_wells_2011_Geographic_NAD27.sbn -------------------------------------------------------------------------------- /data/offshore_wells_2011_Geographic_NAD27.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/data/offshore_wells_2011_Geographic_NAD27.sbx -------------------------------------------------------------------------------- /data/offshore_wells_2011_Geographic_NAD27.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/data/offshore_wells_2011_Geographic_NAD27.shp -------------------------------------------------------------------------------- /data/offshore_wells_2011_Geographic_NAD27.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/data/offshore_wells_2011_Geographic_NAD27.shx -------------------------------------------------------------------------------- /data/offshore_wells_2011_UTM20_NAD83.cpg: -------------------------------------------------------------------------------- 1 | ISO-8859-1 -------------------------------------------------------------------------------- /data/offshore_wells_2011_UTM20_NAD83.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/data/offshore_wells_2011_UTM20_NAD83.dbf -------------------------------------------------------------------------------- /data/offshore_wells_2011_UTM20_NAD83.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/data/offshore_wells_2011_UTM20_NAD83.prj -------------------------------------------------------------------------------- /data/offshore_wells_2011_UTM20_NAD83.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/data/offshore_wells_2011_UTM20_NAD83.shp -------------------------------------------------------------------------------- /data/offshore_wells_2011_UTM20_NAD83.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/data/offshore_wells_2011_UTM20_NAD83.shx -------------------------------------------------------------------------------- /data/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/data/periods.csv -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/environment.yml -------------------------------------------------------------------------------- /notebooks/00_Synthetic_wedge_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/notebooks/00_Synthetic_wedge_model.ipynb -------------------------------------------------------------------------------- /notebooks/01_Read_and_write_SEG-Y.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/notebooks/01_Read_and_write_SEG-Y.ipynb -------------------------------------------------------------------------------- /notebooks/02_Get_info_from_the_web.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/notebooks/02_Get_info_from_the_web.ipynb -------------------------------------------------------------------------------- /notebooks/03_AVO_plot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/notebooks/03_AVO_plot.ipynb -------------------------------------------------------------------------------- /notebooks/04_Machine_learning.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/notebooks/04_Machine_learning.ipynb -------------------------------------------------------------------------------- /notebooks/05_Read_and_write_SHP.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/notebooks/05_Read_and_write_SHP.ipynb -------------------------------------------------------------------------------- /notebooks/06_Read_and_write_CSV.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/notebooks/06_Read_and_write_CSV.ipynb -------------------------------------------------------------------------------- /notebooks/07_Find_and_analyse_seismograph_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/notebooks/07_Find_and_analyse_seismograph_data.ipynb -------------------------------------------------------------------------------- /notebooks/08_Read_and_write_LAS.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/notebooks/08_Read_and_write_LAS.ipynb -------------------------------------------------------------------------------- /notebooks/09_Code_golf_in_Bruges.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/notebooks/09_Code_golf_in_Bruges.ipynb -------------------------------------------------------------------------------- /notebooks/10_Contour_maps.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/notebooks/10_Contour_maps.ipynb -------------------------------------------------------------------------------- /notebooks/11_Gridding_map_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/notebooks/11_Gridding_map_data.ipynb -------------------------------------------------------------------------------- /notebooks/12_Ternary_diagrams.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/notebooks/12_Ternary_diagrams.ipynb -------------------------------------------------------------------------------- /notebooks/13_Physical_units_with_pint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/notebooks/13_Physical_units_with_pint.ipynb -------------------------------------------------------------------------------- /notebooks/14_Loading_images.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/notebooks/14_Loading_images.ipynb -------------------------------------------------------------------------------- /notebooks/15_Basemaps_with_contextily.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/notebooks/15_Basemaps_with_contextily.ipynb -------------------------------------------------------------------------------- /notebooks/16_Stereonets_with_mplstereonet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/xlines/HEAD/notebooks/16_Stereonets_with_mplstereonet.ipynb --------------------------------------------------------------------------------