« API TLE data » : différence entre les versions
Aller à la navigation
Aller à la recherche
Aucun résumé des modifications |
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]] | 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 v] object. | ||
<syntaxhighlight lang="java"> | <syntaxhighlight lang="java"> | ||
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 v 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);