October 2018
Beginner to intermediate
676 pages
18h 30m
English
Here are the steps required to plot our map:
fig = plt.figure(figsize=(16,8))
ax1 = fig.add_subplot(131, projection=ccrs.PlateCarree())
ax1.set_extent([-130, -66.5, 25, 47], ccrs.Geodetic())
ax1.add_feature(cfeature.STATES, facecolor='wheat')
gl1 = ax1.gridlines(crs=ccrs.PlateCarree(), draw_labels=True, linewidth=2, color='gray', alpha=0.5, linestyle='--')
Read now
Unlock full access