Compare commits
1 Commits
shan-soutA
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 7dce333e87 |
@ -254,8 +254,8 @@ traffic:
|
|||||||
coordinate-system:
|
coordinate-system:
|
||||||
airport:
|
airport:
|
||||||
# 青岛机场坐标(客户部署时需要修改为实际机场坐标)
|
# 青岛机场坐标(客户部署时需要修改为实际机场坐标)
|
||||||
center-longitude: 120.0834104
|
center-longitude: 120.08782536
|
||||||
center-latitude: 36.35406879
|
center-latitude: 36.36236547
|
||||||
|
|
||||||
# 管理端点配置
|
# 管理端点配置
|
||||||
management:
|
management:
|
||||||
|
|||||||
@ -1,5 +1,9 @@
|
|||||||
## TODO Lists
|
## TODO Lists
|
||||||
|
|
||||||
|
### [2025-12-12]
|
||||||
|
|
||||||
|
- [x] (功能)修改机场中心点经纬度坐标,(120.08782536483503,36.36236546805307)
|
||||||
|
|
||||||
### [2025-10-09]
|
### [2025-10-09]
|
||||||
|
|
||||||
- [ ] (功能)模拟无人车平台,返回任务列表
|
- [ ] (功能)模拟无人车平台,返回任务列表
|
||||||
|
|||||||
@ -230,8 +230,8 @@ traffic:
|
|||||||
# 坐标系统配置(collision模块)
|
# 坐标系统配置(collision模块)
|
||||||
coordinate-system:
|
coordinate-system:
|
||||||
airport:
|
airport:
|
||||||
center-longitude: 120.0834104
|
center-longitude: 120.08782536
|
||||||
center-latitude: 36.35406879
|
center-latitude: 36.36236547
|
||||||
|
|
||||||
# 性能监控配置(collision模块扩展)
|
# 性能监控配置(collision模块扩展)
|
||||||
management:
|
management:
|
||||||
|
|||||||
@ -959,8 +959,8 @@ class AirportCoordinateSystem:
|
|||||||
print("警告: pyproj库未安装,将回退到简化转换算法")
|
print("警告: pyproj库未安装,将回退到简化转换算法")
|
||||||
self.use_pyproj = False
|
self.use_pyproj = False
|
||||||
# 回退到原来的参数
|
# 回退到原来的参数
|
||||||
self.center_lon = 120.0834104
|
self.center_lon = 120.08782536
|
||||||
self.center_lat = 36.35406879
|
self.center_lat = 36.36236547
|
||||||
self.utm_origin_x = 40507423
|
self.utm_origin_x = 40507423
|
||||||
self.utm_origin_y = 4026164
|
self.utm_origin_y = 4026164
|
||||||
self.meters_per_degree_lon = 89932
|
self.meters_per_degree_lon = 89932
|
||||||
@ -1711,8 +1711,8 @@ def initialize_additional_aircraft():
|
|||||||
global additional_aircraft_data
|
global additional_aircraft_data
|
||||||
|
|
||||||
# 机场中心坐标(基于 CGCS2000 投影坐标)
|
# 机场中心坐标(基于 CGCS2000 投影坐标)
|
||||||
airport_center_lat = 36.35406879
|
airport_center_lat = 36.36236547
|
||||||
airport_center_lon = 120.0834104
|
airport_center_lon = 120.08782536
|
||||||
|
|
||||||
# 机场覆盖范围(大约 2km x 2km 区域)
|
# 机场覆盖范围(大约 2km x 2km 区域)
|
||||||
lat_range = 0.02 # 大约 2.2km
|
lat_range = 0.02 # 大约 2.2km
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user