From b86790f1431663733b879fc8a6a7a1544571e25c Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Sat, 2 Oct 2021 15:52:00 -0500 Subject: [PATCH] bug fix --- modules/util/plot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/util/plot.py b/modules/util/plot.py index 9c347727..b29cbbe1 100644 --- a/modules/util/plot.py +++ b/modules/util/plot.py @@ -242,8 +242,8 @@ def make_icing_image(clvrx_file, ice_lons, ice_lats, clvrx_str_time, satellite, ax = fig.add_subplot(1, 1, 1, projection=geos) 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='black', linewidth=0.25) - ax.add_feature(ccrs.cartopy.feature.STATES, linewidth=0.25) + ax.coastlines(resolution='50m', color='blue', linewidth=0.25) + ax.add_feature(ccrs.cartopy.feature.STATES, color='blue',linewidth=0.25) if ice_lons is not None: ax.scatter(ice_lons, ice_lats, s=40.0, marker='o', color='blue', transform=ccrs.PlateCarree()) if ice_lats_vld is not None: -- GitLab