├── .flake8 ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── feature_request.md │ └── questions-.md └── workflows │ ├── CD.yml │ └── integrate.yml ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── README.pdf ├── README.rst ├── conda ├── conda-build.py ├── conda_build_config.yaml └── meta.yaml ├── dependencies.txt ├── docker-compose.yml ├── docs ├── GEOLOGY_CLIP.png ├── Makefile ├── Untitled.png ├── make.bat └── source │ ├── _static │ ├── getting_started │ │ ├── index.rst │ │ └── installation.rst │ └── user_guide │ │ ├── api.rst │ │ ├── index.rst │ │ ├── preparing_map.rst │ │ └── using_loopstructural.rst │ ├── _templates │ ├── custom-class-template.rst │ ├── custom-module-template.rst │ ├── custom.css │ └── page.html │ ├── conf.py │ └── index.rst ├── engines ├── gempy-requirements.txt └── noddy ├── map2loop ├── Geophysics.py ├── SpaceTime.py ├── __init__.py ├── bin │ └── map2model ├── config.py ├── deformation_history.py ├── m2l_enums.py ├── m2l_export.py ├── m2l_geometry.py ├── m2l_interpolation.py ├── m2l_map_checker.py ├── m2l_utils.py ├── map.py ├── map2graph.py ├── mapdata.py ├── process │ └── basal_contacts.py ├── project.py ├── stratigraphic_column.py └── topology.py ├── readme2.md ├── scratch └── last_area.csv └── setup.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/questions-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/.github/ISSUE_TEMPLATE/questions-.md -------------------------------------------------------------------------------- /.github/workflows/CD.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/.github/workflows/CD.yml -------------------------------------------------------------------------------- /.github/workflows/integrate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/.github/workflows/integrate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/README.md -------------------------------------------------------------------------------- /README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/README.pdf -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/README.rst -------------------------------------------------------------------------------- /conda/conda-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/conda/conda-build.py -------------------------------------------------------------------------------- /conda/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/conda/conda_build_config.yaml -------------------------------------------------------------------------------- /conda/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/conda/meta.yaml -------------------------------------------------------------------------------- /dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/dependencies.txt -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/GEOLOGY_CLIP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/docs/GEOLOGY_CLIP.png -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/docs/Untitled.png -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/getting_started/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/docs/source/_static/getting_started/index.rst -------------------------------------------------------------------------------- /docs/source/_static/getting_started/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/docs/source/_static/getting_started/installation.rst -------------------------------------------------------------------------------- /docs/source/_static/user_guide/api.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/_static/user_guide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/docs/source/_static/user_guide/index.rst -------------------------------------------------------------------------------- /docs/source/_static/user_guide/preparing_map.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/_static/user_guide/using_loopstructural.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/_templates/custom-class-template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/docs/source/_templates/custom-class-template.rst -------------------------------------------------------------------------------- /docs/source/_templates/custom-module-template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/docs/source/_templates/custom-module-template.rst -------------------------------------------------------------------------------- /docs/source/_templates/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/docs/source/_templates/custom.css -------------------------------------------------------------------------------- /docs/source/_templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/docs/source/_templates/page.html -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /engines/gempy-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/engines/gempy-requirements.txt -------------------------------------------------------------------------------- /engines/noddy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/engines/noddy -------------------------------------------------------------------------------- /map2loop/Geophysics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/map2loop/Geophysics.py -------------------------------------------------------------------------------- /map2loop/SpaceTime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/map2loop/SpaceTime.py -------------------------------------------------------------------------------- /map2loop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/map2loop/__init__.py -------------------------------------------------------------------------------- /map2loop/bin/map2model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/map2loop/bin/map2model -------------------------------------------------------------------------------- /map2loop/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/map2loop/config.py -------------------------------------------------------------------------------- /map2loop/deformation_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/map2loop/deformation_history.py -------------------------------------------------------------------------------- /map2loop/m2l_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/map2loop/m2l_enums.py -------------------------------------------------------------------------------- /map2loop/m2l_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/map2loop/m2l_export.py -------------------------------------------------------------------------------- /map2loop/m2l_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/map2loop/m2l_geometry.py -------------------------------------------------------------------------------- /map2loop/m2l_interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/map2loop/m2l_interpolation.py -------------------------------------------------------------------------------- /map2loop/m2l_map_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/map2loop/m2l_map_checker.py -------------------------------------------------------------------------------- /map2loop/m2l_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/map2loop/m2l_utils.py -------------------------------------------------------------------------------- /map2loop/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/map2loop/map.py -------------------------------------------------------------------------------- /map2loop/map2graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/map2loop/map2graph.py -------------------------------------------------------------------------------- /map2loop/mapdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/map2loop/mapdata.py -------------------------------------------------------------------------------- /map2loop/process/basal_contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/map2loop/process/basal_contacts.py -------------------------------------------------------------------------------- /map2loop/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/map2loop/project.py -------------------------------------------------------------------------------- /map2loop/stratigraphic_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/map2loop/stratigraphic_column.py -------------------------------------------------------------------------------- /map2loop/topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/map2loop/topology.py -------------------------------------------------------------------------------- /readme2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/readme2.md -------------------------------------------------------------------------------- /scratch/last_area.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/scratch/last_area.csv -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Loop3D/map2loop-2-legacy/HEAD/setup.py --------------------------------------------------------------------------------