forked from talister/photometrypipeline
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pptool_mpcreport.py
executable file
·122 lines (98 loc) · 4.24 KB
/
pptool_mpcreport.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
#!/usr/bin/env python3
""" PPTOOL_MPCREPORT - produce a file for submission of asteroid astrometry
to the Minor Planet center
v1.0: 2017-05-25, [email protected]
"""
from __future__ import print_function
import argparse
from astropy.time import Time
from astropy import units as u
from astropy.coordinates import SkyCoord
# pipeline-specific modules
import _pp_conf
from catalog import *
import toolbox
# only import if Python3 is used
if sys.version_info > (3, 0):
from builtins import str
# setup logging
logging.basicConfig(filename=_pp_conf.log_filename,
level=_pp_conf.log_level,
format=_pp_conf.log_formatline,
datefmt=_pp_conf.log_datefmt)
if __name__ == '__main__':
# command line arguments
parser = argparse.ArgumentParser(description='prepare MPC submission')
parser.add_argument('photometryfile',
help='photometry files to process')
parser.add_argument('targetname',
help='target identifier (<=7 chars)')
args = parser.parse_args()
filename = args.photometryfile
targetname = args.targetname
if len(targetname) > 7:
targetname = targetname[:7]
outf = open('mpc_astrometry.dat', 'w')
fitsfilename = open(filename, 'r').readlines()[1].split()[0]
fitsfilename = fitsfilename.replace('.ldac', '.fits')
# read telescope and filter information from fits headers
instrument = None
hdulist = fits.open(fitsfilename, ignore_missing_end=True,
verify='silentfix')
header = hdulist[0].header
instrument = hdulist[0].header['TEL_KEYW']
if instrument is None == 0:
raise KeyError('cannot identify telescope/instrument; '
'please update '
'_pp_conf.instrument_keys accordingly')
# assign telescope parameters (telescopes.py)
obsparam = _pp_conf.telescope_parameters[instrument]
observatory_code = obsparam['observatory_code']
# write header
outf.write('COD #observatory_code: 3 char#\n'
'CON #contact person: J. Doe#\n'
'CON [#email address#]\n'
'OBS #observer name: J. Doe#\n'
'MEA #measurer name: J. Doe#\n'
'TEL #telescope name, aperture, camera#\n'
'NET #astrometry catalog#\n'
'BND #calibration band#\n'
'NUM #number of observations submitted#\n'
'COM #comments#\n'
'ACK #email address\n')
# loop over photometry file
for obs in open(filename, 'r').readlines():
if '#' in obs:
continue
obs = obs.split()
# convert observation midtime
date = Time(float(obs[1]), format='jd', scale='utc').to_datetime()
date = '{0:4d} {1:02d} {2:08.5f} '.format(date.year, date.month,
date.day+(date.hour/24 +
date.minute/1440 +
date.second/86400))
filtername = obs[16]
if filtername == '-':
filtername = 'C'
pos = SkyCoord(ra=float(obs[4])*u.degree,
dec=float(obs[5])*u.degree, frame='icrs')
ra = pos.ra.hms
dec = pos.dec.signed_dms
mag = float(obs[2])
outf.write((' {:7s}'.format(targetname)) +
(' ') + # not a discovery
(' ') + # no note1
('C') + # note2: CCD observation
('{0:17s}'.format(date)) +
('{0:02d} {1:02d} {2:05.2f} '.format(int(ra.h),
int(ra.m),
ra.s)) +
('{0:+03d} {1:02d} {2:04.1f}'.format(int(dec.sign*dec.d),
int(dec.m),
dec.s)) +
(' ') + # blank
('{0:5.1f} {1:1s}'.format(mag, filtername)) +
(' ') + # blank
('{0:3s}'.format(observatory_code)) +
('\n'))
outf.close()