Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified _downloads/astropy_UVES.tar.gz
Binary file not shown.
13 changes: 13 additions & 0 deletions _downloads/update_header.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/env python

from astropy.io import fits
import glob

filelist = glob.glob('UVES/*')

for f in filelist:
hdu = fits.open(f, mode='update')
hdu[0].header.rename_keyword('RADECSYS', 'RADESYS')
print(hdu[0].header['RADESYS'])
hdu.flush()
hdu.close()