1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
|
<?xml version="1.0" encoding="UTF-8"?>
<schema targetNamespace="http://www.opengis.net/gml" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:gml="http://www.opengis.net/gml" xmlns:smil20="http://www.w3.org/2001/SMIL20/" elementFormDefault="qualified" version="3.1.1 2010-01-28">
<annotation>
<appinfo source="urn:opengis:specification:gml:schema-defaultStyle:v3.1.0">defaultStyle.xsd</appinfo>
<documentation>
Default Style schema for GML 3.1.1
GML is an OGC Standard.
Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved.
To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
</documentation>
</annotation>
<!-- ==============================================================
includes and imports
============================================================== -->
<include schemaLocation="measures.xsd"/>
<import namespace="http://www.w3.org/2001/SMIL20/" schemaLocation="../smil/smil20.xsd"/>
<!-- ==============================================================
the Style property
============================================================== -->
<element name="defaultStyle" type="gml:DefaultStylePropertyType">
<annotation>
<documentation>Top-level property. Used in application schemas to "attach" the styling information to GML data. The link between the data and the style should be established through this property only.</documentation>
</annotation>
</element>
<!-- =========================================================== -->
<complexType name="DefaultStylePropertyType">
<annotation>
<documentation>[complexType of] Top-level property. Used in application schemas to "attach" the styling information to GML data. The link between the data and the style should be established through this property only.</documentation>
</annotation>
<sequence>
<element ref="gml:_Style" minOccurs="0"/>
</sequence>
<attribute name="about" type="anyURI" use="optional"/>
<attributeGroup ref="gml:AssociationAttributeGroup"/>
</complexType>
<!-- ==============================================================
the Style
============================================================== -->
<element name="_Style" type="gml:AbstractStyleType" abstract="true" substitutionGroup="gml:_GML">
<annotation>
<documentation>The value of the top-level property. It is an abstract element. Used as the head element of the substitution group for extensibility purposes.</documentation>
</annotation>
</element>
<!-- =========================================================== -->
<complexType name="AbstractStyleType" abstract="true">
<annotation>
<documentation>[complexType of] The value of the top-level property. It is an abstract element. Used as the head element of the substitution group for extensibility purposes.</documentation>
</annotation>
<complexContent>
<extension base="gml:AbstractGMLType"/>
</complexContent>
</complexType>
<!-- =========================================================== -->
<element name="Style" type="gml:StyleType" substitutionGroup="gml:_Style">
<annotation>
<documentation>Predefined concrete value of the top-level property. Encapsulates all other styling information.</documentation>
</annotation>
</element>
<!-- =========================================================== -->
<complexType name="StyleType">
<annotation>
<documentation>[complexType of] Predefined concrete value of the top-level property. Encapsulates all other styling information.</documentation>
</annotation>
<complexContent>
<extension base="gml:AbstractStyleType">
<sequence>
<element ref="gml:featureStyle" maxOccurs="unbounded"/>
<element ref="gml:graphStyle" minOccurs="0"/>
</sequence>
</extension>
</complexContent>
</complexType>
<!-- ==============================================================
Feature Style Property
============================================================== -->
<element name="featureStyle" type="gml:FeatureStylePropertyType">
<annotation>
<documentation/>
</annotation>
</element>
<!-- =========================================================== -->
<complexType name="FeatureStylePropertyType">
<annotation>
<documentation/>
</annotation>
<sequence>
<element ref="gml:FeatureStyle" minOccurs="0"/>
</sequence>
<attribute name="about" type="anyURI" use="optional"/>
<attributeGroup ref="gml:AssociationAttributeGroup"/>
</complexType>
<!-- ==============================================================
Feature Style
============================================================== -->
<element name="FeatureStyle" type="gml:FeatureStyleType" substitutionGroup="gml:_GML">
<annotation>
<documentation>The style descriptor for features.</documentation>
</annotation>
</element>
<!-- =========================================================== -->
<complexType name="FeatureStyleType">
<annotation>
<documentation>[complexType of] The style descriptor for features.</documentation>
</annotation>
<complexContent>
<extension base="gml:AbstractGMLType">
<sequence>
<element name="featureConstraint" type="string" minOccurs="0"/>
<element ref="gml:geometryStyle" minOccurs="0" maxOccurs="unbounded"/>
<element ref="gml:topologyStyle" minOccurs="0" maxOccurs="unbounded"/>
<element ref="gml:labelStyle" minOccurs="0"/>
</sequence>
<attribute name="featureType" type="string" use="optional"/>
<attribute name="baseType" type="string" use="optional"/>
<attribute name="queryGrammar" type="gml:QueryGrammarEnumeration"/>
</extension>
</complexContent>
</complexType>
<!-- =========================================================== -->
<simpleType name="QueryGrammarEnumeration">
<annotation>
<documentation>Used to specify the grammar of the feature query mechanism.</documentation>
</annotation>
<restriction base="string">
<enumeration value="xpath"/>
<enumeration value="xquery"/>
<enumeration value="other"/>
</restriction>
</simpleType>
<!-- ==============================================================
Base style descriptor type (for geometry, topology, label, graph)
============================================================== -->
<complexType name="BaseStyleDescriptorType">
<annotation>
<documentation>Base complex type for geometry, topology, label and graph styles.</documentation>
</annotation>
<complexContent>
<extension base="gml:AbstractGMLType">
<sequence>
<element name="spatialResolution" type="gml:ScaleType" minOccurs="0"/>
<element name="styleVariation" type="gml:StyleVariationType" minOccurs="0" maxOccurs="unbounded"/>
<element ref="smil20:animate" minOccurs="0" maxOccurs="unbounded"/>
<element ref="smil20:animateMotion" minOccurs="0" maxOccurs="unbounded"/>
<element ref="smil20:animateColor" minOccurs="0" maxOccurs="unbounded"/>
<element ref="smil20:set" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
</extension>
</complexContent>
</complexType>
<!-- ==============================================================
Geometry Style Property
============================================================== -->
<element name="geometryStyle" type="gml:GeometryStylePropertyType">
<annotation>
<documentation/>
</annotation>
</element>
<!-- =========================================================== -->
<complexType name="GeometryStylePropertyType">
<annotation>
<documentation/>
</annotation>
<sequence>
<element ref="gml:GeometryStyle" minOccurs="0"/>
</sequence>
<attribute name="about" type="anyURI" use="optional"/>
<attributeGroup ref="gml:AssociationAttributeGroup"/>
</complexType>
<!-- ==============================================================
Geometry Style
============================================================== -->
<element name="GeometryStyle" type="gml:GeometryStyleType" substitutionGroup="gml:_GML">
<annotation>
<documentation>The style descriptor for geometries of a feature.</documentation>
</annotation>
</element>
<!-- =========================================================== -->
<complexType name="GeometryStyleType">
<annotation>
<documentation>[complexType of] The style descriptor for geometries of a feature.</documentation>
</annotation>
<complexContent>
<extension base="gml:BaseStyleDescriptorType">
<sequence>
<choice>
<element ref="gml:symbol"/>
<element name="style" type="string">
<annotation>
<appinfo>deprecated</appinfo>
<documentation>Deprecated in GML version 3.1.0. Use symbol with inline content instead.</documentation>
</annotation>
</element>
</choice>
<element ref="gml:labelStyle" minOccurs="0"/>
</sequence>
<attribute name="geometryProperty" type="string"/>
<attribute name="geometryType" type="string"/>
</extension>
</complexContent>
</complexType>
<!-- ==============================================================
Topology Style Property
============================================================== -->
<element name="topologyStyle" type="gml:TopologyStylePropertyType">
<annotation>
<documentation/>
</annotation>
</element>
<!-- =========================================================== -->
<complexType name="TopologyStylePropertyType">
<annotation>
<documentation/>
</annotation>
<sequence>
<element ref="gml:TopologyStyle" minOccurs="0"/>
</sequence>
<attribute name="about" type="anyURI" use="optional"/>
<attributeGroup ref="gml:AssociationAttributeGroup"/>
</complexType>
<!-- ==============================================================
Topology Style
============================================================== -->
<element name="TopologyStyle" type="gml:TopologyStyleType" substitutionGroup="gml:_GML">
<annotation>
<documentation>The style descriptor for topologies of a feature. Describes individual topology elements styles.</documentation>
</annotation>
</element>
<!-- =========================================================== -->
<complexType name="TopologyStyleType">
<annotation>
<documentation>[complexType of] The style descriptor for topologies of a feature. Describes individual topology elements styles.</documentation>
</annotation>
<complexContent>
<extension base="gml:BaseStyleDescriptorType">
<sequence>
<choice>
<element ref="gml:symbol"/>
<element name="style" type="string">
<annotation>
<appinfo>deprecated</appinfo>
<documentation>Deprecated in GML version 3.1.0. Use symbol with inline content instead.</documentation>
</annotation>
</element>
</choice>
<element ref="gml:labelStyle" minOccurs="0"/>
</sequence>
<attribute name="topologyProperty" type="string"/>
<attribute name="topologyType" type="string"/>
</extension>
</complexContent>
</complexType>
<!-- ==============================================================
Label Style Property
============================================================== -->
<element name="labelStyle" type="gml:LabelStylePropertyType">
<annotation>
<documentation/>
</annotation>
</element>
<!-- =========================================================== -->
<complexType name="LabelStylePropertyType">
<annotation>
<documentation/>
</annotation>
<sequence>
<element ref="gml:LabelStyle" minOccurs="0"/>
</sequence>
<attribute name="about" type="anyURI" use="optional"/>
<attributeGroup ref="gml:AssociationAttributeGroup"/>
</complexType>
<!-- ==============================================================
Label Style
============================================================== -->
<element name="LabelStyle" type="gml:LabelStyleType" substitutionGroup="gml:_GML">
<annotation>
<documentation>The style descriptor for labels of a feature, geometry or topology.</documentation>
</annotation>
</element>
<!-- =========================================================== -->
<complexType name="LabelStyleType">
<annotation>
<documentation>[complexType of] The style descriptor for labels of a feature, geometry or topology.</documentation>
</annotation>
<complexContent>
<extension base="gml:BaseStyleDescriptorType">
<sequence>
<element name="style" type="string"/>
<element name="label" type="gml:LabelType"/>
</sequence>
</extension>
</complexContent>
</complexType>
<!-- ==============================================================
Graph Style Property
============================================================== -->
<element name="graphStyle" type="gml:GraphStylePropertyType">
<annotation>
<documentation/>
</annotation>
</element>
<!-- =========================================================== -->
<complexType name="GraphStylePropertyType">
<annotation>
<documentation/>
</annotation>
<sequence>
<element ref="gml:GraphStyle" minOccurs="0"/>
</sequence>
<attribute name="about" type="anyURI" use="optional"/>
<attributeGroup ref="gml:AssociationAttributeGroup"/>
</complexType>
<!-- ==============================================================
Graph Style
============================================================== -->
<element name="GraphStyle" type="gml:GraphStyleType" substitutionGroup="gml:_GML">
<annotation>
<documentation>The style descriptor for a graph consisting of a number of features. Describes graph-specific style attributes.</documentation>
</annotation>
</element>
<!-- =========================================================== -->
<complexType name="GraphStyleType">
<annotation>
<documentation>[complexType of] The style descriptor for a graph consisting of a number of features. Describes graph-specific style attributes.</documentation>
</annotation>
<complexContent>
<extension base="gml:BaseStyleDescriptorType">
<sequence>
<element name="planar" type="boolean" minOccurs="0"/>
<element name="directed" type="boolean" minOccurs="0"/>
<element name="grid" type="boolean" minOccurs="0"/>
<element name="minDistance" type="double" minOccurs="0"/>
<element name="minAngle" type="double" minOccurs="0"/>
<element name="graphType" type="gml:GraphTypeType" minOccurs="0"/>
<element name="drawingType" type="gml:DrawingTypeType" minOccurs="0"/>
<element name="lineType" type="gml:LineTypeType" minOccurs="0"/>
<element name="aestheticCriteria" type="gml:AesheticCriteriaType" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
</extension>
</complexContent>
</complexType>
<!-- ==============================================================
Common elements
============================================================== -->
<element name="symbol" type="gml:SymbolType">
<annotation>
<documentation>The symbol property. Extends the gml:AssociationType to allow for remote referencing of symbols.</documentation>
</annotation>
</element>
<!-- =========================================================== -->
<complexType name="SymbolType">
<annotation>
<documentation>[complexType of] The symbol property. Allows for remote referencing of symbols.</documentation>
</annotation>
<sequence>
<any processContents="skip" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attribute name="symbolType" type="gml:SymbolTypeEnumeration" use="required"/>
<attribute ref="gml:transform" use="optional"/>
<attribute name="about" type="anyURI" use="optional"/>
<attributeGroup ref="gml:AssociationAttributeGroup"/>
</complexType>
<!-- =========================================================== -->
<simpleType name="SymbolTypeEnumeration">
<annotation>
<documentation>Used to specify the type of the symbol used.</documentation>
</annotation>
<restriction base="string">
<enumeration value="svg"/>
<enumeration value="xpath"/>
<enumeration value="other"/>
</restriction>
</simpleType>
<!-- =========================================================== -->
<complexType name="LabelType" mixed="true">
<annotation>
<documentation>Label is mixed -- composed of text and XPath expressions used to extract the useful information from the feature.</documentation>
</annotation>
<sequence>
<element name="LabelExpression" type="string" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attribute ref="gml:transform" use="optional"/>
</complexType>
<!-- =========================================================== -->
<attribute name="transform" type="string">
<annotation>
<documentation>Defines the geometric transformation of entities. There is no particular grammar defined for this value.</documentation>
</annotation>
</attribute>
<!-- =========================================================== -->
<complexType name="StyleVariationType">
<annotation>
<documentation>Used to vary individual graphic parameters and attributes of the style, symbol or text.</documentation>
</annotation>
<simpleContent>
<extension base="string">
<attribute name="styleProperty" type="string" use="required"/>
<attribute name="featurePropertyRange" type="string" use="optional"/>
</extension>
</simpleContent>
</complexType>
<!-- ==============================================================
Graph parameters types
============================================================== -->
<simpleType name="GraphTypeType">
<annotation>
<documentation>Graph-specific styling property.</documentation>
</annotation>
<restriction base="string">
<enumeration value="TREE"/>
<enumeration value="BICONNECTED"/>
</restriction>
</simpleType>
<!-- =========================================================== -->
<simpleType name="DrawingTypeType">
<annotation>
<documentation>Graph-specific styling property.</documentation>
</annotation>
<restriction base="string">
<enumeration value="POLYLINE"/>
<enumeration value="ORTHOGONAL"/>
</restriction>
</simpleType>
<!-- =========================================================== -->
<simpleType name="LineTypeType">
<annotation>
<documentation>Graph-specific styling property.</documentation>
</annotation>
<restriction base="string">
<enumeration value="STRAIGHT"/>
<enumeration value="BENT"/>
</restriction>
</simpleType>
<!-- =========================================================== -->
<simpleType name="AesheticCriteriaType">
<annotation>
<documentation>Graph-specific styling property.</documentation>
</annotation>
<restriction base="string">
<enumeration value="MIN_CROSSINGS"/>
<enumeration value="MIN_AREA"/>
<enumeration value="MIN_BENDS"/>
<enumeration value="MAX_BENDS"/>
<enumeration value="UNIFORM_BENDS"/>
<enumeration value="MIN_SLOPES"/>
<enumeration value="MIN_EDGE_LENGTH"/>
<enumeration value="MAX_EDGE_LENGTH"/>
<enumeration value="UNIFORM_EDGE_LENGTH"/>
<enumeration value="MAX_ANGULAR_RESOLUTION"/>
<enumeration value="MIN_ASPECT_RATIO"/>
<enumeration value="MAX_SYMMETRIES"/>
</restriction>
</simpleType>
</schema>
|