-
Notifications
You must be signed in to change notification settings - Fork 3
/
slists_v2.py
380 lines (293 loc) · 13.4 KB
/
slists_v2.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
import numpy
import os
import sys
from coordinates_mode import *
import pyrap.images
pi = numpy.pi
def make_image(ra,dec,data,cdelt):
# make a dummy image to get a starting set of co-ords
# avoids using casacore co-ords directly
im=pyrap.images.image('',shape=data.shape)
cs=im.coordinates()
cs.dict()['direction0']['units']=['rad','rad']
cs.dict()['direction0']['crval']=[ra,dec]
cs.dict()['direction0']['cdelt']=[-cdelt,cdelt]
im=pyrap.images.image('',values=data,coordsys=cs)
return im
def load_bbs_skymodel(infilename):
tmp_input = infilename + '.tmp'
# Read the first line to check if the new format is used
with open(infilename, "r") as skymodel:
line = skymodel.readline()
if line.startswith("FORMAT"): # New format
with open(infilename, "r") as skymodel, open(tmp_input, "w") as temp_file:
for line in skymodel:
if line.startswith("component"):
temp_file.write(line)
types = numpy.dtype({'names':['Name', 'Type', 'Patch', 'Ra', 'Dec', 'I', 'Q', 'U', 'V'],
'formats':['S100', 'S100', 'S100', 'S100', 'S100',
numpy.float, numpy.float, numpy.float, numpy.float]})
data = numpy.loadtxt(tmp_input, comments='format', unpack=True, delimiter=', ', dtype=types)
n = len(data[0])
additional_columns = [('Maj', numpy.float, 0.),
('Min', numpy.float, 0.),
('PA', numpy.float, 0.),
('RefFreq', numpy.float, 1.5e+8),
('Spidx', 'S100', '[0.0]')]
for column in additional_columns:
if column[2] == 0.:
tmp_col = numpy.zeros(n, dtype=column[1])
data.append(tmp_col)
elif column[2] != '[0.0]':
tmp_col = numpy.ones(n, dtype=column[1]) * column[2]
data.append(tmp_col)
else:
tmp_col = numpy.empty(n, dtype=column[1])
tmp_col[:] = column[2]
data.append(tmp_col)
#print data.shape
else: # Old format
# remove empty lines sed '/^$/d'
# remove format line grep -v 'format'
# remove comment lines grep -v '#'
os.system("grep -v '00:00:00, +00.00.00' " + infilename+ " | grep -v '#' | grep -v '00:00:00, +90.00.00' | grep -v 'format' | sed '/^$/d'>" + tmp_input) # to remove patches headers from skymodel
types = numpy.dtype({'names':['Name', 'Type','Patch','Ra', 'Dec', 'I', 'Q', 'U', 'V', 'Maj', 'Min', 'PA', 'RefFreq', 'Spidx'],\
'formats':['S100','S100','S100','S100','S100',numpy.float,numpy.float,numpy.float,numpy.float,numpy.float,numpy.float,numpy.float,numpy.float,'S100']})
data = numpy.loadtxt(tmp_input, comments='format', unpack=True, delimiter=', ', dtype=types)
os.system('rm ' + tmp_input)
return data
def compute_patch_center(data,fluxweight):
#print 'These are the input patches', numpy.unique(data['Patch'])
patches = numpy.unique(data['Patch'])
ra_patches = numpy.zeros(len(patches))
dec_patches = numpy.zeros(len(patches))
flux_patches = numpy.zeros(len(patches))
for (patch_id,patch) in enumerate(patches):
idx = numpy.where(data['Patch'] == patch)
#print 'Patch', patch, 'has', len(idx[0]), 'components'
#print numpy.shape( data['Patch'][idx])
# set to zero
ra_patch = 0.
dec_patch = 0.
ra_weights = 0.
dec_weights= 0.
flux_patch = 0.
for component in idx[0]:
# conver RA, DEC to degrees for component
ra_comp = data['Ra'][component]
dec_comp = data['Dec'][component]
ra_comp = (ra_comp.split(':'))
dec_comp = (dec_comp.split('.'))
flux_comp= numpy.float(data['I'][component])
ra_comp = hmstora(numpy.float(ra_comp[0]),numpy.float(ra_comp[1]),numpy.float(ra_comp[2]))
if '-' in dec_comp[0]: sign = '-'
else: sign = '+'
if len(dec_comp) == 4: # decimal arcsec in Dec
dec_comp = dmstodec(numpy.float(dec_comp[0]),numpy.float(dec_comp[1]),numpy.float(str(dec_comp[2]+"."+dec_comp[3])), sign=sign)
else:
dec_comp = dmstodec(numpy.float(dec_comp[0]),numpy.float(dec_comp[1]),numpy.float(dec_comp[2]), sign=sign)
# calculate the average weighted patch center, and patch flux
flux_patch = flux_patch + flux_comp
#print ra_comp, dec_comp, flux_comp
if fluxweight:
ra_patch = ra_patch + (flux_comp*ra_comp)
dec_patch= dec_patch+ (flux_comp*dec_comp)
ra_weights = ra_weights + flux_comp
dec_weights= dec_weights + flux_comp
else:
ra_patch = ra_patch + (1.*ra_comp)
dec_patch= dec_patch+ (1.*dec_comp)
ra_weights = ra_weights + 1.
dec_weights= dec_weights + 1.
#print 'Center RA, Center DEC, flux', ra_patch/ra_weights, dec_patch/dec_weights, flux_patch
ra_patches[patch_id] = ra_patch/ra_weights
dec_patches[patch_id] = dec_patch/dec_weights
flux_patches[patch_id]= flux_patch
return patches, ra_patches,dec_patches, flux_patches
def compute_patch_center_libsproblem(data,fluxweight):
### FIX FOR USE PYTHONLIBS
fixid_patch = 2
fixid_ra = 3
fixid_dec = 4
fixid_I = 5
#print 'These are the input patches',numpy.unique(data[fixid_patch])
patches = numpy.unique(data[fixid_patch])
ra_patches = numpy.zeros(len(patches))
dec_patches = numpy.zeros(len(patches))
flux_patches = numpy.zeros(len(patches))
for (patch_id,patch) in enumerate(patches):
idx = numpy.where(data[fixid_patch] == patch)
#print 'Patch', patch, 'has', len(idx[0]), 'components'
#print numpy.shape( data['Patch'][idx])
# set to zero
ra_patch = 0.
dec_patch = 0.
ra_weights = 0.
dec_weights= 0.
flux_patch = 0.
for component in idx[0]:
# conver RA, DEC to degrees for component
ra_comp = data[fixid_ra][component]
dec_comp = data[fixid_dec][component]
ra_comp = (ra_comp.split(':'))
dec_comp = (dec_comp.split('.'))
flux_comp= numpy.float(data[fixid_I][component])
ra_comp = hmstora(numpy.float(ra_comp[0]),numpy.float(ra_comp[1]),numpy.float(ra_comp[2]))
if '-' in dec_comp[0]: sign = '-'
else: sign = '+'
if len(dec_comp) == 4: # decimal arcsec in Dec
dec_comp = dmstodec(numpy.float(dec_comp[0]),numpy.float(dec_comp[1]),numpy.float(str(dec_comp[2]+"."+dec_comp[3])), sign=sign)
else:
dec_comp = dmstodec(numpy.float(dec_comp[0]),numpy.float(dec_comp[1]),numpy.float(dec_comp[2]), sign=sign)
# calculate the average weighted patch center, and patch flux
flux_patch = flux_patch + flux_comp
#print ra_comp, dec_comp, flux_comp
if fluxweight:
ra_patch = ra_patch + (flux_comp*ra_comp)
dec_patch= dec_patch+ (flux_comp*dec_comp)
ra_weights = ra_weights + flux_comp
dec_weights= dec_weights + flux_comp
else:
ra_patch = ra_patch + (1.*ra_comp)
dec_patch= dec_patch+ (1.*dec_comp)
ra_weights = ra_weights + 1.
dec_weights= dec_weights + 1.
#print 'Center RA, Center DEC, flux', ra_patch/ra_weights, dec_patch/dec_weights, flux_patch
ra_patches[patch_id] = ra_patch/ra_weights
dec_patches[patch_id] = dec_patch/dec_weights
flux_patches[patch_id]= flux_patch
return patches, ra_patches,dec_patches, flux_patches
def cal_return_slist(imagename,skymodel, direction, imsize):
pixelsize=1.5 # arcsec
factor = 0.8 # only add back in the center 80%
cut = pixelsize*(imsize/2.)*factor/3600.
ra = direction.split(',')[0]
dec = direction.split(',')[1]
ra1 = float(ra.split('h')[0])*15.
ratmp = (ra.split('h')[1])
ra2 = float(ratmp.split('m')[0])*15./60
ra3 = float(ratmp.split('m')[1])*15./3600.
ref_ra= ra1 + ra2 +ra3
dec1 = float(dec.split('d')[0])
dectmp = (dec.split('d')[1])
dec2 = float(dectmp.split('m')[0])/60
dec3 = float(dectmp.split('m')[1])/3600.
if '-' in dec.split('d')[0]:
ref_dec= dec1 - dec2 -dec3
else:
ref_dec= dec1 + dec2 +dec3
fluxweight = False
data = load_bbs_skymodel(skymodel)
if len(numpy.shape(data)) == 1: # in this case not issue and we do not use Pythonlibs
patches,ra_patches,dec_patches, flux_patches = compute_patch_center(data,fluxweight)
#print 'option 1'
if len(numpy.shape(data)) == 2:
patches,ra_patches,dec_patches, flux_patches = compute_patch_center_libsproblem(data,fluxweight)
#print 'option 2'
ralist = pi*(ra_patches)/180.
declist = pi*(dec_patches)/180.
ref_ra_rad=pi*ref_ra/180.0
ref_dec_rad=pi*ref_dec/180.0
maskimage=numpy.zeros((imsize,imsize))
minpix=int(imsize*(1.0-factor)/2.0)
maxpix=int(imsize*(factor+(1.0-factor)/2.0))
maskimage[minpix:maxpix,minpix:maxpix]=1.0
mask_img=make_image(ref_ra_rad,ref_dec_rad,maskimage,pixelsize*pi/(180.0*3600.0))
plist = []
#print ref_ra, ref_dec
# load image to check if source within boundaries
facet_img = pyrap.images.image(imagename)
pixels = facet_img.getdata()
sh = numpy.shape(pixels)[2:4]
# CHECK TWO THINGS
# - sources fall within the calibration image
# - sources fall within the mask from the tessellation
# both of these are done by considering the co-ordinates
for patch_id,patch in enumerate(patches):
# first the calibration image
coor = [declist[patch_id],ralist[patch_id]]
pix=mask_img.topixel(coor)
if pix[0]<0 or pix[0]>=imsize or pix[1]<0 or pix[1]>=imsize:
continue
if maskimage[pix[0],pix[1]]<0.5:
continue
# now the facet image
coor = [0,1,declist[patch_id],ralist[patch_id]]
pix = facet_img.topixel(coor)[2:4]
if (pix[0] >= 0) and (pix[0] <= (sh[0]-1)) and \
(pix[1] >= 0) and (pix[1] <= (sh[1]-1)):
if pixels[0,0,pix[0],pix[1]]>0.5: # only include if within the clean mask (==1)
plist.append(patches[patch_id])
# make the string type source list
sourcess = ''
if len(plist) == 1:
sourcess = str(plist[0])
else:
for patch in plist:
sourcess = sourcess+patch+','
sourcess = sourcess[:-1]
return sourcess,plist
def return_slist(imagename,skymodel,ref_source):
"""return a list of the sky model components in the mask defined by
imagename, excluding all of those listed in ref_source, which have
already been added.
"""
fluxweight = False
data = load_bbs_skymodel(skymodel)
if len(numpy.shape(data)) == 1: # in this case not issue and we do not use Pythonlibs
patchest,ra_patches,dec_patches, flux_patches = compute_patch_center(data,fluxweight)
#print 'option 1'
if len(numpy.shape(data)) == 2:
patchest,ra_patches,dec_patches, flux_patches = compute_patch_center_libsproblem(data,fluxweight)
#print 'option 2'
# remove sources already in the field and convert to radians
if len(ref_source) == 1:
idx = numpy.where(patchest != ref_source)
ralist = pi*(ra_patches[idx])/180.
declist = pi*(dec_patches[idx])/180.
patches = patchest[idx]
else:
idx = numpy.asarray([numpy.where(patchest == y)[0][0] for y in ref_source])
accept_idx = sorted(set(range(patchest.size)) - set(idx))
ralist = pi*(ra_patches[accept_idx])/180.
declist = pi*(dec_patches[accept_idx])/180.
patches = patchest[accept_idx]
img = pyrap.images.image(imagename)
pixels = numpy.copy(img.getdata())
plist = []
sh = numpy.shape(pixels)[2:4]
for patch_id,patch in enumerate(patches):
coor = [0,1,declist[patch_id],ralist[patch_id]]
pix = img.topixel(coor)[2:4]
if (pix[0] >= 0) and (pix[0] <= (sh[0]-1)) and \
(pix[1] >= 0) and (pix[1] <= (sh[1]-1)):
if pixels[0,0,pix[0],pix[1]] > 0.5: # only include if withtin the clean mask (==1)
plist.append(patches[patch_id])
sourcess= ''
if len(plist) == 1:
sourcess = str(plist[0])
else:
for patch in plist:
sourcess = sourcess+patch+','
sourcess = sourcess[:-1]
return sourcess,plist
if __name__=='__main__':
if len(sys.argv)==5:
# does old cal_return_slist behaviour
imagename = sys.argv[1]
skymodel = sys.argv[2]
direction = sys.argv[3]
imsize = int(sys.argv[4])
sourcess,plist=cal_return_slist(imagename,skymodel,direction,imsize)
print sourcess
elif len(sys.argv)==4:
# does old return_slist behaviour
imagename = sys.argv[1]
skymodel = sys.argv[2]
ref_sourcet = sys.argv[3]
ref_source = ref_sourcet.split(',')
sourcess,plist=return_slist(imagename,skymodel,ref_source)
print sourcess
else:
print 'Must have 3 or 4 arguments'
sys.exit(-1)