reg:ellipseType

Ellipse shape: adds semi-minor axis and position angle to circleType

Complex Type Information

Model

Attributes

QName Type Fixed Default Use Inheritable Annotation
fill_factor restriction of xs:double 1.0 optional
The fill_factor (value between 0 and 1) indicates the fraction of the region that is actually included; possible application: large scale resource coverage areas
note xs:string optional
unit crd:posUnitType deg optional

Used By

Element reg:Ellipse

Source

<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>