forked from mommermi/photometrypipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pp_distill.py
executable file
·784 lines (646 loc) · 29.6 KB
/
pp_distill.py
1
2
3
4
5
6
7
8
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
#!/usr/bin/env python3
""" PP_DISTILL - distill calibrated image databases into one database
of select moving or fixed sources
v1.0: 2016-01-24, [email protected]
"""
# Photometry Pipeline
# Copyright (C) 2016-2018 Michael Mommert, [email protected]
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see
# <http://www.gnu.org/licenses/>.
import numpy as np
import os
import sys
import logging
import argparse
import sqlite3
from astroquery.jplhorizons import Horizons
from astropy.io import ascii
try:
from astroquery.vizier import Vizier
except ImportError:
print('Module astroquery not found. Please install with: pip install '
'astroquery')
sys.exit()
# only import if Python3 is used
if sys.version_info > (3, 0):
from builtins import str
from builtins import range
# pipeline-specific modules
import _pp_conf
from pp_setup import confdistill as conf
from catalog import *
from toolbox import *
from diagnostics import distill as diag
# setup logging
logging.basicConfig(filename=_pp_conf.log_filename,
level=_pp_conf.log_level,
format=_pp_conf.log_formatline,
datefmt=_pp_conf.log_datefmt)
def manual_positions(posfile, catalogs, display=True):
"""create targets for manually provided positions (using -positions
option)"""
if display:
print(('# target positions as a function of time manually '
'provided... '), end=' ')
sys.stdout.flush()
logging.info('target positions as a function of time manually provided')
# handle wildcard symbol
if posfile == 'all_objects':
objects = []
for filename in os.listdir('.'):
if 'positions_' in filename and '.dat' in filename:
objects.append(manual_positions(filename, catalogs,
display=False))
if display:
print(len(objects)/len(catalogs), 'object(s) found')
return (list(np.hstack(objects)))
try:
positions = np.genfromtxt(posfile, dtype=[('filename', 'S50'),
('ra', float),
('dec', float),
('MJD', float),
('name', 'S30')])
except:
positions = np.genfromtxt(posfile, dtype=[('filename', 'S50'),
('ra', float),
('dec', float),
('MJD', float)])
try:
assert len(positions) == len(catalogs)
except AssertionError:
print(posfile + ' is not complete; has to provide a position ' +
'for each frame')
logging.error(posfile+' is not complete; has to provide position ' +
'for each frame')
return []
objects = []
for cat_idx, cat in enumerate(catalogs):
try:
objects.append({'ident': positions[cat_idx]['name'].decode('utf-8'),
'obsdate.jd': cat.obstime,
'cat_idx': cat_idx,
'ra_deg': positions[cat_idx]['ra'],
'dec_deg': positions[cat_idx]['dec']})
except:
objects.append({'ident': 'manual_target',
'obsdate.jd': cat.obstime,
'cat_idx': cat_idx,
'ra_deg': positions[cat_idx]['ra'],
'dec_deg': positions[cat_idx]['dec']})
if display:
print(len(objects)/len(catalogs), 'object(s) found')
return objects
def pick_controlstar(catalogs, display=True):
"""match the first and the last catalog and pick a bright star"""
if display:
print('# pick control star... ', end=' ')
sys.stdout.flush()
logging.info('pick control star')
match = catalogs[0].match_with(catalogs[-1],
match_keys_this_catalog=[
'ra_deg', 'dec_deg'],
match_keys_other_catalog=[
'ra_deg', 'dec_deg'],
extract_this_catalog=[
'ra_deg', 'dec_deg', 'FLAGS'],
extract_other_catalog=[
'ra_deg', 'dec_deg', 'FLAGS', 'MAG_APER'],
tolerance=1/3600)
objects = []
if len(match[0][0]) > 0:
ctlstar_idx = np.argsort(match[1][3])[int(0.05*len(match[1][3]))]
for cat_idx, cat in enumerate(catalogs):
objects.append({'ident': 'Control Star',
'obsdate.jd': cat.obstime[0],
'cat_idx': cat_idx,
'ra_deg': match[1][0][ctlstar_idx],
'dec_deg': match[1][1][ctlstar_idx]})
else:
print(' no common control star found in first and last frame')
logging.info('no common control star found in first and last frame')
if display:
print('done!')
return objects
def moving_primary_target(catalogs, man_targetname, offset, is_asteroid=None,
display=True):
"""
is_asteroid == True: this object is an asteroid
is_asteroid == False: this object is a planet/moon/spacecraft
is_asteroid == None: no information on target nature
"""
if display:
print('# check JPL Horizons for primary target... ')
sys.stdout.flush()
logging.info('check JPL Horizons for primary target')
obsparam = _pp_conf.telescope_parameters[
catalogs[0].origin.split(';')[0].strip()]
objects = []
# check for target nature, if unknown
if is_asteroid is None:
cat = catalogs[0]
targetname = cat.obj.replace('_', ' ')
if man_targetname is not None:
targetname = man_targetname.replace('_', ' ')
for smallbody in [True, False]:
obj = Horizons(targetname.replace('_', ' '),
id_type={True: 'smallbody',
False: 'majorbody'}[smallbody],
epochs=cat.obstime[0],
location=obsparam['observatory_code'])
n = 0
try:
eph = obj.ephemerides()
n = len(eph)
except ValueError:
if display and smallbody is True:
print("'%s' is not a small body" % targetname)
logging.warning("'%s' is not a small body" %
targetname)
if display and smallbody is False:
print("'%s' is not a Solar System object" % targetname)
logging.warning("'%s' is not a Solar System object" %
targetname)
pass
if n > 0:
is_asteroid = smallbody
break
# if is_asteroid is still None, this object is not in the Horizons db
if is_asteroid is None:
return objects
message_shown = False
# query information for each image
for cat_idx, cat in enumerate(catalogs):
targetname = cat.obj.replace('_', ' ')
if man_targetname is not None:
targetname = man_targetname.replace('_', ' ')
cat.obj = targetname
obj = Horizons(targetname.replace('_', ' '),
id_type={True: 'smallbody',
False: 'majorbody'}[is_asteroid],
epochs=cat.obstime[0],
location=obsparam['observatory_code'])
try:
eph = obj.ephemerides()
n = len(eph)
except ValueError:
# if is_asteroid:
# if display and not message_shown:
# print 'is \'%s\' an asteroid?' % targetname
# logging.warning('Target (%s) is not an asteroid' % targetname)
# else:
# if display and not message_shown:
# print ('is \'%s\' a different Solar System object?' %
# )targetname
# logging.warning('Target (%s) is not a Solar System object' %
# targetname)
# n = None
pass
if n is None or n == 0:
logging.warning('WARNING: No position from Horizons! ' +
'Name (%s) correct?' % cat.obj.replace('_', ' '))
logging.warning('HORIZONS call: %s' % obj.uri)
if display and not message_shown:
print(' no Horizons data for %s ' % cat.obj.replace('_', ' '))
message_shown = True
else:
objects.append({'ident': eph[0]['targetname'].replace(" ", "_"),
'obsdate.jd': cat.obstime[0],
'cat_idx': cat_idx,
'ra_deg': eph[0]['RA']-offset[0]/3600,
'dec_deg': eph[0]['DEC']-offset[1]/3600})
logging.info('Successfully grabbed Horizons position for %s ' %
cat.obj.replace('_', ' '))
logging.info('HORIZONS call: %s' % obj.uri)
if display and not message_shown:
print(cat.obj.replace('_', ' '), "identified")
message_shown = True
return objects
def fixed_targets(fixed_targets_file, catalogs, display=True):
"""add fixed target positions to object catalog"""
if display:
print('# read fixed target file... ', end=' ')
sys.stdout.flush()
logging.info('read fixed target file')
fixed_targets = np.genfromtxt(fixed_targets_file,
dtype=[('name', 'S20'),
('ra', float),
('dec', float)])
# force array shape even for single line fixed_targets_files
if len(fixed_targets.shape) == 0:
fixed_targets = np.array([fixed_targets])
objects = []
for obj in fixed_targets:
for cat_idx, cat in enumerate(catalogs):
objects.append({'ident': obj['name'].decode('utf-8'),
'obsdate.jd': cat.obstime[0],
'cat_idx': cat_idx,
'ra_deg': obj['ra'],
'dec_deg': obj['dec']})
if display:
print(len(objects)/len(catalogs), 'targets read')
return objects
# ---- search for serendipitous targets
def serendipitous_variablestars(catalogs, display=True):
"""match catalogs with VSX catalog using astroquery.Vizier
"""
if display:
print('# match frames with variable star database... ', end=' ',
flush=True)
logging.info('match frames with variable star database')
# derive center and radius of field of view of all images
ra_deg, dec_deg, rad_deg = skycenter(catalogs)
logging.info('FoV center (%.7f/%+.7f) and radius (%.2f deg) derived' %
(ra_deg, dec_deg, rad_deg))
# derive observation midtime of sequence
midtime = np.average([cat.obstime[0] for cat in catalogs])
# setup Vizier query
# note: column filters uses original Vizier column names
# -> green column names in Vizier
logging.info(('query Vizier for VSX at %7.3f/%+8.3f in '
+ 'a %.2f deg radius') %
(ra_deg, dec_deg, rad_deg))
field = coord.SkyCoord(ra=ra_deg, dec=dec_deg, unit=(u.deg, u.deg),
frame='icrs')
vquery = Vizier(columns=['Name', 'RAJ2000', 'DEJ2000'])
try:
data = vquery.query_region(field,
width=("%fd" % rad_deg),
catalog="B/vsx/vsx")[0]
except IndexError:
if display:
print('no data available from VSX')
logging.error('no data available from VSX')
return []
objects = []
for cat_idx, cat in enumerate(catalogs):
for star in data:
objects.append({'ident': star['Name'],
'obsdate.jd': cat.obstime[0],
'cat_idx': cat_idx,
'ra_deg': star['RAJ2000'],
'dec_deg': star['DEJ2000']})
if display:
print(len(objects)/len(catalogs), 'variable stars found')
return objects
def serendipitous_asteroids(catalogs, display=True):
import requests
server = 'http://vo.imcce.fr/webservices/skybot/skybotconesearch_query.php'
if display:
print('# check frames with IMCCE SkyBoT... ', end=' ')
sys.stdout.flush()
logging.info('check frames with IMCCE SkyBoT')
# todo: smarter treatment of limiting magnitude and pos. uncertainty
# identify limiting magnitude (90 percentile in calibrated magnitude)
band_key = None
for key in catalogs[0].fields:
if 'mag' in key and not '_e_' in key:
band_key = key
if band_key is None:
if display:
print(('Error: No calibrated magnitudes found '
'in catalog "{:s}"').format(catalogs[0].catalogname),
flush=True)
logging.error(('No calibrated magnitudes found '
'in catalog "{:s}"').format(catalogs[0].catalogname))
return []
maglims = [np.percentile(cat[band_key], 90) for cat in catalogs]
# maximum positional uncertainty = 5 px (unbinned)
obsparam = _pp_conf.telescope_parameters[
catalogs[0].origin.split(';')[0].strip()]
max_posunc = 5*max(obsparam['secpix'])
# derive center and radius of field of view of all images
ra_deg, dec_deg, rad_deg = skycenter(catalogs)
logging.info('FoV center (%.7f/%+.7f) and radius (%.2f deg) derived' %
(ra_deg, dec_deg, rad_deg))
# derive observation midtime of sequence
midtime = np.average([cat.obstime[0] for cat in catalogs])
r = requests.get(server,
params={'RA': ra_deg, 'DEC': dec_deg,
'SR': rad_deg, 'EPOCH': str(midtime),
'-output': 'object',
'-mime': 'text'},
timeout=180)
if 'No solar system object was found in the requested FOV' in r.text:
print('No Solar System object found')
logging.warning('SkyBot failed: ' + r.text)
return []
results = ascii.read(r.text, delimiter='|',
names=('number', 'name', 'ra', 'dec', 'type',
'V', 'posunc', 'd'))
objects = []
for obj in results:
if obj['posunc'] > max_posunc:
logging.warning(('asteroid {:s} rejected due to large '
'pos. unc ({:f} > {:f} arcsec)').format(
obj['name'],
obj['posunc'],
max_posunc))
continue
if obj['V'] > max(maglims):
logging.warning(('asteroid {:s} rejected; too faint '
'({:f} mag)').format(obj['name'],
obj['V']))
continue
objects += moving_primary_target(catalogs, obj['name'], (0, 0),
display=False)
logging.info(('asteroid {:s} added to '
'target pool').format(obj['name']))
if display:
print(len(objects)/len(catalogs), 'asteroids found')
return objects
# -------------------
def distill(catalogs, man_targetname, offset, fixed_targets_file, posfile,
rejectionfilter='pos', display=False, diagnostics=False,
variable_stars=False, asteroids=False):
"""
distill wrapper
"""
# start logging
logging.info('starting distill with parameters: %s' %
(', '.join([('%s: %s' % (var, str(val))) for
var, val in list(locals().items())])))
output = {}
# read in database files (if necessary)
if isinstance(catalogs[0], str):
filenames = catalogs[:]
catalogs = []
for filename in filenames:
filename = filename[:filename.find('.fit')]+'.ldac.db'
cat = catalog(filename)
try:
cat.read_database(filename)
except IOError:
logging.error('Cannot find database', filename)
print('Cannot find database', filename)
continue
except sqlite3.OperationalError:
logging.error('File %s is not a database file' % filename)
print('File %s is not a database file' % filename)
continue
catalogs.append(cat)
# identify target names and types
objects = [] # one dictionary for each target
if display:
print('#------ Identify Targets')
# check for positions file
if posfile is not None:
objects += manual_positions(posfile, catalogs, display=display)
# check Horizons for primary target (if a moving target)
if posfile is None and fixed_targets_file is None and asteroids is False:
objects += moving_primary_target(catalogs, man_targetname, offset,
display=display)
# add fixed target
if fixed_targets_file is not None:
objects += fixed_targets(fixed_targets_file, catalogs, display=display)
# serendipitous asteroids
if asteroids:
objects += serendipitous_asteroids(catalogs, display=display)
# serendipitous variable stars
if variable_stars:
objects += serendipitous_variablestars(catalogs, display=display)
# select a sufficiently bright star as control star
objects += pick_controlstar(catalogs, display=display)
if display:
print('#-----------------------')
if display:
print('{:d} potential target(s) per frame identified.'.format(
int(len(objects)/len(catalogs))))
# extract source data for identified targets
data = []
targetnames = {}
# sort objects by catalog idx
for cat_idx, cat in enumerate(catalogs):
# check for each target if it is within the image boundaries
min_ra = np.min(cat['ra_deg'])
max_ra = np.max(cat['ra_deg'])
min_dec = np.min(cat['dec_deg'])
max_dec = np.max(cat['dec_deg'])
objects_thiscat = []
for obj in objects:
if obj['cat_idx'] != cat_idx:
continue
# # not required since there is exactly one entry per catalog
# if (obj['ra_deg'] > max_ra or obj['ra_deg'] < min_ra or
# obj['dec_deg'] > max_dec or obj['dec_deg'] < min_dec):
# if display:
# print('\"%s\" not in image %s' % (obj['ident'],
# cat.catalogname))
# logging.info('\"%s\" not in image %s' % (obj['ident'],
# cat.catalogname))
# continue
objects_thiscat.append(obj)
if len(objects_thiscat) == 0:
continue
# create a new catalog
target_cat = catalog('targetlist:_'+cat.catalogname)
target_cat.add_fields(['ident', 'ra_deg', 'dec_deg'],
[[obj['ident'] for obj in objects_thiscat],
[obj['ra_deg']
for obj in objects_thiscat],
[obj['dec_deg'] for obj in objects_thiscat]])
# identify filtername
filtername = cat.filtername
# identify magnitudes
mag_keys = ['MAG_APER', 'MAGERR_APER']
if filtername is not None:
for key in cat.fields:
if filtername+'mag' in key:
mag_keys.append(key)
# if both catalog magnitudes and transformated magnitudes in mag_keys
# use the transformed ones (the target is most probably not in the
# catalog used for photometric calibration)
fixed_mag_keys = []
for band in mag_keys:
if '_'+band in mag_keys:
continue
else:
fixed_mag_keys.append(band)
mag_keys = fixed_mag_keys
match_keys_other_catalog, extract_other_catalog = [], []
for key in ['ra_deg', 'dec_deg', 'XWIN_IMAGE', 'YWIN_IMAGE',
'FLAGS', 'FWHM_WORLD']:
if key in cat.fields:
match_keys_other_catalog.append(key)
extract_other_catalog.append(key)
match = target_cat.match_with(
cat,
match_keys_this_catalog=('ra_deg', 'dec_deg'),
match_keys_other_catalog=match_keys_other_catalog,
extract_this_catalog=['ra_deg', 'dec_deg', 'ident'],
extract_other_catalog=extract_other_catalog+mag_keys,
tolerance=None)
for i in range(len(match[0][0])):
# derive calibrated magnitudes, if available
try:
cal_mag = match[1][len(extract_other_catalog)+2][i]
cal_magerr = match[1][len(extract_other_catalog)+3][i]
except IndexError:
# use instrumental magnitudes
cal_mag = match[1][len(extract_other_catalog)][i]
cal_magerr = match[1][len(extract_other_catalog)+1][i]
data.append([match[0][2][i], match[0][0][i], match[0][1][i],
match[1][0][i], match[1][1][i],
match[1][len(extract_other_catalog)][i],
match[1][len(extract_other_catalog)+1][i],
cal_mag, cal_magerr,
cat.obstime, cat.catalogname,
match[1][2][i], match[1][3][i],
cat.origin, match[1][4][i], match[1][5][i]])
# format: ident, RA_exp, Dec_exp, RA_img, Dec_img,
# mag_inst, sigmag_instr, mag_cal, sigmag_cal
# obstime, filename, img_x, img_y, origin, flags
# fwhm
targetnames[match[0][2][i]] = 1
# list of targets
output['targetnames'] = targetnames
# dictionary: list of frames per target
output['targetframes'] = {}
# write results to ASCII file
for target in targetnames:
if sys.version_info < (3, 0):
target = str(target)
output[target] = []
output['targetframes'][target] = []
if display:
print('write photometry results for %s' % target)
outf = open('photometry_%s.dat' %
target.translate(_pp_conf.target2filename), 'w')
outf.write('# filename julian_date ' +
'mag sig source_ra source_dec [1] [2] ' +
'[3] [4] [5] ZP ZP_sig inst_mag ' +
'in_sig [6] [7] [8] [9] [10] ' +
'FWHM"\n')
for dat in data:
# sort measured magnitudes by target
if dat[0] == target:
reject_this_target = False
try:
filtername = dat[13].split(';')[3]
if 'manual_zp' in dat[13].split(';')[2]:
filtername = dat[13].split(';')[2][0]
except IndexError:
filtername = '-'
if (len(dat[13].split(';')) > 2 and
'manual_zp' in dat[13].split(';')[2]):
filtername = dat[13].split(';')[2][0]
try:
catalogname = dat[13].split(';')[2]
if 'manual_zp' in catalogname:
catalogname = 'manual_zp'
except IndexError:
catalogname = dat[13].split(';')[1]
if 'manual_zp' in catalogname:
catalogname = 'manual_zp'
# apply rejectionfilter
for reject in rejectionfilter.split(','):
if conf.rejection[reject](dat):
logging.info(('reject photometry for target {:s} '
'from frame {:s} due to rejection '
'schema {:s}').format(
dat[0],
dat[10].replace(' ', '_'),
reject))
reject_this_target = True
if reject_this_target:
outf.write('#')
else:
outf.write(' ')
output[target].append(dat)
outf.write(('%35.35s ' % dat[10].replace(' ', '_')) +
('%15.7f ' % dat[9][0]) +
('%8.4f ' % dat[7]) +
('%6.4f ' % dat[8]) +
('%13.8f ' % dat[3]) +
('%+13.8f ' % dat[4]) +
('%5.2f ' % ((dat[1] - dat[3]) * 3600.)) +
('%5.2f ' % ((dat[2] - dat[4]) * 3600.)) +
('%5.2f ' % offset[0]) +
('%5.2f ' % offset[1]) +
('%5.2f ' % dat[9][1]) +
('%8.4f ' % (dat[7] - dat[5])) +
('%6.4f ' % np.sqrt(dat[8]**2 - dat[6]**2)) +
('%8.4f ' % dat[5]) +
('%6.4f ' % dat[6]) +
('%s ' % catalogname) +
('%s ' % filtername) +
('%3d ' % dat[14]) +
('%s' % dat[13].split(';')[0]) +
('%10s ' % _pp_conf.photmode) +
('%4.2f\n' % (dat[15]*3600)))
output['targetframes'][target].append(dat[10][:-4]+'fits')
outf.writelines('#\n# [1]: predicted_RA - source_RA [arcsec]\n' +
'# [2]: predicted_Dec - source_Dec [arcsec]\n' +
'# [3,4]: manual target offsets in RA and DEC ' +
'[arcsec]\n' +
'# [5]: exposure time (s)\n' +
'# [6]: photometric catalog\n' +
'# [7]: photometric band\n' +
'# [8]: Source Extractor flag\n' +
'# [9]: telescope/instrument\n' +
'# [10]: photometry method\n')
outf.close()
# output content
#
# { 'targetnames': list of all targets,
# 'targetframes': lists of frames per target,
# '(individual targetname)': [ident, RA_exp, Dec_exp, RA_img, Dec_img,
# mag_inst, sigmag_instr, mag_cal,
# sigmag_cal, obstime, filename, img_x,
# img_y, origin, flags, fwhm],
# }
###
# create diagnostics
if diagnostics:
if display:
print('extracting thumbnail images')
logging.info(' ~~~~~~~~~ creating diagnostic output')
diag.add_results(output)
return output
if __name__ == '__main__':
# command line arguments
parser = argparse.ArgumentParser(description='distill sources of interest')
parser.add_argument('-target', help='target name', default=None)
parser.add_argument('-offset', help='primary target offset (arcsec)',
nargs=2, default=[0, 0])
parser.add_argument('-positions', help='positions file', default=None)
parser.add_argument('-fixedtargets', help='target file', default=None)
parser.add_argument('-variable_stars',
help=('search for serendipitous variable star '
'observations'),
action="store_true")
parser.add_argument('-asteroids',
help='search for serendipitous asteroids',
action="store_true")
parser.add_argument('-reject',
help='schemas for target rejection',
nargs=1, default='pos')
parser.add_argument('images', help='images to process', nargs='+')
args = parser.parse_args()
man_targetname = args.target
man_offset = [float(coo) for coo in args.offset]
fixed_targets_file = args.fixedtargets
variable_stars = args.variable_stars
asteroids = args.asteroids
posfile = args.positions
rejectionfilter = args.reject
filenames = args.images
# check if input filenames is actually a list
if len(filenames) == 1:
if filenames[0].find('.lst') > -1 or filenames[0].find('.list') > -1:
filenames = [filename[:-1] for filename in
open(filenames[0], 'r').readlines()]
distillate = distill(filenames, man_targetname, man_offset,
fixed_targets_file,
posfile, rejectionfilter,
display=True, diagnostics=True,
variable_stars=variable_stars,
asteroids=asteroids)