ogc-gml 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,215 @@
1
+ <schema targetNamespace="http://www.opengis.net/gml/3.3/lr" xmlns:gmllr="http://www.opengis.net/gml/3.3/lr" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xml="http://www.w3.org/XML/1998/namespace" elementFormDefault="qualified" version="3.3.1">
2
+ <annotation>
3
+ <documentation>linearRef.xsd, part of GML 3.3. Copyright (c) [2011,2018] Open Geospatial Consortium, Inc. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/.</documentation>
4
+ </annotation>
5
+ <import namespace="http://www.opengis.net/gml/3.2" schemaLocation="http://schemas.opengis.net/gml/3.2.1/gml.xsd" />
6
+ <complexType name="PositionExpressionType">
7
+ <complexContent>
8
+ <extension base="gml:AbstractGMLType">
9
+ <sequence>
10
+ <element name="linearElement" type="gmllr:LinearElementPropertyType" />
11
+ <element name="lrm" type="gmllr:LinearReferencingMethodPropertyType" />
12
+ <element name="distanceExpression" type="gmllr:DistanceExpressionPropertyType" />
13
+ </sequence>
14
+ </extension>
15
+ </complexContent>
16
+ </complexType>
17
+ <element name="PositionExpression" type="gmllr:PositionExpressionType" substitutionGroup="gml:AbstractGML" />
18
+ <complexType name="PositionExpressionPropertyType">
19
+ <sequence minOccurs="0">
20
+ <element ref="gmllr:PositionExpression" />
21
+ </sequence>
22
+ <attributeGroup ref="gml:AssociationAttributeGroup" />
23
+ </complexType>
24
+ <complexType name="LinearElementType">
25
+ <complexContent>
26
+ <extension base="gml:AbstractGMLType">
27
+ <sequence>
28
+ <choice>
29
+ <element name="feature" type="gml:FeaturePropertyType" />
30
+ <element name="curve" type="gml:CurvePropertyType" />
31
+ <element name="edge" type="gml:DirectedEdgePropertyType" />
32
+ </choice>
33
+ <element name="defaultLRM" type="gmllr:LinearReferencingMethodPropertyType" />
34
+ <element name="measure" type="gml:MeasureType" />
35
+ <element name="startValue" type="gmllr:StartValueType" minOccurs="0" maxOccurs="unbounded" />
36
+ </sequence>
37
+ </extension>
38
+ </complexContent>
39
+ </complexType>
40
+ <element name="LinearElement" type="gmllr:LinearElementType" substitutionGroup="gml:AbstractGML" />
41
+ <complexType name="LinearElementPropertyType">
42
+ <sequence minOccurs="0">
43
+ <element ref="gmllr:LinearElement" />
44
+ </sequence>
45
+ <attributeGroup ref="gml:AssociationAttributeGroup" />
46
+ </complexType>
47
+ <complexType name="StartValueType">
48
+ <simpleContent>
49
+ <extension base="double">
50
+ <attribute name="uom" type="gml:UomIdentifier" />
51
+ <attribute name="lrm" type="anyURI" use="required">
52
+ <annotation>
53
+ <appinfo>
54
+ <gml:targetElement>gmllr:LinearReferencingMethod</gml:targetElement>
55
+ </appinfo>
56
+ </annotation>
57
+ </attribute>
58
+ </extension>
59
+ </simpleContent>
60
+ </complexType>
61
+ <complexType name="LinearReferencingMethodType">
62
+ <complexContent>
63
+ <extension base="gml:AbstractGMLType">
64
+ <sequence>
65
+ <element name="name" type="gmllr:LRMNameType" />
66
+ <element name="type" type="gmllr:LRMTypeType" />
67
+ <element name="units" type="gml:UomIdentifier" />
68
+ <element name="constraint" type="string" minOccurs="0" />
69
+ </sequence>
70
+ </extension>
71
+ </complexContent>
72
+ </complexType>
73
+ <element name="LinearReferencingMethod" type="gmllr:LinearReferencingMethodType" substitutionGroup="gml:AbstractGML" />
74
+ <complexType name="LinearReferencingMethodPropertyType">
75
+ <sequence minOccurs="0">
76
+ <element ref="gmllr:LinearReferencingMethod" />
77
+ </sequence>
78
+ <attributeGroup ref="gml:AssociationAttributeGroup" />
79
+ </complexType>
80
+ <complexType name="DistanceExpressionType">
81
+ <complexContent>
82
+ <extension base="gml:AbstractGMLType">
83
+ <sequence>
84
+ <element name="distanceAlong" type="gmllr:MeasureType" />
85
+ <element name="referent" type="gmllr:AlongReferentPropertyType" minOccurs="0" />
86
+ </sequence>
87
+ </extension>
88
+ </complexContent>
89
+ </complexType>
90
+ <element name="DistanceExpression" type="gmllr:DistanceExpressionType" substitutionGroup="gml:AbstractGML" />
91
+ <complexType name="DistanceExpressionPropertyType">
92
+ <sequence minOccurs="0">
93
+ <element ref="gmllr:DistanceExpression" />
94
+ </sequence>
95
+ <attributeGroup ref="gml:AssociationAttributeGroup" />
96
+ </complexType>
97
+ <complexType name="AlongReferentType">
98
+ <complexContent>
99
+ <extension base="gml:AbstractGMLType">
100
+ <sequence>
101
+ <element name="fromReferent" type="gmllr:ReferentPropertyType" />
102
+ </sequence>
103
+ </extension>
104
+ </complexContent>
105
+ </complexType>
106
+ <element name="AlongReferent" type="gmllr:AlongReferentType" substitutionGroup="gml:AbstractGML" />
107
+ <complexType name="AlongReferentPropertyType">
108
+ <sequence minOccurs="0">
109
+ <element ref="gmllr:AlongReferent" />
110
+ </sequence>
111
+ <attributeGroup ref="gml:AssociationAttributeGroup" />
112
+ </complexType>
113
+ <complexType name="ReferentType">
114
+ <complexContent>
115
+ <extension base="gml:AbstractGMLType">
116
+ <sequence>
117
+ <element name="name" type="gml:CodeType" />
118
+ <element name="type" type="gmllr:ReferentTypeType" />
119
+ <element name="position" type="gml:PointPropertyType" minOccurs="0" />
120
+ <element name="location" type="gmllr:PositionExpressionPropertyType" minOccurs="0" />
121
+ <element name="ownedBy" type="gml:FeaturePropertyType" />
122
+ </sequence>
123
+ </extension>
124
+ </complexContent>
125
+ </complexType>
126
+ <element name="Referent" type="gmllr:ReferentType" substitutionGroup="gml:AbstractGML" />
127
+ <complexType name="ReferentPropertyType">
128
+ <sequence minOccurs="0">
129
+ <element ref="gmllr:Referent" />
130
+ </sequence>
131
+ <attributeGroup ref="gml:AssociationAttributeGroup" />
132
+ </complexType>
133
+ <complexType name="MeasureType">
134
+ <simpleContent>
135
+ <extension base="double">
136
+ <attribute name="uom" type="gml:UomIdentifier" />
137
+ </extension>
138
+ </simpleContent>
139
+ </complexType>
140
+ <complexType name="LRMNameType">
141
+ <annotation>
142
+ <documentation>Informative values from ISO 19148 Annex C</documentation>
143
+ <appinfo>
144
+ <restriction base="string">
145
+ <enumeration value="milepoint" />
146
+ <enumeration value="trueMileage" />
147
+ <enumeration value="kilometre-point" />
148
+ <enumeration value="kilopoint" />
149
+ <enumeration value="chainage" />
150
+ <enumeration value="hectometre-point" />
151
+ <enumeration value="reverseMilepoint" />
152
+ <enumeration value="reverseKilometre-point" />
153
+ <enumeration value="milepointWithLateralOffsetsInFeet" />
154
+ <enumeration value="milepost" />
155
+ <enumeration value="kilopost" />
156
+ <enumeration value="kilometre-post" />
157
+ <enumeration value="referencePost" />
158
+ <enumeration value="countyMilepoint" />
159
+ <enumeration value="crossStreet" />
160
+ <enumeration value="controlSection" />
161
+ <enumeration value="percentage" />
162
+ <enumeration value="normalized" />
163
+ <enumeration value="stationing" />
164
+ <enumeration value="address" />
165
+ <enumeration value="mileMeasure" />
166
+ <enumeration value="kilometreMeasure" />
167
+ </restriction>
168
+ </appinfo>
169
+ </annotation>
170
+ <simpleContent>
171
+ <extension base="gml:CodeType" />
172
+ </simpleContent>
173
+ </complexType>
174
+ <complexType name="LRMTypeType">
175
+ <annotation>
176
+ <documentation>Normative values from ISO 19148</documentation>
177
+ <appinfo>
178
+ <restriction base="string">
179
+ <enumeration value="absolute" />
180
+ <enumeration value="relative" />
181
+ <enumeration value="interpolative" />
182
+ <enumeration value="localInterpolative" />
183
+ </restriction>
184
+ </appinfo>
185
+ </annotation>
186
+ <simpleContent>
187
+ <extension base="gml:CodeType" />
188
+ </simpleContent>
189
+ </complexType>
190
+ <simpleType name="ReferentTypeType">
191
+ <restriction base="string">
192
+ <enumeration value="referenceMarker" />
193
+ <enumeration value="intersection" />
194
+ <enumeration value="boundary" />
195
+ <enumeration value="landmark" />
196
+ </restriction>
197
+ </simpleType>
198
+ <complexType name="LinearSRSType">
199
+ <complexContent>
200
+ <extension base="gml:IdentifiedObjectType">
201
+ <sequence>
202
+ <element name="linearElement" type="gmllr:LinearElementPropertyType" />
203
+ <element name="lrm" type="gmllr:LinearReferencingMethodPropertyType" />
204
+ </sequence>
205
+ </extension>
206
+ </complexContent>
207
+ </complexType>
208
+ <element name="LinearSRS" type="gmllr:LinearSRSType" substitutionGroup="gml:Definition" />
209
+ <complexType name="LinearSRSPropertyType">
210
+ <sequence minOccurs="0">
211
+ <element ref="gmllr:LinearSRS" />
212
+ </sequence>
213
+ <attributeGroup ref="gml:AssociationAttributeGroup" />
214
+ </complexType>
215
+ </schema>
@@ -0,0 +1,96 @@
1
+ <schema targetNamespace="http://www.opengis.net/gml/3.3/lro" xmlns:gmllr="http://www.opengis.net/gml/3.3/lr" xmlns:gmllro="http://www.opengis.net/gml/3.3/lro" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xml="http://www.w3.org/XML/1998/namespace" elementFormDefault="qualified" version="3.3.1">
2
+ <annotation>
3
+ <documentation>linearRefOffset.xsd, part of GML 3.3. Copyright (c) [2011,2018] Open Geospatial Consortium, Inc. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/.</documentation>
4
+ </annotation>
5
+ <import namespace="http://www.opengis.net/gml/3.2" schemaLocation="http://schemas.opengis.net/gml/3.2.1/gml.xsd" />
6
+ <import namespace="http://www.opengis.net/gml/3.3/lr" schemaLocation="http://schemas.opengis.net/gml/3.3/linearRef.xsd" />
7
+ <complexType name="LRMWithOffsetType">
8
+ <complexContent>
9
+ <extension base="gmllr:LinearReferencingMethodType">
10
+ <sequence>
11
+ <element name="offsetUnits" type="gml:UomIdentifier" />
12
+ <element name="positiveLateralOffsetDirection" type="gmllro:LateralOffsetDirectionType" default="right" minOccurs="0" />
13
+ <element name="positiveVerticalOffsetDirection" type="gmllro:VerticalOffsetDirectionType" default="up" minOccurs="0" />
14
+ </sequence>
15
+ </extension>
16
+ </complexContent>
17
+ </complexType>
18
+ <element name="LRMWithOffset" type="gmllro:LRMWithOffsetType" substitutionGroup="gmllr:LinearReferencingMethod" />
19
+ <complexType name="LRMWithOffsetPropertyType">
20
+ <sequence minOccurs="0">
21
+ <element ref="gmllro:LRMWithOffset" />
22
+ </sequence>
23
+ <attributeGroup ref="gml:AssociationAttributeGroup" />
24
+ </complexType>
25
+ <complexType name="LateralOffsetDistanceExpressionType">
26
+ <complexContent>
27
+ <extension base="gmllr:DistanceExpressionType">
28
+ <sequence>
29
+ <element name="lateralOffsetExpression" type="gmllro:LateralOffsetExpressionType" minOccurs="0" />
30
+ <element name="verticalOffsetExpression" type="gmllro:VerticalOffsetExpressionType" minOccurs="0" />
31
+ </sequence>
32
+ </extension>
33
+ </complexContent>
34
+ </complexType>
35
+ <element name="LateralOffsetDistanceExpression" type="gmllro:LateralOffsetDistanceExpressionType" substitutionGroup="gmllr:DistanceExpression" />
36
+ <complexType name="LateralOffsetExpressionType">
37
+ <simpleContent>
38
+ <extension base="double">
39
+ <attribute name="uom" type="gml:UomIdentifier" />
40
+ <attribute name="lateralOffsetReferent" type="string" />
41
+ <attribute name="featureGeometry" type="anyURI">
42
+ <annotation>
43
+ <appinfo>
44
+ <gml:targetElement>gmllr:AbstractGeometry</gml:targetElement>
45
+ </appinfo>
46
+ </annotation>
47
+ </attribute>
48
+ </extension>
49
+ </simpleContent>
50
+ </complexType>
51
+ <complexType name="VerticalOffsetExpressionType">
52
+ <simpleContent>
53
+ <extension base="double">
54
+ <attribute name="uom" type="gml:UomIdentifier" />
55
+ <attribute name="verticalOffsetReferent" type="string" />
56
+ <attribute name="featureGeometry" type="anyURI">
57
+ <annotation>
58
+ <documentation>The featureGeometry attribute value should reference a Geometry object</documentation>
59
+ <appinfo>
60
+ <gml:targetElement>gmllr:AbstractGeometry</gml:targetElement>
61
+ </appinfo>
62
+ </annotation>
63
+ </attribute>
64
+ </extension>
65
+ </simpleContent>
66
+ </complexType>
67
+ <simpleType name="LateralOffsetDirectionType">
68
+ <restriction base="string">
69
+ <enumeration value="left" />
70
+ <enumeration value="right" />
71
+ </restriction>
72
+ </simpleType>
73
+ <simpleType name="VerticalOffsetDirectionType">
74
+ <restriction base="string">
75
+ <enumeration value="up" />
76
+ <enumeration value="down" />
77
+ </restriction>
78
+ </simpleType>
79
+ <complexType name="LateralOffsetLinearSRSType">
80
+ <complexContent>
81
+ <extension base="gml:IdentifiedObjectType">
82
+ <sequence>
83
+ <element name="linearElement" type="gmllr:LinearElementPropertyType" />
84
+ <element name="lrm" type="gmllro:LRMWithOffsetPropertyType" />
85
+ </sequence>
86
+ </extension>
87
+ </complexContent>
88
+ </complexType>
89
+ <element name="LateralOffsetLinearSRS" type="gmllro:LateralOffsetLinearSRSType" substitutionGroup="gml:Definition" />
90
+ <complexType name="LateralOffsetLinearSRSPropertyType">
91
+ <sequence minOccurs="0">
92
+ <element ref="gmllro:LateralOffsetLinearSRS" />
93
+ </sequence>
94
+ <attributeGroup ref="gml:AssociationAttributeGroup" />
95
+ </complexType>
96
+ </schema>
@@ -0,0 +1,48 @@
1
+ <schema targetNamespace="http://www.opengis.net/gml/3.3/lrov" xmlns:gmllr="http://www.opengis.net/gml/3.3/lr" xmlns:gmllro="http://www.opengis.net/gml/3.3/lro" xmlns:gmllrov="http://www.opengis.net/gml/3.3/lrov" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xml="http://www.w3.org/XML/1998/namespace" elementFormDefault="qualified" version="3.3.1">
2
+ <annotation>
3
+ <documentation>linearRefOffsetVector.xsd, part of GML 3.3. Copyright (c) [2011,2018] Open Geospatial Consortium, Inc. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/.</documentation>
4
+ </annotation>
5
+ <import namespace="http://www.opengis.net/gml/3.2" schemaLocation="http://schemas.opengis.net/gml/3.2.1/gml.xsd" />
6
+ <import namespace="http://www.opengis.net/gml/3.3/lr" schemaLocation="http://schemas.opengis.net/gml/3.3/linearRef.xsd" />
7
+ <import namespace="http://www.opengis.net/gml/3.3/lro" schemaLocation="http://schemas.opengis.net/gml/3.3/linearRefOffset.xsd" />
8
+ <complexType name="VectorOffsetDistanceExpressionType">
9
+ <complexContent>
10
+ <extension base="gmllr:DistanceExpressionType">
11
+ <sequence>
12
+ <element name="vectorOffsetExpression" type="gmllrov:VectorOffsetExpressionType" minOccurs="0"/>
13
+ </sequence>
14
+ </extension>
15
+ </complexContent>
16
+ </complexType>
17
+ <element name="VectorOffsetDistanceExpression" type="gmllrov:VectorOffsetDistanceExpressionType" substitutionGroup="gmllr:DistanceExpression"/>
18
+ <complexType name="VectorOffsetExpressionType">
19
+ <sequence>
20
+ <element name="offsetVector" type="gml:VectorType"/>
21
+ </sequence>
22
+ </complexType>
23
+ <complexType name="VectorOffsetLinearSRSType">
24
+ <complexContent>
25
+ <extension base="gmllr:LinearSRSType">
26
+ <sequence>
27
+ <element name="linearElement" type="gmllr:LinearElementPropertyType"/>
28
+ <element name="lrm" type="gmllro:LRMWithOffsetPropertyType"/>
29
+ <element name="offsetVector" type="gmllrov:VectorType" maxOccurs="3"/>
30
+ </sequence>
31
+ </extension>
32
+ </complexContent>
33
+ </complexType>
34
+ <element name="VectorOffsetLinearSRS" type="gmllrov:VectorOffsetLinearSRSType" substitutionGroup="gmllr:LinearSRS"/>
35
+ <complexType name="VectorType">
36
+ <complexContent>
37
+ <extension base="gml:VectorType">
38
+ <attribute name="offsetUom" type="gml:UomIdentifier"/>
39
+ </extension>
40
+ </complexContent>
41
+ </complexType>
42
+ <complexType name="VectorOffsetLinearSRSPropertyType">
43
+ <sequence minOccurs="0">
44
+ <element ref="gmllrov:VectorOffsetLinearSRS"/>
45
+ </sequence>
46
+ <attributeGroup ref="gml:AssociationAttributeGroup"/>
47
+ </complexType>
48
+ </schema>
@@ -0,0 +1,23 @@
1
+ <schema targetNamespace="http://www.opengis.net/gml/3.3/lrtr" xmlns:gmllr="http://www.opengis.net/gml/3.3/lr" xmlns:gmllrtr="http://www.opengis.net/gml/3.3/lrtr" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xml="http://www.w3.org/XML/1998/namespace" elementFormDefault="qualified" version="3.3.1">
2
+ <annotation>
3
+ <documentation>linearRefTowardsReferent.xsd, part of GML 3.3. Copyright (c) [2011,2018] Open Geospatial Consortium, Inc. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/.</documentation>
4
+ </annotation>
5
+ <import namespace="http://www.opengis.net/gml/3.2" schemaLocation="http://schemas.opengis.net/gml/3.2.1/gml.xsd" />
6
+ <import namespace="http://www.opengis.net/gml/3.3/lr" schemaLocation="http://schemas.opengis.net/gml/3.3/linearRef.xsd" />
7
+ <complexType name="DualAlongReferentType">
8
+ <complexContent>
9
+ <extension base="gmllr:AlongReferentType">
10
+ <sequence>
11
+ <element name="towardsReferent" type="gmllr:ReferentPropertyType" minOccurs="0" />
12
+ </sequence>
13
+ </extension>
14
+ </complexContent>
15
+ </complexType>
16
+ <element name="DualAlongReferent" type="gmllrtr:DualAlongReferentType" substitutionGroup="gmllr:AlongReferent" />
17
+ <complexType name="DualAlongReferentPropertyType">
18
+ <sequence minOccurs="0">
19
+ <element ref="gmllrtr:DualAlongReferent" />
20
+ </sequence>
21
+ <attributeGroup ref="gml:AssociationAttributeGroup" />
22
+ </complexType>
23
+ </schema>
@@ -0,0 +1,79 @@
1
+ <schema targetNamespace="http://www.opengis.net/gml/3.3/rgrid" xmlns:gmlrgrid="http://www.opengis.net/gml/3.3/rgrid" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="3.3.1" xml:lang="en">
2
+ <annotation>
3
+ <documentation>referenceableGrid.xsd, part of GML 3.3. Copyright (c) [2011,2018] Open Geospatial Consortium, Inc. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/.</documentation>
4
+ </annotation>
5
+ <import namespace="http://www.opengis.net/gml/3.2" schemaLocation="http://schemas.opengis.net/gml/3.2.1/gml.xsd" />
6
+ <complexType abstract="true" name="AbstractReferenceableGridType">
7
+ <complexContent>
8
+ <extension base="gml:GridType">
9
+ <sequence>
10
+ <element ref="gmlrgrid:gridCRS" minOccurs="0" />
11
+ </sequence>
12
+ </extension>
13
+ </complexContent>
14
+ </complexType>
15
+ <element abstract="true" name="AbstractReferenceableGrid" substitutionGroup="gml:Grid" type="gmlrgrid:AbstractReferenceableGridType" />
16
+ <complexType name="ReferenceableGridPropertyType">
17
+ <sequence>
18
+ <element ref="gmlrgrid:AbstractReferenceableGrid" />
19
+ </sequence>
20
+ <attributeGroup ref="gml:AssociationAttributeGroup" />
21
+ <attributeGroup ref="gml:OwnershipAttributeGroup" />
22
+ </complexType>
23
+ <element name="referenceableGridProperty" type="gmlrgrid:ReferenceableGridPropertyType" />
24
+ <complexType name="ReferenceableGridByArrayType">
25
+ <complexContent>
26
+ <extension base="gmlrgrid:AbstractReferenceableGridType">
27
+ <sequence>
28
+ <group ref="gml:geometricPositionListGroup" />
29
+ <element name="sequenceRule" type="gml:SequenceRuleType" />
30
+ </sequence>
31
+ </extension>
32
+ </complexContent>
33
+ </complexType>
34
+ <element name="ReferenceableGridByArray" substitutionGroup="gmlrgrid:AbstractReferenceableGrid" type="gmlrgrid:ReferenceableGridByArrayType" />
35
+ <complexType name="ReferenceableGridByVectorsType">
36
+ <complexContent>
37
+ <extension base="gmlrgrid:AbstractReferenceableGridType">
38
+ <sequence>
39
+ <element name="origin" type="gml:PointPropertyType" />
40
+ <element maxOccurs="unbounded" name="generalGridAxis" type="gmlrgrid:GeneralGridAxisPropertyType" />
41
+ </sequence>
42
+ </extension>
43
+ </complexContent>
44
+ </complexType>
45
+ <element name="ReferenceableGridByVectors" substitutionGroup="gmlrgrid:AbstractReferenceableGrid" type="gmlrgrid:ReferenceableGridByVectorsType" />
46
+ <complexType name="GeneralGridAxisType">
47
+ <sequence>
48
+ <element name="offsetVector" type="gml:VectorType" />
49
+ <element name="coefficients" type="gml:doubleList" />
50
+ <element name="gridAxesSpanned" type="gml:NCNameList" />
51
+ <element name="sequenceRule" type="gml:SequenceRuleType" />
52
+ </sequence>
53
+ </complexType>
54
+ <element name="GeneralGridAxis" type="gmlrgrid:GeneralGridAxisType" />
55
+ <complexType name="GeneralGridAxisPropertyType">
56
+ <sequence minOccurs="0">
57
+ <element ref="gmlrgrid:GeneralGridAxis" />
58
+ </sequence>
59
+ <attributeGroup ref="gml:AssociationAttributeGroup" />
60
+ <attributeGroup ref="gml:OwnershipAttributeGroup" />
61
+ </complexType>
62
+ <element name="ReferenceableGridByTransformation" type="gmlrgrid:ReferenceableGridByTransformationType" substitutionGroup="gmlrgrid:AbstractReferenceableGrid" />
63
+ <complexType name="ReferenceableGridByTransformationType">
64
+ <complexContent>
65
+ <extension base="gmlrgrid:AbstractReferenceableGridType">
66
+ <choice>
67
+ <element name="transformation" type="gml:TransformationPropertyType" />
68
+ <element name="concatenatedOperation" type="gml:ConcatenatedOperationPropertyType" />
69
+ </choice>
70
+ </extension>
71
+ </complexContent>
72
+ </complexType>
73
+ <element name="gridCRS" type="gmlrgrid:GridCRSPropertyType" />
74
+ <complexType name="GridCRSPropertyType">
75
+ <sequence>
76
+ <element ref="gml:AbstractCRS" />
77
+ </sequence>
78
+ </complexType>
79
+ </schema>
@@ -0,0 +1,78 @@
1
+ <schema targetNamespace="http://www.opengis.net/gml/3.3/tin" xmlns:gmltin="http://www.opengis.net/gml/3.3/tin" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xml="http://www.w3.org/XML/1998/namespace" elementFormDefault="qualified" version="3.3.1">
2
+ <annotation>
3
+ <documentation>tin.xsd, part of GML 3.3. Copyright (c) [2011,2018] Open Geospatial Consortium, Inc. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/.</documentation>
4
+ </annotation>
5
+ <import namespace="http://www.opengis.net/gml/3.2" schemaLocation="http://schemas.opengis.net/gml/3.2.1/gml.xsd" />
6
+ <element name="TriangulatedSurface" type="gml:SurfaceType" substitutionGroup="gml:Surface" />
7
+ <complexType name="SimpleTrianglePatchType">
8
+ <complexContent>
9
+ <extension base="gml:AbstractSurfacePatchType">
10
+ <sequence>
11
+ <choice>
12
+ <choice minOccurs="3" maxOccurs="3">
13
+ <element ref="gml:pos" />
14
+ <element ref="gml:pointProperty" />
15
+ </choice>
16
+ <element ref="gml:posList" />
17
+ </choice>
18
+ </sequence>
19
+ <attribute name="interpolation" type="gml:SurfaceInterpolationType" fixed="planar" />
20
+ </extension>
21
+ </complexContent>
22
+ </complexType>
23
+ <element name="SimpleTrianglePatch" type="gmltin:SimpleTrianglePatchType" substitutionGroup="gml:AbstractSurfacePatch" />
24
+ <complexType name="TINType">
25
+ <complexContent>
26
+ <extension base="gml:SurfaceType">
27
+ <sequence>
28
+ <element name="tinElement" type="gmltin:TINElementPropertyType" minOccurs="0" maxOccurs="unbounded" />
29
+ <element name="maxLength" type="gml:LengthType" minOccurs="0" />
30
+ </sequence>
31
+ </extension>
32
+ </complexContent>
33
+ </complexType>
34
+ <element name="TIN" type="gmltin:TINType" substitutionGroup="gmltin:TriangulatedSurface" />
35
+ <complexType name="TINElementType">
36
+ <complexContent>
37
+ <extension base="gml:AbstractFeatureType">
38
+ <sequence>
39
+ <element name="elementType" type="gmltin:TINElementTypeType" />
40
+ <element name="elementID" type="integer" minOccurs="0" />
41
+ <element name="elementTag" type="string" minOccurs="0" />
42
+ <element name="elementGeometry" type="gml:GeometryPropertyType" />
43
+ </sequence>
44
+ </extension>
45
+ </complexContent>
46
+ </complexType>
47
+ <element name="TINElement" type="gmltin:TINElementType" substitutionGroup="gml:AbstractObject" />
48
+ <complexType name="TINElementPropertyType">
49
+ <sequence minOccurs="0">
50
+ <element ref="gmltin:TINElement" />
51
+ </sequence>
52
+ <attributeGroup ref="gml:AssociationAttributeGroup" />
53
+ </complexType>
54
+ <simpleType name="TINElementTypeType">
55
+ <union>
56
+ <simpleType>
57
+ <restriction base="string">
58
+ <enumeration value="randomPoints" />
59
+ <enumeration value="groupSpot" />
60
+ <enumeration value="boundary" />
61
+ <enumeration value="breakline" />
62
+ <enumeration value="softBreak" />
63
+ <enumeration value="controlContour" />
64
+ <enumeration value="breakVoid" />
65
+ <enumeration value="drapeVoid" />
66
+ <enumeration value="void" />
67
+ <enumeration value="hole" />
68
+ <enumeration value="stopLine" />
69
+ </restriction>
70
+ </simpleType>
71
+ <simpleType>
72
+ <restriction base="string">
73
+ <pattern value="other:\w{2,}" />
74
+ </restriction>
75
+ </simpleType>
76
+ </union>
77
+ </simpleType>
78
+ </schema>
data/sig/ogc/gml.rbs ADDED
@@ -0,0 +1,8 @@
1
+ module Ogc
2
+ module Gml
3
+ VERSION: String
4
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
5
+ end
6
+ end
7
+ end
8
+ end
data/split_files.rb ADDED
@@ -0,0 +1,28 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "fileutils"
4
+
5
+ input_path = "gml.rb"
6
+
7
+ FILE_START_REGEX = /# --- (?<filename>.*) ---\n/
8
+ FILE_END_REGEX = /\n\n/
9
+ current_file_path = ""
10
+
11
+ FileUtils.mkdir_p "gml"
12
+
13
+ contents = File.read(input_path)
14
+
15
+ contents.split("\n\n\n").each do |text_block|
16
+ match = text_block.match(FILE_START_REGEX)
17
+ next unless match
18
+
19
+ filename = match["filename"]
20
+ current_file_path = "gml/#{filename}"
21
+ puts "FILE STARTED #{current_file_path}"
22
+
23
+ # puts text_block
24
+
25
+ File.open(current_file_path, "w") do |file|
26
+ file.puts(text_block)
27
+ end
28
+ end