I have 4 columns (longitude, latitude, depth (Km), Value) and I want to plot in python and later extract some slices at specific depth from this plot.
Here is my try but I do not know how to further plot a few slices (e.g at depth of 2,4 and 5 Km).
very first part of Input file:
104.38 29.35 1 -0.0231
104.38 29.35 -0.07 0.02001
104.38 29.35 -1.14 -0.0052
104.38 29.35 -2.21 -0.0125
104.38 29.35 -3.28 -0.0096
104.38 29.35 -4.35 0.00230
104.38 29.35 -5.42 0.03000
104.38 29.35 -6.5 0.06930
104.38 29.382 1 0
104.38 29.382 -0.07 0.00623
104.38 29.382 -1.14 -0.0330
104.38 29.382 -2.21 0.02587
104.38 29.382 -3.28 0.02292
104.38 29.382 -4.35 0.01601
104.38 29.382 -5.42 0.01902
104.38 29.382 -6.5 -0.0055
104.38 29.414 1 0.00475
104.38 29.414 -0.07 0.01204
104.38 29.414 -1.14 0.02220
104.38 29.414 -2.21 0.02166
I tried this to plot:
import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
from matplotlib import cm
points = np.loadtxt("Q_12_Degrees_Hz.txt",delimiter=',')
lon = points[:,0]
lat = points[:,1]
depth = points[:,2]
V = points[:,3]
fig = plt.figure(figsize=(12, 9), dpi=80)
ax = fig.add_subplot(111, projection='3d')
ax.view_init(55,60)
V = V/ V.max().max()
ax.plot_trisurf(lon,lat,depth,facecolors=plt.cm.jet(V))
title("3-D")
ax.set_xlabel("Longitude [degrees]")
ax.set_ylabel("Latitude [degrees]")
ax.set_zlabel("Depth [km]")
P.S: really do not know why facecolor does not work
Output:
Expected Ideal Output:
Have a look here, in the official docs examples:
In particular, I would start (understanding) from the call(s) art3d.pathpatch_2d_to_3d. Looks suggestive.
Also, check this other answer: