├── .gitignore ├── LICENSE.txt ├── README.md ├── cheatcodes.py ├── environment.yml ├── gravity-inverse-problems-notes.pdf ├── gravity-inverse-problems-notes.xopp ├── gravity-inversion-solution.ipynb ├── gravity-inversion.ipynb └── images ├── Half-graben_sedimentation.png ├── README.md ├── basin-example1.png ├── basin-example2.png ├── course-advertisement.png ├── course-advertisement.svg ├── gravity-disturbance.png ├── gravity-earth.png └── gravity-normal-earth.png /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compgeolab/2020-aachen-inverse-problems/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compgeolab/2020-aachen-inverse-problems/HEAD/README.md -------------------------------------------------------------------------------- /cheatcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compgeolab/2020-aachen-inverse-problems/HEAD/cheatcodes.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compgeolab/2020-aachen-inverse-problems/HEAD/environment.yml -------------------------------------------------------------------------------- /gravity-inverse-problems-notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compgeolab/2020-aachen-inverse-problems/HEAD/gravity-inverse-problems-notes.pdf -------------------------------------------------------------------------------- /gravity-inverse-problems-notes.xopp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compgeolab/2020-aachen-inverse-problems/HEAD/gravity-inverse-problems-notes.xopp -------------------------------------------------------------------------------- /gravity-inversion-solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compgeolab/2020-aachen-inverse-problems/HEAD/gravity-inversion-solution.ipynb -------------------------------------------------------------------------------- /gravity-inversion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compgeolab/2020-aachen-inverse-problems/HEAD/gravity-inversion.ipynb -------------------------------------------------------------------------------- /images/Half-graben_sedimentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compgeolab/2020-aachen-inverse-problems/HEAD/images/Half-graben_sedimentation.png -------------------------------------------------------------------------------- /images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compgeolab/2020-aachen-inverse-problems/HEAD/images/README.md -------------------------------------------------------------------------------- /images/basin-example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compgeolab/2020-aachen-inverse-problems/HEAD/images/basin-example1.png -------------------------------------------------------------------------------- /images/basin-example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compgeolab/2020-aachen-inverse-problems/HEAD/images/basin-example2.png -------------------------------------------------------------------------------- /images/course-advertisement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compgeolab/2020-aachen-inverse-problems/HEAD/images/course-advertisement.png -------------------------------------------------------------------------------- /images/course-advertisement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compgeolab/2020-aachen-inverse-problems/HEAD/images/course-advertisement.svg -------------------------------------------------------------------------------- /images/gravity-disturbance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compgeolab/2020-aachen-inverse-problems/HEAD/images/gravity-disturbance.png -------------------------------------------------------------------------------- /images/gravity-earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compgeolab/2020-aachen-inverse-problems/HEAD/images/gravity-earth.png -------------------------------------------------------------------------------- /images/gravity-normal-earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compgeolab/2020-aachen-inverse-problems/HEAD/images/gravity-normal-earth.png --------------------------------------------------------------------------------