-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cdc airquality generalized the code to download and process for four …
…imports
- Loading branch information
1 parent
ed151de
commit 6ea7a02
Showing
5 changed files
with
100,387 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
104 changes: 104 additions & 0 deletions
104
scripts/us_cdc/environmental_health_toxicology/manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
{ | ||
"import_specifications": [ | ||
{ | ||
"import_name": "CDC_PM25CensusTract", | ||
"curator_emails": [ | ||
"[email protected]" | ||
], | ||
"provenance_url": "https://data.cdc.gov/browse?category=Environmental+Health+%26+Toxicology", | ||
"provenance_description": "Environmental Health Toxicology", | ||
"scripts": [ | ||
"parse_air_quality.py CDC_PM25CensusTract" | ||
], | ||
"import_inputs": [ | ||
{ | ||
"template_mcf": "PM25CensusTractPollution.tmcf", | ||
"cleaned_csv": "output/PM2.5CensusTract_0.csv" | ||
}, | ||
{ | ||
"template_mcf": "PM25CensusTractPollution.tmcf", | ||
"cleaned_csv": "output/PM2.5CensusTract_1.csv" | ||
}, | ||
{ | ||
"template_mcf": "PM25CensusTractPollution.tmcf", | ||
"cleaned_csv": "output/PM2.5CensusTract_2.csv" | ||
}, | ||
{ | ||
"template_mcf": "PM25CensusTractPollution.tmcf", | ||
"cleaned_csv": "output/PM2.5CensusTract_3.csv" | ||
} | ||
|
||
], | ||
"cron_schedule": "0 1 1 * *" | ||
}, | ||
{ | ||
"import_name": "CDC_OzoneCensusTract", | ||
"curator_emails": [ | ||
"[email protected]" | ||
], | ||
"provenance_url": "https://data.cdc.gov/browse?category=Environmental+Health+%26+Toxicology", | ||
"provenance_description": "Environmental Health Toxicology", | ||
"scripts": [ | ||
"parse_air_quality.py CDC_OzoneCensusTract" | ||
], | ||
"import_inputs": [ | ||
{ | ||
"template_mcf": "OzoneCensusTractPollution.tmcf", | ||
"cleaned_csv": "output/Census_Tract_Level_Ozone_Concentrations_0.csv" | ||
}, | ||
{ | ||
"template_mcf": "OzoneCensusTractPollution.tmcf", | ||
"cleaned_csv": "output/PM2.Census_Tract_Level_Ozone_Concentrations_1.csv" | ||
}, | ||
{ | ||
"template_mcf": "OzoneCensusTractPollution.tmcf", | ||
"cleaned_csv": "output/Census_Tract_Level_Ozone_Concentrations_2.csv" | ||
}, | ||
{ | ||
"template_mcf": "OzoneCensusTractPollution.tmcf", | ||
"cleaned_csv": "output/Census_Tract_Level_Ozone_Concentrations_3" | ||
} | ||
|
||
], | ||
"cron_schedule": "0 1 1 * *" | ||
}, | ||
{ | ||
"import_name": "CDC_PM25County", | ||
"curator_emails": [ | ||
"[email protected]" | ||
], | ||
"provenance_url": "https://data.cdc.gov/browse?category=Environmental+Health+%26+Toxicology", | ||
"provenance_description": "Environmental Health Toxicology", | ||
"scripts": [ | ||
"parse_air_quality.py CDC_PM25County" | ||
], | ||
"import_inputs": [ | ||
{ | ||
"template_mcf": "PM25CountyPollution.tmcf", | ||
"cleaned_csv": "output/PM25county.csv" | ||
} | ||
|
||
], | ||
"cron_schedule": "0 1 1 * *" | ||
}, | ||
{ | ||
"import_name": "CDC_OzoneCounty", | ||
"curator_emails": [ | ||
"[email protected]" | ||
], | ||
"provenance_url": "https://data.cdc.gov/browse?category=Environmental+Health+%26+Toxicology", | ||
"provenance_description": "Environmental Health Toxicology", | ||
"scripts": [ | ||
"parse_air_quality.py CDC_OzoneCounty" | ||
], | ||
"import_inputs": [ | ||
{ | ||
"template_mcf": "OzoneCountyPollution.tmcf", | ||
"cleaned_csv": "output/OzoneCounty.csv" | ||
} | ||
|
||
], | ||
"cron_schedule": "0 1 1 * *" | ||
} | ||
] | ||
} |
Oops, something went wrong.