Skip to content

Commit f410ee7

Browse files
committed
changed size-limit for zip-files from 500kB to 150kB, otherwise polly_1v2 2h-files were not processed.
1 parent 2475f7d commit f410ee7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/interface/concat_pollyxt_lvl0.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def get_pollyxt_files():
131131
## check for size of zip-files to ensure to exclude bad measurement files with wrong timestamp e.g. 19700101
132132
f_size = os.path.getsize(zip_file)
133133
print(zip_file)
134-
if f_size > 500000:
134+
if f_size > 150000:
135135
print(f_size)
136136
print("filesize passes")
137137
else:

0 commit comments

Comments
 (0)