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()
Flächentreue Mollweide-Projektion¶
[3]:
ax = plt.axes(projection=ccrs.Mollweide())
ax.coastlines()
plt.show()