Upload constants.py
Browse files- src/constants.py +15 -0
src/constants.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
# Assign a color for each zone
|
| 3 |
+
zone_colors = {
|
| 4 |
+
"North": "blue", # Good
|
| 5 |
+
"South": "green", # Good
|
| 6 |
+
"East": "purple", # Good
|
| 7 |
+
"West": "orange", # Good
|
| 8 |
+
"Central": "black",
|
| 9 |
+
"North-West": "lightgray",
|
| 10 |
+
"North-East": "red",
|
| 11 |
+
"North-West": "darkblue",
|
| 12 |
+
"South-East": "darkblue"
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
ALL_ZONES = "All Zones"
|