Can I graph finite faults in Gempy, so that they don't cut off my entire strata series? #943
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi, |
Beta Was this translation helpful? Give feedback.
-
Hi, that's right, that's my question, thank you very much. |
Beta Was this translation helpful? Give feedback.
Hi @shairethomg ,
if it comes to Pyvista usage, you might stumble upon boolean operations (Example: https://docs.pyvista.org/examples/01-filter/boolean-operations.html). Those might be not sufficient for you, as they require manifold/watertight geometries, which these surface are not. If it is a onetime time thing, you could export the scene of your pyvista plotter object with
plotter = gpv.plot_3d(geo_model)
.plotter.p.export_obj("name_of_scene.obj")
and then remove the vertices in some modeling software such as Blender. If you have to do it multiple times, I cannot think of any other way than creating a manifold object (e.g.
pv.Box(model xmin, model xmax, model ymin, model ymax, depth o…