<xs:complexType name="ApertureComplexType">
<xs:annotation>
<xs:documentation>Aperture of telescope in meters. If the attribute "type" is equal to "effective" rather than the default "geometric"), then the aperture can be used to compute the true collecting area (e.g. allowance for central obscuration due to secondary mirror).</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs:double">
<xs:attribute name="type" default="geometric">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="geometric"/>
<xs:enumeration value="effective"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="units" type="xs:string" use="required" fixed="meters"/>
<xs:attributeGroup ref="RTMLAttributes"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType> |