Update FEMA data to be tracts, not block groups (#906)

This commit is contained in:
Lucas Merrill Brown 2021-11-18 10:55:05 -05:00 committed by lucasmbrown-usds
commit 537844236a
5 changed files with 20 additions and 52 deletions

View file

@ -226,7 +226,6 @@ class ScoreETL(ExtractTransformLoad):
census_block_group_dfs = [
self.ejscreen_df,
self.census_acs_median_incomes_df,
self.national_risk_index_df,
]
census_block_group_df = self._join_cbg_dfs(census_block_group_dfs)
@ -241,6 +240,7 @@ class ScoreETL(ExtractTransformLoad):
self.geocorr_urban_rural_df,
self.persistent_poverty_df,
self.housing_and_transportation_df,
self.national_risk_index_df,
]
census_tract_df = self._join_tract_dfs(census_tract_dfs)