Source code for pyreduce.instruments.MOSAIC
"""
MOSAIC instrument - ELT multi-object spectrograph with 630 fibers.
NIR channel: 90 fiber groups (7 fibers each), 4096x4096 H4RG detector.
VIS channel: 4 quadrants (VIS1-VIS4) from a 12788x12394 mosaic detector.
Fibers split into two halves with a gap in the middle.
"""
from ..common import Instrument
[docs]
class MOSAIC(Instrument):
# VIS detector quadrant boundaries (from gap analysis)
# Full VIS frame: 12788 (height) x 12394 (width) pixels
# Horizontal gap: rows 6144-6644, Vertical gap: cols 6144-6250
# Active region: rows 2038-10734
VIS_QUADRANTS = {
"VIS1": {"xlo": 0, "xhi": 6144, "ylo": 2020, "yhi": 6144}, # lower-left
"VIS2": {"xlo": 6249, "xhi": 12393, "ylo": 2045, "yhi": 6169}, # lower-right
"VIS3": {"xlo": 0, "xhi": 6144, "ylo": 6644, "yhi": 10734}, # upper-left
"VIS4": {"xlo": 6249, "xhi": 12393, "ylo": 6644, "yhi": 10734}, # upper-right
}