Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们如何在 Matlab 中将笛卡尔坐标(x、y 和 z)转换为纬度和经度(十进制)?
谢谢
正如@H.Munster 所建议的,大地测量工具箱 - 文件交换提交似乎包含您需要的内容。
特别是:xyz2ell - 笛卡尔 (x,y,z) 到椭球 (lat,long,ht) 坐标
[lat,lon,h] = xyz2ell(X,Y,Z)