Note
Go to the end to download the full example code.
Using PyVista meshes
PyVista is a helper module for the Visualization Toolkit (VTK) that takes a different approach on interfacing with VTK through NumPy and direct array access.
It provides mesh data structures and filtering methods for spatial datasets, makes 3D plotting simple and is built for large/complex data geometries.
The Field.mesh
method enables easy field creation on PyVista meshes
used by the SRF
or Krige
class.
import pyvista as pv
import gstools as gs
We create a structured grid with PyVista containing 50 segments on all three axes each with a length of 2 (whatever unit).
dims, spacing = (50, 50, 50), (2, 2, 2)
grid = pv.ImageData(dimensions=dims, spacing=spacing)
Now we set up the SRF class as always. We’ll use an anisotropic model.
model = gs.Gaussian(dim=3, len_scale=[16, 8, 4], angles=(0.8, 0.4, 0.2))
srf = gs.SRF(model, seed=19970221)
The PyVista mesh can now be directly passed to the SRF.mesh
method.
When dealing with meshes, one can choose if the field should be generated
on the mesh-points (“points”) or the cell-centroids (“centroids”).
In addition we can set a name, under which the resulting field is stored in the mesh.
srf.mesh(grid, points="points", name="random-field")
Now we have access to PyVista’s abundancy of methods to explore the field.
Note
PyVista is not working on readthedocs, but you can try it out yourself by uncommenting the following line of code.
# grid.contour(isosurfaces=8).plot()
The result should look like this:
Total running time of the script: (0 minutes 5.047 seconds)