<xs:complexType name="ExtinctionConstraintComplexType">
<xs:annotation>
<xs:documentation>Places contraints on clouds, either in terms of magnitudes and/or in general terms of cloud type ("clear", "light", "heavy").</xs:documentation>
</xs:annotation>
<xs:all>
<xs:element name="Clouds" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="clear"/>
<xs:enumeration value="light"/>
<xs:enumeration value="scattered"/>
<xs:enumeration value="heavy"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Description" type="DescriptionComplexType" minOccurs="0"/>
<xs:element name="Magnitudes" type="xs:double" minOccurs="0"/>
</xs:all>
<xs:attributeGroup ref="RTMLAttributes"/>
</xs:complexType> |