-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathespadonsutils.py
491 lines (439 loc) · 12.1 KB
/
espadonsutils.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
import matplotlib
matplotlib.use("Agg")
from astropy.io import fits as pyfits
import numpy as np
from numpy import median,sqrt,array,exp
import scipy
from scipy import signal,special,optimize,interpolate
import scipy.special as sp
import copy
import glob
import os
from pylab import *
import sys
base = '../'
sys.path.append(base+"utils/GLOBALutils")
import GLOBALutils
def FileClassify(diri, log,mode='so',amps='a'):
"""
Classifies all files in a directory and writes a night log of science images
"""
if mode == 'so':
md = 'star only'
elif mode == 'ss':
md = 'star+sky'
else:
md = 'Polarimetry'
if amps == 'a':
samps = 'a'
elif amps == 'ab':
samps = 'a,b'
# define output lists
simThAr_sci = []
simSky_sci = []
biases = []
bias_dates = []
flat_dates = []
flats = []
ThAr_ref = []
ThAr_ref_dates = []
mode = []
f = open(log,'w')
bad_files = []
if os.access(diri+'bad_files.txt',os.F_OK):
bf = open(diri+'bad_files.txt')
linesbf = bf.readlines()
for line in linesbf:
bad_files.append(diri+line[:-1])
bf.close()
all_files = glob.glob(diri+"*fits")
jj = 0
for archivo in all_files:
jj+=1
dump = False
for bf in bad_files:
if archivo == bf:
dump = True
break
if not dump:
h = pyfits.open(archivo)
#print archivo, h[0].header['EXPTYPE'], h[0].header['INSTMODE']
if md in h[0].header['INSTMODE'] and samps == h[0].header['AMPLIST']:
print archivo, h[0].header['EXPTYPE'], h[0].header['INSTMODE'], h[0].data.shape, h[0].header['AMPLIST']
if h[0].header['EXPTYPE'] == 'OBJECT':
simThAr_sci.append(archivo)
obname = h[0].header['OBJNAME']
ra = h[0].header['OBJRA']
delta = h[0].header['OBJDEC']
airmass= h[0].header['AIRMASS']
texp = h[0].header['EXPTIME']
date = h[0].header['DATE-OBS'] + h[0].header['UTC-OBS']
line = "%-15s %10s %10s %8.2f %4.2f %s %8s %s\n" % (obname, ra, delta, texp, airmass, h[0].header['EXPTYPE'], date, archivo)
f.write(line)
elif h[0].header['EXPTYPE'] == 'BIAS':
biases.append(archivo)
mjd,mjd0 = mjd_fromheader(h)
bias_dates.append(mjd)
elif h[0].header['EXPTYPE'] == 'FLAT':
flats.append(archivo)
mjd,mjd0 = mjd_fromheader(h)
flat_dates.append(mjd)
elif h[0].header['EXPTYPE'] == 'COMPARISON':
mjd, mjd0 = mjd_fromheader(h)
ThAr_ref.append(archivo)
ThAr_ref_dates.append( mjd )
f.close()
biases, bias_dates = np.array(biases), np.array(bias_dates)
flats, flat_dates = np.array(flats), np.array(flat_dates)
IS = np.argsort(bias_dates)
biases, bias_dates = biases[IS], bias_dates[IS]
IS = np.argsort(flat_dates)
flats, flat_dates = flats[IS], flat_dates[IS]
return biases, flats, ThAr_ref, simThAr_sci, ThAr_ref_dates
def mjd_fromheader(h):
"""
return modified Julian date from header
"""
datetu = h[0].header['DATE-OBS']
timetu = h[0].header['UTC-OBS'].split(':')
mjd0,mjd,i = GLOBALutils.iau_cal2jd(int(datetu[:4]),int(datetu[5:7]),int(datetu[8:10]))
ho = int(timetu[0])
mi = int(timetu[1])
se = float(timetu[2])
ut = float(ho) + float(mi)/60.0 + float(se)/3600.0
mjd_start = mjd + ut/24.0
secinday = 24*3600.0
fraction = 0.5
texp = h[0].header['EXPTIME'] #sec
mjd = mjd_start + (fraction * texp) / secinday
return mjd, mjd0
def MedianCombine(ImgList, zero_bo=False, zero='MasterBias.fits'):
"""
Median combine a list of images
"""
if zero_bo:
BIAS = pyfits.getdata(zero)
n = len(ImgList)
if n==0:
raise ValueError("empty list provided!")
h = pyfits.open(ImgList[0])[0]
d = h.data
d = OverscanTrim(d)
if zero_bo:
d -= BIAS
d = np.round(d).astype('int')
factor = 1.25
if (n < 3):
factor = 1
ronoise = factor * h.header['RDNOISEA'] / np.sqrt(n)
gain = h.header['GAINA']
if (n == 1):
return d, ronoise, gain
else:
for i in range(n-1):
h = pyfits.open(ImgList[i+1])[0]
ot = OverscanTrim(h.data)
if zero_bo:
d = np.dstack((d,np.round((ot - BIAS)).astype('int')))
else:
d = np.dstack((d,np.round(ot).astype('int')))
return np.median(d,axis=2), ronoise, gain
def OverscanTrim(d):
"""
Overscan correct and Trim a refurbished FEROS image
"""
os = d[:,2060:]
overscan = np.median(os,axis=1)[:4608]
newdata = np.zeros(d[:4608,:2049].shape)
for i in range(len(overscan)):
newdata[i,:] = d[i,:2049] - overscan[i]
return newdata
def get_them(sc,exap,ncoef,mode=1,shift=0.):
def gauss(params,x):
amp1 = params[0]
med1 = params[1]
sig1 = params[2]
g1 = amp1 * np.exp(-0.5*((x-med1)/sig1)**2)
return g1
def res_gauss(params,g,x):
return g-gauss(params,x)
def gauss2(params,x):
amp1 = params[0]
amp2 = params[1]
med1 = params[2]
med2 = params[3]
sig1 = params[4]
sig2 = params[5]
g1 = amp1 * np.exp(-0.5*((x-med1)/sig1)**2)
g2 = amp2 * np.exp(-0.5*((x-med2)/sig2)**2)
return g1 + g2
def res_gauss2(params,g,x):
return g-gauss2(params,x)
def fit_drift(ref,dif,oref):
coef = np.polyfit(ref,dif,2)
residuals = dif - np.polyval(coef,ref)
rms = np.sqrt(np.var(residuals))
I = np.where(np.absolute(residuals)>3*rms)[0]
cond = True
if len(I)==0:
cond = False
while cond:
im = np.argmax(np.absolute(residuals))
dif = np.delete(dif,im)
ref = np.delete(ref,im)
coef = np.polyfit(ref,dif,2)
residuals = dif - np.polyval(coef,ref)
rms = np.sqrt(np.var(residuals))
I = np.where(np.absolute(residuals)>3*rms)[0]
if len(I)==0:
cond = False
cdif = np.polyval(coef,oref)
ref = oref + cdif
return ref
sc_or = sc.copy()
medc = int(.5*sc.shape[1])
d = np.median(sc[:,medc-exap:medc+exap+1],axis=1)
#plot(d)
ejx = np.arange(len(d))
ref = []
cents = np.loadtxt('ref_ords.txt').astype('int') - shift
#plot(d)
#plot(ejx[cents[:,0]],d[cents[:,0]],'ro')
#plot(ejx[cents[:,1]],d[cents[:,1]],'go')
#show()
posO, posC = cents[:,0],cents[:,1]
if mode == 0:
posO = cents[:,2]
posC = cents[:,2]
refO,refC = [],[]
exap2 = exap + .2*exap
dev = exap2/4.
for i in range(len(posO)):
if posO[i]-exap2 < 0:
x = ejx[:posC[i]+exap2+1]
y = d[:posC[i]+exap2+1]
elif posC[i]+exap2+1 > len(d):
x = ejx[posO[i]-exap2:]
y = d[posO[i]-exap2:]
else:
x = ejx[posO[i]-exap2:posC[i]+exap2+1]
y = d[posO[i]-exap2:posC[i]+exap2+1]
y -= y.min()
tx1 = np.arange(x[0]-dev,x[0],1)
tx2 = np.arange(x[-1]+1,x[-1]+dev+1,1)
ty1 = np.zeros(len(tx1))
ty2 = np.zeros(len(tx2))
x = np.hstack((tx1,x,tx2))
y = np.hstack((ty1,y,ty2))
midi = int(0.5*len(x))
if mode == 1:
guess = [np.max(y[:midi]),np.max(y[midi:]),x[0]+np.argmax(y[:midi]),x[0]+midi+np.argmax(y[midi:]),dev,dev]
p, success = scipy.optimize.leastsq(res_gauss2, guess, args=(y,x))
refO.append(p[2])
refC.append(p[3])
else:
#plot(x,y)
#show()
#print fcds
guess = [np.max(y),x[0]+np.argmax(y),dev]
p, success = scipy.optimize.leastsq(res_gauss, guess, args=(y,x))
refO.append(p[1])
refC.append(p[1])
refO = np.array(refO)
refOt = np.around(refO).astype('int')
matO = np.zeros((len(refO),sc.shape[1]))
matO[:,medc] = refO
refC = np.array(refC)
refCt = np.around(refC).astype('int')
matC = np.zeros((len(refC),sc.shape[1]))
matC[:,medc] = refC
#plot(d)
#plot(cents[:,0],d[cents[:,2]],'ro')
#plot(cents[:,1],d[cents[:,1]],'go')
#plot(refOt,d[refOt],'ko')
#plot(refCt,d[refCt],'yo')
#show()
#print gfd5
i = medc -1
while i >=0:
d = sc[:,i]
#if i<1000:
# plot(d)
j = 0
posO = np.around(refO).astype('int')
posC = np.around(refC).astype('int')
trefO,trefC = [],[]
exap2 = exap + .2*exap
dev = exap2/4.
while j < len(posO):
#print j
if posO[j]-exap2 < 0:
x = ejx[:posC[j]+exap2+1]
y = d[:posC[j]+exap2+1]
elif posC[j]+exap2+1 > len(d):
x = ejx[posO[j]-exap2:]
y = d[posO[j]-exap2:]
else:
x = ejx[posO[j]-exap2:posC[j]+exap2+1]
y = d[posO[j]-exap2:posC[j]+exap2+1]
if len(x) < 7:
trefO.append(refO[j])
trefC.append(refC[j])
else:
y -= y.min()
tx1 = np.arange(x[0]-dev,x[0],1)
tx2 = np.arange(x[-1]+1,x[-1]+dev+1,1)
ty1 = np.zeros(len(tx1))
ty2 = np.zeros(len(tx2))
x = np.hstack((tx1,x,tx2))
y = np.hstack((ty1,y,ty2))
midi = int(0.5*len(x))
if mode == 1:
guess = [np.max(y[:midi]),np.max(y[midi:]),x[0]+np.argmax(y[:midi]),x[0]+midi+np.argmax(y[midi:]),dev,dev]
p, success = scipy.optimize.leastsq(res_gauss2, guess, args=(y,x))
trefO.append(p[2])
trefC.append(p[3])
else:
guess = [np.max(y),x[0]+np.argmax(y),dev]
p, success = scipy.optimize.leastsq(res_gauss, guess, args=(y,x))
trefO.append(p[1])
trefC.append(p[1])
j+=1
orefO = refO.copy()
trefO = np.array(trefO)
difO = trefO-refO
refO = fit_drift(refO,difO,orefO)
matO[:,i] = refO
orefC = refC.copy()
trefC = np.array(trefC)
difC = trefC-refC
refC = fit_drift(refC,difC,orefC)
matC[:,i] = refC
#if i<500:
# plot(d)
# I = np.where(refO<2049)[0]
# plot(refO[I].astype('int'),d[refO[I].astype('int')],'ko')
# show()
# print gfd
i-=4
refO = matO[:,medc]
refC = matC[:,medc]
i = medc +1
while i < sc.shape[1]:
d = sc[:,i]
j = 0
posO = np.around(refO).astype('int')
posC = np.around(refC).astype('int')
trefO,trefC = [],[]
exap2 = exap + .2*exap
dev = exap2/4.
while j < len(posO):
#print j
if posO[j]-exap2 < 0:
x = ejx[:posC[j]+exap2+1]
y = d[:posC[j]+exap2+1]
elif posC[j]+exap2+1 > len(d):
x = ejx[posO[j]-exap2:]
y = d[posO[j]-exap2:]
else:
x = ejx[posO[j]-exap2:posC[j]+exap2+1]
y = d[posO[j]-exap2:posC[j]+exap2+1]
if len(x) < 7:
trefO.append(refO[j])
trefC.append(refC[j])
else:
y -= y.min()
tx1 = np.arange(x[0]-dev,x[0],1)
tx2 = np.arange(x[-1]+1,x[-1]+dev+1,1)
ty1 = np.zeros(len(tx1))
ty2 = np.zeros(len(tx2))
x = np.hstack((tx1,x,tx2))
y = np.hstack((ty1,y,ty2))
midi = int(0.5*len(x))
if mode == 1:
guess = [np.max(y[:midi]),np.max(y[midi:]),x[0]+np.argmax(y[:midi]),x[0]+midi+np.argmax(y[midi:]),dev,dev]
p, success = scipy.optimize.leastsq(res_gauss2, guess, args=(y,x))
trefO.append(p[2])
trefC.append(p[3])
else:
guess = [np.max(y),x[0]+np.argmax(y),dev]
p, success = scipy.optimize.leastsq(res_gauss, guess, args=(y,x))
trefO.append(p[1])
trefC.append(p[1])
j+=1
orefO = refO.copy()
trefO = np.array(trefO)
difO = trefO-refO
refO = fit_drift(refO,difO,orefO)
matO[:,i] = refO
orefC = refC.copy()
trefC = np.array(trefC)
difC = trefC-refC
refC = fit_drift(refC,difC,orefC)
matC[:,i] = refC
i+=4
#imshow(sc_or,vmax=5000)
for i in range(matO.shape[0]):
y = matO[i]
x = np.arange(len(y))
I = np.where(y!=0)[0]
x,y = x[I],y[I]
coef = np.polyfit(x,y,ncoef)
#plot(x,y,'r')
residuals = y - np.polyval(coef,x)
rms = np.sqrt(np.var(residuals))
I = np.where(np.absolute(residuals)>3*rms)[0]
cond = True
if len(I)==0:
cond = False
while cond:
im = np.argmax(np.absolute(residuals))
x = np.delete(x,im)
y = np.delete(y,im)
coef = np.polyfit(x,y,ncoef)
residuals = y - np.polyval(coef,x)
rms = np.sqrt(np.var(residuals))
I = np.where(np.absolute(residuals)>3*rms)[0]
if len(I)==0:
cond = False
if i == 0:
acoefsO = coef
else:
acoefsO = np.vstack((acoefsO,coef))
#plot(np.polyval(coef,np.arange(len(matO[i]))),'g')
#show()
if mode == 1:
for i in range(matC.shape[0]):
y = matC[i]
x = np.arange(len(y))
I = np.where(y!=0)[0]
x,y = x[I],y[I]
coef = np.polyfit(x,y,ncoef)
#plot(x,y,'r')
residuals = y - np.polyval(coef,x)
rms = np.sqrt(np.var(residuals))
I = np.where(np.absolute(residuals)>3*rms)[0]
cond = True
if len(I)==0:
cond = False
while cond:
im = np.argmax(np.absolute(residuals))
x = np.delete(x,im)
y = np.delete(y,im)
coef = np.polyfit(x,y,ncoef)
residuals = y - np.polyval(coef,x)
rms = np.sqrt(np.var(residuals))
I = np.where(np.absolute(residuals)>3*rms)[0]
if len(I)==0:
cond = False
if i == 0:
acoefsC = coef
else:
acoefsC = np.vstack((acoefsC,coef))
#plot(np.polyval(coef,np.arange(len(matC[i]))),'b')
#show()
#print gfds
#print acoefs.shape
return acoefsO, acoefsC
else:
return acoefsO