<xs:complexType name="WeatherReportOrConstraintComplexType">
<xs:annotation>
<xs:documentation>Weather information used in <WeatherConstraint> and <WeatherReport>. The wind direction is measured in degrees just the same as for <Azimuth>, i.e. 0 is South and West is 90 degrees.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="Particles" type="WeatherParticlesComplexType"/>
<xs:element name="RelativeHumidity" type="WeatherRelativeHumidityComplexType"/>
<xs:element name="Temperature" type="WeatherTemperatureComplexType"/>
<xs:element name="WindDirection" type="WeatherWindDirectionComplexType"/>
<xs:element name="WindSpeed" type="WeatherWindSpeedComplexType"/>
<xs:element name="Precipitation" type="xs:boolean"/>
<xs:element name="Seeing" type="WeatherSeeingComplexType"/>
</xs:choice>
<xs:attribute name="begin" type="xs:dateTime"/>
<xs:attribute name="end" type="xs:dateTime"/>
<xs:attribute name="type">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="include"/>
<xs:enumeration value="exclude"/>
<xs:enumeration value="report"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attributeGroup ref="RTMLAttributes"/>
</xs:complexType> |