卫星-地面站可见性:基于精确 ENU 拓扑仰角(替换大圆中心角近似)。
(self, sat_pos, gs_pos, min_elevation=10)
| 1117 | return {"lat": 0, "lon": geo_relay["lon"], "alt": 35786000} |
| 1118 | |
| 1119 | def check_visibility(self, sat_pos, gs_pos, min_elevation=10): |
| 1120 | """卫星-地面站可见性:基于精确 ENU 拓扑仰角(替换大圆中心角近似)。""" |
| 1121 | return check_visibility_enu(sat_pos, gs_pos, min_elevation_deg=min_elevation) |
| 1122 | |
| 1123 | def check_geo_visibility(self, leo_pos, geo_pos): |
| 1124 | """LEO-GEO 可见性:基于精确仰角阈值(替换固定 80° 中心角近似)。""" |