-
Notifications
You must be signed in to change notification settings - Fork 0
/
covid-parameters.json
47 lines (47 loc) · 1.37 KB
/
covid-parameters.json
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
{
"folder_covid_raw": "../CGAP-data/CGAP-covid/raw/",
"folder_covid_aggregate": "../CGAP-data/CGAP-covid/aggregate/",
"inner_or_outer_join": "inner",
"data": {
"bing": {
"columns_to_drop": [
"ID",
"Latitude",
"Longitude"
],
"date_column": "Updated",
"dtype": {
},
"file_path_or_filter_name_conditions": "Bing-COVID-19-Data/data/Bing-COVID19-Data.csv",
"mapping": {
"Updated": "date",
"ISO2": "iso_2",
"ISO3": "iso_3",
"Country_Region": "country_name",
"AdminRegion1": "state_name",
"AdminRegion2": "county_name"
}
},
"google": {
"columns_to_drop": [
""
],
"date_column": "date",
"dtype": {
"sub_region_2": "str"
},
"file_path_or_filter_name_conditions": [
"global",
"mobility",
"report",
"csv"
],
"mapping": {
"country_region_code": "iso_2",
"country_region": "country_name",
"sub_region_1": "state_name",
"sub_region_2": "county_name"
}
}
}
}