From 96a65e9ebf9eec0a5aebe9a6d84423ead56e233e Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Mon, 20 Dec 2021 16:34:25 -0600
Subject: [PATCH] minor

---
 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 9f7e9104..d576b7c8 100644
--- a/modules/util/plot.py
+++ b/modules/util/plot.py
@@ -217,7 +217,7 @@ def plot_image3(image, bt, cmap='Greys'):
     ax.set_extent([-105, -70, 15, 50], crs=ccrs.PlateCarree())
     #ax.imshow(bt, cmap=cmap, origin='upper', extent=(xmin, xmax, ymin, ymax), transform=geos)
     #ax.imshow(image, cmap='YlGnBu', origin='upper', extent=(xmin, xmax, ymin, ymax), vmin=0.6, vmax=1.0, transform=geos)
-    ax.imshow(image, cmap='Blues', origin='upper', extent=(xmin, xmax, ymin, ymax), vmin=0.52, vmax=1.0, transform=geos)
+    ax.imshow(image, cmap='Purples', origin='upper', extent=(xmin, xmax, ymin, ymax), vmin=0.52, vmax=1.0, transform=geos)
     ax.coastlines(resolution='50m', color='blue', linewidth=0.25)
     ax.add_feature(ccrs.cartopy.feature.STATES, linewidth=0.25)
     plt.title('GOES-16', loc='left', fontweight='bold', fontsize=15)
@@ -240,7 +240,7 @@ def make_icing_image(h5f, probs, ice_lons, ice_lats, clvrx_str_time, satellite,
     if bg_image is not None:
         ax.imshow(bg_image, origin='upper', extent=(xmin, xmax, ymin, ymax), cmap='Greys', transform=geos)
     if probs is not None:
-        ax.imshow(probs, cmap='Blues', origin='upper', extent=(xmin, xmax, ymin, ymax), vmin=0.55, vmax=1.0, transform=geos)
+        ax.imshow(probs, cmap='Purples', origin='upper', extent=(xmin, xmax, ymin, ymax), vmin=0.55, vmax=1.0, transform=geos)
     ax.coastlines(resolution='50m', color='green', linewidth=1.50)
     # ax.add_feature(ccrs.cartopy.feature.STATES, linewidth=0.25)
 
-- 
GitLab