« Searching NoradIds » : différence entre les versions

De Opera
Aller à la navigation Aller à la recherche
Aucun résumé des modifications
Aucun résumé des modifications
Ligne 1 : Ligne 1 :
Since the 3rd September 2019 version, it is now possible to call some methods in order to filter Norad Ids. As with the <font color=#FF8C00 title="Graphical User Interface">GUI</font> or the Batch mode (see [http://opera.cnes.fr/index.php/Configuration#Search_By_Sat here] or [http://opera.cnes.fr/index.php/BatchMode#Search_By_Sat here]) two solution are available
Since the 3rd September 2019 version, it is now possible to call some methods in order to filter Norad Ids. As with the <font color=#FF8C00 title="Graphical User Interface">GUI</font> or the Batch mode (see [http://opera.cnes.fr/index.php/Configuration#Search_By_Sat here] or [http://opera.cnes.fr/index.php/BatchMode#Search_By_Sat here]) two solution are available:
 
== Search by Sat ==
 
This is done using the <font color=#4169E1>OperaTleManager.searchObjectsBySat()</font> method:
 
<syntaxhighlight lang="java">
final string filterNoradId = "*479";
final String filterCosparId = "*";
final String filterName = "DEL*";
final String filterCountry = "US";
final ArrayList<OperaTLESatSizes> validSizes = new ArrayList<OperaTLESatSizes>();
validSizes.add(OperaTLESatSizes.MEDIUM);
validSizes.add(OperaTLESatSizes.SMALL);
 
final ArrayList<ObjTLESearch> list = OperaTleManager.searchObjectsBySat(filterNoradId, filterCosparId, filterName, filterCountry, validSizes, DecayChoice.REENTERED);
 
</syntaxhighlight>

Version du 3 septembre 2019 à 14:00

Since the 3rd September 2019 version, it is now possible to call some methods in order to filter Norad Ids. As with the GUI or the Batch mode (see here or here) two solution are available:

Search by Sat

This is done using the OperaTleManager.searchObjectsBySat() method:

final string filterNoradId = "*479";
final String filterCosparId = "*";
final String filterName = "DEL*";
final String filterCountry = "US";
final ArrayList<OperaTLESatSizes> validSizes = new ArrayList<OperaTLESatSizes>();
validSizes.add(OperaTLESatSizes.MEDIUM);
validSizes.add(OperaTLESatSizes.SMALL);

final ArrayList<ObjTLESearch> list = OperaTleManager.searchObjectsBySat(filterNoradId, filterCosparId, filterName, filterCountry, validSizes, DecayChoice.REENTERED);