« API TLE generation » : 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 : | ||
Once we have initialize TLE data (see [[API_TLE_data|here]]) and options (see [[API_TLE_options|here]]), we will have to instantiate a [{{PathCurrentJavaDoc}}/fr/cnes/dynvol/gentleman/calc/data/tle/GtmBuilder object.html GtmBuilder object] as is: | |||
<syntaxhighlight lang="java"> | |||
// TLE builder | |||
final GtmBuilder build = new GtmBuilder(TLE_OBJ, geo.getSpacecraftStateList(), null); | |||
</syntaxhighlight> | |||
// Building TLE | |||
final List<TLE> bestTles = build.computeBestTles(data, false); | |||
Version du 13 septembre 2021 à 07:24
Once we have initialize TLE data (see here) and options (see here), we will have to instantiate a object.html GtmBuilder object as is:
// TLE builder
final GtmBuilder build = new GtmBuilder(TLE_OBJ, geo.getSpacecraftStateList(), null);
// Building TLE final List<TLE> bestTles = build.computeBestTles(data, false);