October 2018
Beginner to intermediate
676 pages
18h 30m
English
The following are the steps involved in plotting our nine different projections:
fig = plt.figure(figsize=(12,9))
ax1 = fig.add_subplot(331, projection=ccrs.PlateCarree())
ax1.stock_img()
ax1.set_title('PlateCarree', color='green')
ax2 = fig.add_subplot(332, projection=ccrs.Mercator())ax2.stock_img()ax2.set_title('Mercator', color='green')ax3 = fig.add_subplot(333, projection=ccrs.LambertCylindrical())ax3.stock_img() ...Read now
Unlock full access