Skip to content
Snippets Groups Projects
Commit b86790f1 authored by tomrink's avatar tomrink
Browse files

bug fix

parent 9e4559ed
Branches
No related tags found
No related merge requests found
......@@ -242,8 +242,8 @@ def make_icing_image(clvrx_file, ice_lons, ice_lats, clvrx_str_time, satellite,
ax = fig.add_subplot(1, 1, 1, projection=geos)
ax.set_extent(extent, crs=ccrs.PlateCarree())
ax.imshow(image, origin='upper', extent=(xmin, xmax, ymin, ymax), cmap='Greys', transform=geos)
ax.coastlines(resolution='50m', color='black', linewidth=0.25)
ax.add_feature(ccrs.cartopy.feature.STATES, linewidth=0.25)
ax.coastlines(resolution='50m', color='blue', linewidth=0.25)
ax.add_feature(ccrs.cartopy.feature.STATES, color='blue',linewidth=0.25)
if ice_lons is not None:
ax.scatter(ice_lons, ice_lats, s=40.0, marker='o', color='blue', transform=ccrs.PlateCarree())
if ice_lats_vld is not None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment