<?xml version="1.0" encoding="utf-16"?>
<xsd:complexType name="IRcoordSysType">
<xsd:annotation>
<xsd:documentation>Coordinate system transformation information. Specifies how the coordinate information given in the data set is to be transformed to the IREDES standardized coordinate system. Right hand system is assumed.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="CoordSysName" type="IRtextShort">
<xsd:annotation>
<xsd:documentation>In the entire tree of coordinate systems uniquely defined Name or ID of the coordinate system </xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="TMatrix" type="IR4x4matrix">
<xsd:annotation>
<xsd:documentation>4x4 matrix to describe how to transform from parent to child coordinate system. Definition chosen should comply to std GIS </xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="CsysType">
<xsd:annotation>
<xsd:documentation>Type of the Coordinate System: L= Left handed R= Right handed. To be used for explanatory reasons.</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:length value="1" />
<xsd:enumeration value="L" />
<xsd:enumeration value="R" />
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="ChildCSys" type="IRcoordSysType" minOccurs="0" maxOccurs="10">
<xsd:annotation>
<xsd:documentation>Child coordinate system(s) to be used inside the project. By using this stack (tree) of coordinate systems, every coordinate in a project can be transformed to any earth or mine globel coordinate.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
|