From e8a8148ff515930b02007db41b21b37a9b7a39a0 Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Thu, 16 Dec 2021 13:41:50 -0600
Subject: [PATCH] minor

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

diff --git a/modules/util/plot.py b/modules/util/plot.py
index af08d043..9f7e9104 100644
--- a/modules/util/plot.py
+++ b/modules/util/plot.py
@@ -190,12 +190,14 @@ def plot_image(image, fname, label, cmap='Greys'):
     # plt.close('all')
 
 
-def plot_image2(image, cmap='Greys'):
+def plot_image2(image, cmap='Greys', title='BOEING Icing Reports 2018-2020'):
     fig = plt.figure(figsize=(12, 8))
     ax = plt.axes(projection=ccrs.PlateCarree())
     img_extent = [-180, 180, -90, 90]
-    ax.imshow(image, origin='lower', extent=img_extent, transform=ccrs.PlateCarree(), cmap=cmap, vmin=-1.5, vmax=2.5)
-    ax.coastlines(resolution='50m', color='blue', linewidth=1)
+    ax.imshow(image, origin='lower', extent=img_extent, transform=ccrs.PlateCarree(), cmap=cmap, vmin=0.1, vmax=1)
+    ax.coastlines(resolution='50m', color='blue', linewidth=0.5)
+
+    plt.title(title, loc='left', fontweight='bold', fontsize=16)
 
     # Save to file
     ImageDirAndName = os.path.join('/Users/tomrink', 'testimage')
-- 
GitLab