From 3e0d82026f3bfd5a377a63bac2a5e00671a37786 Mon Sep 17 00:00:00 2001 From: Kian-Tat Lim Date: Thu, 16 May 2024 04:35:19 -0700 Subject: [PATCH] Fix column names. --- python/lsst/consdb/hinfo.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/lsst/consdb/hinfo.py b/python/lsst/consdb/hinfo.py index 69c8415..7b3015f 100644 --- a/python/lsst/consdb/hinfo.py +++ b/python/lsst/consdb/hinfo.py @@ -58,7 +58,7 @@ def logical_or(*bools: int | str | None) -> bool: "seq_num": "SEQNUM", "band": "FILTBAND", "s_ra": "RA", - "s_decl": "DEC", + "s_dec": "DEC", "sky_rotation": "ROTPA", "azimuth_start": "AZSTART", "azimuth_end": "AZEND", @@ -74,7 +74,7 @@ def logical_or(*bools: int | str | None) -> bool: "obs_start": (tai_convert, "DATE-BEG"), "obs_start_mjd": "MJD-BEG", "obs_end": (tai_convert, "DATE-END"), - "obs_endmjd": "MJD-END", + "obs_end_mjd": "MJD-END", "exp_time": "EXPTIME", "shut_time": "SHUTTIME", "dark_time": "DARKTIME",