Sha256: c3e4a404d1beed401d18823c3f901f3d6de7a1b30183489edab94260e215a6cd
Contents?: true
Size: 484 Bytes
Versions: 3
Compression:
Stored size: 484 Bytes
Contents
# frozen_string_literal: true require "lutaml/model" require_relative "sequence_rule" module Ogc module Gml class GridFunction < Lutaml::Model::Serializable attribute :sequence_rule, SequenceRule attribute :start_point, :string xml do root "GridFunction" namespace "http://www.opengis.net/gml/3.2", "gml" map_element "sequenceRule", to: :sequence_rule map_element "startPoint", to: :start_point 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_function.rb |
ogc-gml-1.0.2 | lib/ogc/gml/grid_function.rb |
ogc-gml-1.0.1 | lib/ogc/gml/grid_function.rb |