fix: 🐛 bring the combine into the write to csv step

This commit is contained in:
2025-12-09 16:19:51 +00:00
parent c415b81bc8
commit 84ba6c837c
2 changed files with 95 additions and 23 deletions
+5 -5
View File
@@ -14,7 +14,7 @@ logging.basicConfig(
if __name__ == "__main__":
os.makedirs(Path(Config.ASC_TOP_FOLDER), exist_ok=True)
os.makedirs(Path(Config.CSV_TOP_FOLDER), exist_ok=True)
#os.makedirs(Path(Config.CSV_TOP_FOLDER), exist_ok=True)
os.makedirs(Path(Config.COMBINED_FOLDER), exist_ok=True)
locations = []
@@ -92,11 +92,11 @@ if __name__ == "__main__":
logging.info("Writing CSV files...")
timeseries.write_results_to_csv(results, locations)
results.clear()
# results.clear()
logging.info("combining CSVs into groups")
combiner.combine_csv_files()
logging.info("CSVs combined!")
# logging.info("combining CSVs into groups")
# combiner.combine_csv_files()
# logging.info("CSVs combined!")
end = time.time()
elapsed_time = end - start