将笛卡尔坐标转换为纬度/经度

时间:2013-10-24 13:20:12

标签: matlab latitude-longitude cartesian-coordinates

如何在Matlab中将笛卡尔坐标(x,y和z)转换为纬度和经度(小数)?

由于

1 个答案:

答案 0 :(得分:1)

根据@ H.Munster的建议,似乎Geodetic Toolbox - File Exchange submission包含了您需要的内容。

特别是:xyz2ell - 笛卡尔(x,y,z)到椭圆(lat,long,ht)坐标

[lat,lon,h] = xyz2ell(X,Y,Z)