This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
rts2_kuiper:rts2_at_the_61 [2017/10/03 23:19] scott created |
rts2_kuiper:rts2_at_the_61 [2017/12/18 20:52] (current) scott |
||
---|---|---|---|
Line 1: | Line 1: | ||
+ | |||
+ | |||
====== RTS2 ====== | ====== RTS2 ====== | ||
+ | |||
+ | NOTE: We are migrating, this information to the [[https:// | ||
We are attempting to automate the 61" using RTS2. This wiki page should give the basics of how to run RTS2 | We are attempting to automate the 61" using RTS2. This wiki page should give the basics of how to run RTS2 | ||
+ | |||
+ | |||
===== RTS2 source ===== | ===== RTS2 source ===== | ||
Line 48: | Line 54: | ||
The logger at the bottom is the real time log of each diver or service. | The logger at the bottom is the real time log of each diver or service. | ||
+ | |||
+ | ==== RTS2 Targets ==== | ||
+ | |||
+ | RTS2 keeps all targets and lots of other information in a postgres database called stars. You should not have to interact directly with the database for target manipulation. There are several handy tools that will do this for you. | ||
+ | |||
+ | === rts2-targetlist === | ||
+ | |||
+ | rts2-targetlist command will list all the available targets in the database along with their RA an Dec and weather the object is rising, setting, or transiting. The output will look something like this: | ||
+ | |||
+ | 1009 O 02: | ||
+ | 1010 O 01: | ||
+ | 1011 O 02: | ||
+ | 1012 O 20: | ||
+ | 1013 O 20: | ||
+ | 1014 O 00: | ||
+ | 1015 O 00: | ||
+ | 1016 O 03: | ||
+ | 1017 O 02: | ||
+ | 1018 O 23: | ||
+ | |||
+ | where the number on the far left is the RTS2 target id and the far right is a name for the target supplied by | ||
+ | the user. | ||
+ | |||
+ | === newtarget.py === | ||
+ | |||
+ | To add new targets to the database you can use newtargets.py currently located in / | ||
+ | |||
+ | == --search == | ||
+ | The --search flag is used like this: | ||
+ | |||
+ | newtarget.py --search " | ||
+ | |||
+ | This command will look for m35 in the Simbad database and if it finds it, will add it to the RTS2 target list | ||
+ | |||
+ | == --create == | ||
+ | |||
+ | You can use the --create option like: | ||
+ | |||
+ | newtarget.py | ||
+ | |||
+ | this will create the target SN2017gmr at 02: | ||
+ | |||
+ | ===== Simple Queues ===== | ||
+ | |||
+ | RTS2 has two basic observing modes a simple queue and a more complicated selector that uses a variety of information to intelligently select targets. | ||
+ | In a simple queue, the users create a list of targets using the rts2-queue command. | ||