From 2f3797835d84e96b66b7a95f87fc961bee4d1937 Mon Sep 17 00:00:00 2001 From: Lionel GUEZ <guez@lmd.ens.fr> Date: Fri, 6 Oct 2023 15:14:03 +0200 Subject: [PATCH] Change color of marker for initial position So we can better distinguish initial position from small islands on the map. --- Trajectories/plot_traj.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Trajectories/plot_traj.py b/Trajectories/plot_traj.py index ecf12b54..61455c8c 100755 --- a/Trajectories/plot_traj.py +++ b/Trajectories/plot_traj.py @@ -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: -- GitLab