« API TLE data » : différence entre les versions

De Gentleman
Aller à la navigation Aller à la recherche
Page créée avec « TBW ... »
 
Aucun résumé des modifications
 
(3 versions intermédiaires par le même utilisateur non affichées)
Ligne 1 : Ligne 1 :
TBW ...
We need to set the data that will correspond the satellite (or debris!) identification as explained [[TLE_data|here]]. These data will be stored in a [{{PathCurrentJavaDoc}}/fr/cnes/dynvol/gentleman/calc/data/tle/GtmObjectData.html GtmObjectData] object.
 
<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>

Dernière version du 10 septembre 2021 à 11:47

We need to set the data that will correspond the satellite (or debris!) identification as explained here. These data will be stored in a GtmObjectData object.

// 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);