-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDATE_NUMBER_TO_WEEK_NUMBER_data.py
104 lines (104 loc) · 4.58 KB
/
DATE_NUMBER_TO_WEEK_NUMBER_data.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
DATE_NUMBER_TO_WEEK_NUMBER_2019 = {'905': 1, # 2019
'908': 1,
'909': 1,
'912': 2,
'915': 2,
'916': 2,
'919': 3,
'922': 3,
'923': 3,
'926': 4,
'929': 4,
'930': 4,
'1003': 5,
'1006': 5,
'1007': 5,
'1010': 6,
'1013': 6,
'1014': 6,
'1017': 7,
'1020': 7,
'1021': 7,
'1024': 8,
'1027': 8,
'1028': 8,
'1031': 9,
'1103': 9,
'1104': 9,
'1107': 10,
'1110': 10,
'1111': 10,
'1114': 11,
'1117': 11,
'1118': 11, # not in original but true
'1119': 11, # some of these dates aren't even accurate
'1121': 12,
'1124': 12,
'1125': 12,
'1128': 13,
'1201': 13,
'1202': 13,
'1205': 14,
'1208': 14,
'1209': 11, # not in original but true
'1211': 14, # some of these dates aren't even accurate. this game, philly vs. NYG should be dec. 9th
'1212': 15,
'1215': 15,
'1216': 15,
'1221': 16,
'1222': 16,
'1223': 16,
'1229': 17}
DATE_NUMBER_TO_WEEK_NUMBER_2018 = {'906': 1, # 2019
'909': 1,
'910': 1,
'913': 2,
'916': 2,
'917': 2,
'920': 3,
'923': 3,
'924': 3,
'927': 4,
'930': 4,
'1001': 4,
'1004': 5,
'1007': 5,
'1008': 5,
'1011': 6,
'1014': 6,
'1015': 6,
'1018': 7,
'1021': 7,
'1022': 7,
'1025': 8,
'1028': 8,
'1029': 8,
'1101': 9,
'1104': 9,
'1105': 9,
'1108': 10,
'1111': 10,
'1112': 10,
'1115': 11,
'1118': 11,
'1119': 11, # not in original but true
'1120': 11, # some of these dates aren't even accurate
'1122': 12,
'1125': 12,
'1126': 12,
'1129': 13,
'1202': 13,
'1203': 13,
'1206': 14,
'1209': 14,
'1210': 14, # not in original but true
'1212': 14, # some of these dates aren't even accurate. this game, philly vs. NYG should be dec. 9th
'1213': 15,
'1214': 15,
'1215': 15,
'1216': 15,
'1217': 15,
'1222': 16,
'1223': 16,
'1224': 16,
'1230': 17}