From 1f11706d7189f08aa1e4f021a4aa1ba60ae515a3 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Tue, 31 Aug 2021 15:36:29 -0500 Subject: [PATCH] minor --- modules/util/plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/util/plot.py b/modules/util/plot.py index 571a4d5d..c7856f1c 100644 --- a/modules/util/plot.py +++ b/modules/util/plot.py @@ -239,7 +239,7 @@ def make_icing_image(clvrx_file, ice_lons, ice_lats, ice_lons_vld=None, ice_lats ax.add_feature(ccrs.cartopy.feature.STATES, linewidth=0.25) ax.scatter(ice_lons, ice_lats, s=10.0, marker='o', color='blue', transform=ccrs.PlateCarree()) if ice_lats_vld is not None: - ax.scatter(ice_lons_vld, ice_lats_vld, s=20.0, marker='o', color='blue', transform=ccrs.PlateCarree()) + ax.scatter(ice_lons_vld, ice_lats_vld, s=20.0, marker='o', color='red', transform=ccrs.PlateCarree()) plt.title('GOES-16, 2019-04-30_18:26Z >60% Probability Icing', loc='left', fontweight='bold', fontsize=15) ImageDirAndName = os.path.join('/Users/tomrink', filename) fig.savefig(ImageDirAndName) -- GitLab