diff --git a/python/lsst/obs/base/_instrument.py b/python/lsst/obs/base/_instrument.py index 0804e407..a348b3e2 100644 --- a/python/lsst/obs/base/_instrument.py +++ b/python/lsst/obs/base/_instrument.py @@ -625,6 +625,7 @@ def makeExposureRecordFromObsInfo( ("has_simulated", "has_simulated_content"), ("seq_start", "group_counter_start"), ("seq_end", "group_counter_end"), + ("can_see_sky", "can_see_sky"), ): if meta_key in supported: extras[meta_key] = getattr(obsInfo, info_key) diff --git a/python/lsst/obs/base/ingest.py b/python/lsst/obs/base/ingest.py index 192a777a..6972066b 100644 --- a/python/lsst/obs/base/ingest.py +++ b/python/lsst/obs/base/ingest.py @@ -519,6 +519,7 @@ def getObservationInfoSubsets(cls) -> tuple[set, set]: "observing_day_offset", "science_program", "visit_id", + "can_see_sky", } return required, optional