I have an array A with a shape of (75,552,552), where values are a function of (depth, longitude, latitude) (z,x,y) respectively.
and :
x = np.arange(-7.03125,27.28125,0.0622).
y = np.arange(-44.89006,-15.7057495,0.0529).
z = np.linspace(-0.511953294, -5902.05762,75)
A = np.random.rand(75,552,552)
I want to create a plot like pcolormesh or pcolor but in 4D (depth, lon, lat + Value) to look like the attached one.
