diff --git a/modules/util/plot.py b/modules/util/plot.py
index dbfac24818da9320af84be5c4933a0d31e86f0d1..2c152d568fa3b7f105cbe9c21174d57f99e270e5 100644
--- a/modules/util/plot.py
+++ b/modules/util/plot.py
@@ -245,7 +245,8 @@ def make_icing_image(h5f, probs, ice_lons, ice_lats, clvrx_str_time, satellite,
         p_im = ax.imshow(probs, cmap='Purples', origin='upper', extent=(xmin, xmax, ymin, ymax),
                          vmin=0.20, vmax=1.0, alpha=0.8, transform=geos)
     ax.coastlines(resolution='50m', color='green', linewidth=1.50)
-    # ax.add_feature(ccrs.cartopy.feature.STATES, linewidth=0.25)
+    ax.add_feature(ccrs.cartopy.feature.STATES, linewidth=1.50, edgecolor='green')
+    ax.add_feature(ccrs.cartopy.feature.BORDERS, linewidth=1.50, edgecolor='green')
 
     if ice_lons is not None:
         ax.scatter(ice_lons, ice_lats, s=40.0, marker='o', color='blue', transform=ccrs.PlateCarree())