Proficients in Plotly, help me please. I have a matrix with heights. I need to build an analogue of go.Surface using Scatter. If this is not possible, then mark the points (vertices) on the Surface chart. All this is needed to better determine the vertices. Thank you.
import plotly.graph_objects as go
import pandas as pd
import numpy as np
z_data = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/api_docs/mt_bruno_elevation.csv')
fig = go.Figure()
fig.add_trace(go.Surface(z=z_data.values))
#fig.add_trace(go.Scatter3d(z=z_data.values))
fig.update_layout(title='Mt Bruno Elevation', autosize=False,
width=500, height=500,
margin=dict(l=65, r=50, b=65, t=90))
fig.show()
Similar to this