<xs:complexType name="LocationComplexType">
<xs:annotation>
<xs:documentation>Description of the location of a <Telescope>. Longitude is given east of Greenwich (IAU convention).</xs:documentation>
</xs:annotation>
<xs:choice>
<xs:choice minOccurs="2" maxOccurs="4">
<xs:element name="EastLongitude" type="DoubleValueDegreesUnitsComplexType"/>
<xs:element name="Latitude" type="DoubleValueDegreesUnitsComplexType"/>
<xs:element name="Height" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:double">
<xs:attribute name="units" type="xs:string" fixed="meters"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="TimeZone" type="xs:integer" minOccurs="0" maxOccurs="1"/>
</xs:choice>
<xs:sequence>
<xs:element name="VOObservatoryLocation" type="VOObservatoryLocationComplexType"/>
</xs:sequence>
</xs:choice>
<xs:attribute name="name" type="xs:string"/>
<xs:attributeGroup ref="RTMLAttributes"/>
</xs:complexType> |