Sha256: 15635cbd1da17aade677a7b1d3c2e583c5bbc34c2ce4f81a40cb021429b8d0f3

Contents?: true

Size: 624 Bytes

Versions: 3

Compression:

Stored size: 624 Bytes

Contents

# frozen_string_literal: true

require "lutaml/model"

require_relative "affine_cs"

module Ogc
  module Gml
    class AffineCSProperty < Lutaml::Model::Serializable
      attribute :nil_reason, :string
      attribute :remote_schema, :string
      attribute :affine_cs, AffineCS

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

        map_attribute "nilReason", to: :nil_reason
        map_attribute "remoteSchema", to: :remote_schema, prefix: "gml", namespace: "http://www.opengis.net/gml/3.2"
        map_element "AffineCS", to: :affine_cs
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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