From b0fc133e294531e3e1c6bf3ecb9327fc153be7b0 Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Wed, 3 Mar 2021 17:21:43 -0600
Subject: [PATCH] snapshot...

---
 modules/icing/pirep_goes.py | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py
index f780fba6..1fd9d11c 100644
--- a/modules/icing/pirep_goes.py
+++ b/modules/icing/pirep_goes.py
@@ -20,6 +20,17 @@ time_keys = list(ice_dict.keys())
 
 hist = np.zeros(20)
 
+
+def get_clavrx_datasource(timestamp):
+    dt_obj, time_tup = get_time_tuple_utc(timestamp)
+    date_dir_str = dt_obj.strftime(dir_fmt)
+    ds = ds_dct.get(date_dir_str)
+    if ds is None:
+        ds = CLAVRx(clavrx_dir + date_dir_str + '/')
+        ds_dct[date_dir_str] = ds
+    return ds
+
+
 for idx, time in enumerate(time_keys):
     if (idx % 4) != 0:
         continue
@@ -37,17 +48,6 @@ for idx, time in enumerate(time_keys):
         counts, edges = np.histogram(images[0,], range=[150, 350], bins=20)
         hist += counts
 
-
-def get_clavrx_datasource(timestamp):
-    dt_obj, time_tup = get_time_tuple_utc(timestamp)
-    date_dir_str = dt_obj.strftime(dir_fmt)
-    ds = ds_dct.get(date_dir_str)
-    if ds is None:
-        ds = CLAVRx(clavrx_dir + date_dir_str + '/')
-        ds_dct[date_dir_str] = ds
-    return ds
-
-
 f = open('/home/rink/ice_hist.pkl', 'wb')
 pickle.dump(hist, f)
 f.close()
-- 
GitLab