卫星星历TLE格式说明

卫星星历TLE格式说明
卫星星历,⼜称为两⾏轨道数据(TLE,Two-Line Orbita l Ele ment)
重要的⼏个⽹站
2、CelesTrak
4、卫星计算js
5、卫星计算c#
tle数据说明
BEIDOU 3
1 36287U 10001A  21187.60806788 -.0000027
2  00000-0  00000-0 0  9992
2 36287  1.9038  47.2796 0005620  82.9429 153.9116  1.00269947 42045
Table 1. Two-Line Element Set Format Definition, Line 1
Field Column Description
1.101Line Number of Element Data ⾏号 1
流量测量装置1.203-07Satellite Number 卫星ID,NORAD_CAT_ID, 36287
1.308Classification 保密级别 U
1.410-11International Designator (Last two digits of launch year) 发射年份 10
1.512-14International Designator (Launch number of the year) 发射编号 001
1.615-17International Designator (Piece of the launch) 发射编号 A
1.719-20Epoch Year (Last two digits of year) TLE数据发布时间年份 21
伞型齿轮
1.821-32Epoch (Day of the year and fractional portion of the day) TLE数据发布时间第⼏天 187.60806788 1.934-43First Time Derivative of the Mean Motion
1.1045-52Second Time Derivative of Mean Motion (decimal point assumed)
1.1154-61BSTAR drag term (decimal point assumed)
1.1263Ephemeris type
1.1365-68Element number糖果装
1.1469Checksum (Modulo 10)
(Letters, blanks, periods, plus signs = 0; minus signs = 1)
Table 2. Two-Line Element Set Format Definition, Line 2 Field Column Description
2.101Line Number of Element Data
2.203-07Satellite Number
2.309-16Inclination [Degrees]  轨道⾯与⾚道⾯夹⾓ 1.9038
2.418-25Right Ascension of the Ascending Node [Degrees]  升交点⾚经,升交点⾚经是指卫星由南到北穿过地球⾚道平⾯时,与地球⾚道平⾯的交点  经度47.2796 纬度0
2.527-33Eccentricity (decimal point assumed)  轨道偏⼼率 0.0005620  圆形为0
2.635-42Argument of Perigee [Degrees] 近地点幅⾓ 82.94292.7
44-51Mean Anomaly [Degrees] 平近点⾓ 153.91162.8
53-63Mean Motion [Revs per day] 每天环绕地球的圈数 1.00269947 , 周期1,436.12 分钟2.9
64-68Revolution number at epoch [Revs] 发射以来飞⾏的圈数 42042.1069Checksum (Modulo 10)
Field
Column
Description 轨道参数
铱-192轨道根数(或称轨道要素或轨道参数)是描述在和的作⽤下的或,在其上运动时,确定其所必要的六个。传统上使⽤的轨道根数,是在和他的之后发展出来的,称为开普勒元素,主要有六个参数:(i)升交点黄经(Ω)(e)近⽇点辐⾓(ω)(a)
在指定的(Mo)
(或是近⽇点通过时间(To))
为了唯⼀的确定⼀个卫星的运⾏轨道,我们需要6个参数,:
1. 轨道半长轴,是椭圆长轴的⼀半。对于圆,也就是半径
2. 轨道偏⼼率,也就是椭圆两焦点的距离和长轴⽐值。对于圆,它就是0.
这两个要素决定了轨道的形状
3. 轨道倾⾓,这个是轨道平⾯和地球⾚道平⾯的夹⾓。对于位于⾚道上空的同步静⽌卫星来说,倾⾓就是0。
4. 升交点⾚经:卫星从南半球运⾏到北半球时穿过⾚道的那⼀点叫升交点。这个点和春分点对于地⼼的张⾓称为升交点⾚经。
这两个量决定了卫星轨道平⾯在空间的位置。
5. 近地点幅⾓:这是近地点和升交点对地⼼的张⾓。
前⾯虽然决定了轨道平⾯在空间的位置,但是轨道本⾝在轨道平⾯⾥还可以转动。⽽这个值则确定了
轨道在轨道平⾯⾥的位置。
6. 过近地点时刻,这个的意义很显然了。卫星位置随时间的变化需要⼀个初值。
卫星计算js
npm install satellite.js
// Sample TLE铝合金切削液配方
var tleLine1 = '1 25544U 98067A  19156.50900463  .00003075  00000-0  59442-4 0  9992',    tleLine2 = '2 25544  51.6433  59.2583 0008217  16.4489 347.6017 15.51174618173442';
// Initialize a satellite record
var satrec = satellite.twoline2satrec(tleLine1, tleLine2);
//  Propagate satellite using time since epoch (in minutes).
var positionAndVelocity = satellite.sgp4(satrec, timeSinceTleEpochMinutes);
//  Or you can use a JavaScript Date
var positionAndVelocity = satellite.propagate(satrec, new Date());
// The position_velocity result is a key-value pair of ECI coordinates.
// These are the base results from which all other coordinates are derived.
var positionEci = positionAndVelocity.position,
velocityEci = positionAndVelocity.velocity;荧光纤维
// Set the Observer at 122.03 West by 36.96 North, in RADIANS
var observerGd = {
longitude: satellite.degreesToRadians(-122.0308),
latitude: satellite.degreesToRadians(36.9613422),
height: 0.370
};
/
/ You will need GMST for some of the coordinate transforms.
// /wiki/Sidereal_time#Definition
var gmst = satellite.gstime(new Date());
// You can get ECF, Geodetic, Look Angles, and Doppler Factor.
var positionEcf  = iToEcf(positionEci, gmst),
observerEcf  = deticToEcf(observerGd),
positionGd    = iToGeodetic(positionEci, gmst),
lookAngles    = fToLookAngles(observerGd, positionEcf),
dopplerFactor = satellite.dopplerFactor(observerCoordsEcf, positionEcf, velocityEcf);
// The coordinates are all stored in key-value pairs.
// ECI and ECF are accessed by `x`, `y`, `z` properties.
var satelliteX = positionEci.x,
satelliteY = positionEci.y,
satelliteZ = positionEci.z;
// Look Angles may be accessed by `azimuth`, `elevation`, `range_sat` properties.
var azimuth  = lookAngles.azimuth,
elevation = lookAngles.elevation,
rangeSat  = lookAngles.rangeSat;
// Geodetic coords are accessed via `longitude`, `latitude`, `height`.
var longitude = positionGd.longitude,
latitude  = positionGd.latitude,
height    = positionGd.height;
/
/  Convert the RADIANS to DEGREES.
var longitudeDeg = satellite.degreesLong(longitude),
latitudeDeg  = satellite.degreesLat(latitude);
1、eci
ECI,earth centered inertial                惯性坐标系
坐标原点取在地⼼,X轴指向春分点,Z轴指向北极,Y轴与前者构成右⼿系。该系不与地球⼀同转动,因此可以应⽤⽜顿定律。
2、ecef
ECEF,earth centered eath fixed                地固坐标系
该坐标系以地球质⼼为原点,Z轴向北沿地球⾃转轴⽅向,X轴指向经纬度的(0,0)位置,右⼿系Y轴指向90度经线。该系与地球⼀同转动。
地球坐标系固定在地球上⽽随地球⼀起在空间做公转和⾃转运动,因此地球上任⼀固定点在地球坐标系的坐标就不会由于地球旋转⽽变化。地⼼地固直⾓坐标系和⼤地坐标系都属于这种坐标系。

本文发布于:2024-09-23 05:27:15,感谢您对本站的认可!

本文链接:https://www.17tex.com/tex/3/176024.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:地球   轨道   坐标系   指向   交点
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2024 Comsenz Inc.Powered by © 易纺专利技术学习网 豫ICP备2022007602号 豫公网安备41160202000603 站长QQ:729038198 关于我们 投诉建议