forked from MaJingRui-SH/Coronavirus-Dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
globals.js
123 lines (118 loc) · 1.98 KB
/
globals.js
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
exports.allRegions = [{
name: "World",
sheetName: "Global",
startKey: "WORLD",
totalKey: "TOTAL",
scraper: "bno"
},
{
name: "USA",
sheetName: "USA",
startKey: "UNITED STATES",
totalKey: "U.S. TOTAL",
scraper: "bno"
},
{
name: "China",
sheetName: "China",
startKey: "MAINLAND CHINA",
totalKey: "TOTAL",
scraper: "bno"
},
{
name: "Canada",
sheetName: "Canada",
startKey: "CANADA",
totalKey: "TOTAL",
scraper: "bno"
},
{
name: "Australia",
sheetName: "Australia",
startKey: "AUSTRALIA",
totalKey: "TOTAL",
scraper: "bno"
},
{
name: "Latin America",
sheetName: "LatinAmerica",
startKey: "Mundo Hispano",
totalKey: "TOTAL",
scraper: "bno"
},
{
name: "Europe",
sheetName: "Europe",
scraper: "coronatracker"
}
];
exports.displayOrder = [
"Global",
"USA",
"Europe",
"China",
"Canada",
"Australia",
"LatinAmerica"
];
exports.countryLists = {
Europe: [
"Albania",
"Austria",
"Belarus",
"Belgium",
"Bosnia and Herzegovina",
"Bulgaria",
"Czechia",
"Croatia",
"Cyprus",
"Czech Republic",
"Denmark",
"Estonia",
"Finland",
"France",
"Germany",
"Greece",
"Hungary",
"Ireland",
"Italy",
"Latvia",
"Lithuania",
"Luxembourg",
"Malta",
"Netherlands",
"Norway",
"Poland",
"Portugal",
"Romania",
"San Marino",
"Serbia",
"Slovakia",
"Slovenia",
"Spain",
"Sweden",
"Switzerland",
"United Kingdom"
]
};
exports.AlternativeLabelNames = {
"Bosnia and Herzegovina": "Bosnia",
"Brasil": "Brazil",
"Czechia": "Czech Republic",
"México": "Mexico",
"Panamá": "Panama",
"Rep. Dominicana": "Dominican Republic"
}
exports.regionStructure = {
regionName: "",
regions: [],
regionTotal: {}
};
exports.countryStructure = {
country: "TOTAL",
cases: "",
deaths: "",
recovered: "",
serious: "",
critical: ""
};