Sha256: 894a25481c9a4e4a62e37a23fadca3c2b0a882cc44cfee283653fb5539ef8929

Contents?: true

Size: 408 Bytes

Versions: 3

Compression:

Stored size: 408 Bytes

Contents

# frozen_string_literal: true

require "lutaml/model"

require_relative "affine_placement"

module Ogc
  module Gml
    class RefLocation < Lutaml::Model::Serializable
      attribute :affine_placement, AffinePlacement

      xml do
        root "refLocation"
        namespace "http://www.opengis.net/gml/3.2", "gml"

        map_element "AffinePlacement", to: :affine_placement
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ogc-gml-1.0.3 lib/ogc/gml/ref_location.rb
ogc-gml-1.0.2 lib/ogc/gml/ref_location.rb
ogc-gml-1.0.1 lib/ogc/gml/ref_location.rb