blitzkrieg0000 commited on
Commit
d4b45ad
·
verified ·
1 Parent(s): ad81be2

Upload Consts.py

Browse files
Files changed (1) hide show
  1. Lib/Consts.py +3 -0
Lib/Consts.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ LABELS = {0: "Boş", 1: "Çelik Direkler", 2: "Kafes Kule", 3: "Kablo", 4: "Ahşap Kule"}
2
+ COLOR_MAP = {"Boş":"#ffffff", "Çelik Direkler":"#0000ff", "Kafes Kule":"#ff0000", "Kablo":"#00ff00", "Ahşap Kule":"#ff0000"}
3
+ COLOR_MAP_RGB = {key : [ int(value[1:3], 16), int(value[3:5], 16), int(value[5:7], 16)] for key, value in COLOR_MAP.items()}