vecefs85.m
来自「GPS TOOLBOX包含以下内容: 1、GPS相关常量和转换因子; 2、角」· M 代码 · 共 26 行
M
26 行
% vecefs85.m
% Scope: This MATLAB macro performs the transformation from ECEF WGS-84 to
% SGS-85 (Soviet Geodetic System 1985) frame coordinates for a given
% position vector with components expressed in meters.
% Usage: psgs85 = vecefs85(pecef)
% Description of parameters:
% pecef - input, ECEF (WGS-84) position vector with components in
% meters
% psgs85 - output, SGS-85 frame position vector, with components in
% meters
% Reference:
% [1] Misra, P. N., Abbott, R. I., SGS85 - WGS84 transformation.
% Manuscripta geodaetica, Vol. 19, 1994, pp. 300-308.
% Last update: 04/04/00
% Copyright (C) 1997-00 by LL Consulting. All Rights Reserved.
function psgs85 = vecefs85(pecef)
rotangle = 3.0e-6; % rotation angle in radians
d = 4.0; % translation distance in meters
psgs85 = zeros(3,1);
psgs85(1) = pecef(1) + pecef(2) * rotangle;
psgs85(2) = - pecef(1) * rotangle + pecef(2);
psgs85(3) = pecef(3) - d;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?