Cartopy-Beispiele#

[1]:
import cartopy.crs as ccrs
import matplotlib.pyplot as plt

Abstandstreue Plate-Carrée-Projektion#

[2]:
ax = plt.axes(projection=ccrs.PlateCarree())
ax.coastlines()

plt.show()
../../_images/matplotlib_cartopy_examples_3_0.png

Flächentreue Mollweide-Projektion#

[3]:
ax = plt.axes(projection=ccrs.Mollweide())
ax.coastlines()

plt.show()
../../_images/matplotlib_cartopy_examples_5_0.png