Skip to content
Snippets Groups Projects
Commit 2f379783 authored by Lionel GUEZ's avatar Lionel GUEZ
Browse files

Change color of marker for initial position

So we can better distinguish initial position from small islands on
the map.
parent 26a986ca
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ def plot_single_traj(traj, e_overestim, SHPC, orientation, ax, src_crs,
annotate_flag, color):
x, y = get_extr_coord(traj, e_overestim, SHPC, orientation)
ax.plot(x, y, color, linewidth = 0.5, transform = src_crs)
ax.plot(x[0], y[0], marker = "s", markersize = 2, color = "black",
ax.plot(x[0], y[0], marker = "s", markersize = 2, color = "green",
transform = src_crs)
if annotate_flag:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment