From 13f873128bdc8a4b5a8215b8230e8c7e2a0004eb Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Tue, 28 Nov 2023 10:41:32 -0600 Subject: [PATCH] snapshot... --- modules/util/plot.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/util/plot.py b/modules/util/plot.py index 98a78e46..a8210844 100644 --- a/modules/util/plot.py +++ b/modules/util/plot.py @@ -295,12 +295,14 @@ def make_icing_image(h5f, probs, ice_lons, ice_lats, clvrx_str_time, satellite, lats = ice_lats_vld[ice_intensity == 1] ax.scatter(lons, lats, s=500.0, marker='o', color='white', transform=ccrs.PlateCarree()) ax.scatter(lons, lats, s=200.0, marker='o', color='black', transform=ccrs.PlateCarree()) - ax.scatter(lons, lats, s=1000.0, marker='o', facecolors='none', edgecolors='black', transform=ccrs.PlateCarree()) + ax.scatter(lons, lats, s=5000.0, marker='o', facecolors='none', edgecolors='black', linewidths=2.0, + transform=ccrs.PlateCarree()) lons = ice_lons_vld[ice_intensity > 1] lats = ice_lats_vld[ice_intensity > 1] ax.scatter(lons, lats, s=500.0, marker='^', color='white', transform=ccrs.PlateCarree()) ax.scatter(lons, lats, s=200.0, marker='^', color='black', transform=ccrs.PlateCarree()) - ax.scatter(lons, lats, s=1000.0, marker='o', facecolors='none', edgecolors='black', transform=ccrs.PlateCarree()) + ax.scatter(lons, lats, s=5000.0, marker='o', facecolors='none', edgecolors='black', linewidths=2.0, + transform=ccrs.PlateCarree()) lons = ice_lons_vld[ice_intensity == -1] lats = ice_lats_vld[ice_intensity == -1] # ax.scatter(lons, lats, s=500.0, marker='o', color='white', transform=ccrs.PlateCarree()) -- GitLab