Skip to content
Snippets Groups Projects
Commit 9e1146a4 authored by lukas leufen's avatar lukas leufen
Browse files

add progress to check station

parent b66bc397
Branches
Tags
3 merge requests!90WIP: new release update,!89Resolve "release branch / CI on gpu",!61Resolve "REFAC: clean-up bootstrap workflow"
Pipeline #32254 passed with warnings
...@@ -136,8 +136,9 @@ class PreProcessing(RunEnvironment): ...@@ -136,8 +136,9 @@ class PreProcessing(RunEnvironment):
# all required arguments of the DataGenerator can be found in args, positional arguments in args and kwargs # all required arguments of the DataGenerator can be found in args, positional arguments in args and kwargs
data_gen = DataGenerator(**args, **kwargs) data_gen = DataGenerator(**args, **kwargs)
for station in all_stations: for pos, station in enumerate(all_stations):
t_inner.run() t_inner.run()
logging.info(f"check station {station} ({pos + 1} / {len(all_stations)})")
try: try:
data = data_gen.get_data_generator(key=station, load_local_tmp_storage=load_tmp, data = data_gen.get_data_generator(key=station, load_local_tmp_storage=load_tmp,
save_local_tmp_storage=save_tmp) save_local_tmp_storage=save_tmp)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment