Cartopy examples¶
[1]:
import cartopy.crs as ccrs
import matplotlib.pyplot as plt
Plate Carrée projection with distance fidelity¶
[2]:
ax = plt.axes(projection=ccrs.PlateCarree())
ax.coastlines()
plt.show()

Mollweide projection with surface fidelity¶
[3]:
ax = plt.axes(projection=ccrs.Mollweide())
ax.coastlines()
plt.show()
