1
Fork 0

Fixed x plot

This commit is contained in:
Edgar P. Burkhart 2022-03-03 15:23:53 +01:00
parent 745c4ee181
commit 301c2a5e47
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ ax_r.grid()
fig_x, ax_x = plt.subplots()
ax_x.plot(bathy.index, botl[0, :], color='k')
ax_x.plot(bathy.index, (dep-botl)[t == t0, :])
ax_x.plot(bathy.index, (dep-botl)[t == t0, :].T)
ax_x.axvline(x0)
ax_x.set(xlabel="x (m)", ylabel="z (m)")
ax_x.autoscale(axis="x", tight=True)