spatial.xsd 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!-- File: spatial.xsd -->
  3. <schema targetNamespace="http://www.opengis.net/gml"
  4. xmlns="http://www.w3.org/2001/XMLSchema"
  5. xmlns:gml="http://www.opengis.net/gml"
  6. xmlns:xlink="http://www.w3.org/1999/xlink"
  7. elementFormDefault="qualified"
  8. version="1.00">
  9. <annotation>
  10. <appinfo>spatial.xsd v1.00 2001-06</appinfo>
  11. <documentation xml:lang="en">Informix Spatial DataBlade Module GML Geometry
  12. schema extensions. Copyright (c) 2001 Informix Software, Inc.,
  13. All Rights Reserved.
  14. </documentation>
  15. </annotation>
  16. <!-- <redefine schemaLocation="http://www.opengis.net/namespaces/gml/core/geometry.xsd"> -->
  17. <redefine schemaLocation="geometry.xsd">
  18. <!-- CoordType redefinition -->
  19. <complexType name="CoordType">
  20. <annotation>
  21. <documentation>Represents a coordinate tuple in X,Y,Z or X,Y,M or X,Y,Z,M dimensions.
  22. </documentation>
  23. </annotation>
  24. <complexContent>
  25. <extension base="gml:CoordType">
  26. <sequence>
  27. <element name="M" type="decimal" minOccurs="0"/>
  28. </sequence>
  29. </extension>
  30. </complexContent>
  31. </complexType>
  32. </redefine>
  33. </schema>