Skip to content

Commit

Permalink
added INSTRUME and TELESCOP in hcam headers
Browse files Browse the repository at this point in the history
  • Loading branch information
trmrsh committed May 27, 2021
1 parent 7b89f16 commit 6241711
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion hipercam/hcam.py
Expand Up @@ -596,10 +596,15 @@ def __init__(self, fname, server=False, full=True):
if "ESO DET GPS" in hd:
self.thead["GPS"] = hd.get_full("ESO DET GPS")

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

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

self.thead["XBIN"] = hd.get_full("ESO DET BINX1")
self.thead["YBIN"] = hd.get_full("ESO DET BINY1")
self.thead["SPEED"] = hd.get_full("ESO DET SPEED")
self.thead["INSTRUME"] = ('HIPERCAM', 'Instrument')

if "EXPTIME" in hd:
self.thead["EXPTIME"] = hd.get_full("EXPTIME")
Expand Down

0 comments on commit 6241711

Please sign in to comment.