diff --git a/notifications_utils/broadcast_areas/plot-areas.py b/notifications_utils/broadcast_areas/plot-areas.py index b1c76adea..77db88357 100755 --- a/notifications_utils/broadcast_areas/plot-areas.py +++ b/notifications_utils/broadcast_areas/plot-areas.py @@ -75,6 +75,22 @@ def main(): alpha=0.25, ) + ax.scatter( + [ + p[0] + for f in simple_features + for geom in (f.geoms if hasattr(f, 'geoms') else [f]) + for p in geom.exterior.coords + ], + [ + p[1] + for f in simple_features + for geom in (f.geoms if hasattr(f, 'geoms') else [f]) + for p in geom.exterior.coords + ], + transform=ccrs.PlateCarree(), + ) + plt.show()