fix: 🚑️ Updated documentation and small tweaks to tidy up

This commit is contained in:
2025-12-09 18:23:17 +00:00
parent e4f8c2d502
commit 85deee7843
4 changed files with 12 additions and 17 deletions
+10 -10
View File
@@ -12,6 +12,16 @@ logging.basicConfig(
level=logging.INFO, format="%(asctime)s - %(levelname)s - %(message)s"
)
def process_pipeline(dat_file):
# 1. Process DAT to ASC
asc_file = batch._process_single_file(dat_file)
if not asc_file:
return None
# 2. Extract data from ASC
file_results = timeseries.process_asc_file(asc_file, locations)
return file_results
if __name__ == "__main__":
os.makedirs(Path(Config.ASC_TOP_FOLDER), exist_ok=True)
os.makedirs(Path(Config.COMBINED_FOLDER), exist_ok=True)
@@ -45,16 +55,6 @@ if __name__ == "__main__":
# Initialize results structure
results = {loc[0]: {"dates": [], "values": []} for loc in locations}
def process_pipeline(dat_file):
# 1. Process DAT to ASC
asc_file = batch._process_single_file(dat_file)
if not asc_file:
return None
# 2. Extract data from ASC
file_results = timeseries.process_asc_file(asc_file, locations)
return file_results
# Get list of DAT files
dat_files = [
f for f in os.listdir(Path(Config.DAT_TOP_FOLDER)) if not f.startswith(".")