在正交投影中使用cartopy绘制圆,可以通过以下步骤实现:
import matplotlib.pyplot as plt
import cartopy.crs as ccrs
import cartopy.feature as cfeature
fig = plt.figure(figsize=(10, 6))
ax = plt.axes(projection=ccrs.Orthographic(central_longitude=0, central_latitude=0))
ax.set_global()
ax.coastlines()
ax.add_feature(cfeature.LAND)
ax.add_feature(cfeature.OCEAN)
lon = 0 # 圆心经度
lat = 0 # 圆心纬度
radius = 30 # 圆的半径
circle = plt.Circle((lon, lat), radius, transform=ccrs.PlateCarree(), edgecolor='red', facecolor='none')
ax.add_patch(circle)
plt.show()
这样就可以在正交投影的地图上绘制一个以给定经纬度为圆心,给定半径的圆。其中,central_longitude
和central_latitude
分别表示地图的中心经度和纬度,ccrs.PlateCarree()
用于将圆的坐标转换为地图上的坐标。
关于cartopy的更多信息和使用方法,可以参考腾讯云的地理信息服务产品地理信息服务(GIS)。
领取专属 10元无门槛券
手把手带您无忧上云