1234567891011121314151617181920212223242526272829303132333435363738 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!-- File: spatial.xsd -->
- <schema targetNamespace="http://www.opengis.net/gml"
- xmlns="http://www.w3.org/2001/XMLSchema"
- xmlns:gml="http://www.opengis.net/gml"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- elementFormDefault="qualified"
- version="1.00">
- <annotation>
- <appinfo>spatial.xsd v1.00 2001-06</appinfo>
- <documentation xml:lang="en">Informix Spatial DataBlade Module GML Geometry
- schema extensions. Copyright (c) 2001 Informix Software, Inc.,
- All Rights Reserved.
- </documentation>
- </annotation>
- <!-- <redefine schemaLocation="http://www.opengis.net/namespaces/gml/core/geometry.xsd"> -->
- <redefine schemaLocation="geometry.xsd">
- <!-- CoordType redefinition -->
- <complexType name="CoordType">
- <annotation>
- <documentation>Represents a coordinate tuple in X,Y,Z or X,Y,M or X,Y,Z,M dimensions.
- </documentation>
- </annotation>
- <complexContent>
- <extension base="gml:CoordType">
- <sequence>
- <element name="M" type="decimal" minOccurs="0"/>
- </sequence>
- </extension>
- </complexContent>
- </complexType>
- </redefine>
- </schema>
|