.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "examples/real/Greenstone.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_examples_real_Greenstone.py: Greenstone. =========== .. GENERATED FROM PYTHON SOURCE LINES 5-13 .. code-block:: Python import os # Importing gempy import gempy as gp import gempy_viewer as gpv print(gp.__version__) .. rst-class:: sphx-glr-script-out .. code-block:: none 2023.2.0b1 .. GENERATED FROM PYTHON SOURCE LINES 14-33 .. code-block:: Python data_path = os.path.abspath('../../data/input_data/tut_SandStone') # Importing the data from csv geo_model: gp.data.GeoModel = gp.create_geomodel( project_name='Greenstone', extent=[696000, 747000, 6863000, 6930000, -20000, 200], # * Here we define the extent of the model resolution=[20, 20, 20], # * Here we define the resolution of the voxels refinement=6, # * Here we define the number of octree levels. If octree levels are defined, the resolution is ignored. importer_helper=gp.data.ImporterHelper( path_to_orientations=data_path + "/SandStone_Foliations.csv", path_to_surface_points=data_path + "/SandStone_Points.csv", hash_surface_points=None, hash_orientations=None ) ) .. GENERATED FROM PYTHON SOURCE LINES 34-36 .. code-block:: Python gpv.plot_2d(geo_model, direction=['z']) .. image-sg:: /examples/real/images/sphx_glr_Greenstone_001.png :alt: Cell Number: mid Direction: z :srcset: /examples/real/images/sphx_glr_Greenstone_001.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out .. code-block:: none .. GENERATED FROM PYTHON SOURCE LINES 37-46 .. code-block:: Python gp.map_stack_to_surfaces( gempy_model=geo_model, mapping_object={ "EarlyGranite_Series": 'EarlyGranite', "BIF_Series": ('SimpleMafic2', 'SimpleBIF'), "SimpleMafic_Series": 'SimpleMafic1', 'Basement': 'basement' } ) .. rst-class:: sphx-glr-script-out .. code-block:: none Could not find element 'basement' in any group. .. raw:: html
Structural Groups: StructuralGroup:
Name:EarlyGranite_Series
Structural Relation:StackRelationType.ERODE
Elements:
StructuralElement:
Name:EarlyGranite

StructuralGroup:
Name:BIF_Series
Structural Relation:StackRelationType.ERODE
Elements:
StructuralElement:
Name:SimpleMafic2

StructuralElement:
Name:SimpleBIF

StructuralGroup:
Name:SimpleMafic_Series
Structural Relation:StackRelationType.ERODE
Elements:
StructuralElement:
Name:SimpleMafic1
Fault Relations:
EarlyGrani...BIF_SeriesSimpleMafi...
EarlyGranite_Series
BIF_Series
SimpleMafic_Series
True
False


.. GENERATED FROM PYTHON SOURCE LINES 47-49 .. code-block:: Python gp.compute_model(geo_model) .. rst-class:: sphx-glr-script-out .. code-block:: none Setting Backend To: AvailableBackends.numpy /home/leguark/gempy/gempy/core/data/geo_model.py:164: UserWarning: You are using refinement and passing a regular grid. The resolution of the regular grid will be overwritten warnings.warn( .. raw:: html
Solutions: 6 Octree Levels, 4 DualContouringMeshes


.. GENERATED FROM PYTHON SOURCE LINES 50-52 .. code-block:: Python gpv.plot_2d(geo_model, cell_number=[-1], direction=['z'], show_data=False) .. image-sg:: /examples/real/images/sphx_glr_Greenstone_002.png :alt: Cell Number: -1 Direction: z :srcset: /examples/real/images/sphx_glr_Greenstone_002.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out .. code-block:: none .. GENERATED FROM PYTHON SOURCE LINES 53-55 .. code-block:: Python gpv.plot_2d(geo_model, cell_number=[25], direction='x') .. image-sg:: /examples/real/images/sphx_glr_Greenstone_003.png :alt: Cell Number: 25 Direction: x :srcset: /examples/real/images/sphx_glr_Greenstone_003.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out .. code-block:: none .. GENERATED FROM PYTHON SOURCE LINES 56-57 sphinx_gallery_thumbnail_number = -1 .. GENERATED FROM PYTHON SOURCE LINES 57-58 .. code-block:: Python gpv.plot_3d(geo_model) .. image-sg:: /examples/real/images/sphx_glr_Greenstone_004.png :alt: Greenstone :srcset: /examples/real/images/sphx_glr_Greenstone_004.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out .. code-block:: none .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 8.624 seconds) .. _sphx_glr_download_examples_real_Greenstone.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: Greenstone.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: Greenstone.py ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_