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,34 @@
1
+ # frozen_string_literal: true
2
+
3
+ # --- conversion_type.rb ---
4
+ require "shale"
5
+ require_relative "abstract_general_parameter_value_property"
6
+ require_relative "operation_method_property"
7
+ require_relative "abstract_general_conversion"
8
+
9
+ module Ogc
10
+ module Gml
11
+ class Conversion < AbstractGeneralConversion
12
+ attribute :method, OperationMethodProperty
13
+ attribute :parameter_value, AbstractGeneralParameterValueProperty, collection: true
14
+
15
+ xml do
16
+ root "Conversion"
17
+ namespace "http://www.opengis.net/gml/3.2", "gml"
18
+
19
+ map_attribute "id", to: :id, prefix: "gml", namespace: "http://www.opengis.net/gml/3.2"
20
+ map_element "metaDataProperty", to: :meta_data_property
21
+ map_element "description", to: :description
22
+ map_element "descriptionReference", to: :description_reference
23
+ map_element "identifier", to: :identifier
24
+ map_element "name", to: :name
25
+ map_element "remarks", to: :remarks
26
+ map_element "domainOfValidity", to: :domain_of_validity
27
+ map_element "scope", to: :scope
28
+ map_element "coordinateOperationAccuracy", to: :coordinate_operation_accuracy
29
+ map_element "method", to: :method
30
+ map_element "parameterValue", to: :parameter_value
31
+ end
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ # --- conversion_property_type.rb ---
4
+ require "shale"
5
+
6
+ require_relative "conversion"
7
+
8
+ module Ogc
9
+ module Gml
10
+ class ConversionProperty < Shale::Mapper
11
+ attribute :nil_reason, Shale::Type::Value
12
+ attribute :remote_schema, Shale::Type::Value
13
+ attribute :conversion, Conversion
14
+
15
+ xml do
16
+ root "conversionRef"
17
+ namespace "http://www.opengis.net/gml/3.2", "gml"
18
+
19
+ map_attribute "nilReason", to: :nil_reason
20
+ map_attribute "remoteSchema", to: :remote_schema, prefix: "gml", namespace: "http://www.opengis.net/gml/3.2"
21
+ map_element "Conversion", to: :conversion
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ # --- conversion_to_preferred_unit_type.rb ---
4
+ require "shale"
5
+
6
+ require_relative "formula"
7
+
8
+ module Ogc
9
+ module Gml
10
+ class ConversionToPreferredUnit < Shale::Mapper
11
+ attribute :uom, Shale::Type::Value
12
+ attribute :factor, Shale::Type::Float
13
+ attribute :formula, Formula
14
+
15
+ xml do
16
+ root "roughConversionToPreferredUnit"
17
+ namespace "http://www.opengis.net/gml/3.2", "gml"
18
+
19
+ map_attribute "uom", to: :uom
20
+ map_element "factor", to: :factor
21
+ map_element "formula", to: :formula
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ # --- coordinate_operation_accuracy.rb ---
4
+ require "shale"
5
+
6
+ require_relative "string_or_ref"
7
+
8
+ module Ogc
9
+ module Gml
10
+ class CoordinateOperationAccuracy < Shale::Mapper
11
+ attribute :nil_reason, Shale::Type::Value
12
+ attribute :remote_schema, Shale::Type::Value
13
+ attribute :reference_event, StringOrRef
14
+
15
+ xml do
16
+ root "coordinateOperationAccuracy"
17
+ namespace "http://www.opengis.net/gml/3.2", "gml"
18
+
19
+ map_attribute "nilReason", to: :nil_reason
20
+ map_attribute "remoteSchema", to: :remote_schema, prefix: "gml", namespace: "http://www.opengis.net/gml/3.2"
21
+ map_element "referenceEvent", to: :reference_event
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ # --- coordinate_operation_property_type.rb ---
4
+ require "shale"
5
+
6
+ require_relative "abstract_coordinate_operation"
7
+
8
+ module Ogc
9
+ module Gml
10
+ class CoordinateOperationProperty < Shale::Mapper
11
+ attribute :nil_reason, Shale::Type::Value
12
+ attribute :remote_schema, Shale::Type::Value
13
+ attribute :abstract_coordinate_operation, AbstractCoordinateOperation
14
+
15
+ xml do
16
+ root "usesOperation"
17
+ namespace "http://www.opengis.net/gml/3.2", "gml"
18
+
19
+ map_attribute "nilReason", to: :nil_reason
20
+ map_attribute "remoteSchema", to: :remote_schema, prefix: "gml", namespace: "http://www.opengis.net/gml/3.2"
21
+ map_element "AbstractCoordinateOperation", to: :abstract_coordinate_operation
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,48 @@
1
+ # frozen_string_literal: true
2
+
3
+ # --- coordinate_system_axis_type.rb ---
4
+ require "shale"
5
+
6
+ require_relative "code"
7
+ require_relative "code_with_authority"
8
+ require_relative "meta_data_property"
9
+ require_relative "reference"
10
+
11
+ module Ogc
12
+ module Gml
13
+ class CoordinateSystemAxis < Shale::Mapper
14
+ attribute :id, Shale::Type::Value
15
+ attribute :uom, Shale::Type::Value
16
+ attribute :meta_data_property, MetaDataProperty, collection: true
17
+ attribute :description, Shale::Type::String
18
+ attribute :description_reference, Reference
19
+ attribute :identifier, CodeWithAuthority
20
+ attribute :name, Code, collection: true
21
+ attribute :remarks, Shale::Type::String
22
+ attribute :axis_abbrev, Code
23
+ attribute :axis_direction, CodeWithAuthority
24
+ attribute :minimum_value, Shale::Type::Float
25
+ attribute :maximum_value, Shale::Type::Float
26
+ attribute :range_meaning, CodeWithAuthority
27
+
28
+ xml do
29
+ root "CoordinateSystemAxis"
30
+ namespace "http://www.opengis.net/gml/3.2", "gml"
31
+
32
+ map_attribute "id", to: :id, prefix: "gml", namespace: "http://www.opengis.net/gml/3.2"
33
+ map_attribute "uom", to: :uom
34
+ map_element "metaDataProperty", to: :meta_data_property
35
+ map_element "description", to: :description
36
+ map_element "descriptionReference", to: :description_reference
37
+ map_element "identifier", to: :identifier
38
+ map_element "name", to: :name
39
+ map_element "remarks", to: :remarks
40
+ map_element "axisAbbrev", to: :axis_abbrev
41
+ map_element "axisDirection", to: :axis_direction
42
+ map_element "minimumValue", to: :minimum_value
43
+ map_element "maximumValue", to: :maximum_value
44
+ map_element "rangeMeaning", to: :range_meaning
45
+ end
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ # --- coordinate_system_axis_property_type.rb ---
4
+ require "shale"
5
+
6
+ require_relative "coordinate_system_axis"
7
+
8
+ module Ogc
9
+ module Gml
10
+ class CoordinateSystemAxisProperty < Shale::Mapper
11
+ attribute :nil_reason, Shale::Type::Value
12
+ attribute :remote_schema, Shale::Type::Value
13
+ attribute :coordinate_system_axis, CoordinateSystemAxis
14
+
15
+ xml do
16
+ root "usesAxis"
17
+ namespace "http://www.opengis.net/gml/3.2", "gml"
18
+
19
+ map_attribute "nilReason", to: :nil_reason
20
+ map_attribute "remoteSchema", to: :remote_schema, prefix: "gml", namespace: "http://www.opengis.net/gml/3.2"
21
+ map_element "CoordinateSystemAxis", to: :coordinate_system_axis
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ # --- coordinate_system_property_type.rb ---
4
+ require "shale"
5
+
6
+ require_relative "abstract_coordinate_system"
7
+
8
+ module Ogc
9
+ module Gml
10
+ class CoordinateSystemProperty < Shale::Mapper
11
+ attribute :nil_reason, Shale::Type::Value
12
+ attribute :remote_schema, Shale::Type::Value
13
+ attribute :abstract_coordinate_system, AbstractCoordinateSystem
14
+
15
+ xml do
16
+ root "usesCS"
17
+ namespace "http://www.opengis.net/gml/3.2", "gml"
18
+
19
+ map_attribute "nilReason", to: :nil_reason
20
+ map_attribute "remoteSchema", to: :remote_schema, prefix: "gml", namespace: "http://www.opengis.net/gml/3.2"
21
+ map_element "AbstractCoordinateSystem", to: :abstract_coordinate_system
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ # --- coordinates_type.rb ---
4
+ require "shale"
5
+
6
+ module Ogc
7
+ module Gml
8
+ class Coordinates < Shale::Mapper
9
+ attribute :content, Shale::Type::String
10
+ attribute :decimal, Shale::Type::String, default: -> { "." }
11
+ attribute :cs, Shale::Type::String, default: -> { "," }
12
+ attribute :ts, Shale::Type::String, default: -> { " " }
13
+
14
+ xml do
15
+ root "coordinates"
16
+ namespace "http://www.opengis.net/gml/3.2", "gml"
17
+
18
+ map_content to: :content
19
+ map_attribute "decimal", to: :decimal
20
+ map_attribute "cs", to: :cs
21
+ map_attribute "ts", to: :ts
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ # --- count.rb ---
4
+ require "shale"
5
+
6
+ module Ogc
7
+ module Gml
8
+ class Count < Shale::Mapper
9
+ attribute :content, Shale::Type::Integer
10
+ attribute :nil_reason, Shale::Type::Value
11
+
12
+ xml do
13
+ root "Count"
14
+ namespace "http://www.opengis.net/gml/3.2", "gml"
15
+
16
+ map_content to: :content
17
+ map_attribute "nilReason", to: :nil_reason
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ # --- coverage_function_type.rb ---
4
+ require "shale"
5
+
6
+ require_relative "grid_function"
7
+ require_relative "mapping_rule"
8
+ require_relative "string_or_ref"
9
+
10
+ module Ogc
11
+ module Gml
12
+ class CoverageFunction < Shale::Mapper
13
+ attribute :mapping_rule, StringOrRef
14
+ attribute :coverage_mapping_rule, MappingRule
15
+ attribute :grid_function, GridFunction
16
+
17
+ xml do
18
+ root "coverageFunction"
19
+ namespace "http://www.opengis.net/gml/3.2", "gml"
20
+
21
+ map_element "MappingRule", to: :mapping_rule
22
+ map_element "CoverageMappingRule", to: :coverage_mapping_rule
23
+ map_element "GridFunction", to: :grid_function
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ # --- crs_property_type.rb ---
4
+ require "shale"
5
+
6
+ require_relative "abstract_crs"
7
+
8
+ module Ogc
9
+ module Gml
10
+ class CRSProperty < Shale::Mapper
11
+ attribute :nil_reason, Shale::Type::Value
12
+ attribute :remote_schema, Shale::Type::Value
13
+ attribute :abstract_crs, AbstractCRS
14
+
15
+ xml do
16
+ root "crsRef"
17
+ namespace "http://www.opengis.net/gml/3.2", "gml"
18
+
19
+ map_attribute "nilReason", to: :nil_reason
20
+ map_attribute "remoteSchema", to: :remote_schema, prefix: "gml", namespace: "http://www.opengis.net/gml/3.2"
21
+ map_element "AbstractCRS", to: :abstract_crs
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,45 @@
1
+ # frozen_string_literal: true
2
+
3
+ # --- cubic_spline_type.rb ---
4
+ require "shale"
5
+
6
+ require_relative "coordinates"
7
+ require_relative "direct_position_list"
8
+ require_relative "direct_position"
9
+ require_relative "point_property"
10
+ require_relative "vector"
11
+ require_relative "abstract_curve_segment"
12
+
13
+ module Ogc
14
+ module Gml
15
+ class CubicSpline < AbstractCurveSegment
16
+ attribute :interpolation, Shale::Type::String
17
+ attribute :degree, Shale::Type::Integer
18
+ attribute :pos, DirectPosition, collection: true
19
+ attribute :point_property, PointProperty, collection: true
20
+ attribute :point_rep, PointProperty, collection: true
21
+ attribute :pos_list, DirectPositionList
22
+ attribute :coordinates, Coordinates
23
+ attribute :vector_at_start, Vector
24
+ attribute :vector_at_end, Vector
25
+
26
+ xml do
27
+ root "CubicSpline"
28
+ namespace "http://www.opengis.net/gml/3.2", "gml"
29
+
30
+ map_attribute "numDerivativesAtStart", to: :num_derivatives_at_start
31
+ map_attribute "numDerivativesAtEnd", to: :num_derivatives_at_end
32
+ map_attribute "numDerivativeInterior", to: :num_derivative_interior
33
+ map_attribute "interpolation", to: :interpolation
34
+ map_attribute "degree", to: :degree
35
+ map_element "pos", to: :pos
36
+ map_element "pointProperty", to: :point_property
37
+ map_element "pointRep", to: :point_rep
38
+ map_element "posList", to: :pos_list
39
+ map_element "coordinates", to: :coordinates
40
+ map_element "vectorAtStart", to: :vector_at_start
41
+ map_element "vectorAtEnd", to: :vector_at_end
42
+ end
43
+ end
44
+ end
45
+ end
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ # --- curve_type.rb ---
4
+ require "shale"
5
+ require_relative "curve_segment_array_property"
6
+ require_relative "abstract_curve"
7
+
8
+ module Ogc
9
+ module Gml
10
+ class Curve < AbstractCurve
11
+ attribute :segments, CurveSegmentArrayProperty, collection: true
12
+
13
+ xml do
14
+ root "Curve"
15
+ namespace "http://www.opengis.net/gml/3.2", "gml"
16
+
17
+ map_attribute "id", to: :id, prefix: "gml", namespace: "http://www.opengis.net/gml/3.2"
18
+ map_attribute "srsName", to: :srs_name
19
+ map_attribute "srsDimension", to: :srs_dimension
20
+ map_attribute "axisLabels", to: :axis_labels
21
+ map_attribute "uomLabels", to: :uom_labels
22
+ map_element "metaDataProperty", to: :meta_data_property
23
+ map_element "description", to: :description
24
+ map_element "descriptionReference", to: :description_reference
25
+ map_element "identifier", to: :identifier
26
+ map_element "name", to: :name
27
+ map_element "segments", to: :segments
28
+ end
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,28 @@
1
+ # frozen_string_literal: true
2
+
3
+ # --- curve_array_property_type.rb ---
4
+ require "shale"
5
+
6
+ require_relative "abstract_curve"
7
+ require_relative "line_string"
8
+
9
+ module Ogc
10
+ module Gml
11
+ class CurveArrayProperty < Shale::Mapper
12
+ attribute :owns, Shale::Type::Boolean, default: -> { "false" }
13
+ attribute :abstract_curve, AbstractCurve, collection: true
14
+ attribute :curve, Curve, collection: true
15
+ attribute :line_string, LineString, collection: true
16
+
17
+ xml do
18
+ root "curveArrayProperty"
19
+ namespace "http://www.opengis.net/gml/3.2", "gml"
20
+
21
+ map_attribute "owns", to: :owns
22
+ map_element "AbstractCurve", to: :abstract_curve
23
+ map_element "Curve", to: :curve
24
+ map_element "LineString", to: :line_string
25
+ end
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,37 @@
1
+ # frozen_string_literal: true
2
+
3
+ # --- curve_property_type.rb ---
4
+ require "shale"
5
+
6
+ require_relative "abstract_curve"
7
+ require_relative "curve"
8
+ require_relative "orientable_curve"
9
+ require_relative "line_string"
10
+
11
+ module Ogc
12
+ module Gml
13
+ class CurveProperty < Shale::Mapper
14
+ attribute :nil_reason, Shale::Type::Value
15
+ attribute :remote_schema, Shale::Type::Value
16
+ attribute :owns, Shale::Type::Boolean
17
+ attribute :abstract_curve, AbstractCurve
18
+ attribute :curve, Curve
19
+ attribute :orientable_curve, OrientableCurve
20
+ attribute :line_string, LineString
21
+
22
+ xml do
23
+ root "centerLineOf"
24
+ namespace "http://www.opengis.net/gml/3.2", "gml"
25
+
26
+ map_attribute "nilReason", to: :nil_reason
27
+ map_attribute "remoteSchema", to: :remote_schema, prefix: "gml", namespace: "http://www.opengis.net/gml/3.2"
28
+ map_attribute "owns", to: :owns
29
+
30
+ map_element "AbstractCurve", to: :abstract_curve
31
+ map_element "Curve", to: :curve, prefix: "gml", namespace: "http://www.opengis.net/gml/3.2"
32
+ map_element "OrientableCurve", to: :orientable_curve, prefix: "gml", namespace: "http://www.opengis.net/gml/3.2"
33
+ map_element "LineString", to: :line_string, prefix: "gml", namespace: "http://www.opengis.net/gml/3.2"
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+
3
+ # --- curve_segment_array_property_type.rb ---
4
+ require "shale"
5
+
6
+ require_relative "abstract_curve_segment"
7
+ require_relative "arc"
8
+ require_relative "arc_by_center_point"
9
+ require_relative "line_string_segment"
10
+ require_relative "geodesic_string"
11
+
12
+ module Ogc
13
+ module Gml
14
+ class CurveSegmentArrayProperty < Shale::Mapper
15
+ attribute :abstract_curve_segment, AbstractCurveSegment, collection: true
16
+ attribute :arc, Arc, collection: true
17
+ attribute :arc_by_center_point, ArcByCenterPoint, collection: true
18
+ attribute :line_string_segment, LineStringSegment, collection: true
19
+ attribute :geodesic_string, GeodesicString, collection: true
20
+
21
+ xml do
22
+ root "segments"
23
+ namespace "http://www.opengis.net/gml/3.2", "gml"
24
+
25
+ map_element "AbstractCurveSegment", to: :abstract_curve_segment
26
+ map_element "GeodesicString", to: :geodesic_string
27
+ map_element "Arc", to: :arc
28
+ map_element "ArcByCenterPoint", to: :arc_by_center_point
29
+ map_element "LineStringSegment", to: :line_string_segment
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ # --- cylinder_type.rb ---
4
+ require "shale"
5
+ require_relative "abstract_gridded_surface"
6
+
7
+ module Ogc
8
+ module Gml
9
+ class Cylinder < AbstractGriddedSurface
10
+ attribute :horizontal_curve_type, Shale::Type::String
11
+ attribute :vertical_curve_type, Shale::Type::String
12
+
13
+ xml do
14
+ root "Cylinder"
15
+ namespace "http://www.opengis.net/gml/3.2", "gml"
16
+
17
+ map_attribute "aggregationType", to: :aggregation_type
18
+ map_attribute "rows", to: :rows
19
+ map_attribute "columns", to: :columns
20
+ map_attribute "horizontalCurveType", to: :horizontal_curve_type
21
+ map_attribute "verticalCurveType", to: :vertical_curve_type
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+
3
+ # --- cylindrical_cs_type.rb ---
4
+ require "shale"
5
+ require_relative "abstract_coordinate_system"
6
+
7
+ module Ogc
8
+ module Gml
9
+ class CylindricalCS < AbstractCoordinateSystem
10
+ xml do
11
+ root "CylindricalCS"
12
+ namespace "http://www.opengis.net/gml/3.2", "gml"
13
+
14
+ map_attribute "id", to: :id, prefix: "gml", namespace: "http://www.opengis.net/gml/3.2"
15
+ map_attribute "aggregationType", to: :aggregation_type
16
+ map_element "metaDataProperty", to: :meta_data_property
17
+ map_element "description", to: :description
18
+ map_element "descriptionReference", to: :description_reference
19
+ map_element "identifier", to: :identifier
20
+ map_element "name", to: :name
21
+ map_element "remarks", to: :remarks
22
+ map_element "axis", to: :axis
23
+ end
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ # --- cylindrical_cs_property_type.rb ---
4
+ require "shale"
5
+
6
+ require_relative "cylindrical_cs"
7
+
8
+ module Ogc
9
+ module Gml
10
+ class CylindricalCSProperty < Shale::Mapper
11
+ attribute :nil_reason, Shale::Type::Value
12
+ attribute :remote_schema, Shale::Type::Value
13
+ attribute :cylindrical_cs, CylindricalCS
14
+
15
+ xml do
16
+ root "cylindricalCSRef"
17
+ namespace "http://www.opengis.net/gml/3.2", "gml"
18
+
19
+ map_attribute "nilReason", to: :nil_reason
20
+ map_attribute "remoteSchema", to: :remote_schema, prefix: "gml", namespace: "http://www.opengis.net/gml/3.2"
21
+ map_element "CylindricalCS", to: :cylindrical_cs
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+
3
+ # --- data_block_type.rb ---
4
+ require "shale"
5
+
6
+ require_relative "association_role"
7
+ require_relative "coordinates"
8
+
9
+ module Ogc
10
+ module Gml
11
+ class DataBlock < Shale::Mapper
12
+ attribute :range_parameters, AssociationRole
13
+ attribute :tuple_list, Coordinates
14
+ attribute :double_or_nil_reason_tuple_list, Shale::Type::Value
15
+
16
+ xml do
17
+ root "DataBlock"
18
+ namespace "http://www.opengis.net/gml/3.2", "gml"
19
+
20
+ map_element "rangeParameters", to: :range_parameters
21
+ map_element "tupleList", to: :tuple_list
22
+ map_element "doubleOrNilReasonTupleList", to: :double_or_nil_reason_tuple_list
23
+ end
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ # --- datum_property_type.rb ---
4
+ require "shale"
5
+
6
+ require_relative "abstract_datum"
7
+
8
+ module Ogc
9
+ module Gml
10
+ class DatumProperty < Shale::Mapper
11
+ attribute :nil_reason, Shale::Type::Value
12
+ attribute :remote_schema, Shale::Type::Value
13
+ attribute :abstract_datum, AbstractDatum
14
+
15
+ xml do
16
+ root "datumRef"
17
+ namespace "http://www.opengis.net/gml/3.2", "gml"
18
+
19
+ map_attribute "nilReason", to: :nil_reason
20
+ map_attribute "remoteSchema", to: :remote_schema, prefix: "gml", namespace: "http://www.opengis.net/gml/3.2"
21
+ map_element "AbstractDatum", to: :abstract_datum
22
+ end
23
+ end
24
+ end
25
+ end