« API TLE data » : différence entre les versions
Aller à la navigation
Aller à la recherche
Page créée avec « TBW ... » |
Aucun résumé des modifications |
||
| Ligne 1 : | Ligne 1 : | ||
We need to set the data that will correspond the satellite (or debris!) identification as explained [[TLE_data here]]: | |||
<syntaxhighlight lang="java"> | |||
// GtmObjectData data | |||
final String DESC = "TEST (not existing)"; | |||
final int SATNUM = 99999; | |||
final char CLASSIFICATION = 'U'; | |||
final int LAUNCH_YEAR = 2020; | |||
final int LAUNCH_NUMBER = 11; | |||
final String LAUNCH_PIECE = "ABC"; | |||
final int ELEMENT_NUMBER = 22; | |||
final int REVOLUTION_NUMBER = 33; | |||
final GtmObjectData TLE_OBJ = new GtmObjectData(DESC, SATNUM, CLASSIFICATION, | |||
LAUNCH_YEAR, LAUNCH_NUMBER, LAUNCH_PIECE, ELEMENT_NUMBER, REVOLUTION_NUMBER, | |||
".", false); | |||
</syntaxhighlight> | |||
Version du 10 septembre 2021 à 11:45
We need to set the data that will correspond the satellite (or debris!) identification as explained TLE_data here:
// GtmObjectData data
final String DESC = "TEST (not existing)";
final int SATNUM = 99999;
final char CLASSIFICATION = 'U';
final int LAUNCH_YEAR = 2020;
final int LAUNCH_NUMBER = 11;
final String LAUNCH_PIECE = "ABC";
final int ELEMENT_NUMBER = 22;
final int REVOLUTION_NUMBER = 33;
final GtmObjectData TLE_OBJ = new GtmObjectData(DESC, SATNUM, CLASSIFICATION,
LAUNCH_YEAR, LAUNCH_NUMBER, LAUNCH_PIECE, ELEMENT_NUMBER, REVOLUTION_NUMBER,
".", false);