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,64 @@
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:grids:3.2.1">grids.xsd</appinfo>
5
+ <documentation>See ISO/DIS 19136 20.2.
6
+ An implicit description of geometry is one in which the items of the geometry do not explicitly appear in the encoding. Instead, a compact notation records a set of parameters, and a set of objects may be generated using a rule with these parameters. This Clause provides grid geometries that are used in the description of gridded coverages and other applications.
7
+ In GML two grid structures are defined, namely gml:Grid and gml:RectifiedGrid.
8
+
9
+ GML is an OGC Standard.
10
+ Copyright (c) 2007,2010 Open Geospatial Consortium.
11
+ To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
12
+ </documentation>
13
+ </annotation>
14
+ <include schemaLocation="gml.xsd"/>
15
+ <include schemaLocation="geometryBasic0d1d.xsd"/>
16
+ <element name="Grid" type="gml:GridType" substitutionGroup="gml:AbstractImplicitGeometry">
17
+ <annotation>
18
+ <documentation>The gml:Grid implicitly defines an unrectified grid, which is a network composed of two or more sets of curves in which the members of each set intersect the members of the other sets in an algorithmic way. The region of interest within the grid is given in terms of its gml:limits, being the grid coordinates of diagonally opposed corners of a rectangular region. gml:axisLabels is provided with a list of labels of the axes of the grid (gml:axisName has been deprecated). gml:dimension specifies the dimension of the grid.
19
+ The gml:limits element contains a single gml:GridEnvelope. The gml:low and gml:high property elements of the envelope are each integerLists, which are coordinate tuples, the coordinates being measured as offsets from the origin of the grid along each axis, of the diagonally opposing corners of a "rectangular" region of interest.</documentation>
20
+ </annotation>
21
+ </element>
22
+ <element name="AbstractImplicitGeometry" type="gml:AbstractGeometryType" abstract="true" substitutionGroup="gml:AbstractGeometry"/>
23
+ <complexType name="GridType">
24
+ <complexContent>
25
+ <extension base="gml:AbstractGeometryType">
26
+ <sequence>
27
+ <element name="limits" type="gml:GridLimitsType"/>
28
+ <choice>
29
+ <element name="axisLabels" type="gml:NCNameList"/>
30
+ <element name="axisName" type="string" maxOccurs="unbounded"/>
31
+ </choice>
32
+ </sequence>
33
+ <attribute name="dimension" type="positiveInteger" use="required"/>
34
+ </extension>
35
+ </complexContent>
36
+ </complexType>
37
+ <complexType name="GridLimitsType">
38
+ <sequence>
39
+ <element name="GridEnvelope" type="gml:GridEnvelopeType"/>
40
+ </sequence>
41
+ </complexType>
42
+ <complexType name="GridEnvelopeType">
43
+ <sequence>
44
+ <element name="low" type="gml:integerList"/>
45
+ <element name="high" type="gml:integerList"/>
46
+ </sequence>
47
+ </complexType>
48
+ <element name="RectifiedGrid" type="gml:RectifiedGridType" substitutionGroup="gml:Grid">
49
+ <annotation>
50
+ <documentation>A rectified grid is a grid for which there is an affine transformation between the grid coordinates and the coordinates of an external coordinate reference system. It is defined by specifying the position (in some geometric space) of the grid "origin" and of the vectors that specify the post locations.
51
+ Note that the grid limits (post indexes) and axis name properties are inherited from gml:GridType and that gml:RectifiedGrid adds a gml:origin property (contains or references a gml:Point) and a set of gml:offsetVector properties.</documentation>
52
+ </annotation>
53
+ </element>
54
+ <complexType name="RectifiedGridType">
55
+ <complexContent>
56
+ <extension base="gml:GridType">
57
+ <sequence>
58
+ <element name="origin" type="gml:PointPropertyType"/>
59
+ <element name="offsetVector" type="gml:VectorType" maxOccurs="unbounded"/>
60
+ </sequence>
61
+ </extension>
62
+ </complexContent>
63
+ </complexType>
64
+ </schema>
@@ -0,0 +1,68 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <schema targetNamespace="http://www.opengis.net/gml/3.2" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified" xml:lang="en" version="3.2.1.2">
3
+ <annotation>
4
+ <appinfo source="urn:x-ogc:specification:gml:schema-xsd:measures:3.2.1">measures.xsd</appinfo>
5
+ <documentation>See ISO/DIS 19136 17.3.
6
+ gml:MeasureType is defined in the basicTypes schema. The measure types defined here correspond with a set of convenience measure types described in ISO/TS 19103. The XML implementation is based on the XML Schema simple type "double" which supports both decimal and scientific notation, and includes an XML attribute "uom" which refers to the units of measure for the value. Note that, there is no requirement to store values using any particular format, and applications receiving elements of this type may choose to coerce the data to any other type as convenient.
7
+
8
+ GML is an OGC Standard.
9
+ Copyright (c) 2007,2010 Open Geospatial Consortium.
10
+ To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
11
+ </documentation>
12
+ </annotation>
13
+ <include schemaLocation="gml.xsd"/>
14
+ <include schemaLocation="units.xsd"/>
15
+ <element name="measure" type="gml:MeasureType">
16
+ <annotation>
17
+ <documentation>The value of a physical quantity, together with its unit.</documentation>
18
+ </annotation>
19
+ </element>
20
+ <complexType name="LengthType">
21
+ <annotation>
22
+ <documentation>This is a prototypical definition for a specific measure type defined as a vacuous extension (i.e. aliases) of gml:MeasureType. In this case, the content model supports the description of a length (or distance) quantity, with its units. The unit of measure referenced by uom shall be suitable for a length, such as metres or feet.</documentation>
23
+ </annotation>
24
+ <simpleContent>
25
+ <extension base="gml:MeasureType"/>
26
+ </simpleContent>
27
+ </complexType>
28
+ <complexType name="ScaleType">
29
+ <simpleContent>
30
+ <extension base="gml:MeasureType"/>
31
+ </simpleContent>
32
+ </complexType>
33
+ <complexType name="TimeType">
34
+ <simpleContent>
35
+ <extension base="gml:MeasureType"/>
36
+ </simpleContent>
37
+ </complexType>
38
+ <complexType name="GridLengthType">
39
+ <simpleContent>
40
+ <extension base="gml:MeasureType"/>
41
+ </simpleContent>
42
+ </complexType>
43
+ <complexType name="AreaType">
44
+ <simpleContent>
45
+ <extension base="gml:MeasureType"/>
46
+ </simpleContent>
47
+ </complexType>
48
+ <complexType name="VolumeType">
49
+ <simpleContent>
50
+ <extension base="gml:MeasureType"/>
51
+ </simpleContent>
52
+ </complexType>
53
+ <complexType name="SpeedType">
54
+ <simpleContent>
55
+ <extension base="gml:MeasureType"/>
56
+ </simpleContent>
57
+ </complexType>
58
+ <complexType name="AngleType">
59
+ <simpleContent>
60
+ <extension base="gml:MeasureType"/>
61
+ </simpleContent>
62
+ </complexType>
63
+ <element name="angle" type="gml:AngleType">
64
+ <annotation>
65
+ <documentation>The gml:angle property element is used to record the value of an angle quantity as a single number, with its units.</documentation>
66
+ </annotation>
67
+ </element>
68
+ </schema>
@@ -0,0 +1,95 @@
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" version="3.2.1.2">
3
+ <annotation>
4
+ <appinfo source="urn:x-ogc:specification:gml:schema-xsd:observation:3.2.1">observation.xsd</appinfo>
5
+ <documentation>See ISO/DIS 19136 Clause 19.
6
+ A GML observation models the act of observing, often with a camera, a person or some form of instrument. An observation feature describes the "metadata" associated with an information capture event, together with a value for the result of the observation. This covers a broad range of cases, from a tourist photo (not the photo but the act of taking the photo), to images acquired by space borne sensors or the measurement of a temperature 5 meters below the surfaces of a lake.
7
+ The basic structures introduced in this schema are intended to serve as the foundation for more comprehensive schemas for scientific, technical and engineering measurement schemas.
8
+
9
+ GML is an OGC Standard.
10
+ Copyright (c) 2007,2010 Open Geospatial Consortium.
11
+ To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
12
+ </documentation>
13
+ </annotation>
14
+ <include schemaLocation="gml.xsd"/>
15
+ <include schemaLocation="feature.xsd"/>
16
+ <include schemaLocation="direction.xsd"/>
17
+ <include schemaLocation="valueObjects.xsd"/>
18
+ <element name="Observation" type="gml:ObservationType" substitutionGroup="gml:AbstractFeature">
19
+ <annotation>
20
+ <documentation>The content model is a straightforward extension of gml:AbstractFeatureType; it automatically has the gml:identifier, gml:description, gml:descriptionReference, gml:name, and gml:boundedBy properties.
21
+ The gml:validTime element describes the time of the observation. Note that this may be a time instant or a time period.
22
+ The gml:using property contains or references a description of a sensor, instrument or procedure used for the observation.
23
+ The gml:target property contains or references the specimen, region or station which is the object of the observation. This property is particularly useful for remote observations, such as photographs, where a generic location property might apply to the location of the camera or the location of the field of view, and thus may be ambiguous.
24
+ The gml:subject element is provided as a convenient synonym for gml:target. This is the term commonly used in phtotography.
25
+ The gml:resultOf property indicates the result of the observation. The value may be inline, or a reference to a value elsewhere.
26
+ </documentation>
27
+ </annotation>
28
+ </element>
29
+ <complexType name="ObservationType">
30
+ <complexContent>
31
+ <extension base="gml:AbstractFeatureType">
32
+ <sequence>
33
+ <element ref="gml:validTime"/>
34
+ <element ref="gml:using" minOccurs="0"/>
35
+ <element ref="gml:target" minOccurs="0"/>
36
+ <element ref="gml:resultOf"/>
37
+ </sequence>
38
+ </extension>
39
+ </complexContent>
40
+ </complexType>
41
+ <element name="using" type="gml:ProcedurePropertyType"/>
42
+ <complexType name="ProcedurePropertyType">
43
+ <sequence minOccurs="0">
44
+ <element ref="gml:AbstractFeature"/>
45
+ </sequence>
46
+ <attributeGroup ref="gml:OwnershipAttributeGroup"/>
47
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
48
+ </complexType>
49
+ <element name="target" type="gml:TargetPropertyType"/>
50
+ <element name="subject" type="gml:TargetPropertyType" substitutionGroup="gml:target"/>
51
+ <complexType name="TargetPropertyType">
52
+ <choice minOccurs="0">
53
+ <element ref="gml:AbstractFeature"/>
54
+ <element ref="gml:AbstractGeometry"/>
55
+ </choice>
56
+ <attributeGroup ref="gml:OwnershipAttributeGroup"/>
57
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
58
+ </complexType>
59
+ <element name="resultOf" type="gml:ResultType"/>
60
+ <complexType name="ResultType">
61
+ <sequence minOccurs="0">
62
+ <any namespace="##any"/>
63
+ </sequence>
64
+ <attributeGroup ref="gml:OwnershipAttributeGroup"/>
65
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
66
+ </complexType>
67
+ <element name="DirectedObservation" type="gml:DirectedObservationType" substitutionGroup="gml:Observation">
68
+ <annotation>
69
+ <documentation>A gml:DirectedObservation is the same as an observation except that it adds an additional gml:direction property. This is the direction in which the observation was acquired. Clearly this applies only to certain types of observations such as visual observations by people, or observations obtained from terrestrial cameras.</documentation>
70
+ </annotation>
71
+ </element>
72
+ <complexType name="DirectedObservationType">
73
+ <complexContent>
74
+ <extension base="gml:ObservationType">
75
+ <sequence>
76
+ <element ref="gml:direction"/>
77
+ </sequence>
78
+ </extension>
79
+ </complexContent>
80
+ </complexType>
81
+ <element name="DirectedObservationAtDistance" type="gml:DirectedObservationAtDistanceType" substitutionGroup="gml:DirectedObservation">
82
+ <annotation>
83
+ <documentation>gml:DirectedObservationAtDistance adds an additional distance property. This is the distance from the observer to the subject of the observation. Clearly this applies only to certain types of observations such as visual observations by people, or observations obtained from terrestrial cameras.</documentation>
84
+ </annotation>
85
+ </element>
86
+ <complexType name="DirectedObservationAtDistanceType">
87
+ <complexContent>
88
+ <extension base="gml:DirectedObservationType">
89
+ <sequence>
90
+ <element name="distance" type="gml:MeasureType"/>
91
+ </sequence>
92
+ </extension>
93
+ </complexContent>
94
+ </complexType>
95
+ </schema>
@@ -0,0 +1,70 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <schema targetNamespace="http://www.opengis.net/gml/3.2" elementFormDefault="qualified" xml:lang="en" xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns="http://www.w3.org/2001/XMLSchema" version="3.2.1.2">
3
+ <annotation>
4
+ <appinfo source="urn:x-ogc:specification:gml:schema-xsd:referenceSystems:3.2.1">referenceSystems.xsd</appinfo>
5
+ <documentation>See ISO/DIS 19136 13.2.
6
+ The reference systems schema components have two logical parts, which define elements and types for XML encoding of the definitions of:
7
+ - Identified Object, inherited by the ten types of GML objects used for coordinate reference systems and coordinate operations
8
+ - High-level part of the definitions of coordinate reference systems
9
+ This schema encodes the Identified Object and Reference System packages of the UML Model for ISO 19111.
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="dictionary.xsd"/>
18
+ <import namespace="http://www.isotc211.org/2005/gmd" schemaLocation="http://schemas.opengis.net/iso/19139/20070417/gmd/gmd.xsd"/>
19
+ <complexType name="IdentifiedObjectType" abstract="true">
20
+ <annotation>
21
+ <documentation>gml:IdentifiedObjectType provides identification properties of a CRS-related object. In gml:DefinitionType, the gml:identifier element shall be the primary name by which this object is identified, encoding the "name" attribute in the UML model.
22
+ Zero or more of the gml:name elements can be an unordered set of "identifiers", encoding the "identifier" attribute in the UML model. Each of these gml:name elements can reference elsewhere the object's defining information or be an identifier by which this object can be referenced.
23
+ Zero or more other gml:name elements can be an unordered set of "alias" alternative names by which this CRS related object is identified, encoding the "alias" attributes in the UML model. An object may have several aliases, typically used in different contexts. The context for an alias is indicated by the value of its (optional) codeSpace attribute.
24
+ Any needed version information shall be included in the codeSpace attribute of a gml:identifier and gml:name elements. In this use, the gml:remarks element in the gml:DefinitionType shall contain comments on or information about this object, including data source information.</documentation>
25
+ </annotation>
26
+ <complexContent>
27
+ <extension base="gml:DefinitionType"/>
28
+ </complexContent>
29
+ </complexType>
30
+ <element name="AbstractCRS" type="gml:AbstractCRSType" abstract="true" substitutionGroup="gml:Definition">
31
+ <annotation>
32
+ <documentation>gml:AbstractCRS specifies a coordinate reference system which is usually single but may be compound. This abstract complex type shall not be used, extended, or restricted, in a GML Application Schema, to define a concrete subtype with a meaning equivalent to a concrete subtype specified in this document.</documentation>
33
+ </annotation>
34
+ </element>
35
+ <complexType name="AbstractCRSType" abstract="true">
36
+ <complexContent>
37
+ <extension base="gml:IdentifiedObjectType">
38
+ <sequence>
39
+ <element ref="gml:domainOfValidity" minOccurs="0" maxOccurs="unbounded"/>
40
+ <element ref="gml:scope" maxOccurs="unbounded"/>
41
+ </sequence>
42
+ </extension>
43
+ </complexContent>
44
+ </complexType>
45
+ <element name="domainOfValidity">
46
+ <annotation>
47
+ <documentation>The gml:domainOfValidity property implements an association role to an EX_Extent object as encoded in ISO/TS 19139, either referencing or containing the definition of that extent.</documentation>
48
+ </annotation>
49
+ <complexType>
50
+ <sequence minOccurs="0">
51
+ <element ref="gmd:EX_Extent"/>
52
+ </sequence>
53
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
54
+ </complexType>
55
+ </element>
56
+ <element name="scope" type="string">
57
+ <annotation>
58
+ <documentation>The gml:scope property provides a description of the usage, or limitations of usage, for which this CRS-related object is valid. If unknown, enter "not known".</documentation>
59
+ </annotation>
60
+ </element>
61
+ <complexType name="CRSPropertyType">
62
+ <annotation>
63
+ <documentation>gml:CRSPropertyType is a property type for association roles to a CRS abstract coordinate reference system, either referencing or containing the definition of that CRS.</documentation>
64
+ </annotation>
65
+ <sequence minOccurs="0">
66
+ <element ref="gml:AbstractCRS"/>
67
+ </sequence>
68
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
69
+ </complexType>
70
+ </schema>
@@ -0,0 +1,269 @@
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" version="3.2.1.2">
3
+ <annotation>
4
+ <appinfo source="urn:x-ogc:specification:gml:schema-xsd:temporal:3.2.1">temporal.xsd</appinfo>
5
+ <documentation>See ISO/DIS 19136 15.2.
6
+ The GML temporal schemas include components for describing temporal geometry and topology, temporal reference systems, and the temporal characteristics of geographic data. The model underlying the representation constitutes a profile of the conceptual schema described in ISO 19108. The underlying spatiotemporal model strives to accommodate both feature-level and attribute-level time stamping; basic support for tracking moving objects is also included.
7
+ Time is measured on two types of scales: interval and ordinal. An interval scale offers a basis for measuring duration, an ordinal scale provides information only about relative position in time.
8
+ Two other ISO standards are relevant to describing temporal objects: ISO 8601 describes encodings for time instants and time periods, as text strings with particular structure and punctuation; ISO 11404 provides a detailed description of time intervals as part of a general discussion of language independent datatypes.
9
+ The temporal schemas cover two interrelated topics and provide basic schema components for representing temporal instants and periods, temporal topology, and reference systems; more specialized schema components defines components used for dynamic features. Instances of temporal geometric types are used as values for the temporal properties of geographic features.
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="gmlBase.xsd"/>
18
+ <element name="AbstractTimeObject" type="gml:AbstractTimeObjectType" abstract="true" substitutionGroup="gml:AbstractGML">
19
+ <annotation>
20
+ <documentation>gml:AbstractTimeObject acts as the head of a substitution group for all temporal primitives and complexes.</documentation>
21
+ </annotation>
22
+ </element>
23
+ <complexType name="AbstractTimeObjectType" abstract="true">
24
+ <complexContent>
25
+ <extension base="gml:AbstractGMLType"/>
26
+ </complexContent>
27
+ </complexType>
28
+ <element name="AbstractTimePrimitive" type="gml:AbstractTimePrimitiveType" abstract="true" substitutionGroup="gml:AbstractTimeObject">
29
+ <annotation>
30
+ <documentation>gml:AbstractTimePrimitive acts as the head of a substitution group for geometric and topological temporal primitives.</documentation>
31
+ </annotation>
32
+ </element>
33
+ <complexType name="AbstractTimePrimitiveType" abstract="true">
34
+ <complexContent>
35
+ <extension base="gml:AbstractTimeObjectType">
36
+ <sequence>
37
+ <element name="relatedTime" type="gml:RelatedTimeType" minOccurs="0" maxOccurs="unbounded"/>
38
+ </sequence>
39
+ </extension>
40
+ </complexContent>
41
+ </complexType>
42
+ <complexType name="TimePrimitivePropertyType">
43
+ <annotation>
44
+ <documentation>gml:TimePrimitivePropertyType provides a standard content model for associations between an arbitrary member of the substitution group whose head is gml:AbstractTimePrimitive and another object.</documentation>
45
+ </annotation>
46
+ <sequence minOccurs="0">
47
+ <element ref="gml:AbstractTimePrimitive"/>
48
+ </sequence>
49
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
50
+ <attributeGroup ref="gml:OwnershipAttributeGroup"/>
51
+ </complexType>
52
+ <element name="validTime" type="gml:TimePrimitivePropertyType">
53
+ <annotation>
54
+ <documentation>gml:validTime is a convenience property element.</documentation>
55
+ </annotation>
56
+ </element>
57
+ <complexType name="RelatedTimeType">
58
+ <annotation>
59
+ <documentation>gml:RelatedTimeType provides a content model for indicating the relative position of an arbitrary member of the substitution group whose head is gml:AbstractTimePrimitive. It extends the generic gml:TimePrimitivePropertyType with an XML attribute relativePosition, whose value is selected from the set of 13 temporal relationships identified by Allen (1983)</documentation>
60
+ </annotation>
61
+ <complexContent>
62
+ <extension base="gml:TimePrimitivePropertyType">
63
+ <attribute name="relativePosition">
64
+ <simpleType>
65
+ <restriction base="string">
66
+ <enumeration value="Before"/>
67
+ <enumeration value="After"/>
68
+ <enumeration value="Begins"/>
69
+ <enumeration value="Ends"/>
70
+ <enumeration value="During"/>
71
+ <enumeration value="Equals"/>
72
+ <enumeration value="Contains"/>
73
+ <enumeration value="Overlaps"/>
74
+ <enumeration value="Meets"/>
75
+ <enumeration value="OverlappedBy"/>
76
+ <enumeration value="MetBy"/>
77
+ <enumeration value="BegunBy"/>
78
+ <enumeration value="EndedBy"/>
79
+ </restriction>
80
+ </simpleType>
81
+ </attribute>
82
+ </extension>
83
+ </complexContent>
84
+ </complexType>
85
+ <element name="AbstractTimeComplex" type="gml:AbstractTimeComplexType" abstract="true" substitutionGroup="gml:AbstractTimeObject">
86
+ <annotation>
87
+ <documentation>gml:AbstractTimeComplex is an aggregation of temporal primitives and acts as the head of a substitution group for temporal complexes.</documentation>
88
+ </annotation>
89
+ </element>
90
+ <complexType name="AbstractTimeComplexType" abstract="true">
91
+ <complexContent>
92
+ <extension base="gml:AbstractTimeObjectType"/>
93
+ </complexContent>
94
+ </complexType>
95
+ <element name="AbstractTimeGeometricPrimitive" type="gml:AbstractTimeGeometricPrimitiveType" abstract="true" substitutionGroup="gml:AbstractTimePrimitive">
96
+ <annotation>
97
+ <documentation>gml:TimeGeometricPrimitive acts as the head of a substitution group for geometric temporal primitives.
98
+ A temporal geometry shall be associated with a temporal reference system through the frame attribute that provides a URI reference that identifies a description of the reference system. Following ISO 19108, the Gregorian calendar with UTC is the default reference system, but others may also be used. The GPS calendar is an alternative reference systems in common use.
99
+ The two geometric primitives in the temporal dimension are the instant and the period. GML components are defined to support these as follows.</documentation>
100
+ </annotation>
101
+ </element>
102
+ <complexType name="AbstractTimeGeometricPrimitiveType" abstract="true">
103
+ <complexContent>
104
+ <extension base="gml:AbstractTimePrimitiveType">
105
+ <attribute name="frame" type="anyURI" default="#ISO-8601"/>
106
+ </extension>
107
+ </complexContent>
108
+ </complexType>
109
+ <element name="TimeInstant" type="gml:TimeInstantType" substitutionGroup="gml:AbstractTimeGeometricPrimitive">
110
+ <annotation>
111
+ <documentation>gml:TimeInstant acts as a zero-dimensional geometric primitive that represents an identifiable position in time.</documentation>
112
+ </annotation>
113
+ </element>
114
+ <complexType name="TimeInstantType" final="#all">
115
+ <complexContent>
116
+ <extension base="gml:AbstractTimeGeometricPrimitiveType">
117
+ <sequence>
118
+ <element ref="gml:timePosition"/>
119
+ </sequence>
120
+ </extension>
121
+ </complexContent>
122
+ </complexType>
123
+ <complexType name="TimeInstantPropertyType">
124
+ <annotation>
125
+ <documentation>gml:TimeInstantPropertyType provides for associating a gml:TimeInstant with an object.</documentation>
126
+ </annotation>
127
+ <sequence minOccurs="0">
128
+ <element ref="gml:TimeInstant"/>
129
+ </sequence>
130
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
131
+ <attributeGroup ref="gml:OwnershipAttributeGroup"/>
132
+ </complexType>
133
+ <element name="TimePeriod" type="gml:TimePeriodType" substitutionGroup="gml:AbstractTimeGeometricPrimitive">
134
+ <annotation>
135
+ <documentation>gml:TimePeriod acts as a one-dimensional geometric primitive that represents an identifiable extent in time.
136
+ The location in of a gml:TimePeriod is described by the temporal positions of the instants at which it begins and ends. The length of the period is equal to the temporal distance between the two bounding temporal positions.
137
+ Both beginning and end may be described in terms of their direct position using gml:TimePositionType which is an XML Schema simple content type, or by reference to an indentifiable time instant using gml:TimeInstantPropertyType.
138
+ Alternatively a limit of a gml:TimePeriod may use the conventional GML property model to make a reference to a time instant described elsewhere, or a limit may be indicated as a direct position.</documentation>
139
+ </annotation>
140
+ </element>
141
+ <complexType name="TimePeriodType">
142
+ <complexContent>
143
+ <extension base="gml:AbstractTimeGeometricPrimitiveType">
144
+ <sequence>
145
+ <choice>
146
+ <element name="beginPosition" type="gml:TimePositionType"/>
147
+ <element name="begin" type="gml:TimeInstantPropertyType"/>
148
+ </choice>
149
+ <choice>
150
+ <element name="endPosition" type="gml:TimePositionType"/>
151
+ <element name="end" type="gml:TimeInstantPropertyType"/>
152
+ </choice>
153
+ <group ref="gml:timeLength" minOccurs="0"/>
154
+ </sequence>
155
+ </extension>
156
+ </complexContent>
157
+ </complexType>
158
+ <complexType name="TimePeriodPropertyType">
159
+ <annotation>
160
+ <documentation>gml:TimePeriodPropertyType provides for associating a gml:TimePeriod with an object.</documentation>
161
+ </annotation>
162
+ <sequence minOccurs="0">
163
+ <element ref="gml:TimePeriod"/>
164
+ </sequence>
165
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
166
+ <attributeGroup ref="gml:OwnershipAttributeGroup"/>
167
+ </complexType>
168
+ <complexType name="TimePositionType" final="#all">
169
+ <annotation>
170
+ <documentation>The method for identifying a temporal position is specific to each temporal reference system. gml:TimePositionType supports the description of temporal position according to the subtypes described in ISO 19108.
171
+ Values based on calendars and clocks use lexical formats that are based on ISO 8601, as described in XML Schema Part 2:2001. A decimal value may be used with coordinate systems such as GPS time or UNIX time. A URI may be used to provide a reference to some era in an ordinal reference system .
172
+ In common with many of the components modelled as data types in the ISO 19100 series of International Standards, the corresponding GML component has simple content. However, the content model gml:TimePositionType is defined in several steps.
173
+ Three XML attributes appear on gml:TimePositionType:
174
+ A time value shall be associated with a temporal reference system through the frame attribute that provides a URI reference that identifies a description of the reference system. Following ISO 19108, the Gregorian calendar with UTC is the default reference system, but others may also be used. Components for describing temporal reference systems are described in 14.4, but it is not required that the reference system be described in this, as the reference may refer to anything that may be indentified with a URI.
175
+ For time values using a calendar containing more than one era, the (optional) calendarEraName attribute provides the name of the calendar era.
176
+ Inexact temporal positions may be expressed using the optional indeterminatePosition attribute. This takes a value from an enumeration.</documentation>
177
+ </annotation>
178
+ <simpleContent>
179
+ <extension base="gml:TimePositionUnion">
180
+ <attribute name="frame" type="anyURI" default="#ISO-8601"/>
181
+ <attribute name="calendarEraName" type="string"/>
182
+ <attribute name="indeterminatePosition" type="gml:TimeIndeterminateValueType"/>
183
+ </extension>
184
+ </simpleContent>
185
+ </complexType>
186
+ <simpleType name="TimeIndeterminateValueType">
187
+ <annotation>
188
+ <documentation>These values are interpreted as follows:
189
+ - "unknown" indicates that no specific value for temporal position is provided.
190
+ - "now" indicates that the specified value shall be replaced with the current temporal position whenever the value is accessed.
191
+ - "before" indicates that the actual temporal position is unknown, but it is known to be before the specified value.
192
+ - "after" indicates that the actual temporal position is unknown, but it is known to be after the specified value.
193
+ A value for indeterminatePosition may
194
+ - be used either alone, or
195
+ - qualify a specific value for temporal position.</documentation>
196
+ </annotation>
197
+ <restriction base="string">
198
+ <enumeration value="after"/>
199
+ <enumeration value="before"/>
200
+ <enumeration value="now"/>
201
+ <enumeration value="unknown"/>
202
+ </restriction>
203
+ </simpleType>
204
+ <simpleType name="TimePositionUnion">
205
+ <annotation>
206
+ <documentation>The simple type gml:TimePositionUnion is a union of XML Schema simple types which instantiate the subtypes for temporal position described in ISO 19108.
207
+ An ordinal era may be referenced via URI. A decimal value may be used to indicate the distance from the scale origin . time is used for a position that recurs daily (see ISO 19108:2002 5.4.4.2).
208
+ Finally, calendar and clock forms that support the representation of time in systems based on years, months, days, hours, minutes and seconds, in a notation following ISO 8601, are assembled by gml:CalDate</documentation>
209
+ </annotation>
210
+ <union memberTypes="gml:CalDate time dateTime anyURI decimal"/>
211
+ </simpleType>
212
+ <simpleType name="CalDate">
213
+ <union memberTypes="date gYearMonth gYear"/>
214
+ </simpleType>
215
+ <element name="timePosition" type="gml:TimePositionType">
216
+ <annotation>
217
+ <documentation>This element is used directly as a property of gml:TimeInstant (see 15.2.2.3), and may also be used in application schemas.</documentation>
218
+ </annotation>
219
+ </element>
220
+ <group name="timeLength">
221
+ <annotation>
222
+ <documentation>The length of a time period.</documentation>
223
+ </annotation>
224
+ <choice>
225
+ <element ref="gml:duration"/>
226
+ <element ref="gml:timeInterval"/>
227
+ </choice>
228
+ </group>
229
+ <element name="duration" type="duration">
230
+ <annotation>
231
+ <documentation>gml:duration conforms to the ISO 8601 syntax for temporal length as implemented by the XML Schema duration type.</documentation>
232
+ </annotation>
233
+ </element>
234
+ <element name="timeInterval" type="gml:TimeIntervalLengthType">
235
+ <annotation>
236
+ <documentation> gml:timeInterval conforms to ISO 11404 which is based on floating point values for temporal length.
237
+ ISO 11404 syntax specifies the use of a positiveInteger together with appropriate values for radix and factor. The resolution of the time interval is to one radix ^(-factor) of the specified time unit.
238
+ The value of the unit is either selected from the units for time intervals from ISO 31-1:1992, or is another suitable unit. The encoding is defined for GML in gml:TimeUnitType. The second component of this union type provides a method for indicating time units other than the six standard units given in the enumeration.</documentation>
239
+ </annotation>
240
+ </element>
241
+ <complexType name="TimeIntervalLengthType" final="#all">
242
+ <simpleContent>
243
+ <extension base="decimal">
244
+ <attribute name="unit" type="gml:TimeUnitType" use="required"/>
245
+ <attribute name="radix" type="positiveInteger"/>
246
+ <attribute name="factor" type="integer"/>
247
+ </extension>
248
+ </simpleContent>
249
+ </complexType>
250
+ <simpleType name="TimeUnitType">
251
+ <union>
252
+ <simpleType>
253
+ <restriction base="string">
254
+ <enumeration value="year"/>
255
+ <enumeration value="month"/>
256
+ <enumeration value="day"/>
257
+ <enumeration value="hour"/>
258
+ <enumeration value="minute"/>
259
+ <enumeration value="second"/>
260
+ </restriction>
261
+ </simpleType>
262
+ <simpleType>
263
+ <restriction base="string">
264
+ <pattern value="other:\w{2,}"/>
265
+ </restriction>
266
+ </simpleType>
267
+ </union>
268
+ </simpleType>
269
+ </schema>