From c8e703c2e8416bd044920b54ae58b927fc1cbd02 Mon Sep 17 00:00:00 2001 From: Jake Pullen Date: Tue, 18 Nov 2025 21:18:02 +0000 Subject: [PATCH] tweaks --- config.py | 2 +- main.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config.py b/config.py index 51b4eca..e7e04ac 100644 --- a/config.py +++ b/config.py @@ -4,5 +4,5 @@ class Config: CSV_TOP_FOLDER = "./csv_files" COMBINED_FOLDER = "./combined_files" ZONE_FOLDER = "./zone_inputs" - AREAS_FILE = "areas.csv" + delete_dat_after_processing = False \ No newline at end of file diff --git a/main.py b/main.py index 55766cd..c591257 100644 --- a/main.py +++ b/main.py @@ -31,9 +31,9 @@ if __name__ == "__main__": locations.append([zone_id, easting, northing, zone]) - # testing locations, can be removed. - locations.append(["TM0816", 608500, 216500, 1]) - locations.append(["TF6842", 568500, 342500, 1]) + # # testing locations, can be removed. + # locations.append(["TM0816", 608500, 216500, 1]) + # locations.append(["TF6842", 568500, 342500, 1]) batch = BatchNimrod(Config) timeseries = GenerateTimeseries(Config)