我想在用cartopy制作的地图上绘制轮廓。如果我在以下位置运行示例:
http://scitools.org.uk/cartopy/docs/latest/matplotlib/introductory_examples/03.contours.html
使用github的最新代码签出我得到:
ValueError: invalid transform: Spherical contouring is not supported -
consider using PlateCarree/RotatedPole.
如何做到这一点?
(作为对原始公告的回复http://matplotlib.1069221.n5.nabble.com/ANN-Cartopy-A-new-mapping-library-using-matplotlib-td39886.html)
答案 0 :(得分:2)
http://scitools.org.uk/cartopy/docs/latest/matplotlib/introductory_examples
下的折扣文档中提供的示例与代码库相比已过时。有一个开发票据可以更新所有示例(https://github.com/SciTools/cartopy/issues/128)。
在这种情况下,只需替换
行即可plt.contourf(lons, lats, data, transform=ccrs.Geodetic())
与
plt.contourf(lons, lats, data, transform=ccrs.PlateCarree())
并且该示例应该再次起作用。
matplotlib/cartopy introductory section of the cartopy docs有 有一个可能感兴趣的轮廓示例http://scitools.org.uk/cartopy/docs/latest/matplotlib/advanced_plotting.html#contour-plots 结果图像:
HTH,