Skip to content

Rename FITS keyword RADECSYS to RADESYS in UVES data #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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()