diff --git a/src/robofish/io/file.py b/src/robofish/io/file.py
index a1b82e001e2c179f1961d54404d3152619304fd1..106396022174bcb7b80be1386080a7104c2d4118 100644
--- a/src/robofish/io/file.py
+++ b/src/robofish/io/file.py
@@ -971,6 +971,15 @@ class File(h5py.File):
             label="End",
             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):
             ax.legend(legend)
         elif legend: