mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 18:14:19 -08:00
* draft wip * initial commit * clear output from notebook * revert to65ceb7900f
* draft wip * initial commit * clear output from notebook * revert to65ceb7900f
* make michigan prefix for readable * standardize Michigan names and move all constants from class into field names module * standardize Michigan names and move all constants from class into field names module * include only pertinent columns for scoring comparison tool * michigan EJSCREEN standardization * final PR feedback * added exposition and summary of Michigan EJSCREEN * added exposition and summary of Michigan EJSCREEN * fix typo Co-authored-by: Saran Ahluwalia <ahlusar.ahluwalia@gmail.com>
112 lines
2.9 KiB
Python
112 lines
2.9 KiB
Python
DATASET_LIST = [
|
|
{
|
|
"name": "census_acs",
|
|
"module_dir": "census_acs",
|
|
"class_name": "CensusACSETL",
|
|
},
|
|
{
|
|
"name": "census_acs_2010",
|
|
"module_dir": "census_acs_2010",
|
|
"class_name": "CensusACS2010ETL",
|
|
},
|
|
{
|
|
"name": "ejscreen",
|
|
"module_dir": "ejscreen",
|
|
"class_name": "EJSCREENETL",
|
|
},
|
|
{
|
|
"name": "hud_housing",
|
|
"module_dir": "hud_housing",
|
|
"class_name": "HudHousingETL",
|
|
},
|
|
{
|
|
"name": "cdc_places",
|
|
"module_dir": "cdc_places",
|
|
"class_name": "CDCPlacesETL",
|
|
},
|
|
{
|
|
"name": "national_risk_index",
|
|
"module_dir": "national_risk_index",
|
|
"class_name": "NationalRiskIndexETL",
|
|
},
|
|
{
|
|
"name": "census_acs_median_income",
|
|
"module_dir": "census_acs_median_income",
|
|
"class_name": "CensusACSMedianIncomeETL",
|
|
},
|
|
{
|
|
"name": "cdc_life_expectancy",
|
|
"module_dir": "cdc_life_expectancy",
|
|
"class_name": "CDCLifeExpectancy",
|
|
},
|
|
{
|
|
"name": "doe_energy_burden",
|
|
"module_dir": "doe_energy_burden",
|
|
"class_name": "DOEEnergyBurden",
|
|
},
|
|
{
|
|
"name": "geocorr",
|
|
"module_dir": "geocorr",
|
|
"class_name": "GeoCorrETL",
|
|
},
|
|
{
|
|
"name": "child_opportunity_index",
|
|
"module_dir": "child_opportunity_index",
|
|
"class_name": "ChildOpportunityIndex",
|
|
},
|
|
{
|
|
"name": "mapping_inequality",
|
|
"module_dir": "mapping_inequality",
|
|
"class_name": "MappingInequalityETL",
|
|
},
|
|
{
|
|
"name": "persistent_poverty",
|
|
"module_dir": "persistent_poverty",
|
|
"class_name": "PersistentPovertyETL",
|
|
},
|
|
{
|
|
"name": "ejscreen_areas_of_concern",
|
|
"module_dir": "ejscreen_areas_of_concern",
|
|
"class_name": "EJSCREENAreasOfConcernETL",
|
|
},
|
|
{
|
|
"name": "census_decennial",
|
|
"module_dir": "census_decennial",
|
|
"class_name": "CensusDecennialETL",
|
|
},
|
|
{
|
|
"name": "housing_and_transportation",
|
|
"module_dir": "housing_and_transportation",
|
|
"class_name": "HousingTransportationETL",
|
|
},
|
|
{
|
|
"name": "calenviroscreen",
|
|
"module_dir": "calenviroscreen",
|
|
"class_name": "CalEnviroScreenETL",
|
|
},
|
|
{
|
|
"name": "hud_recap",
|
|
"module_dir": "hud_recap",
|
|
"class_name": "HudRecapETL",
|
|
},
|
|
{
|
|
"name": "energy_definition_alternative_draft",
|
|
"module_dir": "energy_definition_alternative_draft",
|
|
"class_name": "EnergyDefinitionAlternativeDraft",
|
|
},
|
|
{
|
|
"name": "tree_equity_score",
|
|
"module_dir": "tree_equity_score",
|
|
"class_name": "TreeEquityScoreETL",
|
|
},
|
|
{
|
|
"name": "michigan_ejscreen",
|
|
"module_dir": "michigan_ejscreen",
|
|
"class_name": "MichiganEnviroScreenETL",
|
|
},
|
|
]
|
|
CENSUS_INFO = {
|
|
"name": "census",
|
|
"module_dir": "census",
|
|
"class_name": "CensusETL",
|
|
}
|