Source code for gemini_instruments.gemini

__all__ = ['AstroDataGemini', 'addInstrumentFilterWavelengths']

from astrodata import factory
from .adclass import AstroDataGemini
from .lookup import filter_wavelengths

[docs]def addInstrumentFilterWavelengths(instrument, wl): update_dict = dict( ((instrument, fltname), value) for (fltname, value) in wl.items() ) filter_wavelengths.update(update_dict)
factory.addClass(AstroDataGemini)