├── .clang-format ├── .clang-tidy ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── deploy.yml │ ├── manual_release.yml │ ├── merge_request.yml │ ├── pr_update.yml │ ├── prepare_deploy.yml │ ├── schedule.yml │ ├── test.yml │ └── test_pr.yml ├── .gitignore ├── .releaserc ├── .vscode └── settings.json ├── CMakeLists.txt ├── COPYLEFT ├── LICENSE ├── README.md ├── bindings └── python │ ├── CMakeLists.txt │ ├── explicit.py │ ├── implicit.py │ ├── requirements.in │ ├── src │ ├── CMakeLists.txt │ ├── common.hpp │ ├── explicit │ │ ├── CMakeLists.txt │ │ ├── explicit.cpp │ │ ├── geometry │ │ │ ├── crs.hpp │ │ │ └── crs_helper.hpp │ │ ├── mixin │ │ │ ├── builder │ │ │ │ ├── fault_blocks_builder.hpp │ │ │ │ ├── faults_builder.hpp │ │ │ │ ├── horizons_builder.hpp │ │ │ │ └── stratigraphic_units_builder.hpp │ │ │ └── core │ │ │ │ ├── fault.hpp │ │ │ │ ├── fault_block.hpp │ │ │ │ ├── fault_blocks.hpp │ │ │ │ ├── faults.hpp │ │ │ │ ├── horizon.hpp │ │ │ │ ├── horizons.hpp │ │ │ │ ├── stratigraphic_unit.hpp │ │ │ │ └── stratigraphic_units.hpp │ │ └── representation │ │ │ ├── builder │ │ │ ├── cross_section_builder.hpp │ │ │ └── structural_model_builder.hpp │ │ │ ├── core │ │ │ ├── cross_section.hpp │ │ │ └── structural_model.hpp │ │ │ └── io │ │ │ ├── cross_section.hpp │ │ │ └── structural_model.hpp │ ├── factory.hpp │ └── implicit │ │ ├── CMakeLists.txt │ │ ├── geometry │ │ └── stratigraphic_point.hpp │ │ ├── implicit.cpp │ │ ├── mixin │ │ ├── builder │ │ │ └── stratigraphic_relationships_builder.hpp │ │ └── core │ │ │ └── stratigraphic_relationships.hpp │ │ └── representation │ │ ├── builder │ │ ├── horizons_stack_builder.hpp │ │ ├── implicit_cross_section_builder.hpp │ │ ├── implicit_structural_model_builder.hpp │ │ ├── stratigraphic_model_builder.hpp │ │ └── stratigraphic_section_builder.hpp │ │ ├── core │ │ ├── helpers.hpp │ │ ├── horizons_stack.hpp │ │ ├── implicit_cross_section.hpp │ │ ├── implicit_structural_model.hpp │ │ ├── stratigraphic_model.hpp │ │ └── stratigraphic_section.hpp │ │ └── io │ │ ├── horizons_stack.hpp │ │ ├── implicit_cross_section.hpp │ │ ├── implicit_structural_model.hpp │ │ ├── stratigraphic_model.hpp │ │ └── stratigraphic_section.hpp │ └── tests │ ├── CMakeLists.txt │ ├── explicit │ ├── CMakeLists.txt │ ├── test-py-cross-section.py │ ├── test-py-geographic-coordinate-system.py │ └── test-py-structural-model.py │ └── implicit │ ├── CMakeLists.txt │ ├── test-py-horizons-stack.py │ ├── test-py-stratigraphic-model.py │ └── test-py-stratigraphic-section.py ├── cmake ├── Doxyfile.in ├── OpenGeode-GeosciencesConfig.cmake.in └── version.rc.in ├── commitlint.config.js ├── include └── geode │ └── geosciences │ ├── explicit │ ├── common.hpp │ ├── geometry │ │ ├── geographic_coordinate_system.hpp │ │ └── geographic_coordinate_system_helper.hpp │ ├── mixin │ │ ├── builder │ │ │ ├── fault_blocks_builder.hpp │ │ │ ├── faults_builder.hpp │ │ │ ├── horizons_builder.hpp │ │ │ └── stratigraphic_units_builder.hpp │ │ └── core │ │ │ ├── bitsery_archive.hpp │ │ │ ├── fault.hpp │ │ │ ├── fault_block.hpp │ │ │ ├── fault_blocks.hpp │ │ │ ├── faults.hpp │ │ │ ├── horizon.hpp │ │ │ ├── horizons.hpp │ │ │ ├── stratigraphic_unit.hpp │ │ │ └── stratigraphic_units.hpp │ └── representation │ │ ├── builder │ │ ├── cross_section_builder.hpp │ │ ├── detail │ │ │ └── copy.hpp │ │ ├── helpers │ │ │ └── structural_model_fault_blocks_builder.hpp │ │ └── structural_model_builder.hpp │ │ ├── core │ │ ├── cross_section.hpp │ │ ├── detail │ │ │ ├── clone.hpp │ │ │ └── helpers.hpp │ │ └── structural_model.hpp │ │ └── io │ │ ├── cross_section_input.hpp │ │ ├── cross_section_output.hpp │ │ ├── geode │ │ ├── geode_cross_section_input.hpp │ │ ├── geode_cross_section_output.hpp │ │ ├── geode_structural_model_input.hpp │ │ └── geode_structural_model_output.hpp │ │ ├── structural_model_input.hpp │ │ └── structural_model_output.hpp │ └── implicit │ ├── common.hpp │ ├── geometry │ └── stratigraphic_point.hpp │ ├── mixin │ ├── builder │ │ └── stratigraphic_relationships_builder.hpp │ └── core │ │ └── stratigraphic_relationships.hpp │ └── representation │ ├── builder │ ├── helpers │ │ └── implicit_structural_model_stratigraphic_blocks_builder.hpp │ ├── horizons_stack_builder.hpp │ ├── implicit_cross_section_builder.hpp │ ├── implicit_structural_model_builder.hpp │ ├── stratigraphic_model_builder.hpp │ └── stratigraphic_section_builder.hpp │ ├── core │ ├── detail │ │ └── helpers.hpp │ ├── horizons_stack.hpp │ ├── implicit_cross_section.hpp │ ├── implicit_structural_model.hpp │ ├── stratigraphic_model.hpp │ └── stratigraphic_section.hpp │ └── io │ ├── geode │ ├── geode_horizons_stack_input.hpp │ ├── geode_horizons_stack_output.hpp │ ├── geode_implicit_cross_section_input.hpp │ ├── geode_implicit_cross_section_output.hpp │ ├── geode_implicit_structural_model_input.hpp │ └── geode_implicit_structural_model_output.hpp │ ├── horizons_stack_input.hpp │ ├── horizons_stack_output.hpp │ ├── implicit_cross_section_input.hpp │ ├── implicit_cross_section_output.hpp │ ├── implicit_structural_model_input.hpp │ ├── implicit_structural_model_output.hpp │ ├── stratigraphic_model_input.hpp │ ├── stratigraphic_model_output.hpp │ ├── stratigraphic_section_input.hpp │ └── stratigraphic_section_output.hpp ├── src └── geode │ ├── CMakeLists.txt │ └── geosciences │ ├── CMakeLists.txt │ ├── explicit │ ├── CMakeLists.txt │ ├── common.cpp │ ├── geometry │ │ ├── geographic_coordinate_system.cpp │ │ └── geographic_coordinate_system_helper.cpp │ ├── mixin │ │ ├── builder │ │ │ ├── fault_blocks_builder.cpp │ │ │ ├── faults_builder.cpp │ │ │ ├── horizons_builder.cpp │ │ │ └── stratigraphic_units_builder.cpp │ │ └── core │ │ │ ├── bitsery_archive.cpp │ │ │ ├── fault.cpp │ │ │ ├── fault_block.cpp │ │ │ ├── fault_blocks.cpp │ │ │ ├── faults.cpp │ │ │ ├── horizon.cpp │ │ │ ├── horizons.cpp │ │ │ ├── stratigraphic_unit.cpp │ │ │ └── stratigraphic_units.cpp │ └── representation │ │ ├── builder │ │ ├── cross_section_builder.cpp │ │ ├── helpers │ │ │ └── structural_model_fault_blocks_builder.cpp │ │ └── structural_model_builder.cpp │ │ ├── core │ │ ├── cross_section.cpp │ │ ├── detail │ │ │ ├── clone.cpp │ │ │ └── helpers.cpp │ │ └── structural_model.cpp │ │ └── io │ │ ├── cross_section_input.cpp │ │ ├── cross_section_output.cpp │ │ ├── geode │ │ ├── geode_cross_section_input.cpp │ │ ├── geode_cross_section_output.cpp │ │ ├── geode_structural_model_input.cpp │ │ └── geode_structural_model_output.cpp │ │ ├── structural_model_input.cpp │ │ └── structural_model_output.cpp │ └── implicit │ ├── CMakeLists.txt │ ├── common.cpp │ ├── mixin │ ├── builder │ │ └── stratigraphic_relationships_builder.cpp │ └── core │ │ └── stratigraphic_relationships.cpp │ └── representation │ ├── builder │ ├── helpers │ │ └── implicit_structural_model_stratigraphic_blocks_builder.cpp │ ├── horizons_stack_builder.cpp │ ├── implicit_cross_section_builder.cpp │ ├── implicit_structural_model_builder.cpp │ ├── stratigraphic_model_builder.cpp │ └── stratigraphic_section_builder.cpp │ ├── core │ ├── detail │ │ └── helpers.cpp │ ├── horizons_stack.cpp │ ├── implicit_cross_section.cpp │ ├── implicit_structural_model.cpp │ ├── stratigraphic_model.cpp │ └── stratigraphic_section.cpp │ └── io │ ├── geode │ ├── geode_horizons_stack_input.cpp │ ├── geode_implicit_cross_section_input.cpp │ ├── geode_implicit_cross_section_output.cpp │ ├── geode_implicit_structural_model_input.cpp │ └── geode_implicit_structural_model_output.cpp │ ├── horizons_stack_input.cpp │ ├── horizons_stack_output.cpp │ ├── implicit_cross_section_input.cpp │ ├── implicit_cross_section_output.cpp │ ├── implicit_structural_model_input.cpp │ ├── implicit_structural_model_output.cpp │ ├── stratigraphic_model_input.cpp │ ├── stratigraphic_model_output.cpp │ ├── stratigraphic_section_input.cpp │ └── stratigraphic_section_output.cpp ├── tests ├── CMakeLists.txt ├── data │ ├── 3patches.og_tsf2d │ ├── modelA2.og_strm │ ├── test_HorizonStack_v0.og_hst3d │ ├── test_section.og_sctn │ └── vri2.og_strm ├── explicit │ ├── CMakeLists.txt │ ├── test-cross-section.cpp │ ├── test-geographic-coordinate-system.cpp │ ├── test-structural-model-fault-blocks-builder.cpp │ └── test-structural-model.cpp ├── implicit │ ├── CMakeLists.txt │ ├── test-horizons-stack.cpp │ ├── test-stratigraphic-model.cpp │ └── test-stratigraphic-section.cpp └── tests_config.hpp.in └── upgrade-guide.md /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | tests/** linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: Geode-solutions 2 | -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/manual_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/.github/workflows/manual_release.yml -------------------------------------------------------------------------------- /.github/workflows/merge_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/.github/workflows/merge_request.yml -------------------------------------------------------------------------------- /.github/workflows/pr_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/.github/workflows/pr_update.yml -------------------------------------------------------------------------------- /.github/workflows/prepare_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/.github/workflows/prepare_deploy.yml -------------------------------------------------------------------------------- /.github/workflows/schedule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/.github/workflows/schedule.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/test_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/.github/workflows/test_pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/.releaserc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYLEFT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/COPYLEFT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/README.md -------------------------------------------------------------------------------- /bindings/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/python/explicit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/explicit.py -------------------------------------------------------------------------------- /bindings/python/implicit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/implicit.py -------------------------------------------------------------------------------- /bindings/python/requirements.in: -------------------------------------------------------------------------------- 1 | OpenGeode-core -------------------------------------------------------------------------------- /bindings/python/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/python/src/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/common.hpp -------------------------------------------------------------------------------- /bindings/python/src/explicit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/explicit/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/python/src/explicit/explicit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/explicit/explicit.cpp -------------------------------------------------------------------------------- /bindings/python/src/explicit/geometry/crs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/explicit/geometry/crs.hpp -------------------------------------------------------------------------------- /bindings/python/src/explicit/geometry/crs_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/explicit/geometry/crs_helper.hpp -------------------------------------------------------------------------------- /bindings/python/src/explicit/mixin/builder/fault_blocks_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/explicit/mixin/builder/fault_blocks_builder.hpp -------------------------------------------------------------------------------- /bindings/python/src/explicit/mixin/builder/faults_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/explicit/mixin/builder/faults_builder.hpp -------------------------------------------------------------------------------- /bindings/python/src/explicit/mixin/builder/horizons_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/explicit/mixin/builder/horizons_builder.hpp -------------------------------------------------------------------------------- /bindings/python/src/explicit/mixin/builder/stratigraphic_units_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/explicit/mixin/builder/stratigraphic_units_builder.hpp -------------------------------------------------------------------------------- /bindings/python/src/explicit/mixin/core/fault.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/explicit/mixin/core/fault.hpp -------------------------------------------------------------------------------- /bindings/python/src/explicit/mixin/core/fault_block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/explicit/mixin/core/fault_block.hpp -------------------------------------------------------------------------------- /bindings/python/src/explicit/mixin/core/fault_blocks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/explicit/mixin/core/fault_blocks.hpp -------------------------------------------------------------------------------- /bindings/python/src/explicit/mixin/core/faults.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/explicit/mixin/core/faults.hpp -------------------------------------------------------------------------------- /bindings/python/src/explicit/mixin/core/horizon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/explicit/mixin/core/horizon.hpp -------------------------------------------------------------------------------- /bindings/python/src/explicit/mixin/core/horizons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/explicit/mixin/core/horizons.hpp -------------------------------------------------------------------------------- /bindings/python/src/explicit/mixin/core/stratigraphic_unit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/explicit/mixin/core/stratigraphic_unit.hpp -------------------------------------------------------------------------------- /bindings/python/src/explicit/mixin/core/stratigraphic_units.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/explicit/mixin/core/stratigraphic_units.hpp -------------------------------------------------------------------------------- /bindings/python/src/explicit/representation/builder/cross_section_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/explicit/representation/builder/cross_section_builder.hpp -------------------------------------------------------------------------------- /bindings/python/src/explicit/representation/builder/structural_model_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/explicit/representation/builder/structural_model_builder.hpp -------------------------------------------------------------------------------- /bindings/python/src/explicit/representation/core/cross_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/explicit/representation/core/cross_section.hpp -------------------------------------------------------------------------------- /bindings/python/src/explicit/representation/core/structural_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/explicit/representation/core/structural_model.hpp -------------------------------------------------------------------------------- /bindings/python/src/explicit/representation/io/cross_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/explicit/representation/io/cross_section.hpp -------------------------------------------------------------------------------- /bindings/python/src/explicit/representation/io/structural_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/explicit/representation/io/structural_model.hpp -------------------------------------------------------------------------------- /bindings/python/src/factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/factory.hpp -------------------------------------------------------------------------------- /bindings/python/src/implicit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/implicit/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/python/src/implicit/geometry/stratigraphic_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/implicit/geometry/stratigraphic_point.hpp -------------------------------------------------------------------------------- /bindings/python/src/implicit/implicit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/implicit/implicit.cpp -------------------------------------------------------------------------------- /bindings/python/src/implicit/mixin/builder/stratigraphic_relationships_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/implicit/mixin/builder/stratigraphic_relationships_builder.hpp -------------------------------------------------------------------------------- /bindings/python/src/implicit/mixin/core/stratigraphic_relationships.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/implicit/mixin/core/stratigraphic_relationships.hpp -------------------------------------------------------------------------------- /bindings/python/src/implicit/representation/builder/horizons_stack_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/implicit/representation/builder/horizons_stack_builder.hpp -------------------------------------------------------------------------------- /bindings/python/src/implicit/representation/builder/implicit_cross_section_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/implicit/representation/builder/implicit_cross_section_builder.hpp -------------------------------------------------------------------------------- /bindings/python/src/implicit/representation/builder/implicit_structural_model_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/implicit/representation/builder/implicit_structural_model_builder.hpp -------------------------------------------------------------------------------- /bindings/python/src/implicit/representation/builder/stratigraphic_model_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/implicit/representation/builder/stratigraphic_model_builder.hpp -------------------------------------------------------------------------------- /bindings/python/src/implicit/representation/builder/stratigraphic_section_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/implicit/representation/builder/stratigraphic_section_builder.hpp -------------------------------------------------------------------------------- /bindings/python/src/implicit/representation/core/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/implicit/representation/core/helpers.hpp -------------------------------------------------------------------------------- /bindings/python/src/implicit/representation/core/horizons_stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/implicit/representation/core/horizons_stack.hpp -------------------------------------------------------------------------------- /bindings/python/src/implicit/representation/core/implicit_cross_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/implicit/representation/core/implicit_cross_section.hpp -------------------------------------------------------------------------------- /bindings/python/src/implicit/representation/core/implicit_structural_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/implicit/representation/core/implicit_structural_model.hpp -------------------------------------------------------------------------------- /bindings/python/src/implicit/representation/core/stratigraphic_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/implicit/representation/core/stratigraphic_model.hpp -------------------------------------------------------------------------------- /bindings/python/src/implicit/representation/core/stratigraphic_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/implicit/representation/core/stratigraphic_section.hpp -------------------------------------------------------------------------------- /bindings/python/src/implicit/representation/io/horizons_stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/implicit/representation/io/horizons_stack.hpp -------------------------------------------------------------------------------- /bindings/python/src/implicit/representation/io/implicit_cross_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/implicit/representation/io/implicit_cross_section.hpp -------------------------------------------------------------------------------- /bindings/python/src/implicit/representation/io/implicit_structural_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/implicit/representation/io/implicit_structural_model.hpp -------------------------------------------------------------------------------- /bindings/python/src/implicit/representation/io/stratigraphic_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/implicit/representation/io/stratigraphic_model.hpp -------------------------------------------------------------------------------- /bindings/python/src/implicit/representation/io/stratigraphic_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/src/implicit/representation/io/stratigraphic_section.hpp -------------------------------------------------------------------------------- /bindings/python/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/tests/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/python/tests/explicit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/tests/explicit/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/python/tests/explicit/test-py-cross-section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/tests/explicit/test-py-cross-section.py -------------------------------------------------------------------------------- /bindings/python/tests/explicit/test-py-geographic-coordinate-system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/tests/explicit/test-py-geographic-coordinate-system.py -------------------------------------------------------------------------------- /bindings/python/tests/explicit/test-py-structural-model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/tests/explicit/test-py-structural-model.py -------------------------------------------------------------------------------- /bindings/python/tests/implicit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/tests/implicit/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/python/tests/implicit/test-py-horizons-stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/tests/implicit/test-py-horizons-stack.py -------------------------------------------------------------------------------- /bindings/python/tests/implicit/test-py-stratigraphic-model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/tests/implicit/test-py-stratigraphic-model.py -------------------------------------------------------------------------------- /bindings/python/tests/implicit/test-py-stratigraphic-section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/bindings/python/tests/implicit/test-py-stratigraphic-section.py -------------------------------------------------------------------------------- /cmake/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/cmake/Doxyfile.in -------------------------------------------------------------------------------- /cmake/OpenGeode-GeosciencesConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/cmake/OpenGeode-GeosciencesConfig.cmake.in -------------------------------------------------------------------------------- /cmake/version.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/cmake/version.rc.in -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/common.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/geometry/geographic_coordinate_system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/geometry/geographic_coordinate_system.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/geometry/geographic_coordinate_system_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/geometry/geographic_coordinate_system_helper.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/mixin/builder/fault_blocks_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/mixin/builder/fault_blocks_builder.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/mixin/builder/faults_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/mixin/builder/faults_builder.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/mixin/builder/horizons_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/mixin/builder/horizons_builder.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/mixin/builder/stratigraphic_units_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/mixin/builder/stratigraphic_units_builder.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/mixin/core/bitsery_archive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/mixin/core/bitsery_archive.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/mixin/core/fault.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/mixin/core/fault.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/mixin/core/fault_block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/mixin/core/fault_block.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/mixin/core/fault_blocks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/mixin/core/fault_blocks.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/mixin/core/faults.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/mixin/core/faults.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/mixin/core/horizon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/mixin/core/horizon.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/mixin/core/horizons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/mixin/core/horizons.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/mixin/core/stratigraphic_unit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/mixin/core/stratigraphic_unit.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/mixin/core/stratigraphic_units.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/mixin/core/stratigraphic_units.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/representation/builder/cross_section_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/representation/builder/cross_section_builder.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/representation/builder/detail/copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/representation/builder/detail/copy.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/representation/builder/helpers/structural_model_fault_blocks_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/representation/builder/helpers/structural_model_fault_blocks_builder.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/representation/builder/structural_model_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/representation/builder/structural_model_builder.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/representation/core/cross_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/representation/core/cross_section.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/representation/core/detail/clone.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/representation/core/detail/clone.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/representation/core/detail/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/representation/core/detail/helpers.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/representation/core/structural_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/representation/core/structural_model.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/representation/io/cross_section_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/representation/io/cross_section_input.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/representation/io/cross_section_output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/representation/io/cross_section_output.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/representation/io/geode/geode_cross_section_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/representation/io/geode/geode_cross_section_input.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/representation/io/geode/geode_cross_section_output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/representation/io/geode/geode_cross_section_output.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/representation/io/geode/geode_structural_model_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/representation/io/geode/geode_structural_model_input.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/representation/io/geode/geode_structural_model_output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/representation/io/geode/geode_structural_model_output.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/representation/io/structural_model_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/representation/io/structural_model_input.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/explicit/representation/io/structural_model_output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/explicit/representation/io/structural_model_output.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/common.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/geometry/stratigraphic_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/geometry/stratigraphic_point.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/mixin/builder/stratigraphic_relationships_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/mixin/builder/stratigraphic_relationships_builder.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/mixin/core/stratigraphic_relationships.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/mixin/core/stratigraphic_relationships.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/builder/helpers/implicit_structural_model_stratigraphic_blocks_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/builder/helpers/implicit_structural_model_stratigraphic_blocks_builder.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/builder/horizons_stack_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/builder/horizons_stack_builder.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/builder/implicit_cross_section_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/builder/implicit_cross_section_builder.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/builder/implicit_structural_model_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/builder/implicit_structural_model_builder.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/builder/stratigraphic_model_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/builder/stratigraphic_model_builder.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/builder/stratigraphic_section_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/builder/stratigraphic_section_builder.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/core/detail/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/core/detail/helpers.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/core/horizons_stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/core/horizons_stack.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/core/implicit_cross_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/core/implicit_cross_section.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/core/implicit_structural_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/core/implicit_structural_model.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/core/stratigraphic_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/core/stratigraphic_model.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/core/stratigraphic_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/core/stratigraphic_section.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/io/geode/geode_horizons_stack_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/io/geode/geode_horizons_stack_input.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/io/geode/geode_horizons_stack_output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/io/geode/geode_horizons_stack_output.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/io/geode/geode_implicit_cross_section_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/io/geode/geode_implicit_cross_section_input.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/io/geode/geode_implicit_cross_section_output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/io/geode/geode_implicit_cross_section_output.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/io/geode/geode_implicit_structural_model_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/io/geode/geode_implicit_structural_model_input.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/io/geode/geode_implicit_structural_model_output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/io/geode/geode_implicit_structural_model_output.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/io/horizons_stack_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/io/horizons_stack_input.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/io/horizons_stack_output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/io/horizons_stack_output.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/io/implicit_cross_section_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/io/implicit_cross_section_input.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/io/implicit_cross_section_output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/io/implicit_cross_section_output.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/io/implicit_structural_model_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/io/implicit_structural_model_input.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/io/implicit_structural_model_output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/io/implicit_structural_model_output.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/io/stratigraphic_model_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/io/stratigraphic_model_input.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/io/stratigraphic_model_output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/io/stratigraphic_model_output.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/io/stratigraphic_section_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/io/stratigraphic_section_input.hpp -------------------------------------------------------------------------------- /include/geode/geosciences/implicit/representation/io/stratigraphic_section_output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/include/geode/geosciences/implicit/representation/io/stratigraphic_section_output.hpp -------------------------------------------------------------------------------- /src/geode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/CMakeLists.txt -------------------------------------------------------------------------------- /src/geode/geosciences/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/CMakeLists.txt -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/CMakeLists.txt -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/common.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/geometry/geographic_coordinate_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/geometry/geographic_coordinate_system.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/geometry/geographic_coordinate_system_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/geometry/geographic_coordinate_system_helper.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/mixin/builder/fault_blocks_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/mixin/builder/fault_blocks_builder.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/mixin/builder/faults_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/mixin/builder/faults_builder.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/mixin/builder/horizons_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/mixin/builder/horizons_builder.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/mixin/builder/stratigraphic_units_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/mixin/builder/stratigraphic_units_builder.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/mixin/core/bitsery_archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/mixin/core/bitsery_archive.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/mixin/core/fault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/mixin/core/fault.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/mixin/core/fault_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/mixin/core/fault_block.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/mixin/core/fault_blocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/mixin/core/fault_blocks.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/mixin/core/faults.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/mixin/core/faults.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/mixin/core/horizon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/mixin/core/horizon.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/mixin/core/horizons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/mixin/core/horizons.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/mixin/core/stratigraphic_unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/mixin/core/stratigraphic_unit.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/mixin/core/stratigraphic_units.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/mixin/core/stratigraphic_units.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/representation/builder/cross_section_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/representation/builder/cross_section_builder.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/representation/builder/helpers/structural_model_fault_blocks_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/representation/builder/helpers/structural_model_fault_blocks_builder.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/representation/builder/structural_model_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/representation/builder/structural_model_builder.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/representation/core/cross_section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/representation/core/cross_section.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/representation/core/detail/clone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/representation/core/detail/clone.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/representation/core/detail/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/representation/core/detail/helpers.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/representation/core/structural_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/representation/core/structural_model.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/representation/io/cross_section_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/representation/io/cross_section_input.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/representation/io/cross_section_output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/representation/io/cross_section_output.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/representation/io/geode/geode_cross_section_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/representation/io/geode/geode_cross_section_input.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/representation/io/geode/geode_cross_section_output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/representation/io/geode/geode_cross_section_output.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/representation/io/geode/geode_structural_model_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/representation/io/geode/geode_structural_model_input.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/representation/io/geode/geode_structural_model_output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/representation/io/geode/geode_structural_model_output.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/representation/io/structural_model_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/representation/io/structural_model_input.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/explicit/representation/io/structural_model_output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/explicit/representation/io/structural_model_output.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/CMakeLists.txt -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/common.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/mixin/builder/stratigraphic_relationships_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/mixin/builder/stratigraphic_relationships_builder.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/mixin/core/stratigraphic_relationships.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/mixin/core/stratigraphic_relationships.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/builder/helpers/implicit_structural_model_stratigraphic_blocks_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/builder/helpers/implicit_structural_model_stratigraphic_blocks_builder.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/builder/horizons_stack_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/builder/horizons_stack_builder.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/builder/implicit_cross_section_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/builder/implicit_cross_section_builder.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/builder/implicit_structural_model_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/builder/implicit_structural_model_builder.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/builder/stratigraphic_model_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/builder/stratigraphic_model_builder.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/builder/stratigraphic_section_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/builder/stratigraphic_section_builder.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/core/detail/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/core/detail/helpers.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/core/horizons_stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/core/horizons_stack.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/core/implicit_cross_section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/core/implicit_cross_section.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/core/implicit_structural_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/core/implicit_structural_model.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/core/stratigraphic_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/core/stratigraphic_model.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/core/stratigraphic_section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/core/stratigraphic_section.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/io/geode/geode_horizons_stack_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/io/geode/geode_horizons_stack_input.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/io/geode/geode_implicit_cross_section_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/io/geode/geode_implicit_cross_section_input.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/io/geode/geode_implicit_cross_section_output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/io/geode/geode_implicit_cross_section_output.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/io/geode/geode_implicit_structural_model_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/io/geode/geode_implicit_structural_model_input.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/io/geode/geode_implicit_structural_model_output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/io/geode/geode_implicit_structural_model_output.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/io/horizons_stack_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/io/horizons_stack_input.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/io/horizons_stack_output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/io/horizons_stack_output.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/io/implicit_cross_section_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/io/implicit_cross_section_input.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/io/implicit_cross_section_output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/io/implicit_cross_section_output.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/io/implicit_structural_model_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/io/implicit_structural_model_input.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/io/implicit_structural_model_output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/io/implicit_structural_model_output.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/io/stratigraphic_model_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/io/stratigraphic_model_input.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/io/stratigraphic_model_output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/io/stratigraphic_model_output.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/io/stratigraphic_section_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/io/stratigraphic_section_input.cpp -------------------------------------------------------------------------------- /src/geode/geosciences/implicit/representation/io/stratigraphic_section_output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/src/geode/geosciences/implicit/representation/io/stratigraphic_section_output.cpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/data/3patches.og_tsf2d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/tests/data/3patches.og_tsf2d -------------------------------------------------------------------------------- /tests/data/modelA2.og_strm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/tests/data/modelA2.og_strm -------------------------------------------------------------------------------- /tests/data/test_HorizonStack_v0.og_hst3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/tests/data/test_HorizonStack_v0.og_hst3d -------------------------------------------------------------------------------- /tests/data/test_section.og_sctn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/tests/data/test_section.og_sctn -------------------------------------------------------------------------------- /tests/data/vri2.og_strm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/tests/data/vri2.og_strm -------------------------------------------------------------------------------- /tests/explicit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/tests/explicit/CMakeLists.txt -------------------------------------------------------------------------------- /tests/explicit/test-cross-section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/tests/explicit/test-cross-section.cpp -------------------------------------------------------------------------------- /tests/explicit/test-geographic-coordinate-system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/tests/explicit/test-geographic-coordinate-system.cpp -------------------------------------------------------------------------------- /tests/explicit/test-structural-model-fault-blocks-builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/tests/explicit/test-structural-model-fault-blocks-builder.cpp -------------------------------------------------------------------------------- /tests/explicit/test-structural-model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/tests/explicit/test-structural-model.cpp -------------------------------------------------------------------------------- /tests/implicit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/tests/implicit/CMakeLists.txt -------------------------------------------------------------------------------- /tests/implicit/test-horizons-stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/tests/implicit/test-horizons-stack.cpp -------------------------------------------------------------------------------- /tests/implicit/test-stratigraphic-model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/tests/implicit/test-stratigraphic-model.cpp -------------------------------------------------------------------------------- /tests/implicit/test-stratigraphic-section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/tests/implicit/test-stratigraphic-section.cpp -------------------------------------------------------------------------------- /tests/tests_config.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/tests/tests_config.hpp.in -------------------------------------------------------------------------------- /upgrade-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geode-solutions/OpenGeode-Geosciences/HEAD/upgrade-guide.md --------------------------------------------------------------------------------