From 7662eb10efa20d72249767a9916e234420f537b6 Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Tue, 9 Mar 2021 16:51:09 -0600
Subject: [PATCH] snapshot...

---
 modules/icing/pirep_goes.py | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py
index 4b04e188..cdaea490 100644
--- a/modules/icing/pirep_goes.py
+++ b/modules/icing/pirep_goes.py
@@ -48,14 +48,13 @@ def get_goes_datasource(timestamp):
 
     yr_dir = str(dt_obj.timetuple().tm_year)
     date_dir = dt_obj.strftime(dir_fmt)
-    yr_date = yr_dir+date_dir
 
     files_path = goes16_directory + '/' + yr_dir + '/' + date_dir + '/abi' + '/L1b' + '/RadC/'
-    ds = goes_ds_dct.get(yr_date)
+    ds = goes_ds_dct.get(date_dir)
     if ds is None:
-        print(yr_date)
+        print(date_dir)
         ds = GOESL1B(files_path)
-        goes_ds_dct[yr_date] = ds
+        goes_ds_dct[date_dir] = ds
     return ds
 
 
@@ -170,8 +169,11 @@ def analyze(ice_dct, no_ice_dct):
     print(np.sum(np.logical_and(hist_a > 0, hist_b > 0)))
 
     for ts in list(no_ice_dct.keys()):
-        ds = get_goes_datasource(ts)
-        goes_file = ds.get_file(ts)[0]
+        try:
+            ds = get_goes_datasource(ts)
+            goes_file = ds.get_file(ts)[0]
+        except Exception:
+            continue
 
 
 def create_file(filename, ds_list, ds_types):
-- 
GitLab