Commit 5748d6e2 authored by Paul Taylor's avatar Paul Taylor
Browse files

Changed GEO to Geo in applicable Point, Shape, Sphere

parent 3cb5cf0d
Loading
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -338,7 +338,7 @@
    </xs:simpleType>
    <xs:complexType name="GNSSLocation">
        <xs:sequence>
            <xs:element name="location" type="GEOShape"/>
            <xs:element name="location" type="GeoShape"/>
            <xs:element name="fixMode" type="FixMode"/>
        </xs:sequence>
    </xs:complexType>
@@ -354,7 +354,7 @@
            <xs:element name="wGS84CoordinateAngular" type="WGS84CoordinateAngular"/>
        </xs:choice>
    </xs:complexType>
    <xs:complexType name="GEOShape">
    <xs:complexType name="GeoShape">
        <xs:sequence>
            <xs:element name="shape" type="GMLShape"/>
            <xs:element name="confidence" type="Percentage" minOccurs="0"/>
@@ -362,25 +362,25 @@
    </xs:complexType>
    <xs:complexType name="GMLShape">
        <xs:choice>
            <xs:element name="point" type="GEOPoint"/>
            <xs:element name="sphere" type="GEOSphere"/>
            <xs:element name="point" type="GeoPoint"/>
            <xs:element name="sphere" type="GeoSphere"/>
            <xs:element name="xyEllipsoid" type="XYEllipsoid"/>
        </xs:choice>
    </xs:complexType>
    <xs:complexType name="GEOPoint">
    <xs:complexType name="GeoPoint">
        <xs:choice>
            <xs:element name="wGS84Point" type="WGS84Location"/>
        </xs:choice>
    </xs:complexType>
    <xs:complexType name="GEOSphere">
    <xs:complexType name="GeoSphere">
        <xs:sequence>
            <xs:element name="centerPoint" type="GEOPoint"/>
            <xs:element name="centerPoint" type="GeoPoint"/>
            <xs:element name="radiusMeters" type="UncertaintyMeters"/>
        </xs:sequence>
    </xs:complexType>
    <xs:complexType name="XYEllipsoid">
        <xs:sequence>
            <xs:element name="centerPoint" type="GEOPoint"/>
            <xs:element name="centerPoint" type="GeoPoint"/>
            <xs:element name="uncertaintyLongitude" type="UncertaintyMeters"/>
            <xs:element name="uncertaintyLatitude" type="UncertaintyMeters"/>
            <xs:element name="uncertaintyAltitude" type="UncertaintyMeters" minOccurs="0"/>