mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 10:04:18 -08:00
* Adding urban vs rural notebook * Adding new code * Adding settings * Adding usa.csv * Adding etl * Adding etl * Adding to etl_score * quick changes to notebook * Ensuring notebook can run * Adding urban vs rural notebook * Adding new code * Adding settings * Adding usa.csv * Adding etl * Adding etl * Adding to etl_score * quick changes to notebook * Ensuring notebook can run * adding urban to comparison tool * renaming file * adding urban rural to more comp tool outputs * updating requirements and poetry * Adding ej screen notebook * removing ej screen notebook since it's in justice40-tool-iss-719 Co-authored-by: La <ryy0@cdc.gov> Co-authored-by: lucasmbrown-usds <lucas.m.brown@omb.eop.gov>
72 lines
1.8 KiB
Python
72 lines
1.8 KiB
Python
DATASET_LIST = [
|
|
{
|
|
"name": "tree_equity_score",
|
|
"module_dir": "tree_equity_score",
|
|
"class_name": "TreeEquityScoreETL",
|
|
},
|
|
{
|
|
"name": "census_acs",
|
|
"module_dir": "census_acs",
|
|
"class_name": "CensusACSETL",
|
|
},
|
|
{
|
|
"name": "ejscreen",
|
|
"module_dir": "ejscreen",
|
|
"class_name": "EJScreenETL",
|
|
},
|
|
{
|
|
"name": "housing_and_transportation",
|
|
"module_dir": "housing_and_transportation",
|
|
"class_name": "HousingTransportationETL",
|
|
},
|
|
{
|
|
"name": "hud_housing",
|
|
"module_dir": "hud_housing",
|
|
"class_name": "HudHousingETL",
|
|
},
|
|
{
|
|
"name": "calenviroscreen",
|
|
"module_dir": "calenviroscreen",
|
|
"class_name": "CalEnviroScreenETL",
|
|
},
|
|
{
|
|
"name": "hud_recap",
|
|
"module_dir": "hud_recap",
|
|
"class_name": "HudRecapETL",
|
|
},
|
|
{
|
|
"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",
|
|
},
|
|
]
|
|
CENSUS_INFO = {
|
|
"name": "census",
|
|
"module_dir": "census",
|
|
"class_name": "CensusETL",
|
|
}
|