Skip to content

Commit

Permalink
Update germany_plot_v04.py
Browse files Browse the repository at this point in the history
changed position of labels for national workshops, removed point for RDM wrkshops
  • Loading branch information
BenjaminGolub authored Aug 1, 2024
1 parent b8c802f commit 7ec1057
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions germany_plot_v04.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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")
Expand Down

0 comments on commit 7ec1057

Please sign in to comment.