<xs:complexType name="ellipseType">
<xs:annotation>
<xs:documentation>Ellipse shape: adds semi-minor axis and position angle to circleType</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="reg:circleType">
<xs:sequence>
<xs:element name="MinorRadius" type="xs:double">
<xs:annotation>
<xs:documentation>Half the minor axis of the ellipse, in radius_unit</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="PosAngle" type="crd:posAngleType">
<xs:annotation>
<xs:documentation>Position angle of major axis (Radius).</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType> |