cartopy 绘图错误 AttributeError: ‘GeoAxesSubplot‘ object has no attribute ‘_autoscaleXon‘
在运行下列代码时,突然就出错了importmatplotlib.pyplotasplt###引入库包importcartopy.crsasccrsproj=ccrs.PlateCarree()fig=plt.figure(figsize=(4,4),dpi=200)#创建画布ax=plt.axes(projection=ccrs.PlateCarree())#创建子图ax.coastlines()