Skip to content
Snippets Groups Projects
Commit 3db607d1 authored by leufen1's avatar leufen1
Browse files

log progress in serial approach too

parent 8dfad2e0
No related branches found
No related tags found
3 merge requests!522filter can now combine obs, forecast, and apriori for first iteration. Further...,!521Resolve "release v2.4.0",!518Resolve "Use Toar statistics api v2"
Pipeline #143051 passed
...@@ -295,11 +295,12 @@ class PreProcessing(RunEnvironment): ...@@ -295,11 +295,12 @@ class PreProcessing(RunEnvironment):
else: # serial solution else: # serial solution
logging.info("use serial validate station approach") logging.info("use serial validate station approach")
kwargs.update({"return_strategy": "result"}) kwargs.update({"return_strategy": "result"})
for station in set_stations: for i, station in enumerate(set_stations):
dh, s = f_proc(data_handler, station, set_name, store_processed_data, **kwargs) dh, s = f_proc(data_handler, station, set_name, store_processed_data, **kwargs)
if dh is not None: if dh is not None:
collection.add(dh) collection.add(dh)
valid_stations.append(s) valid_stations.append(s)
logging.info(f"...finished: {s} ({int((i + 1.) / len(set_stations) * 100)}%)")
logging.info(f"run for {t_outer} to check {len(set_stations)} station(s). Found {len(collection)}/" logging.info(f"run for {t_outer} to check {len(set_stations)} station(s). Found {len(collection)}/"
f"{len(set_stations)} valid stations ({set_name}).") f"{len(set_stations)} valid stations ({set_name}).")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment