资源简介
Convert ECI (CIS, Epoch J2000.0) Coordinates to WGS 84 (CTS, ECEF)
![](http://www.nz998.com/pic/49374.jpg)
代码片段和文件信息
%----------------------- Begin Code Sequence -----------------------------%
% Purpose: %
% Convert ECI (CIS Epoch J2000.0) Coordinates to WGS 84 (CTS ECEF) %
% Coordinates. This function has been vectorized for speed. %
% %
% Inputs: %
%------- %
%JD [1 x N] Julian Date Vector
%
%r_ECI [3 x N] Position Vector
% in ECI coordinate
% frame of reference
%
%v_ECI [3 x N] Velocity Vector in
% ECI coordinate
% frame of reference
%
%a_ECI [3 x N] Acceleration Vector
% in ECI coordinate
% frame of reference
%
%
% Outputs:
%--------- %
%r_ECEF [3 x N] Position Vector in
% ECEF coordinate
% frame of reference
%
%v_ECEF [3 x N] Velocity vector in
% ECEF coordinate
% frame of reference
%
%a_ECEF [3 x N] Acceleration Vector
% in ECEF coordinate
% frame of reference
%
% References:
%-------------
%Orbital Mechanics with Numerit http://www.cdeagle.com/omnum/pdf/csystems.pdf
%
%
% Function Dependencies:
%------------------
% JD2GMST
%------------------------------------------------------------------ %
% Programed by Darin Koblick 07-05-2010 %
% Modified on 03/01/2012 to add acceleration vector support %
% Modified by LHC on 2016-03-02 to add nargin %
%------------------------------------------------------------------ %
function [r_ECEF v_ECEF a_ECEF] = ECItoECEF(JDr_ECIv_ECIa_ECI)
if nargin<2 || nargin>4
error(‘input num error‘);
end
%Enforce JD to be [N x 1]
JD = JD(:);
%Calculate the Greenwich Apparent Sideral Time (THETA)
%See http://www.cdeagle.com/omnum/pdf/csystems.pdf equation 27
THETA = JD2GAST(JD);
%Average inertial rotation rate of the ea
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2304 2014-02-12 14:01 JD2GAST.m
文件 1669 2014-02-12 14:01 JD2GMST.m
文件 4915 2016-03-02 09:36 ECItoECEF.m
----------- --------- ---------- ----- ----
8888 3
相关资源
- The direction of synaptic plasticity mediated
- 地固系惯性系坐标转换程序
- RapidIO 2.2 Specification
- RapidIO_Rev_2.2_Specification
-
Hollow fibre ba
sed Liquid-liquid-liquid mic - Can EC-MPS reduce gastrointestinal side effect
- PCI Express SFF-8639 Module Specification
- pcie specification
- PCIe M.2 specification规格书.7z
-
PCI Express ba
se Specification Revision 2.1 -
PCI Express ba
se Specification 5.0 .pdf - MQTT_3.1protocol_Specific中文版
- 完整的SD CARD参考文档
- MIPI Alliance Specification for Camera Serial
- Bioinformatics analysis of tyrosinase-related
- 领域特定语言Domain Specific Languages
- 基于决策树和朴素贝叶斯算法对Adul
- decisiontree决策树在adult数据集上的实现
-
Synthesis and Cytotoxicity of Novel 20-O-li
- RecipeThumbnailProvider
- MyEcilpse8.5汉化包适用于各种版本
- 论文研究 - 复杂网络中SECIR谣言传播模
- TheSingleUNIXSpecification(2013)
- 论文研究 - 使用水培系统的垂直农业
- QSFP-DD_Hardware_Specification_Rev_4.0
- OV2778-Preliminary-Specification-a-CSP_Version
- USB Type-C Specification Release 1.3
- MIPI-D-PHY-specification-v1.1.pdf
- The Special Functions and Their Approximations,
- DDR_PHY_Interface_Specification_v5_0.pdf
评论
共有 条评论