This Page

3.69. IMAGE Classification SourceΒΆ

Classification
IMAGE
Source Location
ADCONFIG_Gemini/classifications/types/gemdtype.IMAGE.py
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
class IMAGE(DataClassification):
    name="IMAGE"
    # this a description of the intent of the classification
    # to what does the classification apply?
    usage = """
        Applies to all Gemini imaging datasets
        """
    parent = "GENERIC"
    requirement = OR([  ISCLASS("F2_IMAGE"),
                        ISCLASS("GMOS_IMAGE"),
                        ISCLASS("GNIRS_IMAGE"),
                        ISCLASS("GSAOI_IMAGE"),
                        ISCLASS("MICHELLE_IMAGE"),
                        ISCLASS("NICI_IMAGE"),
                        ISCLASS("NIFS_IMAGE"),
                        ISCLASS("NIRI_IMAGE"),
                        ISCLASS("TRECS_IMAGE")])

newtypes.append(IMAGE())