ogc-gml 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (389) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/main.yml +27 -0
  3. data/.github/workflows/rake.yml +16 -0
  4. data/.github/workflows/release.yml +24 -0
  5. data/.gitignore +11 -0
  6. data/.gitmodules +3 -0
  7. data/.rspec +3 -0
  8. data/.rubocop.yml +8 -0
  9. data/CODE_OF_CONDUCT.md +84 -0
  10. data/Gemfile +12 -0
  11. data/README.md +35 -0
  12. data/Rakefile +12 -0
  13. data/bin/console +11 -0
  14. data/bin/setup +8 -0
  15. data/lib/ogc/gml/abstract_continuous_coverage.rb +35 -0
  16. data/lib/ogc/gml/abstract_coordinate_operation.rb +41 -0
  17. data/lib/ogc/gml/abstract_coordinate_system.rb +41 -0
  18. data/lib/ogc/gml/abstract_coverage.rb +36 -0
  19. data/lib/ogc/gml/abstract_crs.rb +35 -0
  20. data/lib/ogc/gml/abstract_curve.rb +27 -0
  21. data/lib/ogc/gml/abstract_curve_segment.rb +23 -0
  22. data/lib/ogc/gml/abstract_datum.rb +39 -0
  23. data/lib/ogc/gml/abstract_feature.rb +35 -0
  24. data/lib/ogc/gml/abstract_feature_collection.rb +36 -0
  25. data/lib/ogc/gml/abstract_general_conversion.rb +38 -0
  26. data/lib/ogc/gml/abstract_general_derived_crs.rb +30 -0
  27. data/lib/ogc/gml/abstract_general_operation_parameter.rb +28 -0
  28. data/lib/ogc/gml/abstract_general_operation_parameter_property.rb +25 -0
  29. data/lib/ogc/gml/abstract_general_parameter_value.rb +15 -0
  30. data/lib/ogc/gml/abstract_general_parameter_value_property.rb +21 -0
  31. data/lib/ogc/gml/abstract_general_transformation.rb +30 -0
  32. data/lib/ogc/gml/abstract_geometric_aggregate.rb +30 -0
  33. data/lib/ogc/gml/abstract_geometric_primitive.rb +42 -0
  34. data/lib/ogc/gml/abstract_geometry.rb +27 -0
  35. data/lib/ogc/gml/abstract_gml.rb +28 -0
  36. data/lib/ogc/gml/abstract_gridded_surface.rb +23 -0
  37. data/lib/ogc/gml/abstract_meta_data.rb +21 -0
  38. data/lib/ogc/gml/abstract_parametric_curve_surface.rb +19 -0
  39. data/lib/ogc/gml/abstract_ring.rb +15 -0
  40. data/lib/ogc/gml/abstract_ring_property.rb +21 -0
  41. data/lib/ogc/gml/abstract_solid.rb +27 -0
  42. data/lib/ogc/gml/abstract_surface.rb +27 -0
  43. data/lib/ogc/gml/abstract_surface_patch.rb +15 -0
  44. data/lib/ogc/gml/abstract_time_complex.rb +28 -0
  45. data/lib/ogc/gml/abstract_time_geometric_primitive.rb +39 -0
  46. data/lib/ogc/gml/abstract_time_object.rb +28 -0
  47. data/lib/ogc/gml/abstract_time_primitive.rb +29 -0
  48. data/lib/ogc/gml/abstract_time_slice.rb +35 -0
  49. data/lib/ogc/gml/abstract_time_topology_primitive.rb +34 -0
  50. data/lib/ogc/gml/abstract_topo_primitive.rb +28 -0
  51. data/lib/ogc/gml/abstract_topology.rb +33 -0
  52. data/lib/ogc/gml/affine_cs.rb +26 -0
  53. data/lib/ogc/gml/affine_cs_property.rb +25 -0
  54. data/lib/ogc/gml/affine_placement.rb +28 -0
  55. data/lib/ogc/gml/angle.rb +21 -0
  56. data/lib/ogc/gml/arc.rb +27 -0
  57. data/lib/ogc/gml/arc_by_bulge.rb +33 -0
  58. data/lib/ogc/gml/arc_by_center_point.rb +43 -0
  59. data/lib/ogc/gml/arc_string.rb +40 -0
  60. data/lib/ogc/gml/arc_string_by_bulge.rb +33 -0
  61. data/lib/ogc/gml/array.rb +32 -0
  62. data/lib/ogc/gml/array_association.rb +21 -0
  63. data/lib/ogc/gml/association_role.rb +23 -0
  64. data/lib/ogc/gml/b_spline.rb +30 -0
  65. data/lib/ogc/gml/bag.rb +35 -0
  66. data/lib/ogc/gml/base_unit.rb +40 -0
  67. data/lib/ogc/gml/bezier.rb +46 -0
  68. data/lib/ogc/gml/boolean.rb +21 -0
  69. data/lib/ogc/gml/bounding_shape.rb +25 -0
  70. data/lib/ogc/gml/cartesian_cs.rb +26 -0
  71. data/lib/ogc/gml/cartesian_cs_property.rb +25 -0
  72. data/lib/ogc/gml/category.rb +23 -0
  73. data/lib/ogc/gml/category_extent.rb +21 -0
  74. data/lib/ogc/gml/circle.rb +27 -0
  75. data/lib/ogc/gml/circle_by_center_point.rb +43 -0
  76. data/lib/ogc/gml/clothoid.rb +33 -0
  77. data/lib/ogc/gml/code.rb +21 -0
  78. data/lib/ogc/gml/code_or_nil_reason_list.rb +21 -0
  79. data/lib/ogc/gml/code_with_authority.rb +23 -0
  80. data/lib/ogc/gml/composite_curve.rb +32 -0
  81. data/lib/ogc/gml/composite_solid.rb +32 -0
  82. data/lib/ogc/gml/composite_surface.rb +32 -0
  83. data/lib/ogc/gml/composite_value.rb +42 -0
  84. data/lib/ogc/gml/compound_crs.rb +32 -0
  85. data/lib/ogc/gml/compound_crs_property.rb +25 -0
  86. data/lib/ogc/gml/concatenated_operation.rb +47 -0
  87. data/lib/ogc/gml/concatenated_operation_property.rb +25 -0
  88. data/lib/ogc/gml/cone.rb +22 -0
  89. data/lib/ogc/gml/control_point.rb +27 -0
  90. data/lib/ogc/gml/conventional_unit.rb +46 -0
  91. data/lib/ogc/gml/conversion.rb +34 -0
  92. data/lib/ogc/gml/conversion_property.rb +25 -0
  93. data/lib/ogc/gml/conversion_to_preferred_unit.rb +25 -0
  94. data/lib/ogc/gml/coordinate_operation_accuracy.rb +25 -0
  95. data/lib/ogc/gml/coordinate_operation_property.rb +25 -0
  96. data/lib/ogc/gml/coordinate_system_axis.rb +48 -0
  97. data/lib/ogc/gml/coordinate_system_axis_property.rb +25 -0
  98. data/lib/ogc/gml/coordinate_system_property.rb +25 -0
  99. data/lib/ogc/gml/coordinates.rb +25 -0
  100. data/lib/ogc/gml/count.rb +21 -0
  101. data/lib/ogc/gml/coverage_function.rb +27 -0
  102. data/lib/ogc/gml/crs_property.rb +25 -0
  103. data/lib/ogc/gml/cubic_spline.rb +45 -0
  104. data/lib/ogc/gml/curve.rb +31 -0
  105. data/lib/ogc/gml/curve_array_property.rb +28 -0
  106. data/lib/ogc/gml/curve_property.rb +37 -0
  107. data/lib/ogc/gml/curve_segment_array_property.rb +33 -0
  108. data/lib/ogc/gml/cylinder.rb +25 -0
  109. data/lib/ogc/gml/cylindrical_cs.rb +26 -0
  110. data/lib/ogc/gml/cylindrical_cs_property.rb +25 -0
  111. data/lib/ogc/gml/data_block.rb +26 -0
  112. data/lib/ogc/gml/datum_property.rb +25 -0
  113. data/lib/ogc/gml/definition.rb +31 -0
  114. data/lib/ogc/gml/definition_proxy.rb +33 -0
  115. data/lib/ogc/gml/degrees.rb +21 -0
  116. data/lib/ogc/gml/derivation_unit_term.rb +21 -0
  117. data/lib/ogc/gml/derived_crs.rb +37 -0
  118. data/lib/ogc/gml/derived_crs_property.rb +25 -0
  119. data/lib/ogc/gml/derived_unit.rb +41 -0
  120. data/lib/ogc/gml/dictionary.rb +46 -0
  121. data/lib/ogc/gml/dictionary_entry.rb +33 -0
  122. data/lib/ogc/gml/direct_position.rb +27 -0
  123. data/lib/ogc/gml/direct_position_list.rb +29 -0
  124. data/lib/ogc/gml/directed_edge_property.rb +29 -0
  125. data/lib/ogc/gml/directed_face_property.rb +29 -0
  126. data/lib/ogc/gml/directed_node_property.rb +29 -0
  127. data/lib/ogc/gml/directed_observation.rb +50 -0
  128. data/lib/ogc/gml/directed_observation_at_distance.rb +53 -0
  129. data/lib/ogc/gml/directed_topo_solid_property.rb +29 -0
  130. data/lib/ogc/gml/direction_description.rb +28 -0
  131. data/lib/ogc/gml/direction_property.rb +38 -0
  132. data/lib/ogc/gml/direction_vector.rb +26 -0
  133. data/lib/ogc/gml/discrete_coverage.rb +28 -0
  134. data/lib/ogc/gml/dms_angle.rb +27 -0
  135. data/lib/ogc/gml/domain_of_validity.rb +25 -0
  136. data/lib/ogc/gml/domain_set.rb +30 -0
  137. data/lib/ogc/gml/dynamic_feature.rb +46 -0
  138. data/lib/ogc/gml/dynamic_feature_collection.rb +49 -0
  139. data/lib/ogc/gml/dynamic_feature_member.rb +27 -0
  140. data/lib/ogc/gml/edge.rb +48 -0
  141. data/lib/ogc/gml/ellipsoid.rb +37 -0
  142. data/lib/ogc/gml/ellipsoid_property.rb +25 -0
  143. data/lib/ogc/gml/ellipsoidal_cs.rb +26 -0
  144. data/lib/ogc/gml/ellipsoidal_cs_property.rb +25 -0
  145. data/lib/ogc/gml/engineering_crs.rb +54 -0
  146. data/lib/ogc/gml/engineering_crs_property.rb +25 -0
  147. data/lib/ogc/gml/engineering_datum.rb +28 -0
  148. data/lib/ogc/gml/engineering_datum_property.rb +25 -0
  149. data/lib/ogc/gml/envelope.rb +36 -0
  150. data/lib/ogc/gml/envelope_with_time_period.rb +43 -0
  151. data/lib/ogc/gml/face.rb +50 -0
  152. data/lib/ogc/gml/face_or_topo_solid_property.rb +33 -0
  153. data/lib/ogc/gml/feature_array_property.rb +21 -0
  154. data/lib/ogc/gml/feature_collection.rb +27 -0
  155. data/lib/ogc/gml/feature_property.rb +27 -0
  156. data/lib/ogc/gml/file.rb +32 -0
  157. data/lib/ogc/gml/formula.rb +25 -0
  158. data/lib/ogc/gml/formula_citation.rb +25 -0
  159. data/lib/ogc/gml/general_conversion_property.rb +25 -0
  160. data/lib/ogc/gml/general_transformation_property.rb +25 -0
  161. data/lib/ogc/gml/generic_meta_data.rb +21 -0
  162. data/lib/ogc/gml/geocentric_crs.rb +36 -0
  163. data/lib/ogc/gml/geocentric_crs_property.rb +25 -0
  164. data/lib/ogc/gml/geodesic.rb +33 -0
  165. data/lib/ogc/gml/geodesic_string.rb +33 -0
  166. data/lib/ogc/gml/geodetic_crs.rb +40 -0
  167. data/lib/ogc/gml/geodetic_crs_property.rb +25 -0
  168. data/lib/ogc/gml/geodetic_datum.rb +35 -0
  169. data/lib/ogc/gml/geodetic_datum_property.rb +25 -0
  170. data/lib/ogc/gml/geographic_crs.rb +33 -0
  171. data/lib/ogc/gml/geographic_crs_property.rb +25 -0
  172. data/lib/ogc/gml/geometric_complex.rb +32 -0
  173. data/lib/ogc/gml/geometric_primitive_property.rb +27 -0
  174. data/lib/ogc/gml/geometry_array_property.rb +23 -0
  175. data/lib/ogc/gml/geometry_property.rb +27 -0
  176. data/lib/ogc/gml/grid.rb +49 -0
  177. data/lib/ogc/gml/grid_envelope.rb +21 -0
  178. data/lib/ogc/gml/grid_function.rb +23 -0
  179. data/lib/ogc/gml/grid_limits.rb +21 -0
  180. data/lib/ogc/gml/history_property.rb +23 -0
  181. data/lib/ogc/gml/image_crs.rb +39 -0
  182. data/lib/ogc/gml/image_crs_property.rb +25 -0
  183. data/lib/ogc/gml/image_datum.rb +31 -0
  184. data/lib/ogc/gml/image_datum_property.rb +25 -0
  185. data/lib/ogc/gml/indirect_entry.rb +21 -0
  186. data/lib/ogc/gml/inline_property.rb +19 -0
  187. data/lib/ogc/gml/knot.rb +23 -0
  188. data/lib/ogc/gml/knot_property.rb +21 -0
  189. data/lib/ogc/gml/length.rb +21 -0
  190. data/lib/ogc/gml/line_string.rb +43 -0
  191. data/lib/ogc/gml/line_string_segment.rb +38 -0
  192. data/lib/ogc/gml/line_string_segment_array_property.rb +21 -0
  193. data/lib/ogc/gml/linear_cs.rb +26 -0
  194. data/lib/ogc/gml/linear_cs_property.rb +25 -0
  195. data/lib/ogc/gml/linear_ring.rb +32 -0
  196. data/lib/ogc/gml/location_property.rb +33 -0
  197. data/lib/ogc/gml/mapping_rule.rb +23 -0
  198. data/lib/ogc/gml/measure.rb +21 -0
  199. data/lib/ogc/gml/measure_list.rb +21 -0
  200. data/lib/ogc/gml/measure_or_nil_reason_list.rb +21 -0
  201. data/lib/ogc/gml/meta_data_property.rb +27 -0
  202. data/lib/ogc/gml/moving_object_status.rb +59 -0
  203. data/lib/ogc/gml/multi_curve.rb +33 -0
  204. data/lib/ogc/gml/multi_curve_property.rb +27 -0
  205. data/lib/ogc/gml/multi_geometry.rb +35 -0
  206. data/lib/ogc/gml/multi_geometry_property.rb +27 -0
  207. data/lib/ogc/gml/multi_point.rb +35 -0
  208. data/lib/ogc/gml/multi_point_property.rb +27 -0
  209. data/lib/ogc/gml/multi_solid.rb +35 -0
  210. data/lib/ogc/gml/multi_solid_property.rb +27 -0
  211. data/lib/ogc/gml/multi_surface.rb +35 -0
  212. data/lib/ogc/gml/multi_surface_property.rb +27 -0
  213. data/lib/ogc/gml/node.rb +48 -0
  214. data/lib/ogc/gml/node_or_edge_property.rb +33 -0
  215. data/lib/ogc/gml/node_property.rb +27 -0
  216. data/lib/ogc/gml/oblique_cartesian_cs.rb +26 -0
  217. data/lib/ogc/gml/oblique_cartesian_cs_property.rb +25 -0
  218. data/lib/ogc/gml/observation.rb +47 -0
  219. data/lib/ogc/gml/offset_curve.rb +31 -0
  220. data/lib/ogc/gml/operation_method.rb +43 -0
  221. data/lib/ogc/gml/operation_method_property.rb +25 -0
  222. data/lib/ogc/gml/operation_parameter.rb +25 -0
  223. data/lib/ogc/gml/operation_parameter_group.rb +31 -0
  224. data/lib/ogc/gml/operation_parameter_group_property.rb +25 -0
  225. data/lib/ogc/gml/operation_parameter_property.rb +25 -0
  226. data/lib/ogc/gml/operation_property.rb +25 -0
  227. data/lib/ogc/gml/orientable_curve.rb +50 -0
  228. data/lib/ogc/gml/orientable_surface.rb +47 -0
  229. data/lib/ogc/gml/parameter_value.rb +40 -0
  230. data/lib/ogc/gml/parameter_value_group.rb +24 -0
  231. data/lib/ogc/gml/pass_through_operation.rb +43 -0
  232. data/lib/ogc/gml/pass_through_operation_property.rb +25 -0
  233. data/lib/ogc/gml/point.rb +33 -0
  234. data/lib/ogc/gml/point_array_property.rb +23 -0
  235. data/lib/ogc/gml/point_property.rb +27 -0
  236. data/lib/ogc/gml/polar_cs.rb +26 -0
  237. data/lib/ogc/gml/polar_cs_property.rb +25 -0
  238. data/lib/ogc/gml/polygon.rb +34 -0
  239. data/lib/ogc/gml/polygon_patch.rb +25 -0
  240. data/lib/ogc/gml/prime_meridian.rb +34 -0
  241. data/lib/ogc/gml/prime_meridian_property.rb +25 -0
  242. data/lib/ogc/gml/priority_location_property.rb +35 -0
  243. data/lib/ogc/gml/procedure_property.rb +27 -0
  244. data/lib/ogc/gml/projected_crs.rb +37 -0
  245. data/lib/ogc/gml/projected_crs_property.rb +25 -0
  246. data/lib/ogc/gml/quantity.rb +23 -0
  247. data/lib/ogc/gml/quantity_extent.rb +21 -0
  248. data/lib/ogc/gml/range_set.rb +29 -0
  249. data/lib/ogc/gml/rectangle.rb +23 -0
  250. data/lib/ogc/gml/rectified_grid.rb +55 -0
  251. data/lib/ogc/gml/ref_location.rb +21 -0
  252. data/lib/ogc/gml/reference.rb +23 -0
  253. data/lib/ogc/gml/related_time.rb +29 -0
  254. data/lib/ogc/gml/result.rb +23 -0
  255. data/lib/ogc/gml/ring.rb +21 -0
  256. data/lib/ogc/gml/second_defining_parameter1.rb +21 -0
  257. data/lib/ogc/gml/second_defining_parameter2.rb +26 -0
  258. data/lib/ogc/gml/sequence_rule.rb +23 -0
  259. data/lib/ogc/gml/shell.rb +25 -0
  260. data/lib/ogc/gml/shell_property.rb +27 -0
  261. data/lib/ogc/gml/single_crs_property.rb +25 -0
  262. data/lib/ogc/gml/single_operation_property.rb +25 -0
  263. data/lib/ogc/gml/solid.rb +33 -0
  264. data/lib/ogc/gml/solid_array_property.rb +23 -0
  265. data/lib/ogc/gml/solid_property.rb +27 -0
  266. data/lib/ogc/gml/sphere.rb +22 -0
  267. data/lib/ogc/gml/spherical_cs.rb +26 -0
  268. data/lib/ogc/gml/spherical_cs_property.rb +25 -0
  269. data/lib/ogc/gml/string_or_ref.rb +23 -0
  270. data/lib/ogc/gml/surface.rb +31 -0
  271. data/lib/ogc/gml/surface_array_property.rb +23 -0
  272. data/lib/ogc/gml/surface_patch_array_property.rb +28 -0
  273. data/lib/ogc/gml/surface_property.rb +30 -0
  274. data/lib/ogc/gml/target_property.rb +30 -0
  275. data/lib/ogc/gml/temporal_crs.rb +36 -0
  276. data/lib/ogc/gml/temporal_crs_property.rb +25 -0
  277. data/lib/ogc/gml/temporal_cs.rb +26 -0
  278. data/lib/ogc/gml/temporal_cs_property.rb +25 -0
  279. data/lib/ogc/gml/temporal_datum.rb +38 -0
  280. data/lib/ogc/gml/temporal_datum_property.rb +25 -0
  281. data/lib/ogc/gml/time_calendar.rb +36 -0
  282. data/lib/ogc/gml/time_calendar_era.rb +41 -0
  283. data/lib/ogc/gml/time_calendar_era_property.rb +27 -0
  284. data/lib/ogc/gml/time_calendar_property.rb +27 -0
  285. data/lib/ogc/gml/time_clock.rb +43 -0
  286. data/lib/ogc/gml/time_coordinate_system.rb +42 -0
  287. data/lib/ogc/gml/time_cs.rb +26 -0
  288. data/lib/ogc/gml/time_cs_property.rb +25 -0
  289. data/lib/ogc/gml/time_edge.rb +40 -0
  290. data/lib/ogc/gml/time_edge_property.rb +27 -0
  291. data/lib/ogc/gml/time_instant.rb +29 -0
  292. data/lib/ogc/gml/time_instant_property.rb +27 -0
  293. data/lib/ogc/gml/time_interval_length.rb +25 -0
  294. data/lib/ogc/gml/time_node.rb +37 -0
  295. data/lib/ogc/gml/time_node_property.rb +27 -0
  296. data/lib/ogc/gml/time_ordinal_era.rb +46 -0
  297. data/lib/ogc/gml/time_ordinal_era_property.rb +27 -0
  298. data/lib/ogc/gml/time_ordinal_reference_system.rb +36 -0
  299. data/lib/ogc/gml/time_period.rb +41 -0
  300. data/lib/ogc/gml/time_period_property.rb +27 -0
  301. data/lib/ogc/gml/time_position.rb +25 -0
  302. data/lib/ogc/gml/time_primitive_property.rb +27 -0
  303. data/lib/ogc/gml/time_reference_system.rb +33 -0
  304. data/lib/ogc/gml/time_topology_complex.rb +32 -0
  305. data/lib/ogc/gml/time_topology_primitive_property.rb +27 -0
  306. data/lib/ogc/gml/tin.rb +43 -0
  307. data/lib/ogc/gml/topo_complex.rb +54 -0
  308. data/lib/ogc/gml/topo_complex_property.rb +25 -0
  309. data/lib/ogc/gml/topo_curve.rb +39 -0
  310. data/lib/ogc/gml/topo_curve_property.rb +23 -0
  311. data/lib/ogc/gml/topo_point.rb +32 -0
  312. data/lib/ogc/gml/topo_point_property.rb +23 -0
  313. data/lib/ogc/gml/topo_primitive_array_association.rb +23 -0
  314. data/lib/ogc/gml/topo_primitive_member.rb +27 -0
  315. data/lib/ogc/gml/topo_solid.rb +50 -0
  316. data/lib/ogc/gml/topo_solid_property.rb +27 -0
  317. data/lib/ogc/gml/topo_surface.rb +39 -0
  318. data/lib/ogc/gml/topo_surface_property.rb +23 -0
  319. data/lib/ogc/gml/topo_volume.rb +39 -0
  320. data/lib/ogc/gml/topo_volume_property.rb +23 -0
  321. data/lib/ogc/gml/transformation.rb +44 -0
  322. data/lib/ogc/gml/transformation_property.rb +25 -0
  323. data/lib/ogc/gml/triangle.rb +23 -0
  324. data/lib/ogc/gml/unit_definition.rb +38 -0
  325. data/lib/ogc/gml/unit_of_measure.rb +19 -0
  326. data/lib/ogc/gml/user_defined_cs.rb +26 -0
  327. data/lib/ogc/gml/user_defined_cs_property.rb +25 -0
  328. data/lib/ogc/gml/value_array.rb +46 -0
  329. data/lib/ogc/gml/value_array_property.rb +30 -0
  330. data/lib/ogc/gml/value_property.rb +34 -0
  331. data/lib/ogc/gml/vector.rb +21 -0
  332. data/lib/ogc/gml/version.rb +7 -0
  333. data/lib/ogc/gml/vertical_crs.rb +33 -0
  334. data/lib/ogc/gml/vertical_crs_property.rb +25 -0
  335. data/lib/ogc/gml/vertical_cs.rb +26 -0
  336. data/lib/ogc/gml/vertical_cs_property.rb +25 -0
  337. data/lib/ogc/gml/vertical_datum.rb +28 -0
  338. data/lib/ogc/gml/vertical_datum_property.rb +25 -0
  339. data/lib/ogc/gml.rb +339 -0
  340. data/ogc-gml.gemspec +43 -0
  341. data/references/combined_gml/gml-without-xlink-gmd.xsd +6490 -0
  342. data/references/combined_gml/original-combined/gml.xsd +6491 -0
  343. data/references/combined_gml/original-combined/include-chain.txt +78 -0
  344. data/references/gml/3.2.1.2/SchematronConstraints.xml +71 -0
  345. data/references/gml/3.2.1.2/basicTypes.xsd +268 -0
  346. data/references/gml/3.2.1.2/coordinateOperations.xsd +525 -0
  347. data/references/gml/3.2.1.2/coordinateReferenceSystems.xsd +373 -0
  348. data/references/gml/3.2.1.2/coordinateSystems.xsd +297 -0
  349. data/references/gml/3.2.1.2/coverage.xsd +292 -0
  350. data/references/gml/3.2.1.2/datums.xsd +287 -0
  351. data/references/gml/3.2.1.2/defaultStyle.xsd +453 -0
  352. data/references/gml/3.2.1.2/deprecatedTypes.xsd +1133 -0
  353. data/references/gml/3.2.1.2/dictionary.xsd +90 -0
  354. data/references/gml/3.2.1.2/direction.xsd +84 -0
  355. data/references/gml/3.2.1.2/dynamicFeature.xsd +109 -0
  356. data/references/gml/3.2.1.2/feature.xsd +94 -0
  357. data/references/gml/3.2.1.2/geometryAggregates.xsd +197 -0
  358. data/references/gml/3.2.1.2/geometryBasic0d1d.xsd +277 -0
  359. data/references/gml/3.2.1.2/geometryBasic2d.xsd +124 -0
  360. data/references/gml/3.2.1.2/geometryComplexes.xsd +95 -0
  361. data/references/gml/3.2.1.2/geometryPrimitives.xsd +846 -0
  362. data/references/gml/3.2.1.2/gml.xsd +20 -0
  363. data/references/gml/3.2.1.2/gmlBase.xsd +185 -0
  364. data/references/gml/3.2.1.2/gml_32_geometries.rdf +368 -0
  365. data/references/gml/3.2.1.2/gml_3_2_1-ReadMe.txt +58 -0
  366. data/references/gml/3.2.1.2/grids.xsd +64 -0
  367. data/references/gml/3.2.1.2/measures.xsd +68 -0
  368. data/references/gml/3.2.1.2/observation.xsd +95 -0
  369. data/references/gml/3.2.1.2/referenceSystems.xsd +70 -0
  370. data/references/gml/3.2.1.2/temporal.xsd +269 -0
  371. data/references/gml/3.2.1.2/temporalReferenceSystems.xsd +189 -0
  372. data/references/gml/3.2.1.2/temporalTopology.xsd +119 -0
  373. data/references/gml/3.2.1.2/topology.xsd +386 -0
  374. data/references/gml/3.2.1.2/units.xsd +231 -0
  375. data/references/gml/3.2.1.2/valueObjects.xsd +205 -0
  376. data/references/gml/3.3.1/ReadMe.txt +89 -0
  377. data/references/gml/3.3.1/extdBaseTypes.xsd +67 -0
  378. data/references/gml/3.3.1/extdEncRule.xsd +8 -0
  379. data/references/gml/3.3.1/geometryCompact.xsd +218 -0
  380. data/references/gml/3.3.1/iso8601.sch +19 -0
  381. data/references/gml/3.3.1/linearRef.xsd +215 -0
  382. data/references/gml/3.3.1/linearRefOffset.xsd +96 -0
  383. data/references/gml/3.3.1/linearRefOffsetVector.xsd +48 -0
  384. data/references/gml/3.3.1/linearRefTowardsReferent.xsd +23 -0
  385. data/references/gml/3.3.1/referenceableGrid.xsd +79 -0
  386. data/references/gml/3.3.1/tin.xsd +78 -0
  387. data/sig/ogc/gml.rbs +8 -0
  388. data/split_files.rb +28 -0
  389. metadata +545 -0
