matplotlib 制图拆分大圆

rbpvctlc  于 2023-05-01  发布在  其他
关注(0)|答案(1)|浏览(169)

我试图绘制从科罗拉多州丹佛市可见的天空区域,并在Map投影上将该区域显示为阴影“圆”。
我希望在Map上有一个扭曲的圆圈(因为Map投影),以丹佛为中心。当我尝试绘制具有填充的形状圆时,它似乎正确居中,但它沿着纬度分裂,如图所示。我不知道它为什么会这样做,以及如何纠正它。期望的结果是曲线上方的区域(所有北美和俄罗斯上方的海洋)被着色为红色。

  1. import numpy as np
  2. import cartopy.geodesic as cgeod
  3. import cartopy.crs as crs
  4. import cartopy.feature as cfeature
  5. import shapely
  6. import matplotlib.pyplot as plt
  7. # SET CONSTANTS
  8. RE = 6371008.8 # meters, WGS84 Sphere
  9. h = 35786000.0 # meters, GEO
  10. def arc_dist_to_FOV(h, ah):
  11. a = (np.pi/180)*(90 + ah) # radians
  12. b = np.arcsin(RE * np.sin(a)/(RE + h)) # radians
  13. g = np.pi - a - b # radians
  14. d = (180/np.pi)*g*RE
  15. return d
  16. cm = 0
  17. proj = crs.PlateCarree(central_longitude=cm)
  18. fig = plt.figure(figsize=(10,8))
  19. ax = fig.add_subplot(1,1,1, projection=proj)
  20. ax.set_global()
  21. ax.add_feature(cfeature.COASTLINE, edgecolor='black')
  22. ax.add_feature(cfeature.BORDERS, edgecolor='black')
  23. ax.add_feature(cfeature.STATES, edgecolor='black')
  24. ax.stock_img()
  25. # ax.background_img(name='BM', resolution='high')
  26. ax.gridlines(draw_labels=True, crs=proj)
  27. lat, lon = 39.7392, -104.985
  28. plt.scatter(x=lon, y=lat, color='blue', s=10, transform=proj)
  29. # COMPUTE FOV
  30. ah = 20 # degrees above horizon
  31. dFOV = arc_dist_to_FOV(h, ah)
  32. site_lat = lat
  33. site_lon = lon
  34. # ADD SHAPES TO MAP
  35. circle_points = cgeod.Geodesic().circle(lon=site_lon, lat=site_lat, radius=dFOV, n_samples=1000, endpoint=False)
  36. geom = shapely.geometry.Polygon(circle_points)
  37. ax.add_geometries((geom,), crs=proj, alpha=0.5, facecolor='red', edgecolor='black', linewidth=1)
  38. # must save BEFORE show cmd
  39. # plt.savefig('name.png', bbox_inches='tight', dpi=300)
  40. plt.show()```
kxkpmulp

kxkpmulp1#

对于在任何投影上绘制圆(的投影),可以使用.tissot()方法。这大大简化了在Map上画圆圈的过程。
下图中的大圆(投影)使用了这行代码:

  1. ax.tissot(rad_km=dFOV/1000, lons=[site_lon,], lats=[site_lat,], n_samples=128, fc="red", ec="black", alpha=0.75)

在正交投影视图中,图将类似于下图:

相关问题