From 10e286cf467aa491accf42c4ed37786d12beec20 Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Tue, 28 Nov 2023 10:25:51 -0600
Subject: [PATCH] snapshot...

---
 modules/util/plot.py | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/modules/util/plot.py b/modules/util/plot.py
index 329d4f2f..98a78e46 100644
--- a/modules/util/plot.py
+++ b/modules/util/plot.py
@@ -256,7 +256,8 @@ def plot_image3(image, bt, cmap='Greys'):
 
 def make_icing_image(h5f, probs, ice_lons, ice_lats, clvrx_str_time, satellite, domain, ice_lons_vld=None, ice_lats_vld=None,
                      ice_intensity=None, imagename='icing', extent=[-110, -60, 10, 55]):
-    mrkr_styl = MarkerStyle('o', fillstyle=None)
+    # keep for reference
+    # mrkr_styl = MarkerStyle('o', fillstyle=None)
     geos, xlen, xmin, xmax, ylen, ymin, ymax = get_cartopy_crs(satellite, domain)
     bg_image = None
     if h5f is not None:
@@ -294,12 +295,12 @@ 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=mrkr_styl, color='black', transform=ccrs.PlateCarree())
+            ax.scatter(lons, lats, s=1000.0, marker='o', facecolors='none', edgecolors='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='^', 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=mrkr_styl, color='black', transform=ccrs.PlateCarree())
+            ax.scatter(lons, lats, s=1000.0, marker='o', facecolors='none', edgecolors='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())
-- 
GitLab