Display log trail as a tube#

image
# sphinx_gallery_thumbnail_path = '_static/cigvis/3Dvispy/07.png'

import numpy as np
import cigvis
from pathlib import Path
root = Path(__file__).resolve().parent.parent.parent

sxp = root / 'data/co2/sx.dat'
ni, nx, nt = 192, 192, 240

sx = np.fromfile(sxp, np.float32).reshape(ni, nx, nt)

x = np.linspace(50, 100, 5000)
y = np.linspace(50, 150, 5000)
z = np.sin((y - 50) / 200 * np.pi) * 200

points = np.c_[x, y, z]

nodes = cigvis.create_slices(sx)
nodes += cigvis.create_well_logs(points, cmap='red')

cigvis.plot3D(nodes, size=(800, 800), savename='example.png')

Total running time of the script: (0 minutes 0.000 seconds)

Gallery generated by Sphinx-Gallery