From 32dd2aa1a295c610ef5dee29fd04bd9530771fee Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Fri, 10 Nov 2023 10:43:29 -0600 Subject: [PATCH] snapshot... --- modules/util/plot.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/util/plot.py b/modules/util/plot.py index 0127d97c..d3b02ac6 100644 --- a/modules/util/plot.py +++ b/modules/util/plot.py @@ -280,6 +280,10 @@ 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='^', color='white', transform=ccrs.PlateCarree()) ax.scatter(lons, lats, s=200.0, marker='^', color='black', 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()) + ax.scatter(lons, lats, s=200.0, marker='o', color='green', transform=ccrs.PlateCarree()) title = satellite+', '+clvrx_str_time+' >50% Probability Icing' -- GitLab