-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.py
43 lines (40 loc) · 1.03 KB
/
constants.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
STATION_LABELS = {
"A16": "116 St/FrDg", # B/C
"A17": "110 St/CPW ", # B/C
"A31": "14 St/8th ", # A/C/E/L
"117": "116 St/Bdwy", # 1
"118": "110 St/Bdwy", # 1
"119": "103 St/Bdwy", # 1
"120": "96 St/Bdwy ", # 1/2/3
"121": "86 St/Bdwy ", # 1
"122": "79 St/Bdwy ", # 1
"123": "72 St/Bdwy ", # 1
"124": "66 St/Bdwy ", # 1
"125": "59 St/ClmCr", # 1/A/B/C/D
"126": "50 St/Bdwy ", # 1
"127": "42 St/TmSqr", # 1/7/2/R/S/N/3/Q
"227": "110 St/CPN ", # 2/3
"132": "14 St/7th ", # 1/2/3
"101": "VanCort-242", # 1
"601": "Pelham Bay ", # 6
}
ROUTE_COLORS = {
"1": 0xEE352E,
"2": 0xEE352E,
"3": 0xEE352E,
"4": 0x00933C,
"5": 0x00933C,
"6": 0x00933C,
"A": 0x0039A6,
"B": 0xFF6319,
"C": 0x0039A6,
"D": 0xFF6319,
"E": 0x0039A6,
}
HEADER_COLOR = 0x444444
NULL_DATA_COLOR = 0xDD8000
BACKGROUND_COLOR = 0x000000
DIRECTION_LABELS = {"N": "N", "S": "S"}
DATA_URL = "https://api.wheresthefuckingtrain.com/by-id/"
DATA_LOCATION = ["data"]
NULL_DATA = " - -"