Source code for across.tools.core.enums.wavelength_unit

from enum import Enum


[docs] class WavelengthUnit(str, Enum): """ Enum to represent the bandpass wavelength """
[docs] NANOMETER = "nm"
[docs] ANGSTROM = "angstrom"
[docs] MICRON = "um"
[docs] MILLIMETER = "mm"