Sha256: 5003584120ce80e698ae892017b25f379188ee8f708d6dd318dd1ea7b71983a4

Contents?: true

Size: 400 Bytes

Versions: 3

Compression:

Stored size: 400 Bytes

Contents

# frozen_string_literal: true

require "lutaml/model"

module Ogc
  module Gml
    class GridEnvelope < Lutaml::Model::Serializable
      attribute :low, :string
      attribute :high, :string

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

        map_element "low", to: :low
        map_element "high", to: :high
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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