Skip to content

Commit

Permalink
hcam now reads RADEG and DECDEG header items
Browse files Browse the repository at this point in the history
  • Loading branch information
trmrsh committed May 28, 2021
1 parent 54a5c6e commit 7ce810e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions hipercam/hcam.py
Expand Up @@ -587,6 +587,12 @@ def __init__(self, fname, server=False, full=True):
if "DEC" in hd:
self.thead["DEC"] = hd.get_full("DEC")

if "RADEG" in hd:
self.thead["RADEG"] = hd.get_full("RADEG")

if "DECDEG" in hd:
self.thead["DECDEG"] = hd.get_full("DECDEG")

if "INSTRPA" in hd:
self.thead["INSTRPA"] = hd.get_full("INSTRPA")

Expand Down

0 comments on commit 7ce810e

Please sign in to comment.