1 2 3 4 5 6 7 8 9 | class NIRI_DARK(DataClassification):
name="NIRI_DARK"
usage = """
Applies to all dark datasets from the NIRI instrument
"""
parent = "NIRI"
requirement = ISCLASS("NIRI") & PHU(OBSTYPE="DARK")
newtypes.append(NIRI_DARK())
|