forked from talister/photometrypipeline
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pp_extract.py
executable file
·348 lines (287 loc) · 11.9 KB
/
pp_extract.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
#!/usr/bin/env python3
""" PP_EXTRACT - identify field sources using Source Extractor with
multi-threading capabilities
v1.0: 2015-12-30, [email protected]
"""
from __future__ import print_function
# 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
import os
import sys
import subprocess
import logging
import argparse
import shlex
from multiprocessing import Pool
from astropy.io import fits
# only import if Python3 is used
if sys.version_info > (3, 0):
from builtins import str
from future import standard_library
standard_library.install_aliases()
from builtins import range
# create a portable DEVNULL
# necessary to prevent subprocess.PIPE and STDOUT from clogging if
# Source Extractor runs for too long
try:
from subprocess import DEVNULL # Py3
except ImportError:
import os # Py2
DEVNULL = open(os.devnull, 'wb')
# pipeline-specific modules
import _pp_conf
from catalog import *
from toolbox import *
# setup logging
logging.basicConfig(filename=_pp_conf.log_filename,
level=_pp_conf.log_level,
format=_pp_conf.log_formatline,
datefmt=_pp_conf.log_datefmt)
# some definitions
version = '1.0'
# Determine the Source Extractor executable name: sex or sextractor.
for cmd in ['sex', 'sextractor', 'source-extractor']:
try:
p = subprocess.Popen(cmd, stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
del p
break
except OSError:
continue
else:
raise FileNotFoundError('Source Extractor command not found.')
sextractor_cmd = cmd
del cmd
# extractor class definition
def extract_singleframe(data):
"""
call Source Extractor using multiprocessing
"""
param = data[0]
filename = data[1]
out = {}
# process this frame
ldacname = filename[:filename.find('.fit')]+'.ldac'
out['fits_filename'] = filename
out['ldac_filename'] = ldacname
out['parameters'] = param
# prepare running SEXTRACTOR
os.remove(ldacname) if os.path.exists(ldacname) else None
optionstring = ''
if _pp_conf.photmode == 'APER':
optionstring += ' -PHOT_APERTURES %s ' % \
param['aperture_diam']
if ('global_background' in param and
param['global_background']):
optionstring += ' -BACKPHOTO_TYPE GLOBAL '
else:
optionstring += ' -BACKPHOTO_TYPE LOCAL '
optionstring += ' -DETECT_MINAREA %f ' % param['source_minarea']
optionstring += ' -DETECT_THRESH %f -ANALYSIS_THRESH %f ' % \
(param['sex_snr'], param['sex_snr'])
optionstring += ' -CATALOG_NAME %s ' % ldacname
if 'mask_file' in param:
optionstring += ' -WEIGHT_TYPE MAP_WEIGHT'
optionstring += ' -WEIGHT_IMAGE %s' % param['mask_file']
if 'paramfile' in param:
optionstring += ' -PARAMETERS_NAME %s' % param['paramfile']
if 'ignore_saturation' in param:
if param['ignore_saturation']:
optionstring += ' -SATUR_LEVEL 1000000'
optionstring += ' -SATUR_KEY NOPE'
if 'nodeblending' in param and param['nodeblending']:
optionstring += ' -DEBLEND_MINCONT 1 '
commandline = '%s -c %s %s %s' % \
(sextractor_cmd,
param['obsparam']['sex-config-file'],
optionstring, filename)
logging.info('call Source Extractor as: %s' % commandline)
# run SEXTRACTOR and wait for it to finish
try:
sex = subprocess.Popen(shlex.split(commandline),
stdout=DEVNULL,
stderr=DEVNULL,
close_fds=True)
# do not direct stdout to subprocess.PIPE:
# for large FITS files, PIPE will clog, stalling
# subprocess.Popen
except Exception as e:
print('Source Extractor call:', (e))
logging.error('Source Extractor call:', (e))
return None
sex.wait()
# read in LDAC file
ldac_filename = filename[:filename.find('.fit')]+'.ldac'
ldac_data = catalog(ldac_filename)
if not os.path.exists(ldac_filename):
print('No Source Extractor output for frame', filename)
logging.error('No Source Extractor output')
return None
# make sure ldac file contains data
if ldac_data.read_ldac(ldac_filename, maxflag=None) is None:
print('LDAC file empty', filename, end=' ')
logging.error('LDAC file empty: ' + sex_output)
return None
out['catalog_data'] = ldac_data
# update image header with aperture radius and other information
hdu = fits.open(filename, mode='update', ignore_missing_end=True)
obsparam = param['obsparam']
# observation midtime
if obsparam['obsmidtime_jd'] in hdu[0].header:
midtimjd = hdu[0].header[obsparam['obsmidtime_jd']]
else:
if obsparam['date_keyword'].find('|') == -1:
midtimjd = dateobs_to_jd(
hdu[0].header[obsparam['date_keyword']]) + \
float(hdu[0].header[obsparam['exptime']])/2./86400.
else:
datetime = hdu[0].header[
obsparam['date_keyword'].split('|')[0]] + \
'T'+hdu[0].header[
obsparam['date_keyword'].split('|')[1]]
midtimjd = dateobs_to_jd(datetime) + \
float(hdu[0].header[
obsparam['exptime']])/2./86400.
out['time'] = midtimjd
# hdu[0].header['APRAD'] = \
# (",".join([str(aprad) for aprad in self.param['aprad']]), \
# 'aperture phot radius (px)')
# hdu[0].header['SEXSNR'] = \
# (self.param['sex_snr'],
# 'Sextractor detection SNR threshold')
# hdu[0].header['SEXAREA'] = \
# (self.param['source_minarea'],
# 'Sextractor source area threshold (px)')
out['fits_header'] = hdu[0].header
hdu.flush()
hdu.close()
logging.info("%d sources extracted from frame %s" %
(len(ldac_data.data), filename))
if not param['quiet']:
print("%d sources extracted from frame %s" %
(len(ldac_data.data), filename))
return out
def extract_multiframe(filenames, parameters):
"""
wrapper to run multi-threaded source extraction
input: FITS filenames, parameters dictionary: telescope, obsparam, aprad,
quiet, sex_snr, source_minarea
output: result properties
"""
logging.info('extract sources from %d files using Source Extractor' %
len(filenames))
logging.info('extraction parameters: %s' % repr(parameters))
# obtain telescope information from image header or override manually
hdu = fits.open(filenames[0], ignore_missing_end=True, verify='silentfix')
if 'telescope' not in parameters or parameters['telescope'] is None:
try:
parameters['telescope'] = hdu[0].header['TEL_KEYW']
except KeyError:
logging.critical('ERROR: TEL_KEYW not in image header (%s)' %
filenames[0])
print('ERROR: TEL_KEYW not in image header;' +
'has this image run through register?')
return {}
try:
parameters['obsparam'] = _pp_conf.telescope_parameters[
parameters['telescope']]
except KeyError:
print("ERROR: telescope '%s' is unknown." % telescope)
logging.critical('ERROR: telescope \'%s\' is unknown.' % telescope)
return {}
# set aperture photometry DIAMETER as string
if _pp_conf.photmode == 'APER':
if ((type(parameters['aprad']) == float and
parameters['aprad'] == 0)
or (type(parameters['aprad']) == list
and len(parameters['aprad']) == 0)):
parameters['aperture_diam'] = str(parameters['obsparam']
['aprad_default']*2)
else:
if not isinstance(parameters['aprad'], list) and \
not isinstance(parameters['aprad'], numpy.ndarray):
parameters['aprad'] = [str(parameters['aprad'])]
parameters['aperture_diam'] = ','.join([str(float(rad)*2.)
for rad in
parameters['aprad']])
# check what the binning is and if there is a mask available
binning = get_binning(hdu[0].header, parameters['obsparam'])
bin_string = '%d,%d' % (binning[0], binning[1])
if bin_string in parameters['obsparam']['mask_file']:
mask_file = parameters['obsparam']['mask_file'][bin_string]
parameters['mask_file'] = mask_file
hdu.close()
# thread and queue handling
pool = Pool()
data = [(parameters, filename) for filename in filenames]
output = pool.map(extract_singleframe, data)
# check if extraction was successful
if any(['catalog_data' not in list(output[i].keys())
for i in range(len(output))]):
return None
# output content
#
# { 'fits_filename': fits filename,
# 'ldac_filename': LDAC filename,
# 'parameters' : source extractor input parameters,
# 'catalog_data' : full LDAC catalog data,
# 'time' : observation midtime (JD),
# 'fits_header' : complete fits header
# }
###
return output
# MAIN
if __name__ == '__main__':
# define command line arguments
parser = argparse.ArgumentParser(description='source detection and' +
'photometry using Source Extractor')
parser.add_argument("-snr", help='sextractor SNR threshold', default=1.5)
parser.add_argument("-minarea", help='sextractor source area threshold',
default=3)
parser.add_argument("-paramfile",
help='alternative sextractor parameter file',
default=None)
parser.add_argument("-aprad",
help='aperture radius (list) for photometry (px)',
default=0)
parser.add_argument("-telescope", help='manual telescope override',
default=None)
parser.add_argument('-ignore_saturation', help='keep saturated sources',
action="store_true")
parser.add_argument('-nodeblending',
help='deactivate deblending in source extraction',
action="store_true")
parser.add_argument('-quiet', help='no logging',
action="store_true")
parser.add_argument('images', help='images to process', nargs='+')
args = parser.parse_args()
sex_snr = float(args.snr)
source_minarea = float(args.minarea)
paramfile = args.paramfile
aprad = args.aprad
telescope = args.telescope
ignore_saturation = args.ignore_saturation
nodeblending = args.nodeblending
quiet = args.quiet
filenames = args.images
# prepare parameter dictionary
parameters = {'sex_snr': sex_snr, 'source_minarea': source_minarea,
'aprad': aprad, 'telescope': telescope,
'ignore_saturation': ignore_saturation,
'nodeblending': nodeblending, 'quiet': quiet}
if paramfile is not None:
parameters['paramfile'] = paramfile
# call extraction wrapper
extraction = extract_multiframe(filenames, parameters)