Plotting Borehole Data with PyVista #319
-
hi all, i am able to execute the code successfully but my requirement is that I need to convert this 3d plotted bore hole tube to be exported in any other format that is compactible with GIS software's or may be in vkt format for paraview visualization. how to accomplish this ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@rvg1986, are you getting a visualization like this: If so, you could just save the object using |
Beta Was this translation helpful? Give feedback.
@rvg1986, are you getting a visualization like this:
If so, you could just save the object using
tubes[i].save('tube_i.vtk')
wherei
is the index of your single tube in your list of tubes.