<< CL_fr_G502ter DEPRECATED CL_fr_H0n2J2000Mat >>

CelestLab >> DEPRECATED > CL_fr_G502terMat

CL_fr_G502terMat

Gamma50 (Veis) to terrestrial frame transformation matrix - DEPRECATED

Calling Sequence

M = CL_fr_G502terMat(cjd [,ut1_utc])

Description

Parameters

cjd:

modified julian day from 1950.0 (UTC) (1xN)

ut1_utc :

(optional) ut1-utc [seconds] (default is 0) (1xN)

M:

Gamma50 (Veis) to terrestrial frame transformation matrix (3x3xN)

Authors

Bibliography

See also

Examples

// Conversion G50 to terrestrial
pos_G50 = [3500.e3;2500.e3;5800.e3];
cjd = 21010;
M = CL_fr_G502terMat(cjd);
pos_ter = M * (pos_G50);
pos_ter = CL_fr_G502ter(cjd,pos_G50);

// Conversion terrestrial to G50
pos_ter = [[3500.e3;2500.e3;5800.e3] , [4500.e3;2100.e3;6800.e3]];
cjd = [21010 , 21011];
M = CL_fr_G502terMat(cjd);
pos_G50 = M' * (pos_ter);
pos_G50 = CL_fr_ter2G50(cjd,pos_ter);

Report an issue
<< CL_fr_G502ter DEPRECATED CL_fr_H0n2J2000Mat >>