Sha256: 85a13b6d1bc37e1498fa58bfbb395a2a0405eaa738097a2f4461003f861c27d2

Contents?: true

Size: 540 Bytes

Versions: 3

Compression:

Stored size: 540 Bytes

Contents

# frozen_string_literal: true

require "lutaml/model"

module Ogc
  module Gml
    class AbstractGriddedSurface < Lutaml::Model::Serializable
      attribute :aggregation_type, :string
      attribute :rows, :integer
      attribute :columns, :integer

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

        map_attribute "aggregationType", to: :aggregation_type
        map_attribute "rows", to: :rows
        map_attribute "columns", to: :columns
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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