maddiaks commited on
Commit
8fd8b81
·
verified ·
1 Parent(s): 54f4814

Upload constants.py

Browse files
Files changed (1) hide show
  1. 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"