From 977ee95cd1949e90b676d4c10d19db4dea838a05 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Tue, 19 Mar 2024 10:21:09 -0500 Subject: [PATCH] snapshot... --- modules/icing/pirep_goes.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py index 1b5ac5bb..dd86957e 100644 --- a/modules/icing/pirep_goes.py +++ b/modules/icing/pirep_goes.py @@ -941,7 +941,6 @@ def analyze2(filename, filename_l1b): tn = np.sum(true_no_ice).astype(np.float32) fp = np.sum(false_ice).astype(np.float32) fn = np.sum(false_no_ice).astype(np.float32) - print(tp, tn, fp, fn) recall = tp / (tp + fn) precision = tp / (tp + fp) @@ -972,7 +971,6 @@ def analyze2(filename, filename_l1b): f.close() f_l1b.close() - return (icing_alt[no_ice], icing_alt[ice], cld_top_hgt[no_ice], cld_top_hgt[ice], cld_top_tmp[no_ice], cld_top_tmp[ice], -- GitLab