Fixed t plot in post
This commit is contained in:
parent
b73f81c4ea
commit
2a2793f92e
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ ax_r.grid()
|
|||
|
||||
fig_x, ax_x = plt.subplots()
|
||||
ax_x.plot(-data["botl"], color="k")
|
||||
ax_x.plot(data["dep"][t == t0, :] - data["botl"])
|
||||
ax_x.plot(data["dep"][np.argmin(np.abs(t - t0)), :] - data["botl"])
|
||||
ax_x.axvline(x0, c="k", alpha=0.2)
|
||||
ax_x.set(xlabel="x (m)", ylabel="z (m)")
|
||||
ax_x.autoscale(axis="x", tight=True)
|
||||
|
|
Loading…
Reference in a new issue