Sha256: f789f482bd973e1d8e2cbb23b5f0d4834c90d6e7007446e708fc4c8b56855c5f
Contents?: true
Size: 1.14 KB
Versions: 46
Compression:
Stored size: 1.14 KB
Contents
# mdJson 2.0 writer - time instant # History: # Stan Smith 2017-11-08 add geologic age # Stan Smith 2017-03-15 original script require 'jbuilder' require_relative 'mdJson_identifier' require_relative 'mdJson_dateTime' require_relative 'mdJson_geologicAge' module ADIWG module Mdtranslator module Writers module MdJson module TimeInstant def self.build(hTimeInstant) Jbuilder.new do |json| json.id hTimeInstant[:timeId] json.description hTimeInstant[:description] json.identifier Identifier.build(hTimeInstant[:identifier]) unless hTimeInstant[:identifier].empty? json.instantName hTimeInstant[:instantNames] unless hTimeInstant[:instantNames].empty? json.dateTime DateTime.build(hTimeInstant[:timeInstant]) unless hTimeInstant[:timeInstant].empty? json.geologicAge GeologicAge.build(hTimeInstant[:geologicAge]) unless hTimeInstant[:geologicAge].empty? end end # build end # TimeInstant end end end end
Version data entries
46 entries across 46 versions & 1 rubygems