adding tree equity score to the data pipeline (#398)

* adding tree equity score to the downloading pipeline so it can be easily compared as a reference index!

* removed redundant dependencies
This commit is contained in:
Rohit Musti 2021-07-26 08:00:57 -04:00 committed by GitHub
commit 81290ce672
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 50 additions and 0 deletions

View file

@ -16,6 +16,11 @@ def etl_runner(dataset_to_run: str = None) -> None:
# this list comes from YAMLs
dataset_list = [
{
"name": "tree_equity_score",
"module_dir": "tree_equity_score",
"class_name": "TreeEquityScoreETL",
},
{
"name": "census_acs",
"module_dir": "census_acs",