Sha256: cdea204c752803e568a73d853370b13a4833c3845e61525721ac8f2346a12f50
Contents?: true
Size: 1.01 KB
Versions: 70
Compression:
Stored size: 1.01 KB
Contents
# mdJson 2.0 writer - extent # History: # Stan Smith 2017-03-13 refactored for mdJson/mdTranslator 2.0 # Josh Bradley original script require 'jbuilder' require_relative 'mdJson_geographicExtent' require_relative 'mdJson_temporalExtent' require_relative 'mdJson_verticalExtent' module ADIWG module Mdtranslator module Writers module MdJson module Extent def self.build(hExtent) @Namespace = ADIWG::Mdtranslator::Writers::MdJson Jbuilder.new do |json| json.description hExtent[:description] json.geographicExtent @Namespace.json_map(hExtent[:geographicExtents], GeographicExtent) json.temporalExtent @Namespace.json_map(hExtent[:temporalExtents], TemporalExtent) json.verticalExtent @Namespace.json_map(hExtent[:verticalExtents], VerticalExtent) end end # build end # Extent end end end end
Version data entries
70 entries across 70 versions & 1 rubygems