1 Star 0 Fork 3

caozhiqiang7291/GPS_Milemeter_IMU_EKFLocation

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
BLH_XYZ.m 418 Bytes
一键复制 编辑 原始数据 按行查看 历史
function Result=BLH_XYZ(B,L,H)
%transform the (B L H) into (X Y Z) under the WGS84 coordinate system
AE_WGS84=6378137.0; % Major axis of the WGS84 ellipsoid
Alfa_WGS84=298.257223563; %1 over flattening of the WGS 84 ellipsoid
e2=0.00669437999013;
N=AE_WGS84/sqrt(1.0-e2*sin(B)*sin(B));
TmpV=N+H;
Result.X=TmpV*cos(B)*cos(L);
Result.Y=TmpV*cos(B)*sin(L);
Result.Z=(N*(1-e2)+H)*sin(B);
return
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/caozhiqiang7291/GPS_Milemeter_IMU_EKFLocation.git
git@gitee.com:caozhiqiang7291/GPS_Milemeter_IMU_EKFLocation.git
caozhiqiang7291
GPS_Milemeter_IMU_EKFLocation
GPS_Milemeter_IMU_EKFLocation
master

搜索帮助