From a58751b1ad4b6babad4556f27e2e7fec4c46fe12 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Thu, 30 Sep 2021 14:42:29 -0500 Subject: [PATCH] refactor --- modules/util/plot.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/util/plot.py b/modules/util/plot.py index 059f108b..8aa029ac 100644 --- a/modules/util/plot.py +++ b/modules/util/plot.py @@ -207,11 +207,14 @@ def plot_image2(image, cmap='Greys'): #exmp_file = '/Users/tomrink/data/OR_ABI-L1b-RadC-M6C14_G16_s20193140811215_e20193140813588_c20193140814070.nc' # Full Disk exmp_file = '/Users/tomrink/data/OR_ABI-L1b-RadF-M6C16_G16_s20212521800223_e20212521809542_c20212521809596.nc' +exmp_name = 'Rad' +# exmp_file = '/Users/tomrink/data/H08/HS_H08_20200601_0330_B01_FLDK.nc' +# exmp_name = 'RAD' def plot_image3(image, cmap='Greys'): exmpl_ds = xr.open_dataset(exmp_file) - mdat = exmpl_ds.metpy.parse_cf('Rad') + mdat = exmpl_ds.metpy.parse_cf(exmp_name) geos = mdat.metpy.cartopy_crs x = mdat.x y = mdat.y -- GitLab