Sha256: c18811d064bb9ae1d004ab3886ef12e4379e39142c0e9534163f96f69d563dd6
Contents?: true
Size: 914 Bytes
Versions: 3
Compression:
Stored size: 914 Bytes
Contents
# frozen_string_literal: true require "lutaml/model" require_relative "abstract_time_geometric_primitive" require_relative "time_position" module Ogc module Gml class TimeInstant < AbstractTimeGeometricPrimitive attribute :time_position, TimePosition xml do root "TimeInstant" namespace "http://www.opengis.net/gml/3.2", "gml" map_attribute "id", to: :id, prefix: "gml", namespace: "http://www.opengis.net/gml/3.2" map_attribute "frame", to: :frame map_element "metaDataProperty", to: :meta_data_property map_element "description", to: :description map_element "descriptionReference", to: :description_reference map_element "identifier", to: :identifier map_element "name", to: :name map_element "relatedTime", to: :related_time map_element "timePosition", to: :time_position end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ogc-gml-1.0.3 | lib/ogc/gml/time_instant.rb |
ogc-gml-1.0.2 | lib/ogc/gml/time_instant.rb |
ogc-gml-1.0.1 | lib/ogc/gml/time_instant.rb |