在 cartopy 墨卡托投影上绘制一个圆

2024-04-22

对于一个项目,我需要创建一个可视化效果,在地图上的某些位置周围绘制一个圆圈。使用的可视化卡托比 v.0.18.0 https://scitools.org.uk/cartopy/docs/latest/index.html渲染地图。它使用GoogleTiles类来获取并显示相关区域中的图块,以及add_patch(Patch.Circle(..., transform=ccrs.PlateCarree()))画圆的方法。

tiles = GoogleTiles()
fig = plt.figure(figsize=(15,15))
ax = fig.add_subplot(1, 1, 1, projection=tiles.crs)

ax.set_extent((-121.8,-122.55,37.25,37.85))

ax.add_image(tiles, 11)

ax.add_patch(Patch.Circle(xy=[-122.4015173428571, 37.78774634285715], radius = 0.021709041989311614 + 0.005, alpha=0.3, zorder=30, transform=ccrs.PlateCarree()))

plt.show()

然而,尽管我尝试了几个变换对象,但我要么得到了椭圆而不是圆形(例如使用ccrs.PlateCarree())或根本没有圆圈(例如使用ccrs.Mercator()).

我在网上找到了几种不同的解决方案(例如在正投影中使用 cartopy 绘制圆圈 https://stackoverflow.com/q/52105543/266919),但是,这些不适用于墨卡托投影,遗憾的是我缺乏投影/变换知识来使它们适应我的问题。

我能够产生圆形补丁的唯一方法是当我设置projection参数开启fig.add_subplot to ccrs.PlateCarree()。然而,这会扭曲地图并且标签变得模糊,因此遗憾的是这不是一个可接受的解决方案。

由于该项目即将到期,因此我们将不胜感激。


感谢@swatchai,这是缺少的提示,所以对于那些感兴趣的人来说,代码现在看起来像这样,而且它确实有效!万岁!

tiles = GoogleTiles()
fig = plt.figure(figsize=(15,15))
ax = fig.add_subplot(1, 1, 1, projection=tiles.crs)

ax.set_extent((-121.8,-122.55,37.25,37.85))

ax.add_image(tiles, 11)

# The diameter is in degrees in EPSG:4326 coordinates therefore, the degrees have 
# to be converted to km. At 37N the degree latitude is 11.0977 km.
ax.tissot(rad_km=(0.021709041989311614 + 0.005) * 11.0977, lons=[-122.4015], lats=[37.7877], alpha=0.3)

plt.show()

执行上述代码时,会抛出以下警告,但它对结果有明显的影响:

/opt/conda/lib/python3.8/site-packages/cartopy/mpl/geoaxes.py:761: UserWarning: Approximating coordinate system <cartopy._crs.Geodetic object at 0x7fa4c7529770> with the PlateCarree projection.
  warnings.warn('Approximating coordinate system {!r} with the '

再次感谢@swatchai,你拯救了我的一天!

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

在 cartopy 墨卡托投影上绘制一个圆 的相关文章

随机推荐