From 1fe91d9f1fffe26882da0f4f34287700cffca5a2 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Mon, 4 Oct 2021 14:56:16 -0500 Subject: [PATCH] minor --- 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 40d8e18f..88a54b48 100644 --- a/modules/util/plot.py +++ b/modules/util/plot.py @@ -237,7 +237,10 @@ def make_icing_image(h5f, ice_lons, ice_lats, clvrx_str_time, satellite, domain, fig = plt.figure(figsize=(48, 30)) ax = fig.add_subplot(1, 1, 1, projection=geos) if extent is not None: - ax.set_extent(extent, crs=ccrs.PlateCarree()) + if satellite == 'H08': + ax.set_extent(extent, crs=geos) + else: + ax.set_extent(extent, crs=ccrs.PlateCarree()) ax.imshow(image, origin='upper', extent=(xmin, xmax, ymin, ymax), cmap='Greys', transform=geos) ax.coastlines(resolution='50m', color='green', linewidth=1.50) # ax.add_feature(ccrs.cartopy.feature.STATES, linewidth=0.25) -- GitLab