轨迹经纬度转换为坐标表示的代码
时间: 2023-04-03 22:03:14 浏览: 136
01生成标准数据.zip_ECF 转经纬度_数据加噪声_轨迹数据_雷达数据_雷达目标
以下是将轨迹经纬度转换为坐标表示的 Python 代码:
```python
import math
def convert_to_xy(lat, lon):
R = 6371000 # 地球半径,单位为米
x = R * math.cos(lat) * math.cos(lon)
y = R * math.cos(lat) * math.sin(lon)
return x, y
# 示例
lat = 39.9042
lon = 116.4074
x, y = convert_to_xy(math.radians(lat), math.radians(lon))
print("经度:{},纬度:{},转换后的坐标为:({}, {})".format(lon, lat, x, y))
```
这段代码将经纬度转换为了平面坐标系中的 x 和 y 坐标,其中 R 是地球半径,lat 和 lon 分别是经纬度,单位为弧度。
阅读全文