enter image description here
Using x and y from the dataframe, I need to plot z. The map should be 2d heatmap.
I could plot 3d scatter.
ax = plt.axes(projection='3d')
ax.scatter(data.x, data.y, data.bathymetry, 'green', alpha=0.02)
ax.set_title('3D line')
plt.figure(figsize=(15,15))
plt.show()
New contributor
Jintu Borah is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.