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

De Opera
Aller à la navigation Aller à la recherche
Aucun résumé des modifications
Aucun résumé des modifications
 
(3 versions intermédiaires par le même utilisateur non affichées)
Ligne 6 : Ligne 6 :
                  
                  
// Opera properties configuration
// Opera properties configuration
final OperaConfigurationProperties conf = OperaConfigurationProperties.getConfigurationProperties("data/opera-configuration.properties");
final OperaConfigurationProperties conf = OperaReadUtils.getConfigurationProperties("data/opera-configuration.properties");


// TLEs initialization
// TLEs initialization
Ligne 13 : Ligne 13 :
</syntaxhighlight>
</syntaxhighlight>


Moreover, these TLE will be stored in [{{PathCurrentJavaDoc}}/fr/cnes/dynvol/opera/TLE/OperaTLESeries.html OperaTLESeries] then [{{PathCurrentJavaDoc}}/fr/cnes/dynvol/opera/TLE/OperaTLEManoeuvres.html  OperaTLEManoeuvres] objects:
Moreover, these <font color=#FF8C00 title="Two Lines Elements">TLE</font> will be stored in <font color=#4169E1>OperaTLESeries</font> then <font color=#4169E1>OperaTLEManoeuvres</font> objects:


<syntaxhighlight lang="java">
<syntaxhighlight lang="java">
Ligne 20 : Ligne 20 :
</syntaxhighlight>
</syntaxhighlight>


Then, the computation of the estimated maneuvers will be done thanks to calling the <font color=#4169E1>estimateLEOManoeuvers()</font> method of this [{{PathCurrentJavaDoc}}/fr/cnes/dynvol/opera/TLE/OperaTLEManoeuvres.html  OperaTLEManoeuvres] object:
Then, the computation of the estimated maneuvers will be done thanks to calling the <font color=#4169E1>estimateLEOManoeuvers()</font> method of this <font color=#4169E1>OperaTLEManoeuvres</font> object:


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

Dernière version du 21 janvier 2020 à 08:44

To get an estimation of the occured maneuvers, it is only necessary to initialize [PATRIUS dataset] and a list of TLE as shown here and below . Anyway, it is also recommended to load a configuration properties file as shown below and here, at least to well initialize internal OPERA data.

// Patrius Dataset initialization (needed for example to get the UTC time)
OperaReadUtils.iniPatriusDataset(null);
                
// Opera properties configuration
final OperaConfigurationProperties conf = OperaReadUtils.getConfigurationProperties("data/opera-configuration.properties");

// TLEs initialization
final int noradId = 10479;
final SortedSet<TLE> tlesSet = OperaTleManager.readTLEs("data/tles", noradId);

Moreover, these TLE will be stored in 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
final OperaLEOManoeuvers manInfo = tleForMan.estimateLEOManoeuvers();

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");
}

At last, it will be also possible to generate automatically a PDF report as this:

// Pdf generation
final String path = tleForMan.buildLEOManReport(noradId, conf);
System.out.println("Pdf report generated at " + path);