From ef23e296c7df735280970870fd148dfe0c7d622b Mon Sep 17 00:00:00 2001 From: XANTRONIX Industrial Date: Tue, 1 Apr 2025 11:05:28 -0400 Subject: [PATCH] Increase size of some city dots --- lib/xmet/map.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/xmet/map.py b/lib/xmet/map.py index c779111..9f8d78d 100644 --- a/lib/xmet/map.py +++ b/lib/xmet/map.py @@ -89,6 +89,8 @@ class EquirectMap(): radius = 3 elif city.population >= 100000: radius = 2.5 + elif city.population >= 10000: + radius = 1.9 else: radius = 1.3