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,90 @@
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" version="3.2.1.2">
3
+ <annotation>
4
+ <appinfo source="urn:opengis:specification:gml:schema-xsd:dictionary:v3.2.1">dictionary.xsd</appinfo>
5
+ <documentation>See ISO/DIS 19136 Clause 16.
6
+ Many applications require definitions of terms which are used within instance documents as the values of certain properties or as reference information to tie properties to standard information values in some way. Units of measure and descriptions of measurable phenomena are two particular examples.
7
+ It will often be convenient to use definitions provided by external authorities. These may already be packaged for delivery in various ways, both online and offline. In order that they may be referred to from GML documents it is generally necessary that a URI be available for each definition. Where this is the case then it is usually preferable to refer to these directly.
8
+ Alternatively, it may be convenient or necessary to capture definitions in XML, either embedded within an instance document containing features or as a separate document. The definitions may be transcriptions from an external source, or may be new definitions for a local purpose. In order to support this case, some simple components are provided in GML in the form of
9
+ - a generic gml:Definition, which may serve as the basis for more specialized definitions
10
+ - a generic gml:Dictionary, which allows a set of definitions or references to definitions to be collected
11
+ These components may be used directly, but also serve as the basis for more specialised definition elements in GML, in particular: coordinate operations, coordinate reference systems, datums, temporal reference systems, and units of measure.
12
+ Note that the GML definition and dictionary components implement a simple nested hierarchy of definitions with identifiers. The latter provide handles which may be used in the description of more complex relationships between terms. However, the GML dictionary components are not intended to provide direct support for complex taxonomies, ontologies or thesauri. Specialised XML tools are available to satisfy the more sophisticated requirements.
13
+
14
+ GML is an OGC Standard.
15
+ Copyright (c) 2007,2010 Open Geospatial Consortium.
16
+ To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
17
+ </documentation>
18
+ </annotation>
19
+ <include schemaLocation="gml.xsd"/>
20
+ <include schemaLocation="gmlBase.xsd"/>
21
+ <element name="Definition" type="gml:DefinitionType" substitutionGroup="gml:AbstractGML">
22
+ <annotation>
23
+ <documentation>The basic gml:Definition element specifies a definition, which can be included in or referenced by a dictionary.
24
+ The content model for a generic definition is a derivation from gml:AbstractGMLType.
25
+ The gml:description property element shall hold the definition if this can be captured in a simple text string, or the gml:descriptionReference property element may carry a link to a description elsewhere.
26
+ The gml:identifier element shall provide one identifier identifying this definition. The identifier shall be unique within the dictionaries using this definition.
27
+ The gml:name elements shall provide zero or more terms and synonyms for which this is the definition.
28
+ The gml:remarks element shall be used to hold additional textual information that is not conceptually part of the definition but is useful in understanding the definition.</documentation>
29
+ </annotation>
30
+ </element>
31
+ <complexType name="DefinitionBaseType">
32
+ <complexContent>
33
+ <restriction base="gml:AbstractGMLType">
34
+ <sequence>
35
+ <element ref="gml:metaDataProperty" minOccurs="0" maxOccurs="unbounded"/>
36
+ <element ref="gml:description" minOccurs="0"/>
37
+ <element ref="gml:descriptionReference" minOccurs="0"/>
38
+ <element ref="gml:identifier"/>
39
+ <element ref="gml:name" minOccurs="0" maxOccurs="unbounded"/>
40
+ </sequence>
41
+ <attribute ref="gml:id" use="required"/>
42
+ </restriction>
43
+ </complexContent>
44
+ </complexType>
45
+ <complexType name="DefinitionType">
46
+ <complexContent>
47
+ <extension base="gml:DefinitionBaseType">
48
+ <sequence>
49
+ <element ref="gml:remarks" minOccurs="0"/>
50
+ </sequence>
51
+ </extension>
52
+ </complexContent>
53
+ </complexType>
54
+ <element name="remarks" type="string"/>
55
+ <element name="Dictionary" type="gml:DictionaryType" substitutionGroup="gml:Definition">
56
+ <annotation>
57
+ <documentation>Sets of definitions may be collected into dictionaries or collections.
58
+ A gml:Dictionary is a non-abstract collection of definitions.
59
+ The gml:Dictionary content model adds a list of gml:dictionaryEntry properties that contain or reference gml:Definition objects. A database handle (gml:id attribute) is required, in order that this collection may be referred to. The standard gml:identifier, gml:description, gml:descriptionReference and gml:name properties are available to reference or contain more information about this dictionary. The gml:description and gml:descriptionReference property elements may be used for a description of this dictionary. The derived gml:name element may be used for the name(s) of this dictionary. for remote definiton references gml:dictionaryEntry shall be used. If a Definition object contained within a Dictionary uses the descriptionReference property to refer to a remote definition, then this enables the inclusion of a remote definition in a local dictionary, giving a handle and identifier in the context of the local dictionary.</documentation>
60
+ </annotation>
61
+ </element>
62
+ <complexType name="DictionaryType">
63
+ <complexContent>
64
+ <extension base="gml:DefinitionType">
65
+ <choice minOccurs="0" maxOccurs="unbounded">
66
+ <element ref="gml:dictionaryEntry"/>
67
+ <element ref="gml:indirectEntry"/>
68
+ </choice>
69
+ <attributeGroup ref="gml:AggregationAttributeGroup"/>
70
+ </extension>
71
+ </complexContent>
72
+ </complexType>
73
+ <element name="dictionaryEntry" type="gml:DictionaryEntryType">
74
+ <annotation>
75
+ <documentation>This property element contains or refers to the definitions which are members of a dictionary.
76
+ The content model follows the standard GML property pattern, so a gml:dictionaryEntry may either contain or refer to a single gml:Definition. Since gml:Dictionary is substitutable for gml:Definition, the content of an entry may itself be a lower level dictionary.
77
+ Note that if the value is provided by reference, this definition does not carry a handle (gml:id) in this context, so does not allow external references to this specific definition in this context. When used in this way the referenced definition will usually be in a dictionary in the same XML document.</documentation>
78
+ </annotation>
79
+ </element>
80
+ <complexType name="DictionaryEntryType">
81
+ <complexContent>
82
+ <extension base="gml:AbstractMemberType">
83
+ <sequence minOccurs="0">
84
+ <element ref="gml:Definition"/>
85
+ </sequence>
86
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
87
+ </extension>
88
+ </complexContent>
89
+ </complexType>
90
+ </schema>
@@ -0,0 +1,84 @@
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" attributeFormDefault="unqualified" version="3.2.1.2">
3
+ <annotation>
4
+ <appinfo source="urn:x-ogc:specification:gml:schema-xsd:direction:3.2.1">direction.xsd</appinfo>
5
+ <documentation>See ISO/DIS 19136 Clause 18.
6
+ The direction schema components provide the GML Application Schema developer with a standard property element to describe direction, and associated objects that may be used to express orientation, direction, heading, bearing or other directional aspects of geographic features.
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="geometryBasic0d1d.xsd"/>
15
+ <element name="direction" type="gml:DirectionPropertyType">
16
+ <annotation>
17
+ <documentation>The property gml:direction is intended as a pre-defined property expressing a direction to be assigned to features defined in a GML application schema.</documentation>
18
+ </annotation>
19
+ </element>
20
+ <complexType name="DirectionPropertyType">
21
+ <choice minOccurs="0">
22
+ <element name="DirectionVector" type="gml:DirectionVectorType"/>
23
+ <element name="DirectionDescription" type="gml:DirectionDescriptionType"/>
24
+ <element name="CompassPoint" type="gml:CompassPointEnumeration"/>
25
+ <element name="DirectionKeyword" type="gml:CodeType"/>
26
+ <element name="DirectionString" type="gml:StringOrRefType"/>
27
+ </choice>
28
+ <attributeGroup ref="gml:OwnershipAttributeGroup"/>
29
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
30
+ </complexType>
31
+ <complexType name="DirectionVectorType">
32
+ <annotation>
33
+ <documentation>Direction vectors are specified by providing components of a vector.</documentation>
34
+ </annotation>
35
+ <choice>
36
+ <element ref="gml:vector"/>
37
+ <sequence>
38
+ <annotation>
39
+ <appinfo>deprecated</appinfo>
40
+ </annotation>
41
+ <element name="horizontalAngle" type="gml:AngleType"/>
42
+ <element name="verticalAngle" type="gml:AngleType"/>
43
+ </sequence>
44
+ </choice>
45
+ </complexType>
46
+ <complexType name="DirectionDescriptionType">
47
+ <annotation>
48
+ <documentation>direction descriptions are specified by a compass point code, a keyword, a textual description or a reference to a description.
49
+ A gml:compassPoint is specified by a simple enumeration.
50
+ In addition, thre elements to contain text-based descriptions of direction are provided.
51
+ If the direction is specified using a term from a list, gml:keyword should be used, and the list indicated using the value of the codeSpace attribute.
52
+ if the direction is decribed in prose, gml:direction or gml:reference should be used, allowing the value to be included inline or by reference.</documentation>
53
+ </annotation>
54
+ <choice>
55
+ <element name="compassPoint" type="gml:CompassPointEnumeration"/>
56
+ <element name="keyword" type="gml:CodeType"/>
57
+ <element name="description" type="string"/>
58
+ <element name="reference" type="gml:ReferenceType"/>
59
+ </choice>
60
+ </complexType>
61
+ <simpleType name="CompassPointEnumeration">
62
+ <annotation>
63
+ <documentation>These directions are necessarily approximate, giving direction with a precision of 22.5°. It is thus generally unnecessary to specify the reference frame, though this may be detailed in the definition of a GML application language.</documentation>
64
+ </annotation>
65
+ <restriction base="string">
66
+ <enumeration value="N"/>
67
+ <enumeration value="NNE"/>
68
+ <enumeration value="NE"/>
69
+ <enumeration value="ENE"/>
70
+ <enumeration value="E"/>
71
+ <enumeration value="ESE"/>
72
+ <enumeration value="SE"/>
73
+ <enumeration value="SSE"/>
74
+ <enumeration value="S"/>
75
+ <enumeration value="SSW"/>
76
+ <enumeration value="SW"/>
77
+ <enumeration value="WSW"/>
78
+ <enumeration value="W"/>
79
+ <enumeration value="WNW"/>
80
+ <enumeration value="NW"/>
81
+ <enumeration value="NNW"/>
82
+ </restriction>
83
+ </simpleType>
84
+ </schema>
@@ -0,0 +1,109 @@
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" version="3.2.1.2">
3
+ <annotation>
4
+ <appinfo source="urn:x-ogc:specification:gml:schema-xsd:dynamicFeature:3.2.1">dynamicFeature.xsd</appinfo>
5
+ <documentation>See ISO/DIS 19136 15.6.
6
+ A number of types and relationships are defined to represent the time-varying properties of geographic features.
7
+ In a comprehensive treatment of spatiotemporal modeling, Langran (see Bibliography) distinguished three principal temporal entities: states, events, and evidence; the schema specified in the following Subclauses incorporates elements for each.
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
+ <element name="dataSource" type="gml:StringOrRefType">
18
+ <annotation>
19
+ <documentation>Evidence is represented by a simple gml:dataSource or gml:dataSourceReference property that indicates the source of the temporal data. The remote link attributes of the gml:dataSource element have been deprecated along with its current type.</documentation>
20
+ </annotation>
21
+ </element>
22
+ <element name="dataSourceReference" type="gml:ReferenceType">
23
+ <annotation>
24
+ <documentation>Evidence is represented by a simple gml:dataSource or gml:dataSourceReference property that indicates the source of the temporal data.</documentation>
25
+ </annotation>
26
+ </element>
27
+ <group name="dynamicProperties">
28
+ <annotation>
29
+ <documentation>A convenience group. This allows an application schema developer to include dynamic properties in a content model in a standard fashion.</documentation>
30
+ </annotation>
31
+ <sequence>
32
+ <element ref="gml:validTime" minOccurs="0"/>
33
+ <element ref="gml:history" minOccurs="0"/>
34
+ <element ref="gml:dataSource" minOccurs="0"/>
35
+ <element ref="gml:dataSourceReference" minOccurs="0"/>
36
+ </sequence>
37
+ </group>
38
+ <element name="DynamicFeature" type="gml:DynamicFeatureType" substitutionGroup="gml:AbstractFeature">
39
+ <annotation>
40
+ <documentation>States are captured by time-stamped instances of a feature. The content model extends the standard gml:AbstractFeatureType with the gml:dynamicProperties model group.
41
+ Each time-stamped instance represents a 'snapshot' of a feature. The dynamic feature classes will normally be extended to suit particular applications. A dynamic feature bears either a time stamp or a history.</documentation>
42
+ </annotation>
43
+ </element>
44
+ <complexType name="DynamicFeatureType">
45
+ <complexContent>
46
+ <extension base="gml:AbstractFeatureType">
47
+ <group ref="gml:dynamicProperties"/>
48
+ </extension>
49
+ </complexContent>
50
+ </complexType>
51
+ <element name="DynamicFeatureCollection" type="gml:DynamicFeatureCollectionType" substitutionGroup="gml:DynamicFeature">
52
+ <annotation>
53
+ <documentation>A gml:DynamicFeatureCollection is a feature collection that has a gml:validTime property (i.e. is a snapshot of the feature collection) or which has a gml:history property that contains one or more gml:AbstractTimeSlices each of which contain values of the time varying properties of the feature collection. Note that the gml:DynamicFeatureCollection may be one of the following:
54
+ 1. A feature collection which consists of static feature members (members do not change in time) but which has properties of the collection object as a whole that do change in time .
55
+ 2. A feature collection which consists of dynamic feature members (the members are gml:DynamicFeatures) but which also has properties of the collection as a whole that vary in time.</documentation>
56
+ </annotation>
57
+ </element>
58
+ <complexType name="DynamicFeatureCollectionType">
59
+ <complexContent>
60
+ <extension base="gml:DynamicFeatureType">
61
+ <sequence>
62
+ <element ref="gml:dynamicMembers"/>
63
+ </sequence>
64
+ </extension>
65
+ </complexContent>
66
+ </complexType>
67
+ <element name="dynamicMembers" type="gml:DynamicFeatureMemberType"/>
68
+ <complexType name="DynamicFeatureMemberType">
69
+ <complexContent>
70
+ <extension base="gml:AbstractFeatureMemberType">
71
+ <sequence>
72
+ <element ref="gml:DynamicFeature" minOccurs="0" maxOccurs="unbounded"/>
73
+ </sequence>
74
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
75
+ </extension>
76
+ </complexContent>
77
+ </complexType>
78
+ <element name="AbstractTimeSlice" type="gml:AbstractTimeSliceType" abstract="true" substitutionGroup="gml:AbstractGML">
79
+ <annotation>
80
+ <documentation>To describe an event — an action that occurs at an instant or over an interval of time — GML provides the gml:AbtractTimeSlice element. A timeslice encapsulates the time-varying properties of a dynamic feature -- it shall be extended to represent a time stamped projection of a specific feature. The gml:dataSource property describes how the temporal data was acquired.
81
+ A gml:AbstractTimeSlice instance is a GML object that encapsulates updates of the dynamic—or volatile—properties that reflect some change event; it thus includes only those feature properties that have actually changed due to some process.
82
+ gml:AbstractTimeSlice basically provides a facility for attribute-level time stamping, in contrast to the object-level time stamping of dynamic feature instances.
83
+ The time slice can thus be viewed as event or process-oriented, whereas a snapshot is more state or structure-oriented. A timeslice has richer causality, whereas a snapshot merely portrays the status of the whole.
84
+ </documentation>
85
+ </annotation>
86
+ </element>
87
+ <complexType name="AbstractTimeSliceType" abstract="true">
88
+ <complexContent>
89
+ <extension base="gml:AbstractGMLType">
90
+ <sequence>
91
+ <element ref="gml:validTime"/>
92
+ <element ref="gml:dataSource" minOccurs="0"/>
93
+ </sequence>
94
+ </extension>
95
+ </complexContent>
96
+ </complexType>
97
+ <element name="history" type="gml:HistoryPropertyType">
98
+ <annotation>
99
+ <documentation>A generic sequence of events constitute a gml:history of an object.
100
+ The gml:history element contains a set of elements in the substitution group headed by the abstract element gml:AbstractTimeSlice, representing the time-varying properties of interest. The history property of a dynamic feature associates a feature instance with a sequence of time slices (i.e. change events) that encapsulate the evolution of the feature.</documentation>
101
+ </annotation>
102
+ </element>
103
+ <complexType name="HistoryPropertyType">
104
+ <sequence>
105
+ <element ref="gml:AbstractTimeSlice" maxOccurs="unbounded"/>
106
+ </sequence>
107
+ <attributeGroup ref="gml:OwnershipAttributeGroup"/>
108
+ </complexType>
109
+ </schema>
@@ -0,0 +1,94 @@
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" version="3.2.1.2">
3
+ <annotation>
4
+ <appinfo source="urn:x-ogc:specification:gml:schema-xsd:feature:3.2.1">feature.xsd</appinfo>
5
+ <documentation>See ISO/DIS 19136 Clause 9.
6
+ A GML feature is a (representation of a) identifiable real-world object in a selected domain of discourse. The feature schema provides a framework for the creation of GML features and feature collections.
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="geometryAggregates.xsd"/>
15
+ <include schemaLocation="temporal.xsd"/>
16
+ <complexType name="AbstractFeatureType" abstract="true">
17
+ <annotation>
18
+ <documentation>The basic feature model is given by the gml:AbstractFeatureType.
19
+ The content model for gml:AbstractFeatureType adds two specific properties suitable for geographic features to the content model defined in gml:AbstractGMLType.
20
+ The value of the gml:boundedBy property describes an envelope that encloses the entire feature instance, and is primarily useful for supporting rapid searching for features that occur in a particular location.
21
+ The value of the gml:location property describes the extent, position or relative location of the feature.</documentation>
22
+ </annotation>
23
+ <complexContent>
24
+ <extension base="gml:AbstractGMLType">
25
+ <sequence>
26
+ <element ref="gml:boundedBy" minOccurs="0"/>
27
+ <element ref="gml:location" minOccurs="0"/>
28
+ </sequence>
29
+ </extension>
30
+ </complexContent>
31
+ </complexType>
32
+ <element name="AbstractFeature" type="gml:AbstractFeatureType" abstract="true" substitutionGroup="gml:AbstractGML">
33
+ <annotation>
34
+ <documentation>This abstract element serves as the head of a substitution group which may contain any elements whose content model is derived from gml:AbstractFeatureType. This may be used as a variable in the construction of content models.
35
+ gml:AbstractFeature may be thought of as "anything that is a GML feature" and may be used to define variables or templates in which the value of a GML property is "any feature". This occurs in particular in a GML feature collection where the feature member properties contain one or multiple copies of gml:AbstractFeature respectively.</documentation>
36
+ </annotation>
37
+ </element>
38
+ <complexType name="FeaturePropertyType">
39
+ <sequence minOccurs="0">
40
+ <element ref="gml:AbstractFeature"/>
41
+ </sequence>
42
+ <attributeGroup ref="gml:OwnershipAttributeGroup"/>
43
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
44
+ </complexType>
45
+ <element name="boundedBy" type="gml:BoundingShapeType" nillable="true">
46
+ <annotation>
47
+ <documentation>This property describes the minimum bounding box or rectangle that encloses the entire feature.</documentation>
48
+ </annotation>
49
+ </element>
50
+ <complexType name="BoundingShapeType">
51
+ <sequence>
52
+ <choice>
53
+ <element ref="gml:Envelope"/>
54
+ <element ref="gml:Null"/>
55
+ </choice>
56
+ </sequence>
57
+ <attribute name="nilReason" type="gml:NilReasonType"/>
58
+ </complexType>
59
+ <element name="EnvelopeWithTimePeriod" type="gml:EnvelopeWithTimePeriodType" substitutionGroup="gml:Envelope">
60
+ <annotation>
61
+ <documentation>gml:EnvelopeWithTimePeriod is provided for envelopes that include a temporal extent. It adds two time position properties, gml:beginPosition and gml:endPosition, which describe the extent of a time-envelope.
62
+ Since gml:EnvelopeWithTimePeriod is assigned to the substitution group headed by gml:Envelope, it may be used whenever gml:Envelope is valid.</documentation>
63
+ </annotation>
64
+ </element>
65
+ <complexType name="EnvelopeWithTimePeriodType">
66
+ <complexContent>
67
+ <extension base="gml:EnvelopeType">
68
+ <sequence>
69
+ <element name="beginPosition" type="gml:TimePositionType"/>
70
+ <element name="endPosition" type="gml:TimePositionType"/>
71
+ </sequence>
72
+ <attribute name="frame" type="anyURI" default="#ISO-8601"/>
73
+ </extension>
74
+ </complexContent>
75
+ </complexType>
76
+ <element name="locationName" type="gml:CodeType">
77
+ <annotation>
78
+ <documentation>The gml:locationName property element is a convenience property where the text value describes the location of the feature. If the location names are selected from a controlled list, then the list shall be identified in the codeSpace attribute.</documentation>
79
+ </annotation>
80
+ </element>
81
+ <element name="locationReference" type="gml:ReferenceType">
82
+ <annotation>
83
+ <documentation>The gml:locationReference property element is a convenience property where the text value referenced by the xlink:href attribute describes the location of the feature.</documentation>
84
+ </annotation>
85
+ </element>
86
+ <complexType name="AbstractFeatureMemberType" abstract="true">
87
+ <annotation>
88
+ <documentation>To create a collection of GML features, a property type shall be derived by extension from gml:AbstractFeatureMemberType.
89
+ By default, this abstract property type does not imply any ownership of the features in the collection. The owns attribute of gml:OwnershipAttributeGroup may be used on a property element instance to assert ownership of a feature in the collection. A collection shall not own a feature already owned by another object.</documentation>
90
+ </annotation>
91
+ <sequence/>
92
+ <attributeGroup ref="gml:OwnershipAttributeGroup"/>
93
+ </complexType>
94
+ </schema>
@@ -0,0 +1,197 @@
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:gml="http://www.opengis.net/gml/3.2" xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="3.2.1.2">
3
+ <annotation>
4
+ <appinfo source="urn:x-ogc:specification:gml:schema-xsd:geometryAggregates:3.2.1">geometryAggregates.xsd</appinfo>
5
+ <documentation>See ISO/DIS 19136 12.3.
6
+ Geometric aggregates (i.e. instances of a subtype of gml:AbstractGeometricAggregateType) are arbitrary aggregations of geometry elements. They are not assumed to have any additional internal structure and are used to "collect" pieces of geometry of a specified type. Application schemas may use aggregates for features that use multiple geometric objects in their representations.
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="geometryPrimitives.xsd"/>
15
+ <complexType name="AbstractGeometricAggregateType" abstract="true">
16
+ <complexContent>
17
+ <extension base="gml:AbstractGeometryType">
18
+ <attributeGroup ref="gml:AggregationAttributeGroup"/>
19
+ </extension>
20
+ </complexContent>
21
+ </complexType>
22
+ <element name="AbstractGeometricAggregate" type="gml:AbstractGeometricAggregateType" abstract="true" substitutionGroup="gml:AbstractGeometry">
23
+ <annotation>
24
+ <documentation>gml:AbstractGeometricAggregate is the abstract head of the substitution group for all geometric aggregates.</documentation>
25
+ </annotation>
26
+ </element>
27
+ <complexType name="MultiGeometryType">
28
+ <complexContent>
29
+ <extension base="gml:AbstractGeometricAggregateType">
30
+ <sequence>
31
+ <element ref="gml:geometryMember" minOccurs="0" maxOccurs="unbounded"/>
32
+ <element ref="gml:geometryMembers" minOccurs="0"/>
33
+ </sequence>
34
+ </extension>
35
+ </complexContent>
36
+ </complexType>
37
+ <element name="MultiGeometry" type="gml:MultiGeometryType" substitutionGroup="gml:AbstractGeometricAggregate">
38
+ <annotation>
39
+ <documentation>gml:MultiGeometry is a collection of one or more GML geometry objects of arbitrary type.
40
+ The members of the geometric aggregate may be specified either using the "standard" property (gml:geometryMember) or the array property (gml:geometryMembers). It is also valid to use both the "standard" and the array properties in the same collection.</documentation>
41
+ </annotation>
42
+ </element>
43
+ <element name="geometryMember" type="gml:GeometryPropertyType">
44
+ <annotation>
45
+ <documentation>This property element either references a geometry element via the XLink-attributes or contains the geometry element.</documentation>
46
+ </annotation>
47
+ </element>
48
+ <element name="geometryMembers" type="gml:GeometryArrayPropertyType">
49
+ <annotation>
50
+ <documentation>This property element contains a list of geometry elements. The order of the elements is significant and shall be preserved when processing the array.</documentation>
51
+ </annotation>
52
+ </element>
53
+ <complexType name="MultiGeometryPropertyType">
54
+ <annotation>
55
+ <documentation>A property that has a geometric aggregate as its value domain may either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element shall be given, but neither both nor none.</documentation>
56
+ </annotation>
57
+ <sequence minOccurs="0">
58
+ <element ref="gml:AbstractGeometricAggregate"/>
59
+ </sequence>
60
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
61
+ <attributeGroup ref="gml:OwnershipAttributeGroup"/>
62
+ </complexType>
63
+ <complexType name="MultiPointType">
64
+ <complexContent>
65
+ <extension base="gml:AbstractGeometricAggregateType">
66
+ <sequence>
67
+ <element ref="gml:pointMember" minOccurs="0" maxOccurs="unbounded"/>
68
+ <element ref="gml:pointMembers" minOccurs="0"/>
69
+ </sequence>
70
+ </extension>
71
+ </complexContent>
72
+ </complexType>
73
+ <element name="MultiPoint" type="gml:MultiPointType" substitutionGroup="gml:AbstractGeometricAggregate">
74
+ <annotation>
75
+ <documentation>A gml:MultiPoint consists of one or more gml:Points.
76
+ The members of the geometric aggregate may be specified either using the "standard" property (gml:pointMember) or the array property (gml:pointMembers). It is also valid to use both the "standard" and the array properties in the same collection.</documentation>
77
+ </annotation>
78
+ </element>
79
+ <element name="pointMember" type="gml:PointPropertyType">
80
+ <annotation>
81
+ <documentation>This property element either references a Point via the XLink-attributes or contains the Point element.</documentation>
82
+ </annotation>
83
+ </element>
84
+ <element name="pointMembers" type="gml:PointArrayPropertyType">
85
+ <annotation>
86
+ <documentation>This property element contains a list of points. The order of the elements is significant and shall be preserved when processing the array.</documentation>
87
+ </annotation>
88
+ </element>
89
+ <complexType name="MultiPointPropertyType">
90
+ <annotation>
91
+ <documentation>A property that has a collection of points as its value domain may either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element shall be given, but neither both nor none.</documentation>
92
+ </annotation>
93
+ <sequence minOccurs="0">
94
+ <element ref="gml:MultiPoint"/>
95
+ </sequence>
96
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
97
+ <attributeGroup ref="gml:OwnershipAttributeGroup"/>
98
+ </complexType>
99
+ <complexType name="MultiCurveType">
100
+ <complexContent>
101
+ <extension base="gml:AbstractGeometricAggregateType">
102
+ <sequence>
103
+ <element ref="gml:curveMember" minOccurs="0" maxOccurs="unbounded"/>
104
+ <element ref="gml:curveMembers" minOccurs="0"/>
105
+ </sequence>
106
+ </extension>
107
+ </complexContent>
108
+ </complexType>
109
+ <element name="MultiCurve" type="gml:MultiCurveType" substitutionGroup="gml:AbstractGeometricAggregate">
110
+ <annotation>
111
+ <documentation>A gml:MultiCurve is defined by one or more gml:AbstractCurves.
112
+ The members of the geometric aggregate may be specified either using the "standard" property (gml:curveMember) or the array property (gml:curveMembers). It is also valid to use both the "standard" and the array properties in the same collection.</documentation>
113
+ </annotation>
114
+ </element>
115
+ <element name="curveMembers" type="gml:CurveArrayPropertyType">
116
+ <annotation>
117
+ <documentation>This property element contains a list of curves. The order of the elements is significant and shall be preserved when processing the array.</documentation>
118
+ </annotation>
119
+ </element>
120
+ <complexType name="MultiCurvePropertyType">
121
+ <annotation>
122
+ <documentation>A property that has a collection of curves as its value domain may either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element shall be given, but neither both nor none.</documentation>
123
+ </annotation>
124
+ <sequence minOccurs="0">
125
+ <element ref="gml:MultiCurve"/>
126
+ </sequence>
127
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
128
+ <attributeGroup ref="gml:OwnershipAttributeGroup"/>
129
+ </complexType>
130
+ <complexType name="MultiSurfaceType">
131
+ <complexContent>
132
+ <extension base="gml:AbstractGeometricAggregateType">
133
+ <sequence>
134
+ <element ref="gml:surfaceMember" minOccurs="0" maxOccurs="unbounded"/>
135
+ <element ref="gml:surfaceMembers" minOccurs="0"/>
136
+ </sequence>
137
+ </extension>
138
+ </complexContent>
139
+ </complexType>
140
+ <element name="MultiSurface" type="gml:MultiSurfaceType" substitutionGroup="gml:AbstractGeometricAggregate">
141
+ <annotation>
142
+ <documentation>A gml:MultiSurface is defined by one or more gml:AbstractSurfaces.
143
+ The members of the geometric aggregate may be specified either using the "standard" property (gml:surfaceMember) or the array property (gml:surfaceMembers). It is also valid to use both the "standard" and the array properties in the same collection.</documentation>
144
+ </annotation>
145
+ </element>
146
+ <element name="surfaceMembers" type="gml:SurfaceArrayPropertyType">
147
+ <annotation>
148
+ <documentation>This property element contains a list of surfaces. The order of the elements is significant and shall be preserved when processing the array.</documentation>
149
+ </annotation>
150
+ </element>
151
+ <complexType name="MultiSurfacePropertyType">
152
+ <annotation>
153
+ <documentation>A property that has a collection of surfaces as its value domain may either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element shall be given, but neither both nor none.</documentation>
154
+ </annotation>
155
+ <sequence minOccurs="0">
156
+ <element ref="gml:MultiSurface"/>
157
+ </sequence>
158
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
159
+ <attributeGroup ref="gml:OwnershipAttributeGroup"/>
160
+ </complexType>
161
+ <complexType name="MultiSolidType">
162
+ <complexContent>
163
+ <extension base="gml:AbstractGeometricAggregateType">
164
+ <sequence>
165
+ <element ref="gml:solidMember" minOccurs="0" maxOccurs="unbounded"/>
166
+ <element ref="gml:solidMembers" minOccurs="0"/>
167
+ </sequence>
168
+ </extension>
169
+ </complexContent>
170
+ </complexType>
171
+ <element name="MultiSolid" type="gml:MultiSolidType" substitutionGroup="gml:AbstractGeometricAggregate">
172
+ <annotation>
173
+ <documentation>A gml:MultiSolid is defined by one or more gml:AbstractSolids.
174
+ The members of the geometric aggregate may be specified either using the "standard" property (gml:solidMember) or the array property (gml:solidMembers). It is also valid to use both the "standard" and the array properties in the same collection.</documentation>
175
+ </annotation>
176
+ </element>
177
+ <element name="solidMember" type="gml:SolidPropertyType">
178
+ <annotation>
179
+ <documentation>This property element either references a solid via the XLink-attributes or contains the solid element. A solid element is any element, which is substitutable for gml:AbstractSolid.</documentation>
180
+ </annotation>
181
+ </element>
182
+ <element name="solidMembers" type="gml:SolidArrayPropertyType">
183
+ <annotation>
184
+ <documentation>This property element contains a list of solids. The order of the elements is significant and shall be preserved when processing the array.</documentation>
185
+ </annotation>
186
+ </element>
187
+ <complexType name="MultiSolidPropertyType">
188
+ <annotation>
189
+ <documentation>A property that has a collection of solids as its value domain may either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element shall be given, but neither both nor none.</documentation>
190
+ </annotation>
191
+ <sequence minOccurs="0">
192
+ <element ref="gml:MultiSolid"/>
193
+ </sequence>
194
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
195
+ <attributeGroup ref="gml:OwnershipAttributeGroup"/>
196
+ </complexType>
197
+ </schema>