From 8456b871d6f0b9a8515d98c56b2933463d3d62fd Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Mon, 11 Oct 2021 13:48:40 -0500
Subject: [PATCH] start support for Boeing icing data...

---
 modules/icing/pireps.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/modules/icing/pireps.py b/modules/icing/pireps.py
index 3a17d79f..3ffa7720 100644
--- a/modules/icing/pireps.py
+++ b/modules/icing/pireps.py
@@ -168,4 +168,7 @@ def pirep_icing_from_boeing(dirname='/ships19/cloud/scratch/ICING/BOEING/icing/2
     for fname in flist:
         h5f = h5py.File(fname, 'r')
         ice_bool = h5f['ice_bool'][:]
-        cnt += ice_bool.shape[0]
\ No newline at end of file
+        cnt += ice_bool.shape[0]
+        print(fname)
+        h5f.close()
+    print('num icing: ', cnt)
\ No newline at end of file
-- 
GitLab