Skip to content

Commit 040b94f

Browse files
committed
Fix Envista output filename to match AQS naming convention
Change output from envista_aqi_{year}.csv to aqi_envista_daily_{year}.csv to ensure files are picked up by staging consolidation glob pattern *aqi*{year}.csv
1 parent caf289f commit 040b94f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pipelines/envista/run_env_transform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def run():
6666
continue
6767

6868
# Write to AQI transform layer
69-
aqi_output_path = trans_aqi_dir / f"envista_aqi_{year_str}.csv"
69+
aqi_output_path = trans_aqi_dir / f"aqi_envista_daily_{year_str}.csv"
7070
write_csv(transform_daily_df, aqi_output_path)
7171
print(f"Wrote {len(transform_daily_df)} AQI records to {aqi_output_path}")
7272

0 commit comments

Comments
 (0)