Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
pothiers committed Nov 18, 2024
1 parent 6371110 commit ccfa082
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion python/lsst/ts/logging_and_reporting/almanac.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,14 @@ def as_dict(self):
sun_rise_time = Time(self.sun_rise_time, precision=0).iso
sun_set_time = Time(self.sun_set_time, precision=0).iso

# Maybe it we should add a column of times for the Dome.
# It would make it easier to do some kinds of sanity checks.
# Then again, it might confuse the issues.
# It depends on who will be looking this the most.
# Observers in the Dome? People elsewhere?

data_dict = {
"": " (times in UTC)",
"": "UTC",
"Moon Rise": moon_rise_time,
"Moon Set": moon_set_time,
"Moon Illumination": f"{self.moon_illum:.0%}",
Expand Down

0 comments on commit ccfa082

Please sign in to comment.