public class TLE extends Object implements TimeStamped, Serializable
TLE sets can be built either by providing directly the two lines, in which case parsing is performed internally or by providing the already parsed elements.
TLE are not transparently convertible to Orbit
instances. They are significant only with respect to their dedicated propagator
, which also computes position and velocity coordinates.
Any attempt to directly use orbital parameters like eccentricity
,
inclination
, etc. without any reference to the TLE propagator
is prone to errors.
More information on the TLE format can be found on the CelesTrak website.
Modifier and Type | Field and Description |
---|---|
static int |
DEFAULT
Identifier for default type of ephemeris (SGP4/SDP4).
|
static int |
SDP4
Identifier for SDP4 type of ephemeris.
|
static int |
SDP8
Identifier for SDP8 type of ephemeris.
|
static int |
SGP
Identifier for SGP type of ephemeris.
|
static int |
SGP4
Identifier for SGP4 type of ephemeris.
|
static int |
SGP8
Identifier for SGP8 type of ephemeris.
|
Constructor and Description |
---|
TLE(int satelliteNumber,
char classification,
int launchYear,
int launchNumber,
String launchPiece,
int ephemerisType,
int elementNumber,
AbsoluteDate epoch,
double meanMotion,
double meanMotionFirstDerivative,
double meanMotionSecondDerivative,
double e,
double i,
double pa,
double raan,
double meanAnomaly,
int revolutionNumberAtEpoch,
double bStar)
Simple constructor from already parsed elements.
|
TLE(String line1,
String line2)
Simple constructor from unparsed two lines.
|
Modifier and Type | Method and Description |
---|---|
double |
getBStar()
Get the ballistic coefficient.
|
char |
getClassification()
Get the classification.
|
AbsoluteDate |
getDate()
Get the TLE current date.
|
double |
getE()
Get the eccentricity.
|
int |
getElementNumber()
Get the element number.
|
int |
getEphemerisType()
Get the type of ephemeris.
|
double |
getI()
Get the inclination.
|
int |
getLaunchNumber()
Get the launch number.
|
String |
getLaunchPiece()
Get the launch piece.
|
int |
getLaunchYear()
Get the launch year.
|
String |
getLine1()
Get the first line.
|
String |
getLine2()
Get the second line.
|
double |
getMeanAnomaly()
Get the mean anomaly.
|
double |
getMeanMotion()
Get the mean motion.
|
double |
getMeanMotionFirstDerivative()
Get the mean motion first derivative.
|
double |
getMeanMotionSecondDerivative()
Get the mean motion second derivative.
|
double |
getPerigeeArgument()
Get the argument of perigee.
|
double |
getRaan()
Get Right Ascension of the Ascending node.
|
int |
getRevolutionNumberAtEpoch()
Get the revolution number.
|
int |
getSatelliteNumber()
Get the satellite id.
|
static boolean |
isFormatOK(String line1,
String line2)
Check the lines format validity.
|
String |
toString()
Get a string representation of this TLE set.
|
public static final int DEFAULT
public static final int SGP
public static final int SGP4
public static final int SDP4
public static final int SGP8
public static final int SDP8
public TLE(String line1, String line2) throws OrekitException
The static method isFormatOK(String, String)
should be called
before trying to build this object.
line1
- the first element (69 char String)line2
- the second element (69 char String)OrekitException
- if some format error occurs or lines are inconsistentpublic TLE(int satelliteNumber, char classification, int launchYear, int launchNumber, String launchPiece, int ephemerisType, int elementNumber, AbsoluteDate epoch, double meanMotion, double meanMotionFirstDerivative, double meanMotionSecondDerivative, double e, double i, double pa, double raan, double meanAnomaly, int revolutionNumberAtEpoch, double bStar)
satelliteNumber
- satellite numberclassification
- classification (U for unclassified)launchYear
- launch year (all digits)launchNumber
- launch numberlaunchPiece
- launch pieceephemerisType
- type of ephemeriselementNumber
- element numberepoch
- elements epochmeanMotion
- mean motion (rad/s)meanMotionFirstDerivative
- mean motion first derivative (rad/s²)meanMotionSecondDerivative
- mean motion second derivative (rad/s³)e
- eccentricityi
- inclination (rad)pa
- argument of perigee (rad)raan
- right ascension of ascending node (rad)meanAnomaly
- mean anomaly (rad)revolutionNumberAtEpoch
- revolution number at epochbStar
- ballistic coefficientpublic String getLine1() throws OrekitException
OrekitException
- if UTC conversion cannot be done or
some parameter is too large to fit formatpublic String getLine2() throws OrekitException
OrekitException
- if some parameter is too large to fit formatpublic int getSatelliteNumber()
public char getClassification()
public int getLaunchYear()
public int getLaunchNumber()
public String getLaunchPiece()
public int getEphemerisType()
public int getElementNumber()
public AbsoluteDate getDate()
getDate
in interface TimeStamped
public double getMeanMotion()
public double getMeanMotionFirstDerivative()
public double getMeanMotionSecondDerivative()
public double getE()
public double getI()
public double getPerigeeArgument()
public double getRaan()
public double getMeanAnomaly()
public int getRevolutionNumberAtEpoch()
public double getBStar()
public String toString()
The representation is simply the two lines separated by the platform line separator.
public static boolean isFormatOK(String line1, String line2) throws OrekitException
line1
- the first elementline2
- the second elementOrekitException
- if checksum is not validCopyright © 2002-2017 CS Systèmes d'information. All rights reserved.