Use tract instead of block group when calling census API (#901)

* Use tract instead of block group when calling census API

* fixing merge conflicts

Co-authored-by: Shelby Switzer <shelby.switzer@cms.hhs.gov>
Co-authored-by: lucasmbrown-usds <lucas.m.brown@omb.eop.gov>
This commit is contained in:
Shelby Switzer 2021-11-18 10:37:55 -05:00 committed by lucasmbrown-usds
commit 893758f1d4
2 changed files with 4 additions and 4 deletions

View file

@ -225,7 +225,6 @@ class ScoreETL(ExtractTransformLoad):
# Join all the data sources that use census block groups
census_block_group_dfs = [
self.ejscreen_df,
self.census_df,
self.census_acs_median_incomes_df,
self.national_risk_index_df,
]
@ -234,6 +233,7 @@ class ScoreETL(ExtractTransformLoad):
# Join all the data sources that use census tracts
census_tract_dfs = [
self.census_df,
self.hud_housing_df,
self.cdc_places_df,
self.cdc_life_expectancy_df,