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

Add argument `color_initial`

To function `plot_single_traj`.
parent 2a224a21
No related branches found
No related tags found
No related merge requests found
...@@ -33,12 +33,25 @@ def get_extr_coord(traj, e_overestim, SHPC, orientation): ...@@ -33,12 +33,25 @@ def get_extr_coord(traj, e_overestim, SHPC, orientation):
def plot_single_traj( def plot_single_traj(
traj, e_overestim, SHPC, orientation, ax, src_crs, annotate_flag, color traj,
e_overestim,
SHPC,
orientation,
ax,
src_crs,
annotate_flag,
color,
color_initial,
): ):
x, y = get_extr_coord(traj, e_overestim, SHPC, orientation) x, y = get_extr_coord(traj, e_overestim, SHPC, orientation)
ax.plot(x, y, color, linewidth=0.5, transform=src_crs) ax.plot(x, y, color, linewidth=0.5, transform=src_crs)
ax.plot( ax.plot(
x[0], y[0], marker="s", markersize=2, color="green", transform=src_crs x[0],
y[0],
marker="s",
markersize=2,
color=color_initial,
transform=src_crs,
) )
if annotate_flag: if annotate_flag:
...@@ -130,6 +143,7 @@ if __name__ == "__main__": ...@@ -130,6 +143,7 @@ if __name__ == "__main__":
src_crs, src_crs,
args.annotate, args.annotate,
color="red", color="red",
color_initial="green",
) )
break break
else: else:
...@@ -144,6 +158,7 @@ if __name__ == "__main__": ...@@ -144,6 +158,7 @@ if __name__ == "__main__":
src_crs, src_crs,
args.annotate, args.annotate,
color="red", color="red",
color_initial="green",
) )
else: else:
if args.min_duration == 1: if args.min_duration == 1:
...@@ -157,6 +172,7 @@ if __name__ == "__main__": ...@@ -157,6 +172,7 @@ if __name__ == "__main__":
src_crs, src_crs,
args.annotate, args.annotate,
color="red", color="red",
color_initial="green",
) )
else: else:
# args.min_duration > 1 # args.min_duration > 1
...@@ -177,6 +193,7 @@ if __name__ == "__main__": ...@@ -177,6 +193,7 @@ if __name__ == "__main__":
src_crs, src_crs,
args.annotate, args.annotate,
color="red", color="red",
color_initial="green",
) )
print( print(
......
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