From f467d7811abed82b66bcf4911033fa906cdf1a27 Mon Sep 17 00:00:00 2001 From: lucasmbrown-usds Date: Thu, 20 Oct 2022 11:37:39 -0400 Subject: [PATCH] updating URLs --- data/data-pipeline/data_pipeline/etl/sources/ejscreen/etl.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/data/data-pipeline/data_pipeline/etl/sources/ejscreen/etl.py b/data/data-pipeline/data_pipeline/etl/sources/ejscreen/etl.py index cba408cc..b98fadac 100644 --- a/data/data-pipeline/data_pipeline/etl/sources/ejscreen/etl.py +++ b/data/data-pipeline/data_pipeline/etl/sources/ejscreen/etl.py @@ -15,9 +15,10 @@ class EJSCREENETL(ExtractTransformLoad): INPUT_GEOID_TRACT_FIELD_NAME: str = "ID" def __init__(self): - self.EJSCREEN_FTP_URL = "https://gaftp.epa.gov/EJSCREEN/2021/EJSCREEN_2021_USPR_Tracts.csv.zip" + self.EJSCREEN_FTP_URL = "https://gaftp.epa.gov/EJSCREEN/2022/EJSCREEN_2022_Full_with_AS_CNMI_GU_VI_Tracts.csv.zip" self.EJSCREEN_CSV = ( - self.get_tmp_path() / "EJSCREEN_2021_USPR_Tracts.csv" + self.get_tmp_path() + / "EJSCREEN_2022_Full_with_AS_CNMI_GU_VI_Tracts.csv" ) self.CSV_PATH = self.DATA_PATH / "dataset" / "ejscreen" self.df: pd.DataFrame