Bases: KPFFunction
Given a list of OBs, generate a Keck Star List and send to MAGIQ.
MAGIQ API documentation:
http://suwebserver01.keck.hawaii.edu/magiqStatus/magiqServer.php
Source code in kpf/magiq/SetTargetList.py
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33 | class SetTargetList(KPFFunction):
'''Given a list of OBs, generate a Keck Star List and send to MAGIQ.
MAGIQ API documentation:
http://suwebserver01.keck.hawaii.edu/magiqStatus/magiqServer.php
'''
@classmethod
def pre_condition(cls, args):
if not KPF_is_selected_instrument():
raise KPFException('KPF is not selected instrument')
if not GetTelescopeRelease.execute({}):
raise KPFException('Telescope is not released')
@classmethod
def perform(cls, args):
star_list_string = args.get('StarList')
params = {'targetlist': star_list_string}
nlines = len(args.get('StarList').split('\n'))
log.info(f'Running Magiq setTargetList command with {nlines} lines')
log.debug(star_list_string)
result = magiq_server_command('setTargetlist', params=params, post=True)
@classmethod
def post_condition(cls, args):
pass
|