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,20 @@
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:gml:3.2.1">gml.xsd</appinfo>
5
+ <documentation>
6
+ GML is an OGC Standard.
7
+ Copyright (c) 2007,2010 Open Geospatial Consortium.
8
+ To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
9
+ </documentation>
10
+ </annotation>
11
+ <!-- ====================================================================== -->
12
+ <include schemaLocation="dynamicFeature.xsd"/>
13
+ <include schemaLocation="topology.xsd"/>
14
+ <include schemaLocation="coverage.xsd"/>
15
+ <include schemaLocation="coordinateReferenceSystems.xsd"/>
16
+ <include schemaLocation="observation.xsd"/>
17
+ <include schemaLocation="temporalReferenceSystems.xsd"/>
18
+ <include schemaLocation="deprecatedTypes.xsd"/>
19
+ <!-- ====================================================================== -->
20
+ </schema>
@@ -0,0 +1,185 @@
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:xlink="http://www.w3.org/1999/xlink" 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:gmlBase:3.2.1">gmlBase.xsd</appinfo>
5
+ <documentation>See ISO/DIS 19136 7.2.
6
+ The gmlBase schema components establish the GML model and syntax, in particular
7
+ - a root XML type from which XML types for all GML objects should be derived,
8
+ - a pattern and components for GML properties,
9
+ - patterns for collections and arrays, and components for generic collections and arrays,
10
+ - components for associating metadata with GML objects,
11
+ - components for constructing definitions and dictionaries.
12
+
13
+ GML is an OGC Standard.
14
+ Copyright (c) 2007,2010 Open Geospatial Consortium.
15
+ To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
16
+ </documentation>
17
+ </annotation>
18
+ <include schemaLocation="gml.xsd"/>
19
+ <include schemaLocation="basicTypes.xsd"/>
20
+ <import namespace="http://www.w3.org/1999/xlink" schemaLocation="http://www.w3.org/1999/xlink.xsd"/>
21
+ <element name="AbstractObject" abstract="true">
22
+ <annotation>
23
+ <documentation>This element has no type defined, and is therefore implicitly (according to the rules of W3C XML Schema) an XML Schema anyType. It is used as the head of an XML Schema substitution group which unifies complex content and certain simple content elements used for datatypes in GML, including the gml:AbstractGML substitution group.</documentation>
24
+ </annotation>
25
+ </element>
26
+ <element name="AbstractGML" type="gml:AbstractGMLType" abstract="true" substitutionGroup="gml:AbstractObject">
27
+ <annotation>
28
+ <documentation>The abstract element gml:AbstractGML is "any GML object having identity". It acts as the head of an XML Schema substitution group, which may include any element which is a GML feature, or other object, with identity. This is used as a variable in content models in GML core and application schemas. It is effectively an abstract superclass for all GML objects.</documentation>
29
+ </annotation>
30
+ </element>
31
+ <complexType name="AbstractGMLType" abstract="true">
32
+ <sequence>
33
+ <group ref="gml:StandardObjectProperties"/>
34
+ </sequence>
35
+ <attribute ref="gml:id" use="required"/>
36
+ </complexType>
37
+ <group name="StandardObjectProperties">
38
+ <sequence>
39
+ <element ref="gml:metaDataProperty" minOccurs="0" maxOccurs="unbounded"/>
40
+ <element ref="gml:description" minOccurs="0"/>
41
+ <element ref="gml:descriptionReference" minOccurs="0"/>
42
+ <element ref="gml:identifier" minOccurs="0"/>
43
+ <element ref="gml:name" minOccurs="0" maxOccurs="unbounded"/>
44
+ </sequence>
45
+ </group>
46
+ <attributeGroup name="AssociationAttributeGroup">
47
+ <annotation>
48
+ <documentation>XLink components are the standard method to support hypertext referencing in XML. An XML Schema attribute group, gml:AssociationAttributeGroup, is provided to support the use of Xlinks as the method for indicating the value of a property by reference in a uniform manner in GML.</documentation>
49
+ </annotation>
50
+ <attributeGroup ref="xlink:simpleAttrs"/>
51
+ <attribute name="nilReason" type="gml:NilReasonType"/>
52
+ <attribute ref="gml:remoteSchema">
53
+ <annotation>
54
+ <appinfo>deprecated</appinfo>
55
+ </annotation>
56
+ </attribute>
57
+ </attributeGroup>
58
+ <element name="abstractAssociationRole" type="gml:AssociationRoleType" abstract="true">
59
+ <annotation>
60
+ <documentation>Applying this pattern shall restrict the multiplicity of objects in a property element using this content model to exactly one. An instance of this type shall contain an element representing an object, or serve as a pointer to a remote object.
61
+ Applying the pattern to define an application schema specific property type allows to restrict
62
+ - the inline object to specified object types,
63
+ - the encoding to "by-reference only" (see 7.2.3.7),
64
+ - the encoding to "inline only" (see 7.2.3.8).</documentation>
65
+ </annotation>
66
+ </element>
67
+ <complexType name="AssociationRoleType">
68
+ <sequence minOccurs="0">
69
+ <any namespace="##any"/>
70
+ </sequence>
71
+ <attributeGroup ref="gml:OwnershipAttributeGroup"/>
72
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
73
+ </complexType>
74
+ <attributeGroup name="OwnershipAttributeGroup">
75
+ <annotation>
76
+ <documentation>Encoding a GML property inline vs. by-reference shall not imply anything about the "ownership" of the contained or referenced GML Object, i.e. the encoding style shall not imply any "deep-copy" or "deep-delete" semantics. To express ownership over the contained or referenced GML Object, the gml:OwnershipAttributeGroup attribute group may be added to object-valued property elements. If the attribute group is not part of the content model of such a property element, then the value may not be "owned".
77
+ When the value of the owns attribute is "true", the existence of inline or referenced object(s) depends upon the existence of the parent object.</documentation>
78
+ </annotation>
79
+ <attribute name="owns" type="boolean" default="false"/>
80
+ </attributeGroup>
81
+ <element name="abstractStrictAssociationRole" type="gml:AssociationRoleType" abstract="true">
82
+ <annotation>
83
+ <documentation>This element shows how an element
84
+ declaration may include a Schematron constraint to limit the property to act
85
+ in either inline or by-reference mode, but not both.</documentation>
86
+ </annotation>
87
+ </element>
88
+ <element name="abstractReference" type="gml:ReferenceType" abstract="true">
89
+ <annotation>
90
+ <documentation>gml:abstractReference may be used as the head of a subtitution group of more specific elements providing a value by-reference.</documentation>
91
+ </annotation>
92
+ </element>
93
+ <complexType name="ReferenceType">
94
+ <annotation>
95
+ <documentation>gml:ReferenceType is intended to be used in application schemas directly, if a property element shall use a "by-reference only" encoding.</documentation>
96
+ </annotation>
97
+ <sequence/>
98
+ <attributeGroup ref="gml:OwnershipAttributeGroup"/>
99
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
100
+ </complexType>
101
+ <element name="abstractInlineProperty" type="gml:InlinePropertyType" abstract="true">
102
+ <annotation>
103
+ <documentation>gml:abstractInlineProperty may be used as the head of a subtitution group of more specific elements providing a value inline.</documentation>
104
+ </annotation>
105
+ </element>
106
+ <complexType name="InlinePropertyType">
107
+ <sequence>
108
+ <any namespace="##any"/>
109
+ </sequence>
110
+ <attributeGroup ref="gml:OwnershipAttributeGroup"/>
111
+ </complexType>
112
+ <element name="reversePropertyName" type="string">
113
+ <annotation>
114
+ <documentation>If the value of an object property is another object and that object contains also a property for the association between the two objects, then this name of the reverse property may be encoded in a gml:reversePropertyName element in an appinfo annotation of the property element to document the constraint between the two properties. The value of the element shall contain the qualified name of the property element.</documentation>
115
+ </annotation>
116
+ </element>
117
+ <element name="description" type="gml:StringOrRefType">
118
+ <annotation>
119
+ <documentation>The value of this property is a text description of the object. gml:description uses gml:StringOrRefType as its content model, so it may contain a simple text string content, or carry a reference to an external description. The use of gml:description to reference an external description has been deprecated and replaced by the gml:descriptionReference property.</documentation>
120
+ </annotation>
121
+ </element>
122
+ <element name="descriptionReference" type="gml:ReferenceType">
123
+ <annotation>
124
+ <documentation>The value of this property is a remote text description of the object. The xlink:href attribute of the gml:descriptionReference property references the external description.</documentation>
125
+ </annotation>
126
+ </element>
127
+ <element name="name" type="gml:CodeType">
128
+ <annotation>
129
+ <documentation>The gml:name property provides a label or identifier for the object, commonly a descriptive name. An object may have several names, typically assigned by different authorities. gml:name uses the gml:CodeType content model. The authority for a name is indicated by the value of its (optional) codeSpace attribute. The name may or may not be unique, as determined by the rules of the organization responsible for the codeSpace. In common usage there will be one name per authority, so a processing application may select the name from its preferred codeSpace.</documentation>
130
+ </annotation>
131
+ </element>
132
+ <element name="identifier" type="gml:CodeWithAuthorityType">
133
+ <annotation>
134
+ <documentation>Often, a special identifier is assigned to an object by the maintaining authority with the intention that it is used in references to the object For such cases, the codeSpace shall be provided. That identifier is usually unique either globally or within an application domain. gml:identifier is a pre-defined property for such identifiers.</documentation>
135
+ </annotation>
136
+ </element>
137
+ <attribute name="id" type="ID">
138
+ <annotation>
139
+ <documentation>The attribute gml:id supports provision of a handle for the XML element representing a GML Object. Its use is mandatory for all GML objects. It is of XML type ID, so is constrained to be unique in the XML document within which it occurs.</documentation>
140
+ </annotation>
141
+ </attribute>
142
+ <complexType name="AbstractMemberType" abstract="true">
143
+ <annotation>
144
+ <documentation>To create a collection of GML Objects that are not all features, a property type shall be derived by extension from gml:AbstractMemberType.
145
+ This abstract property type is intended to be used only in object types where software shall be able to identify that an instance of such an object type is to be interpreted as a collection of objects.
146
+ By default, this abstract property type does not imply any ownership of the objects in the collection. The owns attribute of gml:OwnershipAttributeGroup may be used on a property element instance to assert ownership of an object in the collection. A collection shall not own an object already owned by another object.
147
+ </documentation>
148
+ </annotation>
149
+ <sequence/>
150
+ <attributeGroup ref="gml:OwnershipAttributeGroup"/>
151
+ </complexType>
152
+ <attributeGroup name="AggregationAttributeGroup">
153
+ <annotation>
154
+ <documentation>A GML Object Collection is any GML Object with a property element in its content model whose content model is derived by extension from gml:AbstractMemberType.
155
+ In addition, the complex type describing the content model of the GML Object Collection may also include a reference to the attribute group gml:AggregationAttributeGroup to provide additional information about the semantics of the object collection. This information may be used by applications to group GML objects, and optionally to order and index them.
156
+ The allowed values for the aggregationType attribute are defined by gml:AggregationType. See 8.4 of ISO/IEC 11404:1996 for the meaning of the values in the enumeration.</documentation>
157
+ </annotation>
158
+ <attribute name="aggregationType" type="gml:AggregationType"/>
159
+ </attributeGroup>
160
+ <simpleType name="AggregationType" final="#all">
161
+ <restriction base="string">
162
+ <enumeration value="set"/>
163
+ <enumeration value="bag"/>
164
+ <enumeration value="sequence"/>
165
+ <enumeration value="array"/>
166
+ <enumeration value="record"/>
167
+ <enumeration value="table"/>
168
+ </restriction>
169
+ </simpleType>
170
+ <complexType name="AbstractMetadataPropertyType" abstract="true">
171
+ <annotation>
172
+ <documentation>To associate metadata described by any XML Schema with a GML object, a property element shall be defined whose content model is derived by extension from gml:AbstractMetadataPropertyType.
173
+ The value of such a property shall be metadata. The content model of such a property type, i.e. the metadata application schema shall be specified by the GML Application Schema.
174
+ By default, this abstract property type does not imply any ownership of the metadata. The owns attribute of gml:OwnershipAttributeGroup may be used on a metadata property element instance to assert ownership of the metadata.
175
+ If metadata following the conceptual model of ISO 19115 is to be encoded in a GML document, the corresponding Implementation Specification specified in ISO/TS 19139 shall be used to encode the metadata information.
176
+ </documentation>
177
+ </annotation>
178
+ <sequence/>
179
+ <attributeGroup ref="gml:OwnershipAttributeGroup"/>
180
+ </complexType>
181
+ <element name="targetElement" type="string"/>
182
+ <element name="associationName" type="string"/>
183
+ <element name="defaultCodeSpace" type="anyURI"/>
184
+ <element name="gmlProfileSchema" type="anyURI"/>
185
+ </schema>
@@ -0,0 +1,368 @@
1
+ <?xml version="1.0"?>
2
+ <rdf:RDF
3
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
4
+ xmlns:skos="http://www.w3.org/2004/02/skos/core#"
5
+ xmlns:owl="http://www.w3.org/2002/07/owl#"
6
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
7
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
8
+ xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
9
+ xmlns:geo="http://www.opengis.net/ont/geosparql#"
10
+ xmlns:gml="http://www.opengis.net/ont/gml#"
11
+ xml:base="http://www.opengis.net/ont/gml">
12
+ <!--
13
+ GeoSPARQL 1.0 is an OGC Standard.
14
+ Copyright (c) 2012 Open Geospatial Consortium.
15
+ To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
16
+
17
+ Version: 1.0.1
18
+ -->
19
+ <owl:Ontology rdf:about="">
20
+ <owl:imports rdf:resource="http://www.opengis.net/ont/geosparql"/>
21
+ </owl:Ontology>
22
+ <owl:Class rdf:ID="Point">
23
+ <rdfs:subClassOf>
24
+ <owl:Class rdf:ID="AbstractGeometricPrimitive"/>
25
+ </rdfs:subClassOf>
26
+ <rdfs:isDefinedBy rdf:resource=""/>
27
+ <rdfs:label xml:lang="en">Point</rdfs:label>
28
+ </owl:Class>
29
+ <owl:Class rdf:ID="AbstractGriddedSurface">
30
+ <rdfs:subClassOf>
31
+ <owl:Class rdf:ID="AbstractParametricCurveSurface"/>
32
+ </rdfs:subClassOf>
33
+ <rdfs:isDefinedBy rdf:resource=""/>
34
+ <rdfs:label xml:lang="en">Abstract Gridded Surface</rdfs:label>
35
+ </owl:Class>
36
+ <owl:Class rdf:ID="PolyhedralSurface">
37
+ <rdfs:subClassOf>
38
+ <owl:Class rdf:ID="Surface"/>
39
+ </rdfs:subClassOf>
40
+ <rdfs:isDefinedBy rdf:resource=""/>
41
+ <rdfs:label xml:lang="en">Polyhedral Surface</rdfs:label>
42
+ </owl:Class>
43
+ <owl:Class rdf:ID="Arc">
44
+ <rdfs:subClassOf>
45
+ <owl:Class rdf:ID="ArcString"/>
46
+ </rdfs:subClassOf>
47
+ <rdfs:isDefinedBy rdf:resource=""/>
48
+ <rdfs:label xml:lang="en">Arc</rdfs:label>
49
+ </owl:Class>
50
+ <owl:Class rdf:ID="PolynomialSpline">
51
+ <rdfs:subClassOf>
52
+ <owl:Class rdf:ID="SplineCurve"/>
53
+ </rdfs:subClassOf>
54
+ <rdfs:isDefinedBy rdf:resource=""/>
55
+ <rdfs:label xml:lang="en">Polynomial Spline</rdfs:label>
56
+ </owl:Class>
57
+ <owl:Class rdf:ID="MultiCurve">
58
+ <rdfs:subClassOf>
59
+ <owl:Class rdf:ID="MultiGeometry"/>
60
+ </rdfs:subClassOf>
61
+ <rdfs:isDefinedBy rdf:resource=""/>
62
+ <rdfs:label xml:lang="en">Multi-Curve</rdfs:label>
63
+ </owl:Class>
64
+ <owl:Class rdf:ID="CompositeSurface">
65
+ <rdfs:subClassOf>
66
+ <owl:Class rdf:ID="Composite"/>
67
+ </rdfs:subClassOf>
68
+ <rdfs:subClassOf>
69
+ <owl:Class rdf:ID="OrientableSurface"/>
70
+ </rdfs:subClassOf>
71
+ <rdfs:isDefinedBy rdf:resource=""/>
72
+ <rdfs:label xml:lang="en">Composite Surface</rdfs:label>
73
+ </owl:Class>
74
+ <owl:Class rdf:about="#ArcString">
75
+ <rdfs:subClassOf>
76
+ <owl:Class rdf:ID="AbstractCurveSegment"/>
77
+ </rdfs:subClassOf>
78
+ <rdfs:isDefinedBy rdf:resource=""/>
79
+ <rdfs:label xml:lang="en">Arc String</rdfs:label>
80
+ </owl:Class>
81
+ <owl:Class rdf:ID="Cylinder">
82
+ <rdfs:subClassOf rdf:resource="#AbstractGriddedSurface"/>
83
+ <rdfs:isDefinedBy rdf:resource=""/>
84
+ <rdfs:label xml:lang="en">Cylinder</rdfs:label>
85
+ </owl:Class>
86
+ <owl:Class rdf:ID="Shell">
87
+ <rdfs:subClassOf rdf:resource="#CompositeSurface"/>
88
+ <rdfs:isDefinedBy rdf:resource=""/>
89
+ <rdfs:label xml:lang="en">Shell</rdfs:label>
90
+ </owl:Class>
91
+ <owl:Class rdf:ID="Polygon">
92
+ <rdfs:subClassOf>
93
+ <owl:Class rdf:about="#Surface"/>
94
+ </rdfs:subClassOf>
95
+ <rdfs:isDefinedBy rdf:resource=""/>
96
+ <rdfs:label xml:lang="en">Polygon</rdfs:label>
97
+ </owl:Class>
98
+ <owl:Class rdf:ID="Tin">
99
+ <rdfs:subClassOf>
100
+ <owl:Class rdf:ID="TriangulatedSurface"/>
101
+ </rdfs:subClassOf>
102
+ <rdfs:isDefinedBy rdf:resource=""/>
103
+ <rdfs:label xml:lang="en">Triangulated Irregular Network</rdfs:label>
104
+ </owl:Class>
105
+ <owl:Class rdf:about="#MultiGeometry">
106
+ <rdfs:subClassOf>
107
+ <owl:Class rdf:ID="AbstractGeometry"/>
108
+ </rdfs:subClassOf>
109
+ <rdfs:isDefinedBy rdf:resource=""/>
110
+ <rdfs:label xml:lang="en">Multi-Geometry</rdfs:label>
111
+ </owl:Class>
112
+ <owl:Class rdf:ID="Bezier">
113
+ <rdfs:subClassOf>
114
+ <owl:Class rdf:ID="BSpline"/>
115
+ </rdfs:subClassOf>
116
+ <rdfs:isDefinedBy rdf:resource=""/>
117
+ <rdfs:label xml:lang="en">Bezier</rdfs:label>
118
+ </owl:Class>
119
+ <owl:Class rdf:ID="Curve">
120
+ <rdfs:subClassOf>
121
+ <owl:Class rdf:about="#AbstractGeometricPrimitive"/>
122
+ </rdfs:subClassOf>
123
+ <rdfs:subClassOf>
124
+ <owl:Class rdf:ID="OrientableCurve"/>
125
+ </rdfs:subClassOf>
126
+ <rdfs:isDefinedBy rdf:resource=""/>
127
+ <rdfs:label xml:lang="en">Curve</rdfs:label>
128
+ </owl:Class>
129
+ <owl:Class rdf:about="#BSpline">
130
+ <rdfs:subClassOf>
131
+ <owl:Class rdf:about="#SplineCurve"/>
132
+ </rdfs:subClassOf>
133
+ <rdfs:isDefinedBy rdf:resource=""/>
134
+ <rdfs:label xml:lang="en">BSpline</rdfs:label>
135
+ </owl:Class>
136
+ <owl:Class rdf:ID="LineStringSegment">
137
+ <rdfs:subClassOf>
138
+ <owl:Class rdf:about="#AbstractCurveSegment"/>
139
+ </rdfs:subClassOf>
140
+ <rdfs:isDefinedBy rdf:resource=""/>
141
+ <rdfs:label xml:lang="en">Line String Segment</rdfs:label>
142
+ </owl:Class>
143
+ <owl:Class rdf:ID="Geodesic">
144
+ <rdfs:subClassOf>
145
+ <owl:Class rdf:ID="GeodesicString"/>
146
+ </rdfs:subClassOf>
147
+ <rdfs:isDefinedBy rdf:resource=""/>
148
+ <rdfs:label xml:lang="en">Geodesic</rdfs:label>
149
+ </owl:Class>
150
+ <owl:Class rdf:ID="AbstractSurfacePatch">
151
+ <rdfs:subClassOf>
152
+ <rdf:Description rdf:about="http://www.opengis.net/ont/geosparql#Geometry">
153
+ <rdfs:isDefinedBy rdf:resource=""/>
154
+ </rdf:Description>
155
+ </rdfs:subClassOf>
156
+ <rdfs:isDefinedBy rdf:resource=""/>
157
+ <rdfs:label xml:lang="en">Abstract Surface Patch</rdfs:label>
158
+ </owl:Class>
159
+ <owl:Class rdf:ID="GeometricComplex">
160
+ <rdfs:subClassOf>
161
+ <owl:Class rdf:about="#AbstractGeometry"/>
162
+ </rdfs:subClassOf>
163
+ <rdfs:isDefinedBy rdf:resource=""/>
164
+ <rdfs:label xml:lang="en">Geometric Complex</rdfs:label>
165
+ </owl:Class>
166
+ <owl:Class rdf:ID="ArcByBulge">
167
+ <rdfs:subClassOf>
168
+ <owl:Class rdf:ID="ArcStringByBulge"/>
169
+ </rdfs:subClassOf>
170
+ <rdfs:isDefinedBy rdf:resource=""/>
171
+ <rdfs:label xml:lang="en">Arc by Bulge</rdfs:label>
172
+ </owl:Class>
173
+ <owl:Class rdf:ID="CircleByCenterPoint">
174
+ <rdfs:subClassOf>
175
+ <owl:Class rdf:ID="ArcByCenterPoint"/>
176
+ </rdfs:subClassOf>
177
+ <rdfs:isDefinedBy rdf:resource=""/>
178
+ <rdfs:label xml:lang="en">CircleByCenterPoint</rdfs:label>
179
+ </owl:Class>
180
+ <owl:Class rdf:ID="MultiPoint">
181
+ <rdfs:subClassOf rdf:resource="#MultiGeometry"/>
182
+ <rdfs:isDefinedBy rdf:resource=""/>
183
+ <rdfs:label xml:lang="en">Multi-Point</rdfs:label>
184
+ </owl:Class>
185
+ <owl:Class rdf:about="#ArcByCenterPoint">
186
+ <rdfs:subClassOf>
187
+ <owl:Class rdf:about="#AbstractCurveSegment"/>
188
+ </rdfs:subClassOf>
189
+ <rdfs:isDefinedBy rdf:resource=""/>
190
+ <rdfs:label xml:lang="en">Arc by Center Point</rdfs:label>
191
+ </owl:Class>
192
+ <owl:Class rdf:ID="OffsetCurve">
193
+ <rdfs:subClassOf>
194
+ <owl:Class rdf:about="#AbstractCurveSegment"/>
195
+ </rdfs:subClassOf>
196
+ <rdfs:isDefinedBy rdf:resource=""/>
197
+ <rdfs:label xml:lang="en">Offset Curve</rdfs:label>
198
+ </owl:Class>
199
+ <owl:Class rdf:about="#SplineCurve">
200
+ <rdfs:subClassOf>
201
+ <owl:Class rdf:about="#AbstractCurveSegment"/>
202
+ </rdfs:subClassOf>
203
+ <rdfs:isDefinedBy rdf:resource=""/>
204
+ <rdfs:label xml:lang="en">Spline Curve</rdfs:label>
205
+ </owl:Class>
206
+ <owl:Class rdf:about="#Composite">
207
+ <rdfs:subClassOf rdf:resource="#GeometricComplex"/>
208
+ <rdfs:isDefinedBy rdf:resource=""/>
209
+ <rdfs:label xml:lang="en">Composite</rdfs:label>
210
+ </owl:Class>
211
+ <owl:Class rdf:ID="LineString">
212
+ <rdfs:subClassOf rdf:resource="#LineStringSegment"/>
213
+ <rdfs:isDefinedBy rdf:resource=""/>
214
+ <rdfs:label xml:lang="en">Line String</rdfs:label>
215
+ </owl:Class>
216
+ <owl:Class rdf:ID="Circle">
217
+ <rdfs:subClassOf rdf:resource="#Arc"/>
218
+ <rdfs:isDefinedBy rdf:resource=""/>
219
+ <rdfs:label xml:lang="en">Circle</rdfs:label>
220
+ </owl:Class>
221
+ <owl:Class rdf:about="#OrientableCurve">
222
+ <rdfs:subClassOf>
223
+ <owl:Class rdf:about="#AbstractGeometricPrimitive"/>
224
+ </rdfs:subClassOf>
225
+ <rdfs:isDefinedBy rdf:resource=""/>
226
+ <rdfs:label xml:lang="en">Orientable Curve</rdfs:label>
227
+ </owl:Class>
228
+ <owl:Class rdf:about="#OrientableSurface">
229
+ <rdfs:subClassOf>
230
+ <owl:Class rdf:about="#AbstractGeometricPrimitive"/>
231
+ </rdfs:subClassOf>
232
+ <rdfs:isDefinedBy rdf:resource=""/>
233
+ <rdfs:label xml:lang="en">Orientable Surface</rdfs:label>
234
+ </owl:Class>
235
+ <owl:Class rdf:ID="Clothoid">
236
+ <rdfs:subClassOf>
237
+ <owl:Class rdf:about="#AbstractCurveSegment"/>
238
+ </rdfs:subClassOf>
239
+ <rdfs:isDefinedBy rdf:resource=""/>
240
+ <rdfs:label xml:lang="en">Clothoid</rdfs:label>
241
+ </owl:Class>
242
+ <owl:Class rdf:about="#ArcStringByBulge">
243
+ <rdfs:subClassOf>
244
+ <owl:Class rdf:about="#AbstractCurveSegment"/>
245
+ </rdfs:subClassOf>
246
+ <rdfs:isDefinedBy rdf:resource=""/>
247
+ <rdfs:label xml:lang="en">Arc String by Bulge</rdfs:label>
248
+ </owl:Class>
249
+ <owl:Class rdf:about="#TriangulatedSurface">
250
+ <rdfs:subClassOf rdf:resource="#PolyhedralSurface"/>
251
+ <rdfs:isDefinedBy rdf:resource=""/>
252
+ <rdfs:label xml:lang="en">Triangulated Surface</rdfs:label>
253
+ </owl:Class>
254
+ <owl:Class rdf:ID="Triangle">
255
+ <rdfs:subClassOf>
256
+ <owl:Class rdf:ID="PolygonPatch"/>
257
+ </rdfs:subClassOf>
258
+ <rdfs:isDefinedBy rdf:resource=""/>
259
+ <rdfs:label xml:lang="en">Triangle</rdfs:label>
260
+ </owl:Class>
261
+ <owl:Class rdf:ID="CubicSpline">
262
+ <rdfs:subClassOf rdf:resource="#PolynomialSpline"/>
263
+ <rdfs:isDefinedBy rdf:resource=""/>
264
+ <rdfs:label xml:lang="en">Cubic Spline</rdfs:label>
265
+ </owl:Class>
266
+ <owl:Class rdf:about="#AbstractGeometry">
267
+ <rdfs:subClassOf rdf:resource="http://www.opengis.net/ont/geosparql#Geometry"/>
268
+ <rdfs:isDefinedBy rdf:resource=""/>
269
+ <rdfs:label xml:lang="en">Abstract Geometry</rdfs:label>
270
+ </owl:Class>
271
+ <owl:Class rdf:ID="Cone">
272
+ <rdfs:subClassOf rdf:resource="#AbstractGriddedSurface"/>
273
+ <rdfs:isDefinedBy rdf:resource=""/>
274
+ <rdfs:label xml:lang="en">Cone</rdfs:label>
275
+ </owl:Class>
276
+ <owl:Class rdf:ID="CompositeSolid">
277
+ <rdfs:subClassOf rdf:resource="#Composite"/>
278
+ <rdfs:subClassOf>
279
+ <owl:Class rdf:ID="Solid"/>
280
+ </rdfs:subClassOf>
281
+ <rdfs:isDefinedBy rdf:resource=""/>
282
+ <rdfs:label xml:lang="en">Composite Solid</rdfs:label>
283
+ </owl:Class>
284
+ <owl:Class rdf:about="#AbstractGeometricPrimitive">
285
+ <rdfs:subClassOf rdf:resource="#AbstractGeometry"/>
286
+ <rdfs:isDefinedBy rdf:resource=""/>
287
+ <rdfs:label xml:lang="en">Abstract Geometric Primitive</rdfs:label>
288
+ </owl:Class>
289
+ <owl:Class rdf:ID="LinearRing">
290
+ <rdfs:subClassOf>
291
+ <owl:Class rdf:ID="Ring"/>
292
+ </rdfs:subClassOf>
293
+ <rdfs:isDefinedBy rdf:resource=""/>
294
+ <rdfs:label xml:lang="en">Linear Ring</rdfs:label>
295
+ </owl:Class>
296
+ <owl:Class rdf:about="#AbstractParametricCurveSurface">
297
+ <rdfs:subClassOf rdf:resource="#AbstractSurfacePatch"/>
298
+ <rdfs:isDefinedBy rdf:resource=""/>
299
+ <rdfs:label xml:lang="en">Abstract Parametric Curve Surface</rdfs:label>
300
+ </owl:Class>
301
+ <owl:Class rdf:about="#GeodesicString">
302
+ <rdfs:subClassOf>
303
+ <owl:Class rdf:about="#AbstractCurveSegment"/>
304
+ </rdfs:subClassOf>
305
+ <rdfs:isDefinedBy rdf:resource=""/>
306
+ <rdfs:label xml:lang="en">Geodesic String</rdfs:label>
307
+ </owl:Class>
308
+ <owl:Class rdf:ID="MultiSolid">
309
+ <rdfs:subClassOf rdf:resource="#MultiGeometry"/>
310
+ <rdfs:isDefinedBy rdf:resource=""/>
311
+ <rdfs:label xml:lang="en">Multi-Solid</rdfs:label>
312
+ </owl:Class>
313
+ <owl:Class rdf:about="#Solid">
314
+ <rdfs:subClassOf rdf:resource="#AbstractGeometricPrimitive"/>
315
+ <rdfs:isDefinedBy rdf:resource=""/>
316
+ <rdfs:label xml:lang="en">Solid</rdfs:label>
317
+ </owl:Class>
318
+ <owl:Class rdf:ID="CompositeCurve">
319
+ <rdfs:subClassOf rdf:resource="#Composite"/>
320
+ <rdfs:subClassOf rdf:resource="#OrientableCurve"/>
321
+ <rdfs:isDefinedBy rdf:resource=""/>
322
+ <rdfs:label xml:lang="en">Composite Curve</rdfs:label>
323
+ </owl:Class>
324
+ <owl:Class rdf:ID="Rectangle">
325
+ <rdfs:subClassOf>
326
+ <owl:Class rdf:about="#PolygonPatch"/>
327
+ </rdfs:subClassOf>
328
+ <rdfs:isDefinedBy rdf:resource=""/>
329
+ <rdfs:label xml:lang="en">Rectangle</rdfs:label>
330
+ </owl:Class>
331
+ <owl:Class rdf:ID="Sphere">
332
+ <rdfs:subClassOf rdf:resource="#AbstractGriddedSurface"/>
333
+ <rdfs:isDefinedBy rdf:resource=""/>
334
+ <rdfs:label xml:lang="en">Sphere</rdfs:label>
335
+ </owl:Class>
336
+ <owl:Class rdf:about="#Ring">
337
+ <rdfs:subClassOf rdf:resource="#CompositeCurve"/>
338
+ <rdfs:isDefinedBy rdf:resource=""/>
339
+ <rdfs:label xml:lang="en">Ring</rdfs:label>
340
+ </owl:Class>
341
+ <owl:Class rdf:about="#PolygonPatch">
342
+ <rdfs:subClassOf rdf:resource="#AbstractSurfacePatch"/>
343
+ <rdfs:isDefinedBy rdf:resource=""/>
344
+ <rdfs:label xml:lang="en">Polygon Patch</rdfs:label>
345
+ </owl:Class>
346
+ <owl:Class rdf:ID="MultiSurface">
347
+ <rdfs:subClassOf rdf:resource="#MultiGeometry"/>
348
+ <rdfs:isDefinedBy rdf:resource=""/>
349
+ <rdfs:label xml:lang="en">Multi-Surface</rdfs:label>
350
+ </owl:Class>
351
+ <owl:Class rdf:about="#AbstractCurveSegment">
352
+ <rdfs:subClassOf rdf:resource="http://www.opengis.net/ont/geosparql#Geometry"/>
353
+ <rdfs:isDefinedBy rdf:resource=""/>
354
+ <rdfs:label xml:lang="en">Abstract Curve Segment</rdfs:label>
355
+ </owl:Class>
356
+ <owl:Class rdf:about="#Surface">
357
+ <rdfs:subClassOf rdf:resource="#AbstractGeometricPrimitive"/>
358
+ <rdfs:subClassOf rdf:resource="#OrientableSurface"/>
359
+ <rdfs:isDefinedBy rdf:resource=""/>
360
+ <rdfs:label xml:lang="en">Surface</rdfs:label>
361
+ </owl:Class>
362
+ <rdf:Description rdf:about="http://www.opengis.net/ont/geosparql#Feature">
363
+ <rdfs:isDefinedBy rdf:resource=""/>
364
+ </rdf:Description>
365
+ <rdf:Description rdf:about="http://www.opengis.net/ont/geosparql#SpatialObject">
366
+ <rdfs:isDefinedBy rdf:resource=""/>
367
+ </rdf:Description>
368
+ </rdf:RDF>
@@ -0,0 +1,58 @@
1
+ OpenGIS(r) GML schema version 3.2.1 / ISO 19136 - ReadMe.txt
2
+
3
+ The schema has been validated with Xerces-J, Xerces C++ and XSV.
4
+
5
+ -------------------------------------------------------------------
6
+
7
+ 2012-07-21 Kevin Stegemoller
8
+
9
+ * v2.0.0 - v3.2.1 WARNING XLink change is NOT BACKWARD COMPATIBLE.
10
+ * changed OGC XLink (xlink:simpleLink) to W3C XLink (xlink:simpleAttrs)
11
+ per an approved TC and PC motion during the Dec. 2011 Brussels meeting.
12
+ see http://www.opengeospatial.org/blog/1597
13
+ * implement 11-025: retroactively require/add all leaf documents of an
14
+ XML namespace shall explicitly <include/> the all-components schema
15
+ * v3.2.1: updated xsd:schema:@version to 3.2.1.2 (06-135r7 s#13.4)
16
+
17
+ 2007-09-06 Kevin Stegemoller
18
+
19
+ GML 3.2.1 (ISO 19136)
20
+ * Published GML 3.2.1 schemas from OGC 07-036
21
+ * validated with oXygen 8.2 (xerces-J 2.9.0) - Kevin Stegemoller
22
+ * validated with Xerces-J, Xerces-C++ and XSV - Clemens Portele
23
+
24
+ 2007-08-17 Kevin Stegemoller
25
+
26
+ Changes made to these GML 3.2.1 / ISO 19136 schemas:
27
+ * added ReadMe.txt
28
+ * changed gmd.xsd references to "../../iso/19139/20070417/gmd/gmd.xsd"
29
+ * changed xlink references to be relative to /xlink/1.0.0/xlinks.xsd
30
+ available from schemas.opengis.net/xlink/1.0.0/xlinks.xsd (REMOVED 2012-07-21).
31
+ * removed xlinks schema and directory
32
+
33
+ Changes made to these ISO 19139 schemas by OGC:
34
+ * added ReadMe.txt
35
+ * changed ISO_19136 path to /gml/3.2.1/
36
+ * changed xlink references to be relative to /xlink/1.0.0/xlinks.xsd
37
+ available from schemas.opengis.net/xlink/1.0.0/xlinks.xsd (REMOVED 2012-07-21).
38
+ * removed xlinks schema and directory
39
+
40
+ OGC GML 3.2.1 / ISO 19136 schemas files will be published at:
41
+ - http://schemas.opengis.net/gml/3.2.1/
42
+ - http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19136_Schemas/
43
+
44
+ Files in the folder "ISO/19139/20070417" are also published at
45
+ - http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/
46
+
47
+ -------------------------------------------------------------------
48
+
49
+ The Open Geospatial Consortium, Inc. official schema repository is at
50
+ http://schemas.opengis.net/ .
51
+ Policies, Procedures, Terms, and Conditions of OGC(r) are available
52
+ http://www.opengeospatial.org/ogc/policies/ .
53
+ Additional rights of use are described at
54
+ http://www.opengeospatial.org/legal/ .
55
+
56
+ Copyright (c) 2007 Open Geospatial Consortium.
57
+
58
+ -------------------------------------------------------------------