diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py index c8f2843aab9984e9d539f8e8819a181cb64b983c..b3321185842e16d6ad0c926ff035b4d3ebadabd3 100644 --- a/modules/icing/pirep_goes.py +++ b/modules/icing/pirep_goes.py @@ -1717,7 +1717,6 @@ def process_boeing(boeing_dct, pirep_dct, threshold=3000): grd_bins_boeing = np.where(grd_bins_boeing > 0, 1, grd_bins_boeing) ovrlp_grd_bins = grd_bins + grd_bins_boeing - print(np.sum(ovrlp_grd_bins == 2)) ovlp_keys = [] for j in range(lat_space.shape[0]): @@ -1729,9 +1728,13 @@ def process_boeing(boeing_dct, pirep_dct, threshold=3000): ovlp_keys.append(keys[k]) set_a = set(ovlp_keys) set_b = set(boeing_times) - print(len(set_a), len(set_b)) set_b.difference_update(set_a) - print(len(set_b)) + + no_ovlp_dct = {} + for key in set_b: + no_ovlp_dct[key] = boeing_dct.get(key) + + return no_ovlp_dct # dt_str_0: start datetime string in format YYYY-MM-DD_HH:MM (default)