From 7dccba2d7e7e7937763e528f9588b639522e4329 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Mon, 4 Oct 2021 16:52:55 -0500 Subject: [PATCH] minor --- modules/icing/pirep_goes.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py index 21f28404..55a4b54c 100644 --- a/modules/icing/pirep_goes.py +++ b/modules/icing/pirep_goes.py @@ -1799,7 +1799,10 @@ def run_make_images(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', ckpt_dir_s_pat if pirep_file is not None: ice_dict, no_ice_dict, neg_ice_dict = setup(pirep_file) - clvrx_ds = CLAVRx(clvrx_dir) + if satellite == 'H08': + clvrx_ds = CLAVRx_H08(clvrx_dir) + else: + clvrx_ds = CLAVRx(clvrx_dir) clvrx_files = clvrx_ds.flist for fname in clvrx_files: -- GitLab