Skip to content

Commit

Permalink
add missing filters
Browse files Browse the repository at this point in the history
A bunch of NB filters and the g+r+i filter for Solar System work.
  • Loading branch information
PaulPrice committed Jun 24, 2024
1 parent adb8588 commit bca69b0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
8 changes: 8 additions & 0 deletions config/filterMap.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,25 @@
("HSC-Y", "y"),
# Narrow bands
('NB0387', 'g'),
('NB0391', 'g'),
('NB0395', 'g'),
('NB0430', 'g'),
('NB0468', 'g'),
('NB0497', 'g'),
('NB0506', 'g'),
('NB0515', 'g'),
('NB0527', 'g'),
('NB0656', 'r'),
('NB0718', 'i'),
('NB0816', 'i'),
('NB0871', 'i'),
('NB0921', 'z'),
('NB0926', 'z'),
('NB0973', 'y'),
('NB1010', 'y'),
# Intermediate bands
('IB0945', 'z'),
# Extended bands
('EB-gri', 'r'),
]:
config.filterMap[source] = target
7 changes: 7 additions & 0 deletions python/lsst/obs/hsc/hscFilters.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,11 @@
band='N926'),
FilterDefinition(physical_filter="NB0400",
band='N400'),
FilterDefinition(physical_filter="NB0391", band="N391"),
FilterDefinition(physical_filter="NB0395", band="N395"),
FilterDefinition(physical_filter="NB0430", band="N430"),
FilterDefinition(physical_filter="NB0497", band="N497"),
FilterDefinition(physical_filter="NB0506", band="N506"),
FilterDefinition(physical_filter="NB0872", band="N872"),
FilterDefinition(physical_filter="EB-gri", band="gri"),
)

0 comments on commit bca69b0

Please sign in to comment.