-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit_header.py
55 lines (44 loc) · 1.71 KB
/
edit_header.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
import os
from datetime import datetime
from astropy.io.fits import getheader
import numpy as np
from astropy.io import fits
from astropy.coordinates import SkyCoord
from astropy import units as u
from astropy.coordinates import Angle
def edit_header(date,ccd,visit,expo,\
ccd_ra,ccd_dec,\
mount_ra, mount_dec,\
fwhm):
#Construct filename and read file:
fname="fits/GOTO_"+ccd+"_"+date+"_"+visit+"_"+expo+".fits"
data, header = fits.getdata(os.path.join(date,fname), header=True)
#Add the necessary information:
header.append('IMGTYPE','INSTRUME','RUN','FILTER')
header.append('TEL-RA','TEL-DEC','CRVAL1','CRVAL2')
header.append('EPOCH','EQUINOX','CTYPE1','CTYPE2')
header.append('CD1_1','CD2_1','CD1_2', 'CD2_2')
header.append('CRPIX1','CRPIX2')
header.append('PSF_FWHM')
header['DATE-OBS'] = str(date)
header['IMGTYPE'] = 'OBJECT'
header['INSTRUME'] =str(ccd)
header['RUN'] = str(visit)
header['FILTER'] = 'Clear'
header['TEL-RA'] = Angle(mount_ra, u.deg).to_string(unit=u.hour, sep=':')
header['TEL-DEC'] = Angle(mount_dec, u.deg).to_string(unit=u.degree, sep=':')
header['CRVAL1'] = ccd_ra
header['CRVAL2'] = ccd_dec
header['CRPIX1'] = 4089
header['CRPIX2'] = 3067
header['EPOCH'] = 2000
header['EQUINOX'] =2000
header['CTYPE1'] = 'RA---TAN'
header['CTYPE2'] = 'DEC--TAN'
header['CD1_1'] = 0.0003444444
header['CD2_1'] = 0.
header['CD1_2'] = 0.
header['CD2_2'] = 0.0003444444
header['PSF_FWHM'] = np.asscalar(fwhm)
#Save file with new header information:
fits.writeto(str(os.path.join(date,fname)), data, header, overwrite=True)