« Maneuvers Estimation And Pdf Report » : différence entre les versions

De Opera
Aller à la navigation Aller à la recherche
(Page créée avec « To get an estimation of the occured maneuvers, it is only necessary to initialize a list of <font color=#FF8C00 title="Two Lines Elements">TLE</font> as shown Basic_Prin... »)
 
Aucun résumé des modifications
Ligne 1 : Ligne 1 :
To get an estimation of the occured maneuvers, it is only necessary to initialize a list of <font color=#FF8C00 title="Two Lines Elements">TLE</font> as shown [[Basic_Principle#Getting_list_of_TLE|here]]. Moreover, thes TLE will be in [{{PathCurrentJavaDoc}}/fr/cnes/dynvol/opera/tle/OperaTLESeries .html OperaTLESeries] then [{{PathCurrentJavaDoc}}/fr/cnes/dynvol/opera/tle/OperaTLEManoeuvres.html  OperaTLEManoeuvres] objects:
To get an estimation of the occured maneuvers, it is only necessary to initialize a list of <font color=#FF8C00 title="Two Lines Elements">TLE</font> as shown [[Basic_Principle#Getting_list_of_TLE|here]]. Moreover, these TLE will be in [{{PathCurrentJavaDoc}}/fr/cnes/dynvol/opera/tle/OperaTLESeries .html OperaTLESeries] then [{{PathCurrentJavaDoc}}/fr/cnes/dynvol/opera/tle/OperaTLEManoeuvres.html  OperaTLEManoeuvres] objects:


<syntaxhighlight lang="java">
<syntaxhighlight lang="java">

Version du 1 juillet 2019 à 12:25

To get an estimation of the occured maneuvers, it is only necessary to initialize a list of TLE as shown here. Moreover, these TLE will be in .html OperaTLESeries then OperaTLEManoeuvres objects:

final OperaTLESeries tleSeries = new OperaTLESeries(tles);
final OperaTLEManoeuvres tleForMan = new OperaTLEManoeuvres(tleSeries);

Then, the computation of the estimated maneuvers will be done thanks to calling the estimateLEOManoeuvers() method of this OperaTLEManoeuvres object:

      
// Maneuvers estimation
OperaLEOManoeuvers manInfo = tleForMan.estimateLEOManoeuvers();

At last, some getters will be available to obtain results as in the example below ...


     
final int manNum = manInfo.getDgaManoeuvers().size();
System.out.println("Amount of maneuvers: " + manNum);
for (int iMan = 0; iMan < manInfo.getSmaManoeuversDates().size(); iMan++) {
    System.out.println( "Maneuver #"+iMan);
    System.out.println("   maneuver date: " + OperaDateManager.cnesJulianDate2AbsoluteDate(manInfo.getSmaManoeuversDates().get(iMan)));
    System.out.println("   maneuver dga:  " + manInfo.getDgaManoeuvers().get(iMan).getSma() + " m");
}