October 2018
Beginner to intermediate
676 pages
18h 30m
English
Here are the steps involved in plotting a basic map:
fig = plt.figure(figsize=(12,8))ax = fig.add_subplot(1, 1, 1, projection=ccrs.PlateCarree())
ax.set_global()ax.stock_img()
ax.add_feature(cfeature.LAND, color='wheat')ax.add_feature(cfeature.OCEAN, color='skyblue')ax.add_feature(cfeature.COASTLINE, linestyle='-',lw=3)ax.add_feature(cfeature.BORDERS, linestyle=':')ax.add_feature(cfeature.LAKES, alpha=0.5, color='y')ax.add_feature(cfeature.RIVERS, color='blue')ax.tissot(facecolor='orange', alpha=0.4) # Tissot's indicatrix in cartography
Read now
Unlock full access