@@ -0,0 +1,297 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <schema targetNamespace="http://www.opengis.net/gml/3.2" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:gml="http://www.opengis.net/gml/3.2" elementFormDefault="qualified" xml:lang="en" version="3.2.1.2">
3
+ <annotation>
4
+ <appinfo source="urn:x-ogc:specification:gml:schema-xsd:coordinateSystems:3.2.1">coordinateSystems.xsd</appinfo>
5
+ <documentation>See ISO/DIS 19136 13.4.
6
+ The coordinate systems schema components can be divded into three logical parts, which define elements and types for XML encoding of the definitions of:
7
+ - Coordinate system axes
8
+ - Abstract coordinate system
9
+ - Multiple concrete types of spatial-temporal coordinate systems
10
+ These schema components encode the Coordinate System packages of the UML Models of ISO 19111 Clause 9 and ISO/DIS 19136 D.3.10.
11
+
12
+ GML is an OGC Standard.
13
+ Copyright (c) 2007,2010 Open Geospatial Consortium.
14
+ To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
15
+ </documentation>
16
+ </annotation>
17
+ <include schemaLocation="gml.xsd"/>
18
+ <include schemaLocation="referenceSystems.xsd"/>
19
+ <element name="CoordinateSystemAxis" type="gml:CoordinateSystemAxisType" substitutionGroup="gml:Definition">
20
+ <annotation>
21
+ <documentation>gml:CoordinateSystemAxis is a definition of a coordinate system axis.</documentation>
22
+ </annotation>
23
+ </element>
24
+ <complexType name="CoordinateSystemAxisType">
25
+ <complexContent>
26
+ <extension base="gml:IdentifiedObjectType">
27
+ <sequence>
28
+ <element ref="gml:axisAbbrev"/>
29
+ <element ref="gml:axisDirection"/>
30
+ <element ref="gml:minimumValue" minOccurs="0"/>
31
+ <element ref="gml:maximumValue" minOccurs="0"/>
32
+ <element ref="gml:rangeMeaning" minOccurs="0"/>
33
+ </sequence>
34
+ <attribute name="uom" type="gml:UomIdentifier" use="required">
35
+ <annotation>
36
+ <documentation>The uom attribute provides an identifier of the unit of measure used for this coordinate system axis. The value of this coordinate in a coordinate tuple shall be recorded using this unit of measure, whenever those coordinates use a coordinate reference system that uses a coordinate system that uses this axis.</documentation>
37
+ </annotation>
38
+ </attribute>
39
+ </extension>
40
+ </complexContent>
41
+ </complexType>
42
+ <element name="axisAbbrev" type="gml:CodeType">
43
+ <annotation>
44
+ <documentation>gml:axisAbbrev is the abbreviation used for this coordinate system axis; this abbreviation is also used to identify the coordinates in the coordinate tuple. The codeSpace attribute may reference a source of more information on a set of standardized abbreviations, or on this abbreviation.</documentation>
45
+ </annotation>
46
+ </element>
47
+ <element name="axisDirection" type="gml:CodeWithAuthorityType">
48
+ <annotation>
49
+ <documentation>gml:axisDirection is the direction of this coordinate system axis (or in the case of Cartesian projected coordinates, the direction of this coordinate system axis at the origin).
50
+ Within any set of coordinate system axes, only one of each pair of terms may be used. For earth-fixed CRSs, this direction is often approximate and intended to provide a human interpretable meaning to the axis. When a geodetic datum is used, the precise directions of the axes may therefore vary slightly from this approximate direction.
51
+ The codeSpace attribute shall reference a source of information specifying the values and meanings of all the allowed string values for this property.</documentation>
52
+ </annotation>
53
+ </element>
54
+ <element name="minimumValue" type="double">
55
+ <annotation>
56
+ <documentation>The gml:minimumValue and gml:maximumValue properties allow the specification of minimum and maximum value normally allowed for this axis, in the unit of measure for the axis. For a continuous angular axis such as longitude, the values wrap-around at this value. Also, values beyond this minimum/maximum can be used for specified purposes, such as in a bounding box. A value of minus infinity shall be allowed for the gml:minimumValue element, a value of plus infiniy for the gml:maximumValue element. If these elements are omitted, the value is unspecified.</documentation>
57
+ </annotation>
58
+ </element>
59
+ <element name="maximumValue" type="double">
60
+ <annotation>
61
+ <documentation>The gml:minimumValue and gml:maximumValue properties allow the specification of minimum and maximum value normally allowed for this axis, in the unit of measure for the axis. For a continuous angular axis such as longitude, the values wrap-around at this value. Also, values beyond this minimum/maximum can be used for specified purposes, such as in a bounding box. A value of minus infinity shall be allowed for the gml:minimumValue element, a value of plus infiniy for the gml:maximumValue element. If these elements are omitted, the value is unspecified.</documentation>
62
+ </annotation>
63
+ </element>
64
+ <element name="rangeMeaning" type="gml:CodeWithAuthorityType">
65
+ <annotation>
66
+ <documentation>gml:rangeMeaning describes the meaning of axis value range specified by gml:minimumValue and gml:maximumValue. This element shall be omitted when both gml:minimumValue and gml:maximumValue are omitted. This element should be included when gml:minimumValue and/or gml:maximumValue are included. If this element is omitted when the gml:minimumValue and/or gml:maximumValue are included, the meaning is unspecified. The codeSpace attribute shall reference a source of information specifying the values and meanings of all the allowed string values for this property.</documentation>
67
+ </annotation>
68
+ </element>
69
+ <complexType name="CoordinateSystemAxisPropertyType">
70
+ <annotation>
71
+ <documentation>gml:CoordinateSystemAxisPropertyType is a property type for association roles to a coordinate system axis, either referencing or containing the definition of that axis.</documentation>
72
+ </annotation>
73
+ <sequence minOccurs="0">
74
+ <element ref="gml:CoordinateSystemAxis"/>
75
+ </sequence>
76
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
77
+ </complexType>
78
+ <element name="AbstractCoordinateSystem" type="gml:AbstractCoordinateSystemType" abstract="true" substitutionGroup="gml:Definition">
79
+ <annotation>
80
+ <documentation>gml:AbstractCoordinateSystem is a coordinate system (CS) is the non-repeating sequence of coordinate system axes that spans a given coordinate space. A CS is derived from a set of mathematical rules for specifying how coordinates in a given space are to be assigned to points. The coordinate values in a coordinate tuple shall be recorded in the order in which the coordinate system axes associations are recorded. This abstract complex type shall not be used, extended, or restricted, in an Application Schema, to define a concrete subtype with a meaning equivalent to a concrete subtype specified in this document.</documentation>
81
+ </annotation>
82
+ </element>
83
+ <complexType name="AbstractCoordinateSystemType" abstract="true">
84
+ <complexContent>
85
+ <extension base="gml:IdentifiedObjectType">
86
+ <sequence>
87
+ <element ref="gml:axis" maxOccurs="unbounded"/>
88
+ </sequence>
89
+ <attributeGroup ref="gml:AggregationAttributeGroup"/>
90
+ </extension>
91
+ </complexContent>
92
+ </complexType>
93
+ <element name="axis" type="gml:CoordinateSystemAxisPropertyType">
94
+ <annotation>
95
+ <documentation>The gml:axis property is an association role (ordered sequence) to the coordinate system axes included in this coordinate system. The coordinate values in a coordinate tuple shall be recorded in the order in which the coordinate system axes associations are recorded, whenever those coordinates use a coordinate reference system that uses this coordinate system. The gml:AggregationAttributeGroup should be used to specify that the axis objects are ordered.</documentation>
96
+ </annotation>
97
+ </element>
98
+ <complexType name="CoordinateSystemPropertyType">
99
+ <annotation>
100
+ <documentation>gml:CoordinateSystemPropertyType is a property type for association roles to a coordinate system, either referencing or containing the definition of that coordinate system.</documentation>
101
+ </annotation>
102
+ <sequence minOccurs="0">
103
+ <element ref="gml:AbstractCoordinateSystem"/>
104
+ </sequence>
105
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
106
+ </complexType>
107
+ <element name="EllipsoidalCS" type="gml:EllipsoidalCSType" substitutionGroup="gml:AbstractCoordinateSystem">
108
+ <annotation>
109
+ <documentation>gml:EllipsoidalCS is a two- or three-dimensional coordinate system in which position is specified by geodetic latitude, geodetic longitude, and (in the three-dimensional case) ellipsoidal height. An EllipsoidalCS shall have two or three gml:axis property elements; the number of associations shall equal the dimension of the CS.</documentation>
110
+ </annotation>
111
+ </element>
112
+ <complexType name="EllipsoidalCSType">
113
+ <complexContent>
114
+ <extension base="gml:AbstractCoordinateSystemType"/>
115
+ </complexContent>
116
+ </complexType>
117
+ <complexType name="EllipsoidalCSPropertyType">
118
+ <annotation>
119
+ <documentation>gml:EllipsoidalCSPropertyType is a property type for association roles to an ellipsoidal coordinate system, either referencing or containing the definition of that coordinate system.</documentation>
120
+ </annotation>
121
+ <sequence minOccurs="0">
122
+ <element ref="gml:EllipsoidalCS"/>
123
+ </sequence>
124
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
125
+ </complexType>
126
+ <element name="CartesianCS" type="gml:CartesianCSType" substitutionGroup="gml:AbstractCoordinateSystem">
127
+ <annotation>
128
+ <documentation>gml:CartesianCS is a 1-, 2-, or 3-dimensional coordinate system. In the 1-dimensional case, it contains a single straight coordinate axis. In the 2- and 3-dimensional cases gives the position of points relative to orthogonal straight axes. In the multi-dimensional case, all axes shall have the same length unit of measure. A CartesianCS shall have one, two, or three gml:axis property elements.</documentation>
129
+ </annotation>
130
+ </element>
131
+ <complexType name="CartesianCSType">
132
+ <complexContent>
133
+ <extension base="gml:AbstractCoordinateSystemType"/>
134
+ </complexContent>
135
+ </complexType>
136
+ <complexType name="CartesianCSPropertyType">
137
+ <annotation>
138
+ <documentation>gml:CartesianCSPropertyType is a property type for association roles to a Cartesian coordinate system, either referencing or containing the definition of that coordinate system.</documentation>
139
+ </annotation>
140
+ <sequence minOccurs="0">
141
+ <element ref="gml:CartesianCS"/>
142
+ </sequence>
143
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
144
+ </complexType>
145
+ <element name="VerticalCS" type="gml:VerticalCSType" substitutionGroup="gml:AbstractCoordinateSystem">
146
+ <annotation>
147
+ <documentation>gml:VerticalCS is a one-dimensional coordinate system used to record the heights or depths of points. Such a coordinate system is usually dependent on the Earth's gravity field, perhaps loosely as when atmospheric pressure is the basis for the vertical coordinate system axis. A VerticalCS shall have one gml:axis property element.</documentation>
148
+ </annotation>
149
+ </element>
150
+ <complexType name="VerticalCSType">
151
+ <complexContent>
152
+ <extension base="gml:AbstractCoordinateSystemType"/>
153
+ </complexContent>
154
+ </complexType>
155
+ <complexType name="VerticalCSPropertyType">
156
+ <annotation>
157
+ <documentation>gml:VerticalCSPropertyType is a property type for association roles to a vertical coordinate system, either referencing or containing the definition of that coordinate system.</documentation>
158
+ </annotation>
159
+ <sequence minOccurs="0">
160
+ <element ref="gml:VerticalCS"/>
161
+ </sequence>
162
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
163
+ </complexType>
164
+ <element name="TimeCS" type="gml:TimeCSType" substitutionGroup="gml:AbstractCoordinateSystem">
165
+ <annotation>
166
+ <documentation>gml:TimeCS is a one-dimensional coordinate system containing a time axis, used to describe the temporal position of a point in the specified time units from a specified time origin. A TimeCS shall have one gml:axis property element.</documentation>
167
+ </annotation>
168
+ </element>
169
+ <complexType name="TimeCSType">
170
+ <complexContent>
171
+ <extension base="gml:AbstractCoordinateSystemType"/>
172
+ </complexContent>
173
+ </complexType>
174
+ <complexType name="TimeCSPropertyType">
175
+ <annotation>
176
+ <documentation>gml:TimeCSPropertyType is a property type for association roles to a time coordinate system, either referencing or containing the definition of that coordinate system.</documentation>
177
+ </annotation>
178
+ <sequence minOccurs="0">
179
+ <element ref="gml:TimeCS"/>
180
+ </sequence>
181
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
182
+ </complexType>
183
+ <element name="LinearCS" type="gml:LinearCSType" substitutionGroup="gml:AbstractCoordinateSystem">
184
+ <annotation>
185
+ <documentation>gml:LinearCS is a one-dimensional coordinate system that consists of the points that lie on the single axis described. The associated coordinate is the distance – with or without offset – from the specified datum to the point along the axis. A LinearCS shall have one gml:axis property element.</documentation>
186
+ </annotation>
187
+ </element>
188
+ <complexType name="LinearCSType">
189
+ <complexContent>
190
+ <extension base="gml:AbstractCoordinateSystemType"/>
191
+ </complexContent>
192
+ </complexType>
193
+ <complexType name="LinearCSPropertyType">
194
+ <annotation>
195
+ <documentation>gml:LinearCSPropertyType is a property type for association roles to a linear coordinate system, either referencing or containing the definition of that coordinate system.</documentation>
196
+ </annotation>
197
+ <sequence minOccurs="0">
198
+ <element ref="gml:LinearCS"/>
199
+ </sequence>
200
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
201
+ </complexType>
202
+ <element name="UserDefinedCS" type="gml:UserDefinedCSType" substitutionGroup="gml:AbstractCoordinateSystem">
203
+ <annotation>
204
+ <documentation>gml:UserDefinedCS is a two- or three-dimensional coordinate system that consists of any combination of coordinate axes not covered by any other coordinate system type. A UserDefinedCS shall have two or three gml:axis property elements; the number of property elements shall equal the dimension of the CS.</documentation>
205
+ </annotation>
206
+ </element>
207
+ <complexType name="UserDefinedCSType">
208
+ <complexContent>
209
+ <extension base="gml:AbstractCoordinateSystemType"/>
210
+ </complexContent>
211
+ </complexType>
212
+ <complexType name="UserDefinedCSPropertyType">
213
+ <annotation>
214
+ <documentation>gml:UserDefinedCSPropertyType is a property type for association roles to a user-defined coordinate system, either referencing or containing the definition of that coordinate system.</documentation>
215
+ </annotation>
216
+ <sequence minOccurs="0">
217
+ <element ref="gml:UserDefinedCS"/>
218
+ </sequence>
219
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
220
+ </complexType>
221
+ <element name="SphericalCS" type="gml:SphericalCSType" substitutionGroup="gml:AbstractCoordinateSystem">
222
+ <annotation>
223
+ <documentation>gml:SphericalCS is a three-dimensional coordinate system with one distance measured from the origin and two angular coordinates. A SphericalCS shall have three gml:axis property elements.</documentation>
224
+ </annotation>
225
+ </element>
226
+ <complexType name="SphericalCSType">
227
+ <complexContent>
228
+ <extension base="gml:AbstractCoordinateSystemType"/>
229
+ </complexContent>
230
+ </complexType>
231
+ <complexType name="SphericalCSPropertyType">
232
+ <annotation>
233
+ <documentation>gml:SphericalCSPropertyType is property type for association roles to a spherical coordinate system, either referencing or containing the definition of that coordinate system.</documentation>
234
+ </annotation>
235
+ <sequence minOccurs="0">
236
+ <element ref="gml:SphericalCS"/>
237
+ </sequence>
238
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
239
+ </complexType>
240
+ <element name="PolarCS" type="gml:PolarCSType" substitutionGroup="gml:AbstractCoordinateSystem">
241
+ <annotation>
242
+ <documentation>gml:PolarCS ia s two-dimensional coordinate system in which position is specified by the distance from the origin and the angle between the line from the origin to a point and a reference direction. A PolarCS shall have two gml:axis property elements.</documentation>
243
+ </annotation>
244
+ </element>
245
+ <complexType name="PolarCSType">
246
+ <complexContent>
247
+ <extension base="gml:AbstractCoordinateSystemType"/>
248
+ </complexContent>
249
+ </complexType>
250
+ <complexType name="PolarCSPropertyType">
251
+ <annotation>
252
+ <documentation>gml:PolarCSPropertyType is a property type for association roles to a polar coordinate system, either referencing or containing the definition of that coordinate system.</documentation>
253
+ </annotation>
254
+ <sequence minOccurs="0">
255
+ <element ref="gml:PolarCS"/>
256
+ </sequence>
257
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
258
+ </complexType>
259
+ <element name="CylindricalCS" type="gml:CylindricalCSType" substitutionGroup="gml:AbstractCoordinateSystem">
260
+ <annotation>
261
+ <documentation>gml:CylindricalCS is a three-dimensional coordinate system consisting of a polar coordinate system extended by a straight coordinate axis perpendicular to the plane spanned by the polar coordinate system. A CylindricalCS shall have three gml:axis property elements.</documentation>
262
+ </annotation>
263
+ </element>
264
+ <complexType name="CylindricalCSType">
265
+ <complexContent>
266
+ <extension base="gml:AbstractCoordinateSystemType"/>
267
+ </complexContent>
268
+ </complexType>
269
+ <complexType name="CylindricalCSPropertyType">
270
+ <annotation>
271
+ <documentation>gml:CylindricalCSPropertyType is a property type for association roles to a cylindrical coordinate system, either referencing or containing the definition of that coordinate system.</documentation>
272
+ </annotation>
273
+ <sequence minOccurs="0">
274
+ <element ref="gml:CylindricalCS"/>
275
+ </sequence>
276
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
277
+ </complexType>
278
+ <element name="AffineCS" type="gml:AffineCSType" substitutionGroup="gml:AbstractCoordinateSystem">
279
+ <annotation>
280
+ <documentation>gml:AffineCS is a two- or three-dimensional coordinate system with straight axes that are not necessarily orthogonal. An AffineCS shall have two or three gml:axis property elements; the number of property elements shall equal the dimension of the CS.</documentation>
281
+ </annotation>
282
+ </element>
283
+ <complexType name="AffineCSType">
284
+ <complexContent>
285
+ <extension base="gml:AbstractCoordinateSystemType"/>
286
+ </complexContent>
287
+ </complexType>
288
+ <complexType name="AffineCSPropertyType">
289
+ <annotation>
290
+ <documentation>gml:AffineCSPropertyType is a property type for association roles to an affine coordinate system, either referencing or containing the definition of that coordinate system.</documentation>
291
+ </annotation>
292
+ <sequence minOccurs="0">
293
+ <element ref="gml:AffineCS"/>
294
+ </sequence>
295
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
296
+ </complexType>
297
+ </schema>
@@ -0,0 +1,292 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <schema targetNamespace="http://www.opengis.net/gml/3.2" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:gml="http://www.opengis.net/gml/3.2" elementFormDefault="qualified" version="3.2.1.2">
3
+ <annotation>
4
+ <appinfo source="urn:x-ogc:specification:gml:schema-xsd:coverage:3.2.1">coverage.xsd</appinfo>
5
+ <documentation>See ISO/DIS 19136 20.3.
6
+ A coverage incorporates a mapping from a spatiotemporal domain to a range set, the latter providing the set in which the attribute values live. The range set may be an arbitrary set including discrete lists, integer or floating point ranges, and multi-dimensional vector spaces.
7
+ A coverage can be viewed as the graph of the coverage function f:A à B, that is as the set of ordered pairs {(x, f(x)) | where x is in A}. This view is especially applicable to the GML encoding of a coverage. In the case of a discrete coverage, the domain set A is partitioned into a collection of subsets (typically a disjoint collection) A = UAi and the function f is constant on each Ai. For a spatial domain, the Ai are geometry elements, hence the coverage can be viewed as a collection of (geometry,value) pairs, where the value is an element of the range set. If the spatial domain A is a topological space then the coverage can be viewed as a collection of (topology,value) pairs, where the topology element in the pair is a topological n-chain (in GML terms this is a gml:TopoPoint, gml:TopoCurve, gml:TopoSurface or gml:TopoSolid).
8
+ A coverage is implemented as a GML feature. We can thus speak of a "temperature distribution feature", or a "remotely sensed image feature", or a "soil distribution feature".
9
+ As is the case for any GML object, a coverage object may also be the value of a property of a feature.
10
+
11
+ GML is an OGC Standard.
12
+ Copyright (c) 2007,2010 Open Geospatial Consortium.
13
+ To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
14
+ </documentation>
15
+ </annotation>
16
+ <include schemaLocation="gml.xsd"/>
17
+ <include schemaLocation="feature.xsd"/>
18
+ <include schemaLocation="valueObjects.xsd"/>
19
+ <include schemaLocation="grids.xsd"/>
20
+ <include schemaLocation="geometryAggregates.xsd"/>
21
+ <complexType name="AbstractCoverageType" abstract="true">
22
+ <annotation>
23
+ <documentation>The base type for coverages is gml:AbstractCoverageType. The basic elements of a coverage can be seen in this content model: the coverage contains gml:domainSet and gml:rangeSet properties. The gml:domainSet property describes the domain of the coverage and the gml:rangeSet property describes the range of the coverage.</documentation>
24
+ </annotation>
25
+ <complexContent>
26
+ <extension base="gml:AbstractFeatureType">
27
+ <sequence>
28
+ <element ref="gml:domainSet"/>
29
+ <element ref="gml:rangeSet"/>
30
+ </sequence>
31
+ </extension>
32
+ </complexContent>
33
+ </complexType>
34
+ <element name="AbstractCoverage" type="gml:AbstractCoverageType" abstract="true" substitutionGroup="gml:AbstractFeature">
35
+ <annotation>
36
+ <documentation>This element serves as the head of a substitution group which may contain any coverage whose type is derived from gml:AbstractCoverageType. It may act as a variable in the definition of content models where it is required to permit any coverage to be valid.</documentation>
37
+ </annotation>
38
+ </element>
39
+ <complexType name="DiscreteCoverageType">
40
+ <complexContent>
41
+ <extension base="gml:AbstractCoverageType">
42
+ <sequence>
43
+ <element ref="gml:coverageFunction" minOccurs="0"/>
44
+ </sequence>
45
+ </extension>
46
+ </complexContent>
47
+ </complexType>
48
+ <element name="AbstractDiscreteCoverage" type="gml:DiscreteCoverageType" abstract="true" substitutionGroup="gml:AbstractCoverage">
49
+ <annotation>
50
+ <documentation>A discrete coverage consists of a domain set, range set and optionally a coverage function. The domain set consists of either spatial or temporal geometry objects, finite in number. The range set is comprised of a finite number of attribute values each of which is associated to every direct position within any single spatiotemporal object in the domain. In other words, the range values are constant on each spatiotemporal object in the domain. This coverage function maps each element from the coverage domain to an element in its range. The coverageFunction element describes the mapping function.
51
+ This element serves as the head of a substitution group which may contain any discrete coverage whose type is derived from gml:DiscreteCoverageType.</documentation>
52
+ </annotation>
53
+ </element>
54
+ <complexType name="AbstractContinuousCoverageType" abstract="true">
55
+ <complexContent>
56
+ <extension base="gml:AbstractCoverageType">
57
+ <sequence>
58
+ <element ref="gml:coverageFunction" minOccurs="0"/>
59
+ </sequence>
60
+ </extension>
61
+ </complexContent>
62
+ </complexType>
63
+ <element name="AbstractContinuousCoverage" type="gml:AbstractContinuousCoverageType" abstract="true" substitutionGroup="gml:AbstractFeature">
64
+ <annotation>
65
+ <documentation>A continuous coverage as defined in ISO 19123 is a coverage that can return different values for the same feature attribute at different direct positions within a single spatiotemporal object in its spatiotemporal domain. The base type for continuous coverages is AbstractContinuousCoverageType.
66
+ The coverageFunction element describes the mapping function.
67
+ The abstract element gml:AbstractContinuousCoverage serves as the head of a substitution group which may contain any continuous coverage whose type is derived from gml:AbstractContinuousCoverageType.</documentation>
68
+ </annotation>
69
+ </element>
70
+ <element name="domainSet" type="gml:DomainSetType">
71
+ <annotation>
72
+ <documentation>The gml:domainSet property element describes the spatio-temporal region of interest, within which the coverage is defined. Its content model is given by gml:DomainSetType.
73
+ The value of the domain is thus a choice between a gml:AbstractGeometry and a gml:AbstractTimeObject. In the instance these abstract elements will normally be substituted by a geometry complex or temporal complex, to represent spatial coverages and time-series, respectively.
74
+ The presence of the gml:AssociationAttributeGroup means that domainSet follows the usual GML property model and may use the xlink:href attribute to point to the domain, as an alternative to describing the domain inline. Ownership semantics may be provided using the gml:OwnershipAttributeGroup.
75
+ </documentation>
76
+ </annotation>
77
+ </element>
78
+ <complexType name="DomainSetType">
79
+ <sequence minOccurs="0">
80
+ <choice>
81
+ <element ref="gml:AbstractGeometry"/>
82
+ <element ref="gml:AbstractTimeObject"/>
83
+ </choice>
84
+ </sequence>
85
+ <attributeGroup ref="gml:OwnershipAttributeGroup"/>
86
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
87
+ </complexType>
88
+ <element name="rangeSet" type="gml:RangeSetType">
89
+ <annotation>
90
+ <documentation>The gml:rangeSet property element contains the values of the coverage (sometimes called the attribute values). Its content model is given by gml:RangeSetType.
91
+ This content model supports a structural description of the range. The semantic information describing the range set is embedded using a uniform method, as part of the explicit values, or as a template value accompanying the representation using gml:DataBlock and gml:File.
92
+ The values from each component (or "band") in the range may be encoded within a gml:ValueArray element or a concrete member of the gml:AbstractScalarValueList substitution group . Use of these elements satisfies the value-type homogeneity requirement.</documentation>
93
+ </annotation>
94
+ </element>
95
+ <complexType name="RangeSetType">
96
+ <choice>
97
+ <element ref="gml:ValueArray" maxOccurs="unbounded"/>
98
+ <element ref="gml:AbstractScalarValueList" maxOccurs="unbounded"/>
99
+ <element ref="gml:DataBlock"/>
100
+ <element ref="gml:File"/>
101
+ </choice>
102
+ </complexType>
103
+ <element name="DataBlock" type="gml:DataBlockType" substitutionGroup="gml:AbstractObject">
104
+ <annotation>
105
+ <documentation>gml:DataBlock describes the Range as a block of text encoded values similar to a Common Separated Value (CSV) representation.
106
+ The range set parameterization is described by the property gml:rangeParameters.</documentation>
107
+ </annotation>
108
+ </element>
109
+ <complexType name="DataBlockType">
110
+ <sequence>
111
+ <element ref="gml:rangeParameters"/>
112
+ <choice>
113
+ <element ref="gml:tupleList"/>
114
+ <element ref="gml:doubleOrNilReasonTupleList"/>
115
+ </choice>
116
+ </sequence>
117
+ </complexType>
118
+ <element name="rangeParameters" type="gml:AssociationRoleType"/>
119
+ <element name="tupleList" type="gml:CoordinatesType">
120
+ <annotation>
121
+ <documentation>gml:CoordinatesType consists of a list of coordinate tuples, with each coordinate tuple separated by the ts or tuple separator (whitespace), and each coordinate in the tuple by the cs or coordinate separator (comma).
122
+ The gml:tupleList encoding is effectively "band-interleaved".</documentation>
123
+ </annotation>
124
+ </element>
125
+ <element name="doubleOrNilReasonTupleList" type="gml:doubleOrNilReasonList">
126
+ <annotation>
127
+ <documentation>gml:doubleOrNilReasonList consists of a list of gml:doubleOrNilReason values, each separated by a whitespace. The gml:doubleOrNilReason values are grouped into tuples where the dimension of each tuple in the list is equal to the number of range parameters.</documentation>
128
+ </annotation>
129
+ </element>
130
+ <element name="File" type="gml:FileType" substitutionGroup="gml:AbstractObject">
131
+ <annotation>
132
+ <documentation>for efficiency reasons, GML also provides a means of encoding the range set in an arbitrary external encoding, such as a binary file. This encoding may be "well-known" but this is not required. This mode uses the gml:File element.
133
+ The values of the coverage (attribute values in the range set) are transmitted in a external file that is referenced from the XML structure described by gml:FileType. The external file is referenced by the gml:fileReference property that is an anyURI (the gml:fileName property has been deprecated). This means that the external file may be located remotely from the referencing GML instance.
134
+ The gml:compression property points to a definition of a compression algorithm through an anyURI. This may be a retrievable, computable definition or simply a reference to an unambiguous name for the compression method.
135
+ The gml:mimeType property points to a definition of the file mime type.
136
+ The gml:fileStructure property is defined by a codelist. Note further that all values shall be enclosed in a single file. Multi-file structures for values are not supported in GML.
137
+ The semantics of the range set is described as above using the gml:rangeParameters property.
138
+ Note that if any compression algorithm is applied, the structure above applies only to the pre-compression or post-decompression structure of the file.
139
+ Note that the fields within a record match the gml:valueComponents of the gml:CompositeValue in document order.</documentation>
140
+ </annotation>
141
+ </element>
142
+ <complexType name="FileType">
143
+ <sequence>
144
+ <element ref="gml:rangeParameters"/>
145
+ <choice>
146
+ <element name="fileName" type="anyURI">
147
+ <annotation>
148
+ <appinfo>deprecated</appinfo>
149
+ </annotation>
150
+ </element>
151
+ <element name="fileReference" type="anyURI"/>
152
+ </choice>
153
+ <element name="fileStructure" type="gml:CodeType"/>
154
+ <element name="mimeType" type="anyURI" minOccurs="0"/>
155
+ <element name="compression" type="anyURI" minOccurs="0"/>
156
+ </sequence>
157
+ </complexType>
158
+ <element name="coverageFunction" type="gml:CoverageFunctionType" substitutionGroup="gml:AbstractObject">
159
+ <annotation>
160
+ <documentation>The gml:coverageFunction property describes the mapping function from the domain to the range of the coverage.
161
+ The value of the CoverageFunction is one of gml:CoverageMappingRule and gml:GridFunction.
162
+ If the gml:coverageFunction property is omitted for a gridded coverage (including rectified gridded coverages) the gml:startPoint is assumed to be the value of the gml:low property in the gml:Grid geometry, and the gml:sequenceRule is assumed to be linear and the gml:axisOrder property is assumed to be "+1 +2".</documentation>
163
+ </annotation>
164
+ </element>
165
+ <complexType name="CoverageFunctionType">
166
+ <choice>
167
+ <element ref="gml:MappingRule"/>
168
+ <element ref="gml:CoverageMappingRule"/>
169
+ <element ref="gml:GridFunction"/>
170
+ </choice>
171
+ </complexType>
172
+ <element name="CoverageMappingRule" type="gml:MappingRuleType" substitutionGroup="gml:AbstractObject">
173
+ <annotation>
174
+ <documentation>gml:CoverageMappingRule provides a formal or informal description of the coverage function.
175
+ The mapping rule may be defined as an in-line string (gml:ruleDefinition) or via a remote reference through xlink:href (gml:ruleReference).
176
+ If no rule name is specified, the default is 'Linear' with respect to members of the domain in document order.</documentation>
177
+ </annotation>
178
+ </element>
179
+ <complexType name="MappingRuleType" final="#all">
180
+ <choice>
181
+ <element name="ruleDefinition" type="string"/>
182
+ <element name="ruleReference" type="gml:ReferenceType"/>
183
+ </choice>
184
+ </complexType>
185
+ <element name="GridFunction" type="gml:GridFunctionType" substitutionGroup="gml:AbstractObject">
186
+ <annotation>
187
+ <documentation>gml:GridFunction provides an explicit mapping rule for grid geometries, i.e. the domain shall be a geometry of type grid. It describes the mapping of grid posts (discrete point grid coverage) or grid cells (discrete surface coverage) to the values in the range set.
188
+ The gml:startPoint is the index position of a point in the grid that is mapped to the first point in the range set (this is also the index position of the first grid post). If the gml:startPoint property is omitted the gml:startPoint is assumed to be equal to the value of gml:low in the gml:Grid geometry. Subsequent points in the mapping are determined by the value of the gml:sequenceRule.</documentation>
189
+ </annotation>
190
+ </element>
191
+ <complexType name="GridFunctionType">
192
+ <sequence>
193
+ <element name="sequenceRule" type="gml:SequenceRuleType" minOccurs="0"/>
194
+ <element name="startPoint" type="gml:integerList" minOccurs="0"/>
195
+ </sequence>
196
+ </complexType>
197
+ <complexType name="SequenceRuleType">
198
+ <annotation>
199
+ <documentation>The gml:SequenceRuleType is derived from the gml:SequenceRuleEnumeration through the addition of an axisOrder attribute. The gml:SequenceRuleEnumeration is an enumerated type. The rule names are defined in ISO 19123. If no rule name is specified the default is "Linear".</documentation>
200
+ </annotation>
201
+ <simpleContent>
202
+ <extension base="gml:SequenceRuleEnumeration">
203
+ <attribute name="order" type="gml:IncrementOrder">
204
+ <annotation>
205
+ <appinfo>deprecated</appinfo>
206
+ </annotation>
207
+ </attribute>
208
+ <attribute name="axisOrder" type="gml:AxisDirectionList"/>
209
+ </extension>
210
+ </simpleContent>
211
+ </complexType>
212
+ <simpleType name="SequenceRuleEnumeration">
213
+ <restriction base="string">
214
+ <enumeration value="Linear"/>
215
+ <enumeration value="Boustrophedonic"/>
216
+ <enumeration value="Cantor-diagonal"/>
217
+ <enumeration value="Spiral"/>
218
+ <enumeration value="Morton"/>
219
+ <enumeration value="Hilbert"/>
220
+ </restriction>
221
+ </simpleType>
222
+ <simpleType name="AxisDirectionList">
223
+ <annotation>
224
+ <documentation>The different values in a gml:AxisDirectionList indicate the incrementation order to be used on all axes of the grid. Each axis shall be mentioned once and only once.</documentation>
225
+ </annotation>
226
+ <list itemType="gml:AxisDirection"/>
227
+ </simpleType>
228
+ <simpleType name="AxisDirection">
229
+ <annotation>
230
+ <documentation>The value of a gml:AxisDirection indicates the incrementation order to be used on an axis of the grid.</documentation>
231
+ </annotation>
232
+ <restriction base="string">
233
+ <pattern value="[\+\-][1-9][0-9]*"/>
234
+ </restriction>
235
+ </simpleType>
236
+ <element name="MultiPointCoverage" type="gml:DiscreteCoverageType" substitutionGroup="gml:AbstractDiscreteCoverage">
237
+ <annotation>
238
+ <documentation>In a gml:MultiPointCoverage the domain set is a gml:MultiPoint, that is a collection of arbitrarily distributed geometric points.
239
+ The content model is identical with gml:DiscreteCoverageType, but that gml:domainSet shall have values gml:MultiPoint.
240
+ In a gml:MultiPointCoverage the mapping from the domain to the range is straightforward.
241
+ - For gml:DataBlock encodings the points of the gml:MultiPoint are mapped in document order to the tuples of the data block.
242
+ - For gml:CompositeValue encodings the points of the gml:MultiPoint are mapped to the members of the composite value in document order.
243
+ - For gml:File encodings the points of the gml:MultiPoint are mapped to the records of the file in sequential order.
244
+ </documentation>
245
+ </annotation>
246
+ </element>
247
+ <element name="MultiCurveCoverage" type="gml:DiscreteCoverageType" substitutionGroup="gml:AbstractDiscreteCoverage">
248
+ <annotation>
249
+ <documentation>In a gml:MultiCurveCoverage the domain is partioned into a collection of curves comprising a gml:MultiCurve. The coverage function then maps each curve in the collection to a value in the range set.
250
+ The content model is identical with gml:DiscreteCoverageType, but that gml:domainSet shall have values gml:MultiCurve.
251
+ In a gml:MultiCurveCoverage the mapping from the domain to the range is straightforward.
252
+ - For gml:DataBlock encodings the curves of the gml:MultiCurve are mapped in document order to the tuples of the data block.
253
+ - For gml:CompositeValue encodings the curves of the gml:MultiCurve are mapped to the members of the composite value in document order.
254
+ - For gml:File encodings the curves of the gml:MultiCurve are mapped to the records of the file in sequential order.
255
+ </documentation>
256
+ </annotation>
257
+ </element>
258
+ <element name="MultiSurfaceCoverage" type="gml:DiscreteCoverageType" substitutionGroup="gml:AbstractDiscreteCoverage">
259
+ <annotation>
260
+ <documentation>In a gml:MultiSurfaceCoverage the domain is partioned into a collection of surfaces comprising a gml:MultiSurface. The coverage function than maps each surface in the collection to a value in the range set.
261
+ The content model is identical with gml:DiscreteCoverageType, but that gml:domainSet shall have values gml:MultiSurface.
262
+ In a gml:MultiSurfaceCoverage the mapping from the domain to the range is straightforward.
263
+ - For gml:DataBlock encodings the surfaces of the gml:MultiSurface are mapped in document order to the tuples of the data block.
264
+ - For gml:CompositeValue encodings the surfaces of the gml:MultiSurface are mapped to the members of the composite value in document order.
265
+ - For gml:File encodings the surfaces of the gml:MultiSurface are mapped to the records of the file in sequential order.
266
+ </documentation>
267
+ </annotation>
268
+ </element>
269
+ <element name="MultiSolidCoverage" type="gml:DiscreteCoverageType" substitutionGroup="gml:AbstractDiscreteCoverage">
270
+ <annotation>
271
+ <documentation>In a gml:MultiSolidCoverage the domain is partioned into a collection of solids comprising a gml:MultiSolid. The coverage function than maps each solid in the collection to a value in the range set.
272
+ The content model is identical with gml:DiscreteCoverageType, but that gml:domainSet shall have values gml:MultiSolid.
273
+ In a gml:MultiSolidCoverage the mapping from the domain to the range is straightforward.
274
+ - For gml:DataBlock encodings the solids of the gml:MultiSolid are mapped in document order to the tuples of the data block.
275
+ - For gml:CompositeValue encodings the solids of the gml:MultiSolid are mapped to the members of the composite value in document order.
276
+ - For gml:File encodings the solids of the gml:MultiSolid are mapped to the records of the file in sequential order.
277
+ </documentation>
278
+ </annotation>
279
+ </element>
280
+ <element name="GridCoverage" type="gml:DiscreteCoverageType" substitutionGroup="gml:AbstractDiscreteCoverage">
281
+ <annotation>
282
+ <documentation>A gml:GriddedCoverage is a discrete point coverage in which the domain set is a geometric grid of points.
283
+ Note that this is the same as the gml:MultiPointCoverage except that we have a gml:Grid to describe the domain.
284
+ The simple gridded coverage is not geometrically referenced and hence no geometric positions are assignable to the points in the grid. Such geometric positioning is introduced in the gml:RectifiedGridCoverage.</documentation>
285
+ </annotation>
286
+ </element>
287
+ <element name="RectifiedGridCoverage" type="gml:DiscreteCoverageType" substitutionGroup="gml:AbstractDiscreteCoverage">
288
+ <annotation>
289
+ <documentation>The gml:RectifiedGridCoverage is a discrete point coverage based on a rectified grid. It is similar to the grid coverage except that the points of the grid are geometrically referenced. The rectified grid coverage has a domain that is a gml:RectifiedGrid geometry.</documentation>
290
+ </annotation>
291
+ </element>
292
+ </schema>