From ccfa082869b19a0e4f5983011737b761960cba20 Mon Sep 17 00:00:00 2001 From: Steve Pothier Date: Mon, 18 Nov 2024 13:29:57 -0700 Subject: [PATCH] wip --- python/lsst/ts/logging_and_reporting/almanac.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/python/lsst/ts/logging_and_reporting/almanac.py b/python/lsst/ts/logging_and_reporting/almanac.py index 2cf1455..d03fcbe 100644 --- a/python/lsst/ts/logging_and_reporting/almanac.py +++ b/python/lsst/ts/logging_and_reporting/almanac.py @@ -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%}",