Note
Click here to download the full example code
1.3a: Grids.¶
import numpy as np
import pandas as pd
from gempy.core.data import Grid
from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import
import matplotlib.pyplot as plt
pd.set_option('precision', 2)
np.random.seed(55500)
The Grid Class¶
The grid class will interact with the rest of data classes and grid subclasses. Its main purpose is to feed coordinates XYZ to the interpolator.
The most important attribute of Grid is values
(and values_r
which are the values rescaled) which are the 3D points in space that
kriging will be evaluated on. This array will be feed by “grid types” on
a composition relation with Grid:
Out:
(array([], shape=(0, 3), dtype=float64), array([], shape=(0, 3), dtype=float64))
At the moment of writing this tutorial, there is 5 grid types. The number of grid types is scalable and down the road we aim to connect other grid packages (like Discretize) as an extra Grid type
Out:
array(['regular', 'custom', 'topography', 'sections', 'centered'],
dtype='<U10')
Each grid contains its own values
attribute as well as other
methods to manipulate them depending on the type of grid.
Out:
array([], shape=(0, 3), dtype=float64)
We can see what grids are activated (i.e. they are going to be
interpolated and therefore will live on Grid().values
) by:
Out:
array([False, False, False, False, False])
By default only the regular grid (grid.regular_grid
) is active. However, since the regular
grid is still empty Grid().values
is empty too.
Out:
array([], shape=(0, 3), dtype=float64)
The last important attribute of Grid is the length:
Out:
array([0, 0, 0, 0, 0, 0])
Length gives back the interface indices between grids on the
Grid().values
attribute. This can be used after interpolation to
know which interpolated values and coordinates correspond to each grid
type. You can use the method get_grid_args to return the indices by
name:
grid.get_grid_args('topography')
Out:
(0, 0)
By now all is a bit confusing because we have no values. Lets start adding values to the different grids:
Regular grid¶
The Grid
class has a bunch of methods to set each grid type and
activate them.
help(grid.create_regular_grid)
Out:
Help on method create_regular_grid in module gempy.core.data:
create_regular_grid(extent=None, resolution=None, set_active=True, *args, **kwargs) method of gempy.core.data.Grid instance
Set a new regular grid and activate it.
Args:
extent (np.ndarray): [x_min, x_max, y_min, y_max, z_min, z_max]
resolution (np.ndarray): [nx, ny, nz]
RegularGrid Docs
(inserted)
Class with the methods and properties to manage 3D regular grids where the model will be interpolated.
Args:
extent (np.ndarray): [x_min, x_max, y_min, y_max, z_min, z_max]
resolution (np.ndarray): [nx, ny, nz]
Attributes:
extent (np.ndarray): [x_min, x_max, y_min, y_max, z_min, z_max]
resolution (np.ndarray): [nx, ny, nz]
values (np.ndarray): XYZ coordinates
mask_topo (np.ndarray, dtype=bool): same shape as values. Values above the topography are False
dx (float): size of the cells on x
dy (float): size of the cells on y
dz (float): size of the cells on z
grid.create_regular_grid(extent=[0, 100, 0, 100, -100, 0], resolution=[20, 20, 20])
Out:
<gempy.core.grid_modules.grid_types.RegularGrid object at 0x7fcc6bb90370>
Now the regular grid object composed on Grid
has been filled:
Out:
array([[ 2.5, 2.5, -97.5],
[ 2.5, 2.5, -92.5],
[ 2.5, 2.5, -87.5],
...,
[ 97.5, 97.5, -12.5],
[ 97.5, 97.5, -7.5],
[ 97.5, 97.5, -2.5]])
And the regular grid has been set active (it was already active in any case):
Out:
array([ True, False, False, False, False])
Therefore the grid values will be equal to the regular grid:
Out:
array([[ 2.5, 2.5, -97.5],
[ 2.5, 2.5, -92.5],
[ 2.5, 2.5, -87.5],
...,
[ 97.5, 97.5, -12.5],
[ 97.5, 97.5, -7.5],
[ 97.5, 97.5, -2.5]])
And the indices to extract the different arrays:
Out:
array([ 0, 8000, 8000, 8000, 8000, 8000])
Custom grid¶
Completely free XYZ values.
grid.create_custom_grid(np.array([[1, 2, 3],
[4, 5, 6],
[7, 8, 9]]))
Again set_any_grid
will create a grid and activate it. So now the
compose object will contain values:
Out:
array([[1, 2, 3],
[4, 5, 6],
[7, 8, 9]])
and since it is active, will be added to the grid.values stack:
Out:
array([ True, True, False, False, False])
Out:
(8003, 3)
We can still recover those values with get_grid
or by getting the
slicing args:
grid.get_grid('custom')
Out:
array([[1., 2., 3.],
[4., 5., 6.],
[7., 8., 9.]])
Out:
(8000, 8003)
Out:
array([[1., 2., 3.],
[4., 5., 6.],
[7., 8., 9.]])
Topography¶
Now we can set the topography. Topography
contains methods to create manual topographies as well as gdal for
dealing with raster data. By default we will create a random topography:
Out:
[-20. 0.]
Out:
array([ True, True, True, False, False])
Now the grid values will contain both the regular grid and topography:
Out:
(array([[ 2.5 , 2.5 , -97.5 ],
[ 2.5 , 2.5 , -92.5 ],
[ 2.5 , 2.5 , -87.5 ],
...,
[100. , 89.47368421, -14.13839552],
[100. , 94.73684211, -16.12793911],
[100. , 100. , -16.21462612]]), array([ 0, 8000, 8003, 8403, 8403, 8403]))
The topography args are got as follows:
Out:
(8003, 8403)
And we can slice the values array as any other numpy array:
grid.values[l0: l1]
Out:
array([[ 0. , 0. , -14.23224119],
[ 0. , 5.26315789, -14.18893341],
[ 0. , 10.52631579, -13.54018217],
...,
[100. , 89.47368421, -14.13839552],
[100. , 94.73684211, -16.12793911],
[100. , 100. , -16.21462612]])
We can compare it to the topography.values:
Out:
array([[ 0. , 0. , -14.23224119],
[ 0. , 5.26315789, -14.18893341],
[ 0. , 10.52631579, -13.54018217],
...,
[100. , 89.47368421, -14.13839552],
[100. , 94.73684211, -16.12793911],
[100. , 100. , -16.21462612]])
Now that we have more than one grid we can activate and deactivate any of them in real time:
Out:
array([False, True, False, False, False])
Since now all grids are deactivated the values will be empty:
Out:
array([[1., 2., 3.],
[4., 5., 6.],
[7., 8., 9.]])
grid.set_active('topography')
Out:
array([False, True, True, False, False])
Out:
(array([[ 1. , 2. , 3. ],
[ 4. , 5. , 6. ],
[ 7. , 8. , 9. ],
...,
[100. , 89.47368421, -14.13839552],
[100. , 94.73684211, -16.12793911],
[100. , 100. , -16.21462612]]), (403, 3))
grid.set_active('regular')
Out:
array([ True, True, True, False, False])
Out:
array([[ 2.5 , 2.5 , -97.5 ],
[ 2.5 , 2.5 , -92.5 ],
[ 2.5 , 2.5 , -87.5 ],
...,
[100. , 89.47368421, -14.13839552],
[100. , 94.73684211, -16.12793911],
[100. , 100. , -16.21462612]])
Centered Grid¶
This grid contains an irregular grid where the majority of voxels are centered around a value (or values). This type of grid is usually used to compute certain types of forward physics where the influence decreases with distance (e.g. gravity: Check tutorial 2.2-Cell-selection )
grid.create_centered_grid(centers=np.array([[300, 0, 0], [0, 0, 0]]),
resolution=[10, 10, 20], radius=100)
Resolution and radius create a geometric spaced kernel (blue dots) which will be use to create a grid around each of the center points (red dots):
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
ax.scatter(grid.values[:, 0], grid.values[:, 1], grid.values[:, 2], '.', alpha=.2)
ax.scatter(np.array([[300, 0, 0], [0, 0, 0]])[:, 0],
np.array([[300, 0, 0], [0, 0, 0]])[:, 1],
np.array([[300, 0, 0], [0, 0, 0]])[:, 2], c='r', alpha=1, s=30)
ax.set_xlim(-100, 400)
ax.set_xlabel('X Label')
ax.set_ylabel('Y Label')
ax.set_zlabel('Z Label')
plt.show()
Section Grid¶
This grid type has its own tutorial. See ch1-3b
Total running time of the script: ( 0 minutes 0.295 seconds)