├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── aznbsetup.sh ├── data ├── E-38.las ├── P-129_out.LAS ├── R-39.las └── qsiwell2_frm.csv ├── dev └── Ray-tracing.ipynb ├── environment.yml ├── notebooks ├── Average_curves_from_dataframe.ipynb ├── Offset_reflectivity.ipynb ├── Seismic_attributes_with_bruges.ipynb ├── Wedges.ipynb ├── Windowed_attribute_statistics.ipynb └── n-dimensional_convolution.ipynb └── notebooks_dev ├── AVO_in_TI.ipynb ├── Backus.ipynb ├── Backus_from_dataframe.ipynb ├── Backus_from_dataframe_experiments.ipynb ├── Bruges_hacking.ipynb ├── Code_golf.ipynb ├── Contact_model.ipynb ├── Coordinate_transformation_rotated_survey.ipynb ├── Elastic_modulus_expressions.ipynb ├── Fluidsubs_from_ezygeo-ai_for_checking.ipynb ├── Horizon_filtering.ipynb ├── Log_interpolation_between_wells.ipynb ├── Non-white_Ormsby.ipynb ├── Time-depth_conversion_hacking.ipynb ├── Wavelets.ipynb ├── Wedges_3D.ipynb ├── Wedges_and_sigmoids_from_logs.ipynb ├── Wedges_flexible.ipynb ├── Welcome_to_bruges.ipynb └── nd_spectrogram_and_specdecomp.ipynb /.gitattributes: -------------------------------------------------------------------------------- 1 | *.las -linguist-detectable 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/README.md -------------------------------------------------------------------------------- /aznbsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/aznbsetup.sh -------------------------------------------------------------------------------- /data/E-38.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/data/E-38.las -------------------------------------------------------------------------------- /data/P-129_out.LAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/data/P-129_out.LAS -------------------------------------------------------------------------------- /data/R-39.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/data/R-39.las -------------------------------------------------------------------------------- /data/qsiwell2_frm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/data/qsiwell2_frm.csv -------------------------------------------------------------------------------- /dev/Ray-tracing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/dev/Ray-tracing.ipynb -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/environment.yml -------------------------------------------------------------------------------- /notebooks/Average_curves_from_dataframe.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks/Average_curves_from_dataframe.ipynb -------------------------------------------------------------------------------- /notebooks/Offset_reflectivity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks/Offset_reflectivity.ipynb -------------------------------------------------------------------------------- /notebooks/Seismic_attributes_with_bruges.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks/Seismic_attributes_with_bruges.ipynb -------------------------------------------------------------------------------- /notebooks/Wedges.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks/Wedges.ipynb -------------------------------------------------------------------------------- /notebooks/Windowed_attribute_statistics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks/Windowed_attribute_statistics.ipynb -------------------------------------------------------------------------------- /notebooks/n-dimensional_convolution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks/n-dimensional_convolution.ipynb -------------------------------------------------------------------------------- /notebooks_dev/AVO_in_TI.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks_dev/AVO_in_TI.ipynb -------------------------------------------------------------------------------- /notebooks_dev/Backus.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks_dev/Backus.ipynb -------------------------------------------------------------------------------- /notebooks_dev/Backus_from_dataframe.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks_dev/Backus_from_dataframe.ipynb -------------------------------------------------------------------------------- /notebooks_dev/Backus_from_dataframe_experiments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks_dev/Backus_from_dataframe_experiments.ipynb -------------------------------------------------------------------------------- /notebooks_dev/Bruges_hacking.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks_dev/Bruges_hacking.ipynb -------------------------------------------------------------------------------- /notebooks_dev/Code_golf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks_dev/Code_golf.ipynb -------------------------------------------------------------------------------- /notebooks_dev/Contact_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks_dev/Contact_model.ipynb -------------------------------------------------------------------------------- /notebooks_dev/Coordinate_transformation_rotated_survey.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks_dev/Coordinate_transformation_rotated_survey.ipynb -------------------------------------------------------------------------------- /notebooks_dev/Elastic_modulus_expressions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks_dev/Elastic_modulus_expressions.ipynb -------------------------------------------------------------------------------- /notebooks_dev/Fluidsubs_from_ezygeo-ai_for_checking.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks_dev/Fluidsubs_from_ezygeo-ai_for_checking.ipynb -------------------------------------------------------------------------------- /notebooks_dev/Horizon_filtering.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks_dev/Horizon_filtering.ipynb -------------------------------------------------------------------------------- /notebooks_dev/Log_interpolation_between_wells.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks_dev/Log_interpolation_between_wells.ipynb -------------------------------------------------------------------------------- /notebooks_dev/Non-white_Ormsby.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks_dev/Non-white_Ormsby.ipynb -------------------------------------------------------------------------------- /notebooks_dev/Time-depth_conversion_hacking.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks_dev/Time-depth_conversion_hacking.ipynb -------------------------------------------------------------------------------- /notebooks_dev/Wavelets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks_dev/Wavelets.ipynb -------------------------------------------------------------------------------- /notebooks_dev/Wedges_3D.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks_dev/Wedges_3D.ipynb -------------------------------------------------------------------------------- /notebooks_dev/Wedges_and_sigmoids_from_logs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks_dev/Wedges_and_sigmoids_from_logs.ipynb -------------------------------------------------------------------------------- /notebooks_dev/Wedges_flexible.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks_dev/Wedges_flexible.ipynb -------------------------------------------------------------------------------- /notebooks_dev/Welcome_to_bruges.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks_dev/Welcome_to_bruges.ipynb -------------------------------------------------------------------------------- /notebooks_dev/nd_spectrogram_and_specdecomp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilescientific/in-bruges/HEAD/notebooks_dev/nd_spectrogram_and_specdecomp.ipynb --------------------------------------------------------------------------------