Skip to content

Commit

Permalink
Merge pull request #350 from lsst/tickets/DM-24575
Browse files Browse the repository at this point in the history
DM-24575: Add some more exposure metadata fields
  • Loading branch information
timj committed Aug 17, 2020
2 parents ad6c399 + 3c070cf commit 9f5e3b1
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 1 deletion.
52 changes: 52 additions & 0 deletions python/lsst/daf/butler/configs/dimensions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,24 @@ dimensions:
doc: >
Average seeing, measured as the FWHM of the Gaussian with the same
effective area (arcsec).
-
name: target_name
type: string
length: 64
doc: Object of interest for this visit or survey field name.
-
name: science_program
type: string
length: 64
doc: Observing program (survey or proposal) identifier.
-
name: zenith_angle
type: float
doc: >
Approximate zenith angle in degrees during the visit.
Can only be approximate since it is continuously changing during
and observation and multiple visits can be combined from a
relatively long period.
exposure:
doc: >
Expand Down Expand Up @@ -211,6 +229,40 @@ dimensions:
doc: >
Integer group identifier associated with this exposure by the
acquisition system.
-
name: target_name
type: string
length: 64
doc: Object of interest for this observation or survey field name.
-
name: science_program
type: string
length: 64
doc: Observing program (survey or proposal) identifier.
-
name: tracking_ra
type: float
doc: >
Tracking ICRS Right Ascension of boresight in degrees. Can be NULL
for observations that are not on sky.
-
name: tracking_dec
type: float
doc: >
Tracking ICRS Declination of boresight in degrees. Can be NULL for
observations that are not on sky.
-
name: sky_angle
type: float
doc: >
Angle of the instrument focal plane on the sky in degrees. Can
be NULL for observations that are not on sky, or for observations
where the sky angle changes during the observation.
-
name: zenith_angle
type: float
doc: >
Angle in degrees from the zenith at the start of the exposure.
skymap:
doc: >
Expand Down
2 changes: 1 addition & 1 deletion python/lsst/daf/butler/registry/dimensions/static.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@


# This has to be updated on every schema change
_VERSION = VersionTuple(0, 1, 0)
_VERSION = VersionTuple(0, 2, 0)


class StaticDimensionRecordStorageManager(DimensionRecordStorageManager):
Expand Down

0 comments on commit 9f5e3b1

Please sign in to comment.