ogc-gml 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/workflows/main.yml +27 -0
- data/.github/workflows/rake.yml +16 -0
- data/.github/workflows/release.yml +24 -0
- data/.gitignore +11 -0
- data/.gitmodules +3 -0
- data/.rspec +3 -0
- data/.rubocop.yml +8 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/Gemfile +12 -0
- data/README.md +35 -0
- data/Rakefile +12 -0
- data/bin/console +11 -0
- data/bin/setup +8 -0
- data/lib/ogc/gml/abstract_continuous_coverage.rb +35 -0
- data/lib/ogc/gml/abstract_coordinate_operation.rb +41 -0
- data/lib/ogc/gml/abstract_coordinate_system.rb +41 -0
- data/lib/ogc/gml/abstract_coverage.rb +36 -0
- data/lib/ogc/gml/abstract_crs.rb +35 -0
- data/lib/ogc/gml/abstract_curve.rb +27 -0
- data/lib/ogc/gml/abstract_curve_segment.rb +23 -0
- data/lib/ogc/gml/abstract_datum.rb +39 -0
- data/lib/ogc/gml/abstract_feature.rb +35 -0
- data/lib/ogc/gml/abstract_feature_collection.rb +36 -0
- data/lib/ogc/gml/abstract_general_conversion.rb +38 -0
- data/lib/ogc/gml/abstract_general_derived_crs.rb +30 -0
- data/lib/ogc/gml/abstract_general_operation_parameter.rb +28 -0
- data/lib/ogc/gml/abstract_general_operation_parameter_property.rb +25 -0
- data/lib/ogc/gml/abstract_general_parameter_value.rb +15 -0
- data/lib/ogc/gml/abstract_general_parameter_value_property.rb +21 -0
- data/lib/ogc/gml/abstract_general_transformation.rb +30 -0
- data/lib/ogc/gml/abstract_geometric_aggregate.rb +30 -0
- data/lib/ogc/gml/abstract_geometric_primitive.rb +42 -0
- data/lib/ogc/gml/abstract_geometry.rb +27 -0
- data/lib/ogc/gml/abstract_gml.rb +28 -0
- data/lib/ogc/gml/abstract_gridded_surface.rb +23 -0
- data/lib/ogc/gml/abstract_meta_data.rb +21 -0
- data/lib/ogc/gml/abstract_parametric_curve_surface.rb +19 -0
- data/lib/ogc/gml/abstract_ring.rb +15 -0
- data/lib/ogc/gml/abstract_ring_property.rb +21 -0
- data/lib/ogc/gml/abstract_solid.rb +27 -0
- data/lib/ogc/gml/abstract_surface.rb +27 -0
- data/lib/ogc/gml/abstract_surface_patch.rb +15 -0
- data/lib/ogc/gml/abstract_time_complex.rb +28 -0
- data/lib/ogc/gml/abstract_time_geometric_primitive.rb +39 -0
- data/lib/ogc/gml/abstract_time_object.rb +28 -0
- data/lib/ogc/gml/abstract_time_primitive.rb +29 -0
- data/lib/ogc/gml/abstract_time_slice.rb +35 -0
- data/lib/ogc/gml/abstract_time_topology_primitive.rb +34 -0
- data/lib/ogc/gml/abstract_topo_primitive.rb +28 -0
- data/lib/ogc/gml/abstract_topology.rb +33 -0
- data/lib/ogc/gml/affine_cs.rb +26 -0
- data/lib/ogc/gml/affine_cs_property.rb +25 -0
- data/lib/ogc/gml/affine_placement.rb +28 -0
- data/lib/ogc/gml/angle.rb +21 -0
- data/lib/ogc/gml/arc.rb +27 -0
- data/lib/ogc/gml/arc_by_bulge.rb +33 -0
- data/lib/ogc/gml/arc_by_center_point.rb +43 -0
- data/lib/ogc/gml/arc_string.rb +40 -0
- data/lib/ogc/gml/arc_string_by_bulge.rb +33 -0
- data/lib/ogc/gml/array.rb +32 -0
- data/lib/ogc/gml/array_association.rb +21 -0
- data/lib/ogc/gml/association_role.rb +23 -0
- data/lib/ogc/gml/b_spline.rb +30 -0
- data/lib/ogc/gml/bag.rb +35 -0
- data/lib/ogc/gml/base_unit.rb +40 -0
- data/lib/ogc/gml/bezier.rb +46 -0
- data/lib/ogc/gml/boolean.rb +21 -0
- data/lib/ogc/gml/bounding_shape.rb +25 -0
- data/lib/ogc/gml/cartesian_cs.rb +26 -0
- data/lib/ogc/gml/cartesian_cs_property.rb +25 -0
- data/lib/ogc/gml/category.rb +23 -0
- data/lib/ogc/gml/category_extent.rb +21 -0
- data/lib/ogc/gml/circle.rb +27 -0
- data/lib/ogc/gml/circle_by_center_point.rb +43 -0
- data/lib/ogc/gml/clothoid.rb +33 -0
- data/lib/ogc/gml/code.rb +21 -0
- data/lib/ogc/gml/code_or_nil_reason_list.rb +21 -0
- data/lib/ogc/gml/code_with_authority.rb +23 -0
- data/lib/ogc/gml/composite_curve.rb +32 -0
- data/lib/ogc/gml/composite_solid.rb +32 -0
- data/lib/ogc/gml/composite_surface.rb +32 -0
- data/lib/ogc/gml/composite_value.rb +42 -0
- data/lib/ogc/gml/compound_crs.rb +32 -0
- data/lib/ogc/gml/compound_crs_property.rb +25 -0
- data/lib/ogc/gml/concatenated_operation.rb +47 -0
- data/lib/ogc/gml/concatenated_operation_property.rb +25 -0
- data/lib/ogc/gml/cone.rb +22 -0
- data/lib/ogc/gml/control_point.rb +27 -0
- data/lib/ogc/gml/conventional_unit.rb +46 -0
- data/lib/ogc/gml/conversion.rb +34 -0
- data/lib/ogc/gml/conversion_property.rb +25 -0
- data/lib/ogc/gml/conversion_to_preferred_unit.rb +25 -0
- data/lib/ogc/gml/coordinate_operation_accuracy.rb +25 -0
- data/lib/ogc/gml/coordinate_operation_property.rb +25 -0
- data/lib/ogc/gml/coordinate_system_axis.rb +48 -0
- data/lib/ogc/gml/coordinate_system_axis_property.rb +25 -0
- data/lib/ogc/gml/coordinate_system_property.rb +25 -0
- data/lib/ogc/gml/coordinates.rb +25 -0
- data/lib/ogc/gml/count.rb +21 -0
- data/lib/ogc/gml/coverage_function.rb +27 -0
- data/lib/ogc/gml/crs_property.rb +25 -0
- data/lib/ogc/gml/cubic_spline.rb +45 -0
- data/lib/ogc/gml/curve.rb +31 -0
- data/lib/ogc/gml/curve_array_property.rb +28 -0
- data/lib/ogc/gml/curve_property.rb +37 -0
- data/lib/ogc/gml/curve_segment_array_property.rb +33 -0
- data/lib/ogc/gml/cylinder.rb +25 -0
- data/lib/ogc/gml/cylindrical_cs.rb +26 -0
- data/lib/ogc/gml/cylindrical_cs_property.rb +25 -0
- data/lib/ogc/gml/data_block.rb +26 -0
- data/lib/ogc/gml/datum_property.rb +25 -0
- data/lib/ogc/gml/definition.rb +31 -0
- data/lib/ogc/gml/definition_proxy.rb +33 -0
- data/lib/ogc/gml/degrees.rb +21 -0
- data/lib/ogc/gml/derivation_unit_term.rb +21 -0
- data/lib/ogc/gml/derived_crs.rb +37 -0
- data/lib/ogc/gml/derived_crs_property.rb +25 -0
- data/lib/ogc/gml/derived_unit.rb +41 -0
- data/lib/ogc/gml/dictionary.rb +46 -0
- data/lib/ogc/gml/dictionary_entry.rb +33 -0
- data/lib/ogc/gml/direct_position.rb +27 -0
- data/lib/ogc/gml/direct_position_list.rb +29 -0
- data/lib/ogc/gml/directed_edge_property.rb +29 -0
- data/lib/ogc/gml/directed_face_property.rb +29 -0
- data/lib/ogc/gml/directed_node_property.rb +29 -0
- data/lib/ogc/gml/directed_observation.rb +50 -0
- data/lib/ogc/gml/directed_observation_at_distance.rb +53 -0
- data/lib/ogc/gml/directed_topo_solid_property.rb +29 -0
- data/lib/ogc/gml/direction_description.rb +28 -0
- data/lib/ogc/gml/direction_property.rb +38 -0
- data/lib/ogc/gml/direction_vector.rb +26 -0
- data/lib/ogc/gml/discrete_coverage.rb +28 -0
- data/lib/ogc/gml/dms_angle.rb +27 -0
- data/lib/ogc/gml/domain_of_validity.rb +25 -0
- data/lib/ogc/gml/domain_set.rb +30 -0
- data/lib/ogc/gml/dynamic_feature.rb +46 -0
- data/lib/ogc/gml/dynamic_feature_collection.rb +49 -0
- data/lib/ogc/gml/dynamic_feature_member.rb +27 -0
- data/lib/ogc/gml/edge.rb +48 -0
- data/lib/ogc/gml/ellipsoid.rb +37 -0
- data/lib/ogc/gml/ellipsoid_property.rb +25 -0
- data/lib/ogc/gml/ellipsoidal_cs.rb +26 -0
- data/lib/ogc/gml/ellipsoidal_cs_property.rb +25 -0
- data/lib/ogc/gml/engineering_crs.rb +54 -0
- data/lib/ogc/gml/engineering_crs_property.rb +25 -0
- data/lib/ogc/gml/engineering_datum.rb +28 -0
- data/lib/ogc/gml/engineering_datum_property.rb +25 -0
- data/lib/ogc/gml/envelope.rb +36 -0
- data/lib/ogc/gml/envelope_with_time_period.rb +43 -0
- data/lib/ogc/gml/face.rb +50 -0
- data/lib/ogc/gml/face_or_topo_solid_property.rb +33 -0
- data/lib/ogc/gml/feature_array_property.rb +21 -0
- data/lib/ogc/gml/feature_collection.rb +27 -0
- data/lib/ogc/gml/feature_property.rb +27 -0
- data/lib/ogc/gml/file.rb +32 -0
- data/lib/ogc/gml/formula.rb +25 -0
- data/lib/ogc/gml/formula_citation.rb +25 -0
- data/lib/ogc/gml/general_conversion_property.rb +25 -0
- data/lib/ogc/gml/general_transformation_property.rb +25 -0
- data/lib/ogc/gml/generic_meta_data.rb +21 -0
- data/lib/ogc/gml/geocentric_crs.rb +36 -0
- data/lib/ogc/gml/geocentric_crs_property.rb +25 -0
- data/lib/ogc/gml/geodesic.rb +33 -0
- data/lib/ogc/gml/geodesic_string.rb +33 -0
- data/lib/ogc/gml/geodetic_crs.rb +40 -0
- data/lib/ogc/gml/geodetic_crs_property.rb +25 -0
- data/lib/ogc/gml/geodetic_datum.rb +35 -0
- data/lib/ogc/gml/geodetic_datum_property.rb +25 -0
- data/lib/ogc/gml/geographic_crs.rb +33 -0
- data/lib/ogc/gml/geographic_crs_property.rb +25 -0
- data/lib/ogc/gml/geometric_complex.rb +32 -0
- data/lib/ogc/gml/geometric_primitive_property.rb +27 -0
- data/lib/ogc/gml/geometry_array_property.rb +23 -0
- data/lib/ogc/gml/geometry_property.rb +27 -0
- data/lib/ogc/gml/grid.rb +49 -0
- data/lib/ogc/gml/grid_envelope.rb +21 -0
- data/lib/ogc/gml/grid_function.rb +23 -0
- data/lib/ogc/gml/grid_limits.rb +21 -0
- data/lib/ogc/gml/history_property.rb +23 -0
- data/lib/ogc/gml/image_crs.rb +39 -0
- data/lib/ogc/gml/image_crs_property.rb +25 -0
- data/lib/ogc/gml/image_datum.rb +31 -0
- data/lib/ogc/gml/image_datum_property.rb +25 -0
- data/lib/ogc/gml/indirect_entry.rb +21 -0
- data/lib/ogc/gml/inline_property.rb +19 -0
- data/lib/ogc/gml/knot.rb +23 -0
- data/lib/ogc/gml/knot_property.rb +21 -0
- data/lib/ogc/gml/length.rb +21 -0
- data/lib/ogc/gml/line_string.rb +43 -0
- data/lib/ogc/gml/line_string_segment.rb +38 -0
- data/lib/ogc/gml/line_string_segment_array_property.rb +21 -0
- data/lib/ogc/gml/linear_cs.rb +26 -0
- data/lib/ogc/gml/linear_cs_property.rb +25 -0
- data/lib/ogc/gml/linear_ring.rb +32 -0
- data/lib/ogc/gml/location_property.rb +33 -0
- data/lib/ogc/gml/mapping_rule.rb +23 -0
- data/lib/ogc/gml/measure.rb +21 -0
- data/lib/ogc/gml/measure_list.rb +21 -0
- data/lib/ogc/gml/measure_or_nil_reason_list.rb +21 -0
- data/lib/ogc/gml/meta_data_property.rb +27 -0
- data/lib/ogc/gml/moving_object_status.rb +59 -0
- data/lib/ogc/gml/multi_curve.rb +33 -0
- data/lib/ogc/gml/multi_curve_property.rb +27 -0
- data/lib/ogc/gml/multi_geometry.rb +35 -0
- data/lib/ogc/gml/multi_geometry_property.rb +27 -0
- data/lib/ogc/gml/multi_point.rb +35 -0
- data/lib/ogc/gml/multi_point_property.rb +27 -0
- data/lib/ogc/gml/multi_solid.rb +35 -0
- data/lib/ogc/gml/multi_solid_property.rb +27 -0
- data/lib/ogc/gml/multi_surface.rb +35 -0
- data/lib/ogc/gml/multi_surface_property.rb +27 -0
- data/lib/ogc/gml/node.rb +48 -0
- data/lib/ogc/gml/node_or_edge_property.rb +33 -0
- data/lib/ogc/gml/node_property.rb +27 -0
- data/lib/ogc/gml/oblique_cartesian_cs.rb +26 -0
- data/lib/ogc/gml/oblique_cartesian_cs_property.rb +25 -0
- data/lib/ogc/gml/observation.rb +47 -0
- data/lib/ogc/gml/offset_curve.rb +31 -0
- data/lib/ogc/gml/operation_method.rb +43 -0
- data/lib/ogc/gml/operation_method_property.rb +25 -0
- data/lib/ogc/gml/operation_parameter.rb +25 -0
- data/lib/ogc/gml/operation_parameter_group.rb +31 -0
- data/lib/ogc/gml/operation_parameter_group_property.rb +25 -0
- data/lib/ogc/gml/operation_parameter_property.rb +25 -0
- data/lib/ogc/gml/operation_property.rb +25 -0
- data/lib/ogc/gml/orientable_curve.rb +50 -0
- data/lib/ogc/gml/orientable_surface.rb +47 -0
- data/lib/ogc/gml/parameter_value.rb +40 -0
- data/lib/ogc/gml/parameter_value_group.rb +24 -0
- data/lib/ogc/gml/pass_through_operation.rb +43 -0
- data/lib/ogc/gml/pass_through_operation_property.rb +25 -0
- data/lib/ogc/gml/point.rb +33 -0
- data/lib/ogc/gml/point_array_property.rb +23 -0
- data/lib/ogc/gml/point_property.rb +27 -0
- data/lib/ogc/gml/polar_cs.rb +26 -0
- data/lib/ogc/gml/polar_cs_property.rb +25 -0
- data/lib/ogc/gml/polygon.rb +34 -0
- data/lib/ogc/gml/polygon_patch.rb +25 -0
- data/lib/ogc/gml/prime_meridian.rb +34 -0
- data/lib/ogc/gml/prime_meridian_property.rb +25 -0
- data/lib/ogc/gml/priority_location_property.rb +35 -0
- data/lib/ogc/gml/procedure_property.rb +27 -0
- data/lib/ogc/gml/projected_crs.rb +37 -0
- data/lib/ogc/gml/projected_crs_property.rb +25 -0
- data/lib/ogc/gml/quantity.rb +23 -0
- data/lib/ogc/gml/quantity_extent.rb +21 -0
- data/lib/ogc/gml/range_set.rb +29 -0
- data/lib/ogc/gml/rectangle.rb +23 -0
- data/lib/ogc/gml/rectified_grid.rb +55 -0
- data/lib/ogc/gml/ref_location.rb +21 -0
- data/lib/ogc/gml/reference.rb +23 -0
- data/lib/ogc/gml/related_time.rb +29 -0
- data/lib/ogc/gml/result.rb +23 -0
- data/lib/ogc/gml/ring.rb +21 -0
- data/lib/ogc/gml/second_defining_parameter1.rb +21 -0
- data/lib/ogc/gml/second_defining_parameter2.rb +26 -0
- data/lib/ogc/gml/sequence_rule.rb +23 -0
- data/lib/ogc/gml/shell.rb +25 -0
- data/lib/ogc/gml/shell_property.rb +27 -0
- data/lib/ogc/gml/single_crs_property.rb +25 -0
- data/lib/ogc/gml/single_operation_property.rb +25 -0
- data/lib/ogc/gml/solid.rb +33 -0
- data/lib/ogc/gml/solid_array_property.rb +23 -0
- data/lib/ogc/gml/solid_property.rb +27 -0
- data/lib/ogc/gml/sphere.rb +22 -0
- data/lib/ogc/gml/spherical_cs.rb +26 -0
- data/lib/ogc/gml/spherical_cs_property.rb +25 -0
- data/lib/ogc/gml/string_or_ref.rb +23 -0
- data/lib/ogc/gml/surface.rb +31 -0
- data/lib/ogc/gml/surface_array_property.rb +23 -0
- data/lib/ogc/gml/surface_patch_array_property.rb +28 -0
- data/lib/ogc/gml/surface_property.rb +30 -0
- data/lib/ogc/gml/target_property.rb +30 -0
- data/lib/ogc/gml/temporal_crs.rb +36 -0
- data/lib/ogc/gml/temporal_crs_property.rb +25 -0
- data/lib/ogc/gml/temporal_cs.rb +26 -0
- data/lib/ogc/gml/temporal_cs_property.rb +25 -0
- data/lib/ogc/gml/temporal_datum.rb +38 -0
- data/lib/ogc/gml/temporal_datum_property.rb +25 -0
- data/lib/ogc/gml/time_calendar.rb +36 -0
- data/lib/ogc/gml/time_calendar_era.rb +41 -0
- data/lib/ogc/gml/time_calendar_era_property.rb +27 -0
- data/lib/ogc/gml/time_calendar_property.rb +27 -0
- data/lib/ogc/gml/time_clock.rb +43 -0
- data/lib/ogc/gml/time_coordinate_system.rb +42 -0
- data/lib/ogc/gml/time_cs.rb +26 -0
- data/lib/ogc/gml/time_cs_property.rb +25 -0
- data/lib/ogc/gml/time_edge.rb +40 -0
- data/lib/ogc/gml/time_edge_property.rb +27 -0
- data/lib/ogc/gml/time_instant.rb +29 -0
- data/lib/ogc/gml/time_instant_property.rb +27 -0
- data/lib/ogc/gml/time_interval_length.rb +25 -0
- data/lib/ogc/gml/time_node.rb +37 -0
- data/lib/ogc/gml/time_node_property.rb +27 -0
- data/lib/ogc/gml/time_ordinal_era.rb +46 -0
- data/lib/ogc/gml/time_ordinal_era_property.rb +27 -0
- data/lib/ogc/gml/time_ordinal_reference_system.rb +36 -0
- data/lib/ogc/gml/time_period.rb +41 -0
- data/lib/ogc/gml/time_period_property.rb +27 -0
- data/lib/ogc/gml/time_position.rb +25 -0
- data/lib/ogc/gml/time_primitive_property.rb +27 -0
- data/lib/ogc/gml/time_reference_system.rb +33 -0
- data/lib/ogc/gml/time_topology_complex.rb +32 -0
- data/lib/ogc/gml/time_topology_primitive_property.rb +27 -0
- data/lib/ogc/gml/tin.rb +43 -0
- data/lib/ogc/gml/topo_complex.rb +54 -0
- data/lib/ogc/gml/topo_complex_property.rb +25 -0
- data/lib/ogc/gml/topo_curve.rb +39 -0
- data/lib/ogc/gml/topo_curve_property.rb +23 -0
- data/lib/ogc/gml/topo_point.rb +32 -0
- data/lib/ogc/gml/topo_point_property.rb +23 -0
- data/lib/ogc/gml/topo_primitive_array_association.rb +23 -0
- data/lib/ogc/gml/topo_primitive_member.rb +27 -0
- data/lib/ogc/gml/topo_solid.rb +50 -0
- data/lib/ogc/gml/topo_solid_property.rb +27 -0
- data/lib/ogc/gml/topo_surface.rb +39 -0
- data/lib/ogc/gml/topo_surface_property.rb +23 -0
- data/lib/ogc/gml/topo_volume.rb +39 -0
- data/lib/ogc/gml/topo_volume_property.rb +23 -0
- data/lib/ogc/gml/transformation.rb +44 -0
- data/lib/ogc/gml/transformation_property.rb +25 -0
- data/lib/ogc/gml/triangle.rb +23 -0
- data/lib/ogc/gml/unit_definition.rb +38 -0
- data/lib/ogc/gml/unit_of_measure.rb +19 -0
- data/lib/ogc/gml/user_defined_cs.rb +26 -0
- data/lib/ogc/gml/user_defined_cs_property.rb +25 -0
- data/lib/ogc/gml/value_array.rb +46 -0
- data/lib/ogc/gml/value_array_property.rb +30 -0
- data/lib/ogc/gml/value_property.rb +34 -0
- data/lib/ogc/gml/vector.rb +21 -0
- data/lib/ogc/gml/version.rb +7 -0
- data/lib/ogc/gml/vertical_crs.rb +33 -0
- data/lib/ogc/gml/vertical_crs_property.rb +25 -0
- data/lib/ogc/gml/vertical_cs.rb +26 -0
- data/lib/ogc/gml/vertical_cs_property.rb +25 -0
- data/lib/ogc/gml/vertical_datum.rb +28 -0
- data/lib/ogc/gml/vertical_datum_property.rb +25 -0
- data/lib/ogc/gml.rb +339 -0
- data/ogc-gml.gemspec +43 -0
- data/references/combined_gml/gml-without-xlink-gmd.xsd +6490 -0
- data/references/combined_gml/original-combined/gml.xsd +6491 -0
- data/references/combined_gml/original-combined/include-chain.txt +78 -0
- data/references/gml/3.2.1.2/SchematronConstraints.xml +71 -0
- data/references/gml/3.2.1.2/basicTypes.xsd +268 -0
- data/references/gml/3.2.1.2/coordinateOperations.xsd +525 -0
- data/references/gml/3.2.1.2/coordinateReferenceSystems.xsd +373 -0
- data/references/gml/3.2.1.2/coordinateSystems.xsd +297 -0
- data/references/gml/3.2.1.2/coverage.xsd +292 -0
- data/references/gml/3.2.1.2/datums.xsd +287 -0
- data/references/gml/3.2.1.2/defaultStyle.xsd +453 -0
- data/references/gml/3.2.1.2/deprecatedTypes.xsd +1133 -0
- data/references/gml/3.2.1.2/dictionary.xsd +90 -0
- data/references/gml/3.2.1.2/direction.xsd +84 -0
- data/references/gml/3.2.1.2/dynamicFeature.xsd +109 -0
- data/references/gml/3.2.1.2/feature.xsd +94 -0
- data/references/gml/3.2.1.2/geometryAggregates.xsd +197 -0
- data/references/gml/3.2.1.2/geometryBasic0d1d.xsd +277 -0
- data/references/gml/3.2.1.2/geometryBasic2d.xsd +124 -0
- data/references/gml/3.2.1.2/geometryComplexes.xsd +95 -0
- data/references/gml/3.2.1.2/geometryPrimitives.xsd +846 -0
- data/references/gml/3.2.1.2/gml.xsd +20 -0
- data/references/gml/3.2.1.2/gmlBase.xsd +185 -0
- data/references/gml/3.2.1.2/gml_32_geometries.rdf +368 -0
- data/references/gml/3.2.1.2/gml_3_2_1-ReadMe.txt +58 -0
- data/references/gml/3.2.1.2/grids.xsd +64 -0
- data/references/gml/3.2.1.2/measures.xsd +68 -0
- data/references/gml/3.2.1.2/observation.xsd +95 -0
- data/references/gml/3.2.1.2/referenceSystems.xsd +70 -0
- data/references/gml/3.2.1.2/temporal.xsd +269 -0
- data/references/gml/3.2.1.2/temporalReferenceSystems.xsd +189 -0
- data/references/gml/3.2.1.2/temporalTopology.xsd +119 -0
- data/references/gml/3.2.1.2/topology.xsd +386 -0
- data/references/gml/3.2.1.2/units.xsd +231 -0
- data/references/gml/3.2.1.2/valueObjects.xsd +205 -0
- data/references/gml/3.3.1/ReadMe.txt +89 -0
- data/references/gml/3.3.1/extdBaseTypes.xsd +67 -0
- data/references/gml/3.3.1/extdEncRule.xsd +8 -0
- data/references/gml/3.3.1/geometryCompact.xsd +218 -0
- data/references/gml/3.3.1/iso8601.sch +19 -0
- data/references/gml/3.3.1/linearRef.xsd +215 -0
- data/references/gml/3.3.1/linearRefOffset.xsd +96 -0
- data/references/gml/3.3.1/linearRefOffsetVector.xsd +48 -0
- data/references/gml/3.3.1/linearRefTowardsReferent.xsd +23 -0
- data/references/gml/3.3.1/referenceableGrid.xsd +79 -0
- data/references/gml/3.3.1/tin.xsd +78 -0
- data/sig/ogc/gml.rbs +8 -0
- data/split_files.rb +28 -0
- metadata +545 -0
@@ -0,0 +1,1133 @@
|
|
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:deprecatedTypes:3.2.1">deprecatedTypes.xsd</appinfo>
|
5
|
+
<documentation>All global schema components that are part of the GML schema, but were deprecated. See Annex I.
|
6
|
+
|
7
|
+
GML is an OGC Standard.
|
8
|
+
Copyright (c) 2007,2010 Open Geospatial Consortium.
|
9
|
+
To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
|
10
|
+
</documentation>
|
11
|
+
</annotation>
|
12
|
+
<include schemaLocation="gml.xsd"/>
|
13
|
+
<element name="Null" type="gml:NilReasonType">
|
14
|
+
<annotation>
|
15
|
+
<appinfo>deprecated</appinfo>
|
16
|
+
</annotation>
|
17
|
+
</element>
|
18
|
+
<element name="anchorPoint" type="gml:CodeType" substitutionGroup="gml:anchorDefinition">
|
19
|
+
<annotation>
|
20
|
+
<appinfo>deprecated</appinfo>
|
21
|
+
</annotation>
|
22
|
+
</element>
|
23
|
+
<element name="datumRef" type="gml:DatumPropertyType">
|
24
|
+
<annotation>
|
25
|
+
<appinfo>deprecated</appinfo>
|
26
|
+
</annotation>
|
27
|
+
</element>
|
28
|
+
<element name="usesPrimeMeridian" type="gml:PrimeMeridianPropertyType" substitutionGroup="gml:primeMeridian">
|
29
|
+
<annotation>
|
30
|
+
<appinfo>deprecated</appinfo>
|
31
|
+
</annotation>
|
32
|
+
</element>
|
33
|
+
<element name="usesEllipsoid" type="gml:EllipsoidPropertyType" substitutionGroup="gml:ellipsoid">
|
34
|
+
<annotation>
|
35
|
+
<appinfo>deprecated</appinfo>
|
36
|
+
</annotation>
|
37
|
+
</element>
|
38
|
+
<element name="geodeticDatumRef" type="gml:GeodeticDatumPropertyType">
|
39
|
+
<annotation>
|
40
|
+
<appinfo>deprecated</appinfo>
|
41
|
+
</annotation>
|
42
|
+
</element>
|
43
|
+
<element name="ellipsoidRef" type="gml:EllipsoidPropertyType">
|
44
|
+
<annotation>
|
45
|
+
<appinfo>deprecated</appinfo>
|
46
|
+
</annotation>
|
47
|
+
</element>
|
48
|
+
<element name="primeMeridianRef" type="gml:PrimeMeridianPropertyType">
|
49
|
+
<annotation>
|
50
|
+
<appinfo>deprecated</appinfo>
|
51
|
+
</annotation>
|
52
|
+
</element>
|
53
|
+
<element name="engineeringDatumRef" type="gml:EngineeringDatumPropertyType">
|
54
|
+
<annotation>
|
55
|
+
<appinfo>deprecated</appinfo>
|
56
|
+
</annotation>
|
57
|
+
</element>
|
58
|
+
<element name="imageDatumRef" type="gml:ImageDatumPropertyType">
|
59
|
+
<annotation>
|
60
|
+
<appinfo>deprecated</appinfo>
|
61
|
+
</annotation>
|
62
|
+
</element>
|
63
|
+
<element name="verticalDatumRef" type="gml:VerticalDatumPropertyType">
|
64
|
+
<annotation>
|
65
|
+
<appinfo>deprecated</appinfo>
|
66
|
+
</annotation>
|
67
|
+
</element>
|
68
|
+
<element name="temporalDatumRef" type="gml:TemporalDatumPropertyType">
|
69
|
+
<annotation>
|
70
|
+
<appinfo>deprecated</appinfo>
|
71
|
+
</annotation>
|
72
|
+
</element>
|
73
|
+
<element name="coordinateOperationRef" type="gml:CoordinateOperationPropertyType">
|
74
|
+
<annotation>
|
75
|
+
<appinfo>deprecated</appinfo>
|
76
|
+
</annotation>
|
77
|
+
</element>
|
78
|
+
<element name="singleOperationRef" type="gml:SingleOperationPropertyType">
|
79
|
+
<annotation>
|
80
|
+
<appinfo>deprecated</appinfo>
|
81
|
+
</annotation>
|
82
|
+
</element>
|
83
|
+
<element name="AbstractOperation" type="gml:AbstractCoordinateOperationType" abstract="true" substitutionGroup="gml:AbstractSingleOperation">
|
84
|
+
<annotation>
|
85
|
+
<appinfo>deprecated</appinfo>
|
86
|
+
</annotation>
|
87
|
+
</element>
|
88
|
+
<complexType name="OperationPropertyType">
|
89
|
+
<annotation>
|
90
|
+
<appinfo>deprecated</appinfo>
|
91
|
+
</annotation>
|
92
|
+
<sequence minOccurs="0">
|
93
|
+
<element ref="gml:AbstractOperation"/>
|
94
|
+
</sequence>
|
95
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
96
|
+
</complexType>
|
97
|
+
<element name="operationRef" type="gml:OperationPropertyType">
|
98
|
+
<annotation>
|
99
|
+
<appinfo>deprecated</appinfo>
|
100
|
+
</annotation>
|
101
|
+
</element>
|
102
|
+
<element name="generalConversionRef" type="gml:GeneralConversionPropertyType">
|
103
|
+
<annotation>
|
104
|
+
<appinfo>deprecated</appinfo>
|
105
|
+
</annotation>
|
106
|
+
</element>
|
107
|
+
<element name="generalTransformationRef" type="gml:GeneralTransformationPropertyType">
|
108
|
+
<annotation>
|
109
|
+
<appinfo>deprecated</appinfo>
|
110
|
+
</annotation>
|
111
|
+
</element>
|
112
|
+
<element name="usesSingleOperation" type="gml:CoordinateOperationPropertyType" substitutionGroup="gml:coordOperation">
|
113
|
+
<annotation>
|
114
|
+
<appinfo>deprecated</appinfo>
|
115
|
+
</annotation>
|
116
|
+
</element>
|
117
|
+
<element name="concatenatedOperationRef" type="gml:ConcatenatedOperationPropertyType">
|
118
|
+
<annotation>
|
119
|
+
<appinfo>deprecated</appinfo>
|
120
|
+
</annotation>
|
121
|
+
</element>
|
122
|
+
<element name="usesOperation" type="gml:CoordinateOperationPropertyType" substitutionGroup="gml:coordOperation">
|
123
|
+
<annotation>
|
124
|
+
<appinfo>deprecated</appinfo>
|
125
|
+
</annotation>
|
126
|
+
</element>
|
127
|
+
<element name="passThroughOperationRef" type="gml:PassThroughOperationPropertyType">
|
128
|
+
<annotation>
|
129
|
+
<appinfo>deprecated</appinfo>
|
130
|
+
</annotation>
|
131
|
+
</element>
|
132
|
+
<element name="usesMethod" type="gml:OperationMethodPropertyType" substitutionGroup="gml:method">
|
133
|
+
<annotation>
|
134
|
+
<appinfo>deprecated</appinfo>
|
135
|
+
</annotation>
|
136
|
+
</element>
|
137
|
+
<element name="usesValue" type="gml:AbstractGeneralParameterValuePropertyType" substitutionGroup="gml:parameterValue">
|
138
|
+
<annotation>
|
139
|
+
<appinfo>deprecated</appinfo>
|
140
|
+
</annotation>
|
141
|
+
</element>
|
142
|
+
<element name="conversionRef" type="gml:ConversionPropertyType">
|
143
|
+
<annotation>
|
144
|
+
<appinfo>deprecated</appinfo>
|
145
|
+
</annotation>
|
146
|
+
</element>
|
147
|
+
<element name="transformationRef" type="gml:TransformationPropertyType">
|
148
|
+
<annotation>
|
149
|
+
<appinfo>deprecated</appinfo>
|
150
|
+
</annotation>
|
151
|
+
</element>
|
152
|
+
<element name="dmsAngleValue" type="gml:DMSAngleType">
|
153
|
+
<annotation>
|
154
|
+
<appinfo>deprecated</appinfo>
|
155
|
+
</annotation>
|
156
|
+
</element>
|
157
|
+
<element name="valueOfParameter" type="gml:OperationParameterPropertyType" substitutionGroup="gml:operationParameter">
|
158
|
+
<annotation>
|
159
|
+
<appinfo>deprecated</appinfo>
|
160
|
+
</annotation>
|
161
|
+
</element>
|
162
|
+
<element name="includesValue" type="gml:AbstractGeneralParameterValuePropertyType" substitutionGroup="gml:parameterValue">
|
163
|
+
<annotation>
|
164
|
+
<appinfo>deprecated</appinfo>
|
165
|
+
</annotation>
|
166
|
+
</element>
|
167
|
+
<element name="valuesOfGroup" type="gml:OperationParameterGroupPropertyType" substitutionGroup="gml:group">
|
168
|
+
<annotation>
|
169
|
+
<appinfo>deprecated</appinfo>
|
170
|
+
</annotation>
|
171
|
+
</element>
|
172
|
+
<element name="methodFormula" type="gml:CodeType" substitutionGroup="gml:formula">
|
173
|
+
<annotation>
|
174
|
+
<appinfo>deprecated</appinfo>
|
175
|
+
</annotation>
|
176
|
+
</element>
|
177
|
+
<element name="usesParameter" type="gml:AbstractGeneralOperationParameterPropertyType" substitutionGroup="gml:generalOperationParameter">
|
178
|
+
<annotation>
|
179
|
+
<appinfo>deprecated</appinfo>
|
180
|
+
</annotation>
|
181
|
+
</element>
|
182
|
+
<element name="operationMethodRef" type="gml:OperationMethodPropertyType">
|
183
|
+
<annotation>
|
184
|
+
<appinfo>deprecated</appinfo>
|
185
|
+
</annotation>
|
186
|
+
</element>
|
187
|
+
<element name="abstractGeneralOperationParameterRef" type="gml:AbstractGeneralOperationParameterPropertyType">
|
188
|
+
<annotation>
|
189
|
+
<appinfo>deprecated</appinfo>
|
190
|
+
</annotation>
|
191
|
+
</element>
|
192
|
+
<element name="operationParameterRef" type="gml:OperationParameterPropertyType">
|
193
|
+
<annotation>
|
194
|
+
<appinfo>deprecated</appinfo>
|
195
|
+
</annotation>
|
196
|
+
</element>
|
197
|
+
<element name="includesParameter" type="gml:AbstractGeneralOperationParameterPropertyType" substitutionGroup="gml:parameter">
|
198
|
+
<annotation>
|
199
|
+
<appinfo>deprecated</appinfo>
|
200
|
+
</annotation>
|
201
|
+
</element>
|
202
|
+
<element name="operationParameterGroupRef" type="gml:OperationParameterPropertyType">
|
203
|
+
<annotation>
|
204
|
+
<appinfo>deprecated</appinfo>
|
205
|
+
</annotation>
|
206
|
+
</element>
|
207
|
+
<element name="referenceSystemRef" type="gml:CRSPropertyType">
|
208
|
+
<annotation>
|
209
|
+
<appinfo>deprecated</appinfo>
|
210
|
+
</annotation>
|
211
|
+
</element>
|
212
|
+
<element name="crsRef" type="gml:CRSPropertyType">
|
213
|
+
<annotation>
|
214
|
+
<appinfo>deprecated</appinfo>
|
215
|
+
</annotation>
|
216
|
+
</element>
|
217
|
+
<element name="coordinateSystemAxisRef" type="gml:CoordinateSystemAxisPropertyType">
|
218
|
+
<annotation>
|
219
|
+
<appinfo>deprecated</appinfo>
|
220
|
+
</annotation>
|
221
|
+
</element>
|
222
|
+
<element name="usesAxis" type="gml:CoordinateSystemAxisPropertyType" substitutionGroup="gml:axis">
|
223
|
+
<annotation>
|
224
|
+
<appinfo>deprecated</appinfo>
|
225
|
+
</annotation>
|
226
|
+
</element>
|
227
|
+
<element name="coordinateSystemRef" type="gml:CoordinateSystemPropertyType">
|
228
|
+
<annotation>
|
229
|
+
<appinfo>deprecated</appinfo>
|
230
|
+
</annotation>
|
231
|
+
</element>
|
232
|
+
<element name="ellipsoidalCSRef" type="gml:EllipsoidalCSPropertyType">
|
233
|
+
<annotation>
|
234
|
+
<appinfo>deprecated</appinfo>
|
235
|
+
</annotation>
|
236
|
+
</element>
|
237
|
+
<element name="cartesianCSRef" type="gml:CartesianCSPropertyType">
|
238
|
+
<annotation>
|
239
|
+
<appinfo>deprecated</appinfo>
|
240
|
+
</annotation>
|
241
|
+
</element>
|
242
|
+
<element name="verticalCSRef" type="gml:VerticalCSPropertyType">
|
243
|
+
<annotation>
|
244
|
+
<appinfo>deprecated</appinfo>
|
245
|
+
</annotation>
|
246
|
+
</element>
|
247
|
+
<element name="TemporalCS" type="gml:TemporalCSType" substitutionGroup="gml:AbstractCoordinateSystem">
|
248
|
+
<annotation>
|
249
|
+
<appinfo>deprecated</appinfo>
|
250
|
+
</annotation>
|
251
|
+
</element>
|
252
|
+
<complexType name="TemporalCSType">
|
253
|
+
<annotation>
|
254
|
+
<appinfo>deprecated</appinfo>
|
255
|
+
</annotation>
|
256
|
+
<complexContent>
|
257
|
+
<extension base="gml:AbstractCoordinateSystemType"/>
|
258
|
+
</complexContent>
|
259
|
+
</complexType>
|
260
|
+
<complexType name="TemporalCSPropertyType">
|
261
|
+
<annotation>
|
262
|
+
<appinfo>deprecated</appinfo>
|
263
|
+
</annotation>
|
264
|
+
<sequence minOccurs="0">
|
265
|
+
<element ref="gml:TemporalCS"/>
|
266
|
+
</sequence>
|
267
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
268
|
+
</complexType>
|
269
|
+
<element name="temporalCSRef" type="gml:TemporalCSPropertyType">
|
270
|
+
<annotation>
|
271
|
+
<appinfo>deprecated</appinfo>
|
272
|
+
</annotation>
|
273
|
+
</element>
|
274
|
+
<element name="linearCSRef" type="gml:LinearCSPropertyType">
|
275
|
+
<annotation>
|
276
|
+
<appinfo>deprecated</appinfo>
|
277
|
+
</annotation>
|
278
|
+
</element>
|
279
|
+
<element name="userDefinedCSRef" type="gml:UserDefinedCSPropertyType">
|
280
|
+
<annotation>
|
281
|
+
<appinfo>deprecated</appinfo>
|
282
|
+
</annotation>
|
283
|
+
</element>
|
284
|
+
<element name="sphericalCSRef" type="gml:SphericalCSPropertyType">
|
285
|
+
<annotation>
|
286
|
+
<appinfo>deprecated</appinfo>
|
287
|
+
</annotation>
|
288
|
+
</element>
|
289
|
+
<element name="polarCSRef" type="gml:PolarCSPropertyType">
|
290
|
+
<annotation>
|
291
|
+
<appinfo>deprecated</appinfo>
|
292
|
+
</annotation>
|
293
|
+
</element>
|
294
|
+
<element name="cylindricalCSRef" type="gml:CylindricalCSPropertyType">
|
295
|
+
<annotation>
|
296
|
+
<appinfo>deprecated</appinfo>
|
297
|
+
</annotation>
|
298
|
+
</element>
|
299
|
+
<element name="ObliqueCartesianCS" type="gml:ObliqueCartesianCSType" substitutionGroup="gml:AbstractCoordinateSystem">
|
300
|
+
<annotation>
|
301
|
+
<appinfo>deprecated</appinfo>
|
302
|
+
</annotation>
|
303
|
+
</element>
|
304
|
+
<complexType name="ObliqueCartesianCSType">
|
305
|
+
<annotation>
|
306
|
+
<appinfo>deprecated</appinfo>
|
307
|
+
</annotation>
|
308
|
+
<complexContent>
|
309
|
+
<extension base="gml:AbstractCoordinateSystemType"/>
|
310
|
+
</complexContent>
|
311
|
+
</complexType>
|
312
|
+
<complexType name="ObliqueCartesianCSPropertyType">
|
313
|
+
<annotation>
|
314
|
+
<appinfo>deprecated</appinfo>
|
315
|
+
</annotation>
|
316
|
+
<sequence minOccurs="0">
|
317
|
+
<element ref="gml:ObliqueCartesianCS"/>
|
318
|
+
</sequence>
|
319
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
320
|
+
</complexType>
|
321
|
+
<element name="obliqueCartesianCSRef" type="gml:ObliqueCartesianCSPropertyType">
|
322
|
+
<annotation>
|
323
|
+
<appinfo>deprecated</appinfo>
|
324
|
+
</annotation>
|
325
|
+
</element>
|
326
|
+
<element name="singleCRSRef" type="gml:SingleCRSPropertyType">
|
327
|
+
<annotation>
|
328
|
+
<appinfo>deprecated</appinfo>
|
329
|
+
</annotation>
|
330
|
+
</element>
|
331
|
+
<element name="definedByConversion" type="gml:GeneralConversionPropertyType" substitutionGroup="gml:conversion">
|
332
|
+
<annotation>
|
333
|
+
<appinfo>deprecated</appinfo>
|
334
|
+
</annotation>
|
335
|
+
</element>
|
336
|
+
<element name="includesSingleCRS" type="gml:SingleCRSPropertyType" substitutionGroup="gml:componentReferenceSystem">
|
337
|
+
<annotation>
|
338
|
+
<appinfo>deprecated</appinfo>
|
339
|
+
</annotation>
|
340
|
+
</element>
|
341
|
+
<element name="compoundCRSRef" type="gml:CompoundCRSPropertyType">
|
342
|
+
<annotation>
|
343
|
+
<appinfo>deprecated</appinfo>
|
344
|
+
</annotation>
|
345
|
+
</element>
|
346
|
+
<element name="usesEllipsoidalCS" type="gml:EllipsoidalCSPropertyType" substitutionGroup="gml:ellipsoidalCS">
|
347
|
+
<annotation>
|
348
|
+
<appinfo>deprecated</appinfo>
|
349
|
+
</annotation>
|
350
|
+
</element>
|
351
|
+
<element name="usesCartesianCS" type="gml:CartesianCSPropertyType" substitutionGroup="gml:cartesianCS">
|
352
|
+
<annotation>
|
353
|
+
<appinfo>deprecated</appinfo>
|
354
|
+
</annotation>
|
355
|
+
</element>
|
356
|
+
<element name="usesSphericalCS" type="gml:SphericalCSPropertyType" substitutionGroup="gml:sphericalCS">
|
357
|
+
<annotation>
|
358
|
+
<appinfo>deprecated</appinfo>
|
359
|
+
</annotation>
|
360
|
+
</element>
|
361
|
+
<element name="usesGeodeticDatum" type="gml:GeodeticDatumPropertyType" substitutionGroup="gml:geodeticDatum">
|
362
|
+
<annotation>
|
363
|
+
<appinfo>deprecated</appinfo>
|
364
|
+
</annotation>
|
365
|
+
</element>
|
366
|
+
<element name="usesVerticalCS" type="gml:VerticalCSPropertyType" substitutionGroup="gml:verticalCS">
|
367
|
+
<annotation>
|
368
|
+
<appinfo>deprecated</appinfo>
|
369
|
+
</annotation>
|
370
|
+
</element>
|
371
|
+
<element name="usesVerticalDatum" type="gml:VerticalDatumPropertyType" substitutionGroup="gml:verticalDatum">
|
372
|
+
<annotation>
|
373
|
+
<appinfo>deprecated</appinfo>
|
374
|
+
</annotation>
|
375
|
+
</element>
|
376
|
+
<element name="verticalCRSRef" type="gml:VerticalCRSPropertyType">
|
377
|
+
<annotation>
|
378
|
+
<appinfo>deprecated</appinfo>
|
379
|
+
</annotation>
|
380
|
+
</element>
|
381
|
+
<element name="baseGeographicCRS" type="gml:GeographicCRSPropertyType">
|
382
|
+
<annotation>
|
383
|
+
<appinfo>deprecated</appinfo>
|
384
|
+
</annotation>
|
385
|
+
</element>
|
386
|
+
<element name="projectedCRSRef" type="gml:ProjectedCRSPropertyType">
|
387
|
+
<annotation>
|
388
|
+
<appinfo>deprecated</appinfo>
|
389
|
+
</annotation>
|
390
|
+
</element>
|
391
|
+
<element name="usesCS" type="gml:CoordinateSystemPropertyType" substitutionGroup="gml:coordinateSystem">
|
392
|
+
<annotation>
|
393
|
+
<appinfo>deprecated</appinfo>
|
394
|
+
</annotation>
|
395
|
+
</element>
|
396
|
+
<element name="derivedCRSRef" type="gml:DerivedCRSPropertyType">
|
397
|
+
<annotation>
|
398
|
+
<appinfo>deprecated</appinfo>
|
399
|
+
</annotation>
|
400
|
+
</element>
|
401
|
+
<element name="usesEngineeringDatum" type="gml:EngineeringDatumPropertyType" substitutionGroup="gml:engineeringDatum">
|
402
|
+
<annotation>
|
403
|
+
<appinfo>deprecated</appinfo>
|
404
|
+
</annotation>
|
405
|
+
</element>
|
406
|
+
<element name="engineeringCRSRef" type="gml:EngineeringCRSPropertyType">
|
407
|
+
<annotation>
|
408
|
+
<appinfo>deprecated</appinfo>
|
409
|
+
</annotation>
|
410
|
+
</element>
|
411
|
+
<element name="usesAffineCS" type="gml:AffineCSPropertyType" substitutionGroup="gml:affineCS">
|
412
|
+
<annotation>
|
413
|
+
<appinfo>deprecated</appinfo>
|
414
|
+
</annotation>
|
415
|
+
</element>
|
416
|
+
<element name="usesImageDatum" type="gml:ImageDatumPropertyType" substitutionGroup="gml:imageDatum">
|
417
|
+
<annotation>
|
418
|
+
<appinfo>deprecated</appinfo>
|
419
|
+
</annotation>
|
420
|
+
</element>
|
421
|
+
<element name="usesObliqueCartesianCS" type="gml:ObliqueCartesianCSPropertyType">
|
422
|
+
<annotation>
|
423
|
+
<appinfo>deprecated</appinfo>
|
424
|
+
</annotation>
|
425
|
+
</element>
|
426
|
+
<element name="imageCRSRef" type="gml:ImageCRSPropertyType">
|
427
|
+
<annotation>
|
428
|
+
<appinfo>deprecated</appinfo>
|
429
|
+
</annotation>
|
430
|
+
</element>
|
431
|
+
<element name="usesTimeCS" type="gml:TimeCSPropertyType" substitutionGroup="gml:timeCS">
|
432
|
+
<annotation>
|
433
|
+
<appinfo>deprecated</appinfo>
|
434
|
+
</annotation>
|
435
|
+
</element>
|
436
|
+
<element name="usesTemporalCS" type="gml:TemporalCSPropertyType">
|
437
|
+
<annotation>
|
438
|
+
<appinfo>deprecated</appinfo>
|
439
|
+
</annotation>
|
440
|
+
</element>
|
441
|
+
<element name="usesTemporalDatum" type="gml:TemporalDatumPropertyType" substitutionGroup="gml:temporalDatum">
|
442
|
+
<annotation>
|
443
|
+
<appinfo>deprecated</appinfo>
|
444
|
+
</annotation>
|
445
|
+
</element>
|
446
|
+
<element name="temporalCRSRef" type="gml:TemporalCRSPropertyType">
|
447
|
+
<annotation>
|
448
|
+
<appinfo>deprecated</appinfo>
|
449
|
+
</annotation>
|
450
|
+
</element>
|
451
|
+
<element name="GeographicCRS" type="gml:GeographicCRSType" substitutionGroup="gml:AbstractSingleCRS">
|
452
|
+
<annotation>
|
453
|
+
<appinfo>deprecated</appinfo>
|
454
|
+
</annotation>
|
455
|
+
</element>
|
456
|
+
<complexType name="GeographicCRSType">
|
457
|
+
<annotation>
|
458
|
+
<appinfo>deprecated</appinfo>
|
459
|
+
</annotation>
|
460
|
+
<complexContent>
|
461
|
+
<extension base="gml:AbstractCRSType">
|
462
|
+
<sequence>
|
463
|
+
<element ref="gml:usesEllipsoidalCS"/>
|
464
|
+
<element ref="gml:usesGeodeticDatum"/>
|
465
|
+
</sequence>
|
466
|
+
</extension>
|
467
|
+
</complexContent>
|
468
|
+
</complexType>
|
469
|
+
<complexType name="GeographicCRSPropertyType">
|
470
|
+
<annotation>
|
471
|
+
<appinfo>deprecated</appinfo>
|
472
|
+
</annotation>
|
473
|
+
<sequence minOccurs="0">
|
474
|
+
<element ref="gml:GeographicCRS"/>
|
475
|
+
</sequence>
|
476
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
477
|
+
</complexType>
|
478
|
+
<element name="geographicCRSRef" type="gml:GeographicCRSPropertyType">
|
479
|
+
<annotation>
|
480
|
+
<appinfo>deprecated</appinfo>
|
481
|
+
</annotation>
|
482
|
+
</element>
|
483
|
+
<element name="GeocentricCRS" type="gml:GeocentricCRSType" substitutionGroup="gml:AbstractSingleCRS">
|
484
|
+
<annotation>
|
485
|
+
<appinfo>deprecated</appinfo>
|
486
|
+
</annotation>
|
487
|
+
</element>
|
488
|
+
<complexType name="GeocentricCRSType">
|
489
|
+
<annotation>
|
490
|
+
<appinfo>deprecated</appinfo>
|
491
|
+
</annotation>
|
492
|
+
<complexContent>
|
493
|
+
<extension base="gml:AbstractCRSType">
|
494
|
+
<sequence>
|
495
|
+
<choice>
|
496
|
+
<element ref="gml:usesCartesianCS"/>
|
497
|
+
<element ref="gml:usesSphericalCS"/>
|
498
|
+
</choice>
|
499
|
+
<element ref="gml:usesGeodeticDatum"/>
|
500
|
+
</sequence>
|
501
|
+
</extension>
|
502
|
+
</complexContent>
|
503
|
+
</complexType>
|
504
|
+
<complexType name="GeocentricCRSPropertyType">
|
505
|
+
<annotation>
|
506
|
+
<appinfo>deprecated</appinfo>
|
507
|
+
</annotation>
|
508
|
+
<sequence minOccurs="0">
|
509
|
+
<element ref="gml:GeocentricCRS"/>
|
510
|
+
</sequence>
|
511
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
512
|
+
</complexType>
|
513
|
+
<element name="geocentricCRSRef" type="gml:GeocentricCRSPropertyType">
|
514
|
+
<annotation>
|
515
|
+
<appinfo>deprecated</appinfo>
|
516
|
+
</annotation>
|
517
|
+
</element>
|
518
|
+
<attribute name="uom" type="anyURI">
|
519
|
+
<annotation>
|
520
|
+
<appinfo>deprecated</appinfo>
|
521
|
+
</annotation>
|
522
|
+
</attribute>
|
523
|
+
<simpleType name="SuccessionType">
|
524
|
+
<annotation>
|
525
|
+
<appinfo>deprecated</appinfo>
|
526
|
+
</annotation>
|
527
|
+
<restriction base="string">
|
528
|
+
<enumeration value="substitution"/>
|
529
|
+
<enumeration value="division"/>
|
530
|
+
<enumeration value="fusion"/>
|
531
|
+
<enumeration value="initiation"/>
|
532
|
+
</restriction>
|
533
|
+
</simpleType>
|
534
|
+
<element name="dmsAngle" type="gml:DMSAngleType">
|
535
|
+
<annotation>
|
536
|
+
<appinfo>deprecated</appinfo>
|
537
|
+
</annotation>
|
538
|
+
</element>
|
539
|
+
<complexType name="DMSAngleType">
|
540
|
+
<annotation>
|
541
|
+
<appinfo>deprecated</appinfo>
|
542
|
+
</annotation>
|
543
|
+
<sequence>
|
544
|
+
<element ref="gml:degrees"/>
|
545
|
+
<choice minOccurs="0">
|
546
|
+
<element ref="gml:decimalMinutes"/>
|
547
|
+
<sequence>
|
548
|
+
<element ref="gml:minutes"/>
|
549
|
+
<element ref="gml:seconds" minOccurs="0"/>
|
550
|
+
</sequence>
|
551
|
+
</choice>
|
552
|
+
</sequence>
|
553
|
+
</complexType>
|
554
|
+
<element name="degrees" type="gml:DegreesType">
|
555
|
+
<annotation>
|
556
|
+
<appinfo>deprecated</appinfo>
|
557
|
+
</annotation>
|
558
|
+
</element>
|
559
|
+
<complexType name="DegreesType">
|
560
|
+
<annotation>
|
561
|
+
<appinfo>deprecated</appinfo>
|
562
|
+
</annotation>
|
563
|
+
<simpleContent>
|
564
|
+
<extension base="gml:DegreeValueType">
|
565
|
+
<attribute name="direction">
|
566
|
+
<simpleType>
|
567
|
+
<restriction base="string">
|
568
|
+
<enumeration value="N"/>
|
569
|
+
<enumeration value="E"/>
|
570
|
+
<enumeration value="S"/>
|
571
|
+
<enumeration value="W"/>
|
572
|
+
<enumeration value="+"/>
|
573
|
+
<enumeration value="-"/>
|
574
|
+
</restriction>
|
575
|
+
</simpleType>
|
576
|
+
</attribute>
|
577
|
+
</extension>
|
578
|
+
</simpleContent>
|
579
|
+
</complexType>
|
580
|
+
<simpleType name="DegreeValueType">
|
581
|
+
<annotation>
|
582
|
+
<appinfo>deprecated</appinfo>
|
583
|
+
</annotation>
|
584
|
+
<restriction base="nonNegativeInteger">
|
585
|
+
<maxInclusive value="359"/>
|
586
|
+
</restriction>
|
587
|
+
</simpleType>
|
588
|
+
<element name="decimalMinutes" type="gml:DecimalMinutesType">
|
589
|
+
<annotation>
|
590
|
+
<appinfo>deprecated</appinfo>
|
591
|
+
</annotation>
|
592
|
+
</element>
|
593
|
+
<simpleType name="DecimalMinutesType">
|
594
|
+
<annotation>
|
595
|
+
<appinfo>deprecated</appinfo>
|
596
|
+
</annotation>
|
597
|
+
<restriction base="decimal">
|
598
|
+
<minInclusive value="0.00"/>
|
599
|
+
<maxExclusive value="60.00"/>
|
600
|
+
</restriction>
|
601
|
+
</simpleType>
|
602
|
+
<element name="minutes" type="gml:ArcMinutesType">
|
603
|
+
<annotation>
|
604
|
+
<appinfo>deprecated</appinfo>
|
605
|
+
</annotation>
|
606
|
+
</element>
|
607
|
+
<simpleType name="ArcMinutesType">
|
608
|
+
<annotation>
|
609
|
+
<appinfo>deprecated</appinfo>
|
610
|
+
</annotation>
|
611
|
+
<restriction base="nonNegativeInteger">
|
612
|
+
<maxInclusive value="59"/>
|
613
|
+
</restriction>
|
614
|
+
</simpleType>
|
615
|
+
<element name="seconds" type="gml:ArcSecondsType">
|
616
|
+
<annotation>
|
617
|
+
<appinfo>deprecated</appinfo>
|
618
|
+
</annotation>
|
619
|
+
</element>
|
620
|
+
<simpleType name="ArcSecondsType">
|
621
|
+
<annotation>
|
622
|
+
<appinfo>deprecated</appinfo>
|
623
|
+
</annotation>
|
624
|
+
<restriction base="decimal">
|
625
|
+
<minInclusive value="0.00"/>
|
626
|
+
<maxExclusive value="60.00"/>
|
627
|
+
</restriction>
|
628
|
+
</simpleType>
|
629
|
+
<complexType name="AngleChoiceType">
|
630
|
+
<annotation>
|
631
|
+
<appinfo>deprecated</appinfo>
|
632
|
+
</annotation>
|
633
|
+
<choice>
|
634
|
+
<element ref="gml:angle"/>
|
635
|
+
<element ref="gml:dmsAngle"/>
|
636
|
+
</choice>
|
637
|
+
</complexType>
|
638
|
+
<attribute name="remoteSchema" type="anyURI">
|
639
|
+
<annotation>
|
640
|
+
<appinfo>deprecated</appinfo>
|
641
|
+
</annotation>
|
642
|
+
</attribute>
|
643
|
+
<element name="member" type="gml:AssociationRoleType">
|
644
|
+
<annotation>
|
645
|
+
<appinfo>deprecated</appinfo>
|
646
|
+
</annotation>
|
647
|
+
</element>
|
648
|
+
<complexType name="ArrayAssociationType">
|
649
|
+
<annotation>
|
650
|
+
<appinfo>deprecated</appinfo>
|
651
|
+
</annotation>
|
652
|
+
<sequence>
|
653
|
+
<element ref="gml:AbstractObject" minOccurs="0" maxOccurs="unbounded"/>
|
654
|
+
</sequence>
|
655
|
+
<attributeGroup ref="gml:OwnershipAttributeGroup"/>
|
656
|
+
</complexType>
|
657
|
+
<element name="members" type="gml:ArrayAssociationType">
|
658
|
+
<annotation>
|
659
|
+
<appinfo>deprecated</appinfo>
|
660
|
+
</annotation>
|
661
|
+
</element>
|
662
|
+
<complexType name="StringOrRefType">
|
663
|
+
<annotation>
|
664
|
+
<appinfo>deprecated</appinfo>
|
665
|
+
</annotation>
|
666
|
+
<simpleContent>
|
667
|
+
<extension base="string">
|
668
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
669
|
+
</extension>
|
670
|
+
</simpleContent>
|
671
|
+
</complexType>
|
672
|
+
<element name="metaDataProperty" type="gml:MetaDataPropertyType">
|
673
|
+
<annotation>
|
674
|
+
<appinfo>deprecated</appinfo>
|
675
|
+
</annotation>
|
676
|
+
</element>
|
677
|
+
<element name="Bag" type="gml:BagType" substitutionGroup="gml:AbstractGML">
|
678
|
+
<annotation>
|
679
|
+
<appinfo>deprecated</appinfo>
|
680
|
+
</annotation>
|
681
|
+
</element>
|
682
|
+
<complexType name="BagType">
|
683
|
+
<annotation>
|
684
|
+
<appinfo>deprecated</appinfo>
|
685
|
+
</annotation>
|
686
|
+
<complexContent>
|
687
|
+
<extension base="gml:AbstractGMLType">
|
688
|
+
<sequence>
|
689
|
+
<element ref="gml:member" minOccurs="0" maxOccurs="unbounded"/>
|
690
|
+
<element ref="gml:members" minOccurs="0"/>
|
691
|
+
</sequence>
|
692
|
+
</extension>
|
693
|
+
</complexContent>
|
694
|
+
</complexType>
|
695
|
+
<element name="Array" type="gml:ArrayType" substitutionGroup="gml:AbstractGML">
|
696
|
+
<annotation>
|
697
|
+
<appinfo>deprecated</appinfo>
|
698
|
+
</annotation>
|
699
|
+
</element>
|
700
|
+
<complexType name="ArrayType">
|
701
|
+
<annotation>
|
702
|
+
<appinfo>deprecated</appinfo>
|
703
|
+
</annotation>
|
704
|
+
<complexContent>
|
705
|
+
<extension base="gml:AbstractGMLType">
|
706
|
+
<sequence>
|
707
|
+
<element ref="gml:members" minOccurs="0"/>
|
708
|
+
</sequence>
|
709
|
+
</extension>
|
710
|
+
</complexContent>
|
711
|
+
</complexType>
|
712
|
+
<complexType name="MetaDataPropertyType">
|
713
|
+
<annotation>
|
714
|
+
<appinfo>deprecated</appinfo>
|
715
|
+
</annotation>
|
716
|
+
<sequence minOccurs="0">
|
717
|
+
<element ref="gml:AbstractMetaData"/>
|
718
|
+
</sequence>
|
719
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
720
|
+
<attribute name="about" type="anyURI"/>
|
721
|
+
</complexType>
|
722
|
+
<element name="AbstractMetaData" type="gml:AbstractMetaDataType" abstract="true" substitutionGroup="gml:AbstractObject">
|
723
|
+
<annotation>
|
724
|
+
<appinfo>deprecated</appinfo>
|
725
|
+
</annotation>
|
726
|
+
</element>
|
727
|
+
<complexType name="AbstractMetaDataType" abstract="true" mixed="true">
|
728
|
+
<annotation>
|
729
|
+
<appinfo>deprecated</appinfo>
|
730
|
+
</annotation>
|
731
|
+
<sequence/>
|
732
|
+
<attribute ref="gml:id"/>
|
733
|
+
</complexType>
|
734
|
+
<element name="GenericMetaData" type="gml:GenericMetaDataType" substitutionGroup="gml:AbstractMetaData">
|
735
|
+
<annotation>
|
736
|
+
<appinfo>deprecated</appinfo>
|
737
|
+
</annotation>
|
738
|
+
</element>
|
739
|
+
<complexType name="GenericMetaDataType" mixed="true">
|
740
|
+
<annotation>
|
741
|
+
<appinfo>deprecated</appinfo>
|
742
|
+
</annotation>
|
743
|
+
<complexContent mixed="true">
|
744
|
+
<extension base="gml:AbstractMetaDataType">
|
745
|
+
<sequence>
|
746
|
+
<any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
|
747
|
+
</sequence>
|
748
|
+
</extension>
|
749
|
+
</complexContent>
|
750
|
+
</complexType>
|
751
|
+
<element name="coordinates" type="gml:CoordinatesType">
|
752
|
+
<annotation>
|
753
|
+
<appinfo>deprecated</appinfo>
|
754
|
+
</annotation>
|
755
|
+
</element>
|
756
|
+
<element name="pointRep" type="gml:PointPropertyType">
|
757
|
+
<annotation>
|
758
|
+
<appinfo>deprecated</appinfo>
|
759
|
+
</annotation>
|
760
|
+
</element>
|
761
|
+
<element name="location" type="gml:LocationPropertyType">
|
762
|
+
<annotation>
|
763
|
+
<appinfo>deprecated</appinfo>
|
764
|
+
</annotation>
|
765
|
+
</element>
|
766
|
+
<complexType name="LocationPropertyType">
|
767
|
+
<annotation>
|
768
|
+
<appinfo>deprecated</appinfo>
|
769
|
+
</annotation>
|
770
|
+
<sequence>
|
771
|
+
<choice>
|
772
|
+
<element ref="gml:AbstractGeometry"/>
|
773
|
+
<element ref="gml:LocationKeyWord"/>
|
774
|
+
<element ref="gml:LocationString"/>
|
775
|
+
<element ref="gml:Null"/>
|
776
|
+
</choice>
|
777
|
+
</sequence>
|
778
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
779
|
+
</complexType>
|
780
|
+
<element name="LocationString" type="gml:StringOrRefType">
|
781
|
+
<annotation>
|
782
|
+
<appinfo>deprecated</appinfo>
|
783
|
+
</annotation>
|
784
|
+
</element>
|
785
|
+
<element name="LocationKeyWord" type="gml:CodeType">
|
786
|
+
<annotation>
|
787
|
+
<appinfo>deprecated</appinfo>
|
788
|
+
</annotation>
|
789
|
+
</element>
|
790
|
+
<element name="priorityLocation" type="gml:PriorityLocationPropertyType" substitutionGroup="gml:location">
|
791
|
+
<annotation>
|
792
|
+
<appinfo>deprecated</appinfo>
|
793
|
+
</annotation>
|
794
|
+
</element>
|
795
|
+
<complexType name="PriorityLocationPropertyType">
|
796
|
+
<annotation>
|
797
|
+
<appinfo>deprecated</appinfo>
|
798
|
+
</annotation>
|
799
|
+
<complexContent>
|
800
|
+
<extension base="gml:LocationPropertyType">
|
801
|
+
<attribute name="priority" type="string"/>
|
802
|
+
</extension>
|
803
|
+
</complexContent>
|
804
|
+
</complexType>
|
805
|
+
<element name="featureMember" type="gml:FeaturePropertyType">
|
806
|
+
<annotation>
|
807
|
+
<appinfo>deprecated</appinfo>
|
808
|
+
</annotation>
|
809
|
+
</element>
|
810
|
+
<element name="featureProperty" type="gml:FeaturePropertyType">
|
811
|
+
<annotation>
|
812
|
+
<appinfo>deprecated</appinfo>
|
813
|
+
</annotation>
|
814
|
+
</element>
|
815
|
+
<complexType name="FeatureArrayPropertyType">
|
816
|
+
<annotation>
|
817
|
+
<appinfo>deprecated</appinfo>
|
818
|
+
</annotation>
|
819
|
+
<sequence minOccurs="0" maxOccurs="unbounded">
|
820
|
+
<element ref="gml:AbstractFeature"/>
|
821
|
+
</sequence>
|
822
|
+
</complexType>
|
823
|
+
<element name="featureMembers" type="gml:FeatureArrayPropertyType">
|
824
|
+
<annotation>
|
825
|
+
<appinfo>deprecated</appinfo>
|
826
|
+
</annotation>
|
827
|
+
</element>
|
828
|
+
<complexType name="BoundedFeatureType" abstract="true">
|
829
|
+
<annotation>
|
830
|
+
<appinfo>deprecated</appinfo>
|
831
|
+
</annotation>
|
832
|
+
<complexContent>
|
833
|
+
<restriction base="gml:AbstractFeatureType">
|
834
|
+
<sequence>
|
835
|
+
<group ref="gml:StandardObjectProperties"/>
|
836
|
+
<element ref="gml:boundedBy"/>
|
837
|
+
<element ref="gml:location" minOccurs="0"/>
|
838
|
+
</sequence>
|
839
|
+
</restriction>
|
840
|
+
</complexContent>
|
841
|
+
</complexType>
|
842
|
+
<complexType name="AbstractFeatureCollectionType" abstract="true">
|
843
|
+
<annotation>
|
844
|
+
<appinfo>deprecated</appinfo>
|
845
|
+
</annotation>
|
846
|
+
<complexContent>
|
847
|
+
<extension base="gml:AbstractFeatureType">
|
848
|
+
<sequence>
|
849
|
+
<element ref="gml:featureMember" minOccurs="0" maxOccurs="unbounded"/>
|
850
|
+
<element ref="gml:featureMembers" minOccurs="0"/>
|
851
|
+
</sequence>
|
852
|
+
</extension>
|
853
|
+
</complexContent>
|
854
|
+
</complexType>
|
855
|
+
<element name="AbstractFeatureCollection" type="gml:AbstractFeatureCollectionType" abstract="true" substitutionGroup="gml:AbstractFeature">
|
856
|
+
<annotation>
|
857
|
+
<appinfo>deprecated</appinfo>
|
858
|
+
</annotation>
|
859
|
+
</element>
|
860
|
+
<element name="FeatureCollection" type="gml:FeatureCollectionType" substitutionGroup="gml:AbstractFeature">
|
861
|
+
<annotation>
|
862
|
+
<appinfo>deprecated</appinfo>
|
863
|
+
</annotation>
|
864
|
+
</element>
|
865
|
+
<complexType name="FeatureCollectionType">
|
866
|
+
<annotation>
|
867
|
+
<appinfo>deprecated</appinfo>
|
868
|
+
</annotation>
|
869
|
+
<complexContent>
|
870
|
+
<extension base="gml:AbstractFeatureCollectionType"/>
|
871
|
+
</complexContent>
|
872
|
+
</complexType>
|
873
|
+
<element name="track" type="gml:HistoryPropertyType" substitutionGroup="gml:history">
|
874
|
+
<annotation>
|
875
|
+
<appinfo>deprecated</appinfo>
|
876
|
+
</annotation>
|
877
|
+
</element>
|
878
|
+
<element name="DefinitionCollection" type="gml:DictionaryType" substitutionGroup="gml:Definition">
|
879
|
+
<annotation>
|
880
|
+
<appinfo>deprecated</appinfo>
|
881
|
+
</annotation>
|
882
|
+
</element>
|
883
|
+
<element name="definitionMember" type="gml:DictionaryEntryType" substitutionGroup="gml:dictionaryEntry">
|
884
|
+
<annotation>
|
885
|
+
<appinfo>deprecated</appinfo>
|
886
|
+
</annotation>
|
887
|
+
</element>
|
888
|
+
<element name="indirectEntry" type="gml:IndirectEntryType">
|
889
|
+
<annotation>
|
890
|
+
<appinfo>deprecated</appinfo>
|
891
|
+
</annotation>
|
892
|
+
</element>
|
893
|
+
<complexType name="IndirectEntryType">
|
894
|
+
<annotation>
|
895
|
+
<appinfo>deprecated</appinfo>
|
896
|
+
</annotation>
|
897
|
+
<sequence>
|
898
|
+
<element ref="gml:DefinitionProxy"/>
|
899
|
+
</sequence>
|
900
|
+
</complexType>
|
901
|
+
<element name="DefinitionProxy" type="gml:DefinitionProxyType" substitutionGroup="gml:Definition">
|
902
|
+
<annotation>
|
903
|
+
<appinfo>deprecated</appinfo>
|
904
|
+
</annotation>
|
905
|
+
</element>
|
906
|
+
<complexType name="DefinitionProxyType">
|
907
|
+
<annotation>
|
908
|
+
<appinfo>deprecated</appinfo>
|
909
|
+
</annotation>
|
910
|
+
<complexContent>
|
911
|
+
<extension base="gml:DefinitionType">
|
912
|
+
<sequence>
|
913
|
+
<element ref="gml:definitionRef"/>
|
914
|
+
</sequence>
|
915
|
+
</extension>
|
916
|
+
</complexContent>
|
917
|
+
</complexType>
|
918
|
+
<element name="definitionRef" type="gml:ReferenceType">
|
919
|
+
<annotation>
|
920
|
+
<appinfo>deprecated</appinfo>
|
921
|
+
</annotation>
|
922
|
+
</element>
|
923
|
+
<element name="MappingRule" type="gml:StringOrRefType">
|
924
|
+
<annotation>
|
925
|
+
<appinfo>deprecated</appinfo>
|
926
|
+
</annotation>
|
927
|
+
</element>
|
928
|
+
<simpleType name="IncrementOrder">
|
929
|
+
<annotation>
|
930
|
+
<appinfo>deprecated</appinfo>
|
931
|
+
</annotation>
|
932
|
+
<restriction base="string">
|
933
|
+
<enumeration value="+x+y"/>
|
934
|
+
<enumeration value="+y+x"/>
|
935
|
+
<enumeration value="+x-y"/>
|
936
|
+
<enumeration value="-x-y"/>
|
937
|
+
</restriction>
|
938
|
+
</simpleType>
|
939
|
+
<element name="centerOf" type="gml:PointPropertyType">
|
940
|
+
<annotation>
|
941
|
+
<appinfo>deprecated</appinfo>
|
942
|
+
</annotation>
|
943
|
+
</element>
|
944
|
+
<element name="position" type="gml:PointPropertyType">
|
945
|
+
<annotation>
|
946
|
+
<appinfo>deprecated</appinfo>
|
947
|
+
</annotation>
|
948
|
+
</element>
|
949
|
+
<element name="extentOf" type="gml:SurfacePropertyType">
|
950
|
+
<annotation>
|
951
|
+
<appinfo>deprecated</appinfo>
|
952
|
+
</annotation>
|
953
|
+
</element>
|
954
|
+
<element name="edgeOf" type="gml:CurvePropertyType">
|
955
|
+
<annotation>
|
956
|
+
<appinfo>deprecated</appinfo>
|
957
|
+
</annotation>
|
958
|
+
</element>
|
959
|
+
<element name="centerLineOf" type="gml:CurvePropertyType">
|
960
|
+
<annotation>
|
961
|
+
<appinfo>deprecated</appinfo>
|
962
|
+
</annotation>
|
963
|
+
</element>
|
964
|
+
<element name="multiLocation" type="gml:MultiPointPropertyType">
|
965
|
+
<annotation>
|
966
|
+
<appinfo>deprecated</appinfo>
|
967
|
+
</annotation>
|
968
|
+
</element>
|
969
|
+
<element name="multiCenterOf" type="gml:MultiPointPropertyType">
|
970
|
+
<annotation>
|
971
|
+
<appinfo>deprecated</appinfo>
|
972
|
+
</annotation>
|
973
|
+
</element>
|
974
|
+
<element name="multiPosition" type="gml:MultiPointPropertyType">
|
975
|
+
<annotation>
|
976
|
+
<appinfo>deprecated</appinfo>
|
977
|
+
</annotation>
|
978
|
+
</element>
|
979
|
+
<element name="multiCenterLineOf" type="gml:MultiCurvePropertyType">
|
980
|
+
<annotation>
|
981
|
+
<appinfo>deprecated</appinfo>
|
982
|
+
</annotation>
|
983
|
+
</element>
|
984
|
+
<element name="multiEdgeOf" type="gml:MultiCurvePropertyType">
|
985
|
+
<annotation>
|
986
|
+
<appinfo>deprecated</appinfo>
|
987
|
+
</annotation>
|
988
|
+
</element>
|
989
|
+
<element name="multiCoverage" type="gml:MultiSurfacePropertyType">
|
990
|
+
<annotation>
|
991
|
+
<appinfo>deprecated</appinfo>
|
992
|
+
</annotation>
|
993
|
+
</element>
|
994
|
+
<element name="multiExtentOf" type="gml:MultiSurfacePropertyType">
|
995
|
+
<annotation>
|
996
|
+
<appinfo>deprecated</appinfo>
|
997
|
+
</annotation>
|
998
|
+
</element>
|
999
|
+
<element name="polygonPatches" type="gml:SurfacePatchArrayPropertyType" substitutionGroup="gml:patches">
|
1000
|
+
<annotation>
|
1001
|
+
<appinfo>deprecated</appinfo>
|
1002
|
+
</annotation>
|
1003
|
+
</element>
|
1004
|
+
<element name="trianglePatches" type="gml:SurfacePatchArrayPropertyType" substitutionGroup="gml:patches">
|
1005
|
+
<annotation>
|
1006
|
+
<appinfo>deprecated</appinfo>
|
1007
|
+
</annotation>
|
1008
|
+
</element>
|
1009
|
+
<element name="multiPointDomain" type="gml:DomainSetType" substitutionGroup="gml:domainSet">
|
1010
|
+
<annotation>
|
1011
|
+
<appinfo>deprecated</appinfo>
|
1012
|
+
</annotation>
|
1013
|
+
</element>
|
1014
|
+
<element name="multiCurveDomain" type="gml:DomainSetType" substitutionGroup="gml:domainSet">
|
1015
|
+
<annotation>
|
1016
|
+
<appinfo>deprecated</appinfo>
|
1017
|
+
</annotation>
|
1018
|
+
</element>
|
1019
|
+
<element name="multiSurfaceDomain" type="gml:DomainSetType" substitutionGroup="gml:domainSet">
|
1020
|
+
<annotation>
|
1021
|
+
<appinfo>deprecated</appinfo>
|
1022
|
+
</annotation>
|
1023
|
+
</element>
|
1024
|
+
<element name="multiSolidDomain" type="gml:DomainSetType" substitutionGroup="gml:domainSet">
|
1025
|
+
<annotation>
|
1026
|
+
<appinfo>deprecated</appinfo>
|
1027
|
+
</annotation>
|
1028
|
+
</element>
|
1029
|
+
<element name="gridDomain" type="gml:DomainSetType" substitutionGroup="gml:domainSet">
|
1030
|
+
<annotation>
|
1031
|
+
<appinfo>deprecated</appinfo>
|
1032
|
+
</annotation>
|
1033
|
+
</element>
|
1034
|
+
<element name="rectifiedGridDomain" type="gml:DomainSetType" substitutionGroup="gml:domainSet">
|
1035
|
+
<annotation>
|
1036
|
+
<appinfo>deprecated</appinfo>
|
1037
|
+
</annotation>
|
1038
|
+
</element>
|
1039
|
+
<element name="generalOperationParameter" type="gml:AbstractGeneralOperationParameterPropertyType" substitutionGroup="gml:parameter">
|
1040
|
+
<annotation>
|
1041
|
+
<appinfo>deprecated</appinfo>
|
1042
|
+
</annotation>
|
1043
|
+
</element>
|
1044
|
+
<element name="MovingObjectStatus" type="gml:MovingObjectStatusType" substitutionGroup="gml:AbstractTimeSlice">
|
1045
|
+
<annotation>
|
1046
|
+
<appinfo>deprecated</appinfo>
|
1047
|
+
</annotation>
|
1048
|
+
</element>
|
1049
|
+
<complexType name="MovingObjectStatusType">
|
1050
|
+
<annotation>
|
1051
|
+
<appinfo>deprecated</appinfo>
|
1052
|
+
</annotation>
|
1053
|
+
<complexContent>
|
1054
|
+
<extension base="gml:AbstractTimeSliceType">
|
1055
|
+
<sequence>
|
1056
|
+
<choice>
|
1057
|
+
<element name="position" type="gml:GeometryPropertyType"/>
|
1058
|
+
<element ref="gml:pos"/>
|
1059
|
+
<element ref="gml:locationName"/>
|
1060
|
+
<element ref="gml:locationReference"/>
|
1061
|
+
<element ref="gml:location"/>
|
1062
|
+
</choice>
|
1063
|
+
<element name="speed" type="gml:MeasureType" minOccurs="0"/>
|
1064
|
+
<element name="bearing" type="gml:DirectionPropertyType" minOccurs="0"/>
|
1065
|
+
<element name="acceleration" type="gml:MeasureType" minOccurs="0"/>
|
1066
|
+
<element name="elevation" type="gml:MeasureType" minOccurs="0"/>
|
1067
|
+
<element ref="gml:status" minOccurs="0"/>
|
1068
|
+
<element ref="gml:statusReference" minOccurs="0"/>
|
1069
|
+
</sequence>
|
1070
|
+
</extension>
|
1071
|
+
</complexContent>
|
1072
|
+
</complexType>
|
1073
|
+
<element name="status" type="gml:StringOrRefType">
|
1074
|
+
<annotation>
|
1075
|
+
<appinfo>deprecated</appinfo>
|
1076
|
+
</annotation>
|
1077
|
+
</element>
|
1078
|
+
<element name="statusReference" type="gml:ReferenceType">
|
1079
|
+
<annotation>
|
1080
|
+
<appinfo>deprecated</appinfo>
|
1081
|
+
</annotation>
|
1082
|
+
</element>
|
1083
|
+
<element name="topoComplexProperty" type="gml:TopoComplexPropertyType">
|
1084
|
+
<annotation>
|
1085
|
+
<appinfo>deprecated</appinfo>
|
1086
|
+
</annotation>
|
1087
|
+
</element>
|
1088
|
+
<element name="multiPointProperty" type="gml:MultiPointPropertyType">
|
1089
|
+
<annotation>
|
1090
|
+
<appinfo>deprecated</appinfo>
|
1091
|
+
</annotation>
|
1092
|
+
</element>
|
1093
|
+
<element name="multiCurveProperty" type="gml:MultiCurvePropertyType">
|
1094
|
+
<annotation>
|
1095
|
+
<appinfo>deprecated</appinfo>
|
1096
|
+
</annotation>
|
1097
|
+
</element>
|
1098
|
+
<element name="multiSurfaceProperty" type="gml:MultiSurfacePropertyType">
|
1099
|
+
<annotation>
|
1100
|
+
<appinfo>deprecated</appinfo>
|
1101
|
+
</annotation>
|
1102
|
+
</element>
|
1103
|
+
<element name="multiSolidProperty" type="gml:MultiSolidPropertyType">
|
1104
|
+
<annotation>
|
1105
|
+
<appinfo>deprecated</appinfo>
|
1106
|
+
</annotation>
|
1107
|
+
</element>
|
1108
|
+
<element name="multiGeometryProperty" type="gml:MultiGeometryPropertyType">
|
1109
|
+
<annotation>
|
1110
|
+
<appinfo>deprecated</appinfo>
|
1111
|
+
</annotation>
|
1112
|
+
</element>
|
1113
|
+
<element name="pointArrayProperty" type="gml:PointArrayPropertyType">
|
1114
|
+
<annotation>
|
1115
|
+
<appinfo>deprecated</appinfo>
|
1116
|
+
</annotation>
|
1117
|
+
</element>
|
1118
|
+
<element name="curveArrayProperty" type="gml:CurveArrayPropertyType">
|
1119
|
+
<annotation>
|
1120
|
+
<appinfo>deprecated</appinfo>
|
1121
|
+
</annotation>
|
1122
|
+
</element>
|
1123
|
+
<element name="surfaceArrayProperty" type="gml:SurfaceArrayPropertyType">
|
1124
|
+
<annotation>
|
1125
|
+
<appinfo>deprecated</appinfo>
|
1126
|
+
</annotation>
|
1127
|
+
</element>
|
1128
|
+
<element name="solidArrayProperty" type="gml:SolidArrayPropertyType">
|
1129
|
+
<annotation>
|
1130
|
+
<appinfo>deprecated</appinfo>
|
1131
|
+
</annotation>
|
1132
|
+
</element>
|
1133
|
+
</schema>
|