From 96a135edc87ecd88ac1f80370a9a7c5f034fab7b Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Tue, 3 Jan 2023 22:50:37 -0600 Subject: [PATCH] snapshot... --- modules/icing/pirep_goes.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py index 781079e5..0d55a6aa 100644 --- a/modules/icing/pirep_goes.py +++ b/modules/icing/pirep_goes.py @@ -2154,7 +2154,7 @@ def split_data(times): [get_timestamp('2022-10-03_00:00'), get_timestamp('2022-10-08_23:59')], [get_timestamp('2022-10-17_00:00'), get_timestamp('2022-10-22_20:59')], [get_timestamp('2022-11-01_00:00'), get_timestamp('2022-11-05_23:59')], - [get_timestamp('2022-11-10_00:00'), get_timestamp('2022-12-15_23:59')]] + [get_timestamp('2022-11-10_00:00'), get_timestamp('2022-12-01_23:59')]] # time_ranges_lunar = [[get_timestamp('2018-02-01_00:00'), get_timestamp('2018-02-04_23:59')], # [get_timestamp('2018-04-01_00:00'), get_timestamp('2018-04-04_23:59')], @@ -2577,8 +2577,8 @@ def analyze(preds_file, labels, prob_avg, test_file): # nda[np.logical_and(nda >= 2000, nda < 4000)] = 1 # nda[np.logical_and(nda >= 4000, nda < 15000)] = 2 - nda[np.logical_and(nda >= 0, nda < 5000)] = 0 - nda[np.logical_and(nda >= 5000, nda < 8000)] = 1 + nda[np.logical_and(nda >= 0, nda < 3000)] = 0 + nda[np.logical_and(nda >= 3000, nda < 6000)] = 1 # nda[np.logical_and(nda >= 5200, nda < 6000)] = 2 # nda[np.logical_and(nda >= 6000, nda < 8000)] = 3 # nda[np.logical_and(nda >= 8000, nda < 15000)] = 4 -- GitLab