Sha256: 977cfab2c899ff9be745094fc2a3e43abd8e222f79dd65ff8167423dc76f82a7
Contents?: true
Size: 1.25 KB
Versions: 3
Compression:
Stored size: 1.25 KB
Contents
# frozen_string_literal: true require "lutaml/model" require_relative "coordinates" require_relative "direct_position_list" require_relative "direct_position" require_relative "point_property" require_relative "abstract_curve_segment" module Ogc module Gml class LineStringSegment < AbstractCurveSegment attribute :interpolation, :string attribute :pos, DirectPosition, collection: true attribute :point_property, PointProperty, collection: true attribute :point_rep, PointProperty, collection: true attribute :pos_list, DirectPositionList attribute :coordinates, Coordinates xml do root "LineStringSegment" namespace "http://www.opengis.net/gml/3.2", "gml" map_attribute "numDerivativesAtStart", to: :num_derivatives_at_start map_attribute "numDerivativesAtEnd", to: :num_derivatives_at_end map_attribute "numDerivativeInterior", to: :num_derivative_interior map_attribute "interpolation", to: :interpolation map_element "pos", to: :pos map_element "pointProperty", to: :point_property map_element "pointRep", to: :point_rep map_element "posList", to: :pos_list map_element "coordinates", to: :coordinates end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ogc-gml-1.0.3 | lib/ogc/gml/line_string_segment.rb |
ogc-gml-1.0.2 | lib/ogc/gml/line_string_segment.rb |
ogc-gml-1.0.1 | lib/ogc/gml/line_string_segment.rb |