Skip to content

Commit

Permalink
add some BOT spot projector filter names; include BOT filters in TS8 …
Browse files Browse the repository at this point in the history
…filter collection
  • Loading branch information
jchiang87 committed Nov 18, 2023
1 parent aa51a9f commit acd2a2c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions python/lsst/obs/lsst/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@ def addFilter(filter_dict, band, physical_filter):
#
# The band names are not yet defined, so I'm going to invent them

# Update from 2023-11-18:
# in DM-41675 Yousuke notes the following update to the BOT filters:
# SpotProjFWheel: [grid, spot, sparsegrid, streak, ellipses, empty6]

# Map the BOT filters to corresponding band explicitly
BOT_filter_map = {
"empty": "white",
Expand All @@ -105,6 +109,9 @@ def addFilter(filter_dict, band, physical_filter):
"970nm": "y",
"grid": "grid",
"spot": "spot",
"sparsegrid": "sparsegrid",
"streak": "streak",
"ellipses": "ellipses"
}

BOTFilters_dict = {}
Expand Down Expand Up @@ -228,6 +235,7 @@ def addFilter(filter_dict, band, physical_filter):
*LsstCamFiltersGeneric,
*LsstCamFiltersBaseline,
*TS8Filters,
*BOTFilters,
*CCOBFilters,
)

Expand Down

0 comments on commit acd2a2c

Please sign in to comment.