Skip to content
Snippets Groups Projects
Commit 86ee5e23 authored by tomrink's avatar tomrink
Browse files

try apply qc filter to no-icing as well

parent 7722bac7
No related branches found
No related tags found
No related merge requests found
...@@ -697,7 +697,7 @@ def run_qc(filename, filename_l1b, day_night='ANY', pass_thresh_frac=0.20, icing ...@@ -697,7 +697,7 @@ def run_qc(filename, filename_l1b, day_night='ANY', pass_thresh_frac=0.20, icing
if icing: if icing:
if frac > pass_thresh_frac: if frac > pass_thresh_frac:
keep_idxs.append(idxs[i]) keep_idxs.append(idxs[i])
elif frac < pass_thresh_frac: elif frac > pass_thresh_frac:
keep_idxs.append(idxs[i]) keep_idxs.append(idxs[i])
print('num valid pireps: ', len(keep_idxs)) print('num valid pireps: ', len(keep_idxs))
......
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