« BatchMode » : différence entre les versions

De Opera
Aller à la navigation Aller à la recherche
Ligne 40 : Ligne 40 :
In that case, the '''--ids''' option will be followed by '''BYSAT''' then at least one of these criteriae to filter the Norad Ids:
In that case, the '''--ids''' option will be followed by '''BYSAT''' then at least one of these criteriae to filter the Norad Ids:


* NORADID=''pattern'' (by default "*")
* NORADID=''pattern''; by default '''"*"'''
* COSPARID=''pattern'' (by default "*")
* COSPARID=''pattern''; by default '''"*"'''
* COUNTRY=''pattern'' (by default "*")
* COUNTRY=''pattern''; by default '''"*"'''
* NAME=''pattern'' (by default "*")
* NAME=''pattern''; by default '''"*"'''
* SIZE=''list of sizes between UNKNOWN, SMALL, MEDIUM, LARGE (separated by ",")'' (by default the four options)
* SIZE=''list of sizes between '''UNKNOWN''', '''SMALL''', '''MEDIUM''', '''LARGE''' (separated by ",")''; by default the four options


* DECAY=''ALL, INORBIT or REENTERED'' (by default "ALL")
* DECAY='''''ALL''', '''INORBIT''' or '''REENTERED'''''; by default '''ALL'''


Here is an example of such a call:
Here is an example of such a call:

Version du 3 septembre 2019 à 13:33

To run OPERA in "Batch mode" or "Command Line Interface Mode" you need to type the following commands in the command prompt:

>> java -jar opera-xxx-jar-with-dependencies.jar + arguments...

If you want some help about all these arguments, you may type:

>> java -jar opera-xxx-jar-with-dependencies.jar -h

or

>> java -jar opera-xxx-jar-with-dependencies.jar --help

The following options are listed below ...

Not mandatory options

  • -h or --help: opera app configuration help [No Args]
  • -v or --verbose: verbose [No Args]
  • -p or --progress : progress mode to activate gui progress bar [No Args]

Mandatory if no XML context file as option

  • -c or --config: opera app configuration properties [Mandatory][1 Arg(s)] (see here for more explanation about this kind of file)
  • -t or --result: result type : REENTRY/SM_ESTIMATION/MANOEUVERS/REPORT [Mandatory][ 1 Arg(s)]
  • -d or --duration: duration of process in days [Mandatory][1 Arg(s)]
  • -e or --endcjd: end of History in CNES Julian date [Mandatory][1 Arg(s)]
  • -m or --mergeMethod:solar activity merge method (END_OF_REAL_FILE or MERGE_DATE) [Mandatory][1 Arg(s)]
  • -a or --mergeDate:solar activity merge date CJD [1 Arg(s)] (needed if the previous arguments is set to MERGE_DATE)
  • -o or --output: save outputs in file[No Args]
  • -i or --ids: Norad Id List [Mandatory] [No args number limit]

Here is an example of such a call:

 >> java -jar opera-xxx-jar-with-dependencies.jar --config OPERA_DATA/work/operaappworkingcopy.properties --result REENTRY --endcjd 22607.00039351852 --duration 100 --ids 10479 10582 --mergeMethod END_OF_REAL_FILE --verbose --output --progress

Since the 3rd September version, it is now possible, rather than to give directly Norad Ids, to use serching funtions as with the GUI mode. Two possibilities are available:

Search by Sat

In that case, the --ids option will be followed by BYSAT then at least one of these criteriae to filter the Norad Ids:

  • NORADID=pattern; by default "*"
  • COSPARID=pattern; by default "*"
  • COUNTRY=pattern; by default "*"
  • NAME=pattern; by default "*"
  • SIZE=list of sizes between UNKNOWN, SMALL, MEDIUM, LARGE (separated by ","); by default the four options
  • DECAY=ALL, INORBIT or REENTERED; by default ALL

Here is an example of such a call:

  >> java -jar opera-xxx-jar-with-dependencies.jar --config OPERA_DATA/work/operaappworkingcopy.properties --result REENTRY --endcjd 22607.00039351852 -duration 100 --ids BYSAT NORADID=*479 COUNTRY=US NAME=DEL* SIZE=SMALL,MEDIUM DECAY=REENTERED --mergeMethod END_OF_REAL_FILE --verbose";

Search by Day

In that case, the --ids option will be followed by BYDAY then at at least one of these criteriae to filter the Norad Ids:

  • I=[true/false]; if true we may add:
    • IDEG=[true/false] (by default false) → values expressed in degree if true
    • IMIN=value (by default 0.) → minimum inclination
    • IMAX=value (by default 0.) → maximum inclination


 >> java -jar opera-xxx-jar-with-dependencies.jar --config OPERA_DATA/work/operaappworkingcopy.properties --result REENTRY " --endcjd 23062 -duration 100 " --ids BYDAY I=true IMIN=2. IMAX=3. AE=false HP=true HPMIN=260. HPMAX=265. HA=true HAMIN=33200. HAMAX=33300. " --mergeMethod END_OF_REAL_FILE --verbose"

Mandatory if there is a XML file as option

Warning: this possibility is only available since the 10th July version ...

  • -x or --xml: opera XML context file [Mandatory][1 Arg(s)]

Such a XML file may be obtained using the GUI (Save Context ...).

Here is an example of such a call:

 >> java -jar opera-xxx-jar-with-dependencies.jar --xml data/OPE_test.xml