axの設定

cartopyの基本的な使い方は,

cartopyの地図投影とaxとを関係づけることだ.

たとえば,

import cartopy.crs as ccrs

import cartopy.feature as cfeature

ax=plt.axes(projection=ccrs.PlateCarree(),frameon=False)

subplotでもその属性に地図投影を含める.

ax1 = plt.subplot(2, 1, 1, projection=ccrs.PlateCarree())