由于基地被弃用,还有其他替代方案,例如造型,地理杂质等。可以生成我在基础上获得不同投影的美丽地图(而不仅仅是轮廓型)? (希望这也是离线的)
Since Basemap is deprecated, is there any other alternative such cartopy, geopandas, etc.. that can generate this beautiful maps (and not just the contour-type) that I got with Basemap with different projections? (hopefully that works offline too)
cartopy的做技巧?看起来类似于您拍摄的内容。
例如,使用地理投影绘制地球仪:
import cartopy.crs as ccrs import matplotlib.pyplot as plt ax = plt.axes(projection=ccrs.Geostationary()) ax.stock_img() plt.show()
请查看投影指南以获取更多投影选项: https://scitools.org.uk/cartopy/docs/v0.15/crs/projections.html#cartopy-projections
Does cartopy’s ax.stock_image() do the trick? It looks ver similar to what you’re shooting for.
ax.stock_image()
For example, to plot a globe using a geostationary projection:
Check out the guide to projections to get more projection options: https://scitools.org.uk/cartopy/docs/v0.15/crs/projections.html#cartopy-projections
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
cartopy的做技巧?看起来类似于您拍摄的内容。
例如,使用地理投影绘制地球仪:
请查看投影指南以获取更多投影选项: https://scitools.org.uk/cartopy/docs/v0.15/crs/projections.html#cartopy-projections
Does cartopy’s
ax.stock_image()
do the trick? It looks ver similar to what you’re shooting for.For example, to plot a globe using a geostationary projection:
Check out the guide to projections to get more projection options: https://scitools.org.uk/cartopy/docs/v0.15/crs/projections.html#cartopy-projections