gemgis.visualization.show_well_log_along_well#

gemgis.visualization.show_well_log_along_well(coordinates: numpy.ndarray, dist: numpy.ndarray, values: numpy.ndarray, radius_factor: Union[int, float] = 2) pyvista.core.pointset.PolyData#

Function to return a tube representing well log values along a well path

Parameters
  • coordinates (np.ndarray) – Nx3 Numpy array containing the X, Y, and Z coordinates that define the path of a well

  • dist (np.ndarray) – np.ndarray containing the measured depths (MD) of values along the well path

  • values (np.ndarray) – np.ndarray containing the measured well log values along the well path

  • radius_factor (int, float) – Radius factor to adjust the diameter of the tube, e.g. radius_factor=2, default is 2

Returns

tube_along_spline – PyVista PolyData Pointset representing the the measured well log values along the well path

Return type

pyvista.core.pointset.PolyData

New in version 1.0.x.