<xs:element name="IrregularLine">
<xs:annotation>
<xs:documentation>Used to record lines that are irregular such as river boudaries etc. It has Start and End point elements and a list of intermediate points. Point list should also include the start and end points.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="Start" />
<xs:element ref="End" />
<xs:choice>
<xs:element ref="PntList2D" />
<xs:element ref="PntList3D" />
<!-- Here PntList2D represents 2D planametric coordinate pairs expressed as space delimited Northing Easting pairs. -->
</xs:choice>
<xs:element ref="Feature" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
<xs:attribute name="desc" type="xs:string" />
<xs:attribute name="dir" type="direction" />
<xs:attribute name="length" type="xs:double" />
<xs:attribute name="name" type="xs:string" />
<xs:attribute name="staStart" type="xs:double" />
<xs:attribute name="state" type="stateType" />
<xs:attribute name="oID" type="xs:string" />
<xs:attribute name="source" type="xs:string" />
<xs:attribute name="note" type="xs:string" />
</xs:complexType>
</xs:element>
|