Skip to content

Commit

Permalink
Re-enable PW axis position keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Feb 4, 2024
1 parent 76c413d commit c43b9e2
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions python/lvmcam/models/scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,26 +60,26 @@ def macro(self, exposure, context={}):
round(1 / numpy.cos(numpy.radians(90 - alt_d)), 3),
"Airmass at the time of observation",
),
# (
# "PWA0POS",
# round(actor.scraper_data.get("axis0_position_d", -999.0), 6),
# "[deg] Axis0 pos angle from PW",
# ),
# (
# "PWA0T",
# actor.scraper_data.get("axis0_position_timestamp_s", -999.0),
# "[] Axis0 pos angle time from PW",
# ),
# (
# "PWA1POS",
# actor.scraper_data.get("axis1_position_d", -999.0),
# "[deg] Axis1 pos angle from PW",
# ),
# (
# "PWA1T",
# actor.scraper_data.get("axis1_position_timestamp_s", -999.0),
# "[] Axis1 pos angle time from PW",
# ),
(
"PWA0POS",
round(actor.scraper_data.get("axis0_position_d", -999.0), 6),
"[deg] Axis0 pos angle from PW",
),
(
"PWA0T",
actor.scraper_data.get("axis0_position_timestamp_s", -999.0),
"[] Axis0 pos angle time from PW",
),
(
"PWA1POS",
actor.scraper_data.get("axis1_position_d", -999.0),
"[deg] Axis1 pos angle from PW",
),
(
"PWA1T",
actor.scraper_data.get("axis1_position_timestamp_s", -999.0),
"[] Axis1 pos angle time from PW",
),
(
"KMIRDROT",
round(actor.scraper_data.get("km_d", -999.0), 3),
Expand Down

0 comments on commit c43b9e2

Please sign in to comment.