diff --git a/modules/util/plot.py b/modules/util/plot.py
index c7856f1ce6ed08a7fa4a4cb4f0c29aa8a0750ff3..2a72fbb2ee363eceaa60e2e6bcf3a58b98c4228d 100644
--- a/modules/util/plot.py
+++ b/modules/util/plot.py
@@ -204,7 +204,9 @@ def plot_image2(image, cmap='Greys'):
 
 
 # Example GOES file to retrieve GEOS parameters in MetPy form (CONUS)
-exmp_file = '/Users/tomrink/data/OR_ABI-L1b-RadC-M6C14_G16_s20193140811215_e20193140813588_c20193140814070.nc'
+#exmp_file = '/Users/tomrink/data/OR_ABI-L1b-RadC-M6C14_G16_s20193140811215_e20193140813588_c20193140814070.nc'
+# Full Disk
+exmp_file = '/Users/tomrink/data/OR_ABI-L1b-RadF-M6C16_G16_s20212521800223_e20212521809542_c20212521809596.nc'
 
 
 def plot_image3(image, cmap='Greys'):
@@ -239,8 +241,8 @@ def make_icing_image(clvrx_file, ice_lons, ice_lats, ice_lons_vld=None, ice_lats
     ax.add_feature(ccrs.cartopy.feature.STATES, linewidth=0.25)
     ax.scatter(ice_lons, ice_lats, s=10.0, marker='o', color='blue', transform=ccrs.PlateCarree())
     if ice_lats_vld is not None:
-        ax.scatter(ice_lons_vld, ice_lats_vld, s=20.0, marker='o', color='red', transform=ccrs.PlateCarree())
-    plt.title('GOES-16, 2019-04-30_18:26Z  >60% Probability Icing', loc='left', fontweight='bold', fontsize=15)
+        ax.scatter(ice_lons_vld, ice_lats_vld, s=20.0, facecolors='none', marker='o', edgecolor='red', transform=ccrs.PlateCarree())
+    plt.title('GOES-16, 2019-09-09_17:26Z  >60% Probability Icing', loc='left', fontweight='bold', fontsize=15)
     ImageDirAndName = os.path.join('/Users/tomrink', filename)
     fig.savefig(ImageDirAndName)