Skip to content
Snippets Groups Projects
Commit ff4310a2 authored by Andi Gerken's avatar Andi Gerken
Browse files

Plotting start for tracks when plotting a track

parent 14dc4f58
Branches
Tags
1 merge request!51Merging develop with develop_mathis
...@@ -971,6 +971,15 @@ class File(h5py.File): ...@@ -971,6 +971,15 @@ class File(h5py.File):
label="End", label="End",
zorder=5, zorder=5,
) )
ax.scatter(
[poses[:, 0, 0]],
[poses[:, 0, 1]],
marker="o",
c="black",
s=ms,
label="Start",
zorder=5,
)
if legend and isinstance(legend, str): if legend and isinstance(legend, str):
ax.legend(legend) ax.legend(legend)
elif legend: elif legend:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment