From 7ec105768dd35398f009041fedfbb0c4bb097667 Mon Sep 17 00:00:00 2001 From: BenjaminGolub <107389350+BenjaminGolub@users.noreply.github.com> Date: Thu, 1 Aug 2024 07:30:42 +0200 Subject: [PATCH] Update germany_plot_v04.py changed position of labels for national workshops, removed point for RDM wrkshops --- germany_plot_v04.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/germany_plot_v04.py b/germany_plot_v04.py index 7d0230b..4c08ba0 100644 --- a/germany_plot_v04.py +++ b/germany_plot_v04.py @@ -73,7 +73,7 @@ topiclabel = None if m == 1: ms = 35 - elif city[n]=="8xNationalChemotion": + elif city[n]=="8xNationalChemotion" or city[n]=="8xNationalRDM": ms = 0 else: ms = 20 @@ -145,9 +145,9 @@ elif city[n]=="8xNationalChemotion": plt.annotate("+ 9 national Chemotion WS", xy=(x,y), xytext=(4.0,-2.0), textcoords="offset points", size="5") elif city[n]=="8xNationalRDM": - plt.annotate("8 national RDM WS", xy=(x,y), xytext=(4.0,-2.0), textcoords="offset points", size="5") + plt.annotate("+ 8 national RDM WS", xy=(x,y), xytext=(0.0,-2.0), textcoords="offset points", size="5") else: - plt.annotate(city[n], xy=(x,y), xytext=(4.0,-2.0), textcoords="offset points", size="5") + plt.annotate(city[n], xy=(x,y), xytext=(0.0,-2.0), textcoords="offset points", size="5") #for x, y, label in zip(cities.geometry.x, cities.geometry.y, cities.name): # ax.annotate(label, xy=(x, y), xytext=(3, 3), textcoords="offset points")