├── .gitignore ├── Data ├── 6628-21945_lithology.csv ├── 6628-21945_stratigraphy.csv ├── 6628-21945_well_logs.las ├── Boreas1Decim.LAS ├── Kronos1Decim.LAS ├── Pharos1Decim.LAS ├── Pharos_1.dev ├── Poseidon1Decim.LAS ├── Poseidon1_tops.csv ├── Poseidon2Decim.LAS ├── PoseidonNorth1Decim.LAS ├── Poseidon_1.dev ├── Poseidon_2.dev ├── Poseidon_North.dev ├── Proteus1Decim.LAS ├── Proteus_1.dev ├── README FIRST.docx ├── Torosa1LDecim.LAS ├── Torosa_1.dev ├── Well_Headers.csv ├── Well_Headers.xlsx ├── data-notebooks │ ├── Kronos formation strat log.ipynb │ └── Load_Locations_From_Las.ipynb ├── kronos_1_strat.csv ├── public wells poseidon 3D Petrel project.zip └── ~$Well_Headers.xlsx ├── LICENSE ├── Notebooks ├── Box-Plots-Histograms_Multiple_wells.ipynb ├── Kieran_PetPy_Experiments.ipynb ├── Lithology.ipynb ├── Load well data using Welly.ipynb ├── Stratigraphy and Lithology in functions and as subplots together.ipynb ├── Stratigraphy.ipynb ├── WellHeads.ipynb ├── WellLog plotly go.Figure wrapper.ipynb ├── dashwellviz WellLog example.ipynb ├── lithology.gif └── load_multiple_wells.ipynb ├── README.md ├── dashwellviz ├── __init__.py ├── figures.py ├── multiload.py └── utils.py ├── demo ├── Demo_plotly.ipynb ├── Jupyter_Dash_Demo.ipynb ├── README.md ├── dash_app.py └── requirements.txt ├── setup.py ├── simple_dash_layout ├── assets │ ├── header.css │ └── img │ │ └── swung_round_no_text.png ├── dash_app.py └── helper.py ├── strat_lith.gif └── well_picks ├── Exploration1.ipynb ├── Exploration2.ipynb ├── app.py ├── plotly well tops.ipynb └── tops.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/.gitignore -------------------------------------------------------------------------------- /Data/6628-21945_lithology.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/6628-21945_lithology.csv -------------------------------------------------------------------------------- /Data/6628-21945_stratigraphy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/6628-21945_stratigraphy.csv -------------------------------------------------------------------------------- /Data/6628-21945_well_logs.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/6628-21945_well_logs.las -------------------------------------------------------------------------------- /Data/Boreas1Decim.LAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/Boreas1Decim.LAS -------------------------------------------------------------------------------- /Data/Kronos1Decim.LAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/Kronos1Decim.LAS -------------------------------------------------------------------------------- /Data/Pharos1Decim.LAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/Pharos1Decim.LAS -------------------------------------------------------------------------------- /Data/Pharos_1.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/Pharos_1.dev -------------------------------------------------------------------------------- /Data/Poseidon1Decim.LAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/Poseidon1Decim.LAS -------------------------------------------------------------------------------- /Data/Poseidon1_tops.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/Poseidon1_tops.csv -------------------------------------------------------------------------------- /Data/Poseidon2Decim.LAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/Poseidon2Decim.LAS -------------------------------------------------------------------------------- /Data/PoseidonNorth1Decim.LAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/PoseidonNorth1Decim.LAS -------------------------------------------------------------------------------- /Data/Poseidon_1.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/Poseidon_1.dev -------------------------------------------------------------------------------- /Data/Poseidon_2.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/Poseidon_2.dev -------------------------------------------------------------------------------- /Data/Poseidon_North.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/Poseidon_North.dev -------------------------------------------------------------------------------- /Data/Proteus1Decim.LAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/Proteus1Decim.LAS -------------------------------------------------------------------------------- /Data/Proteus_1.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/Proteus_1.dev -------------------------------------------------------------------------------- /Data/README FIRST.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/README FIRST.docx -------------------------------------------------------------------------------- /Data/Torosa1LDecim.LAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/Torosa1LDecim.LAS -------------------------------------------------------------------------------- /Data/Torosa_1.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/Torosa_1.dev -------------------------------------------------------------------------------- /Data/Well_Headers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/Well_Headers.csv -------------------------------------------------------------------------------- /Data/Well_Headers.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/Well_Headers.xlsx -------------------------------------------------------------------------------- /Data/data-notebooks/Kronos formation strat log.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/data-notebooks/Kronos formation strat log.ipynb -------------------------------------------------------------------------------- /Data/data-notebooks/Load_Locations_From_Las.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/data-notebooks/Load_Locations_From_Las.ipynb -------------------------------------------------------------------------------- /Data/kronos_1_strat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/kronos_1_strat.csv -------------------------------------------------------------------------------- /Data/public wells poseidon 3D Petrel project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/public wells poseidon 3D Petrel project.zip -------------------------------------------------------------------------------- /Data/~$Well_Headers.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Data/~$Well_Headers.xlsx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/LICENSE -------------------------------------------------------------------------------- /Notebooks/Box-Plots-Histograms_Multiple_wells.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Notebooks/Box-Plots-Histograms_Multiple_wells.ipynb -------------------------------------------------------------------------------- /Notebooks/Kieran_PetPy_Experiments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Notebooks/Kieran_PetPy_Experiments.ipynb -------------------------------------------------------------------------------- /Notebooks/Lithology.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Notebooks/Lithology.ipynb -------------------------------------------------------------------------------- /Notebooks/Load well data using Welly.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Notebooks/Load well data using Welly.ipynb -------------------------------------------------------------------------------- /Notebooks/Stratigraphy and Lithology in functions and as subplots together.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Notebooks/Stratigraphy and Lithology in functions and as subplots together.ipynb -------------------------------------------------------------------------------- /Notebooks/Stratigraphy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Notebooks/Stratigraphy.ipynb -------------------------------------------------------------------------------- /Notebooks/WellHeads.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Notebooks/WellHeads.ipynb -------------------------------------------------------------------------------- /Notebooks/WellLog plotly go.Figure wrapper.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Notebooks/WellLog plotly go.Figure wrapper.ipynb -------------------------------------------------------------------------------- /Notebooks/dashwellviz WellLog example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Notebooks/dashwellviz WellLog example.ipynb -------------------------------------------------------------------------------- /Notebooks/lithology.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Notebooks/lithology.gif -------------------------------------------------------------------------------- /Notebooks/load_multiple_wells.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/Notebooks/load_multiple_wells.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/README.md -------------------------------------------------------------------------------- /dashwellviz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashwellviz/figures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/dashwellviz/figures.py -------------------------------------------------------------------------------- /dashwellviz/multiload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/dashwellviz/multiload.py -------------------------------------------------------------------------------- /dashwellviz/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/dashwellviz/utils.py -------------------------------------------------------------------------------- /demo/Demo_plotly.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/demo/Demo_plotly.ipynb -------------------------------------------------------------------------------- /demo/Jupyter_Dash_Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/demo/Jupyter_Dash_Demo.ipynb -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/dash_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/demo/dash_app.py -------------------------------------------------------------------------------- /demo/requirements.txt: -------------------------------------------------------------------------------- 1 | dash 2 | plotly -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/setup.py -------------------------------------------------------------------------------- /simple_dash_layout/assets/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/simple_dash_layout/assets/header.css -------------------------------------------------------------------------------- /simple_dash_layout/assets/img/swung_round_no_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/simple_dash_layout/assets/img/swung_round_no_text.png -------------------------------------------------------------------------------- /simple_dash_layout/dash_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/simple_dash_layout/dash_app.py -------------------------------------------------------------------------------- /simple_dash_layout/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/simple_dash_layout/helper.py -------------------------------------------------------------------------------- /strat_lith.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/strat_lith.gif -------------------------------------------------------------------------------- /well_picks/Exploration1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/well_picks/Exploration1.ipynb -------------------------------------------------------------------------------- /well_picks/Exploration2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/well_picks/Exploration2.ipynb -------------------------------------------------------------------------------- /well_picks/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/well_picks/app.py -------------------------------------------------------------------------------- /well_picks/plotly well tops.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/well_picks/plotly well tops.ipynb -------------------------------------------------------------------------------- /well_picks/tops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyTheGeolien/t20-Dash_Well_Viz/HEAD/well_picks/tops.json --------------------------------------------------------------------------------