Sha256: f91aa5c1fa443c0ed81da91a3c5595e066378efd4507cd154b775d4950e31d92
Contents?: true
Size: 665 Bytes
Versions: 19
Compression:
Stored size: 665 Bytes
Contents
# mdJson 2.0 writer - bounding box # History: # Stan Smith 2017-03-15 original script require 'jbuilder' module ADIWG module Mdtranslator module Writers module MdJson module BoundingBox def self.build(hBbox) Jbuilder.new do |json| json.westLongitude hBbox[:westLongitude] json.eastLongitude hBbox[:eastLongitude] json.southLatitude hBbox[:southLatitude] json.northLatitude hBbox[:northLatitude] end end # build end # BoundingBox end end end end
Version data entries
19 entries across 19 versions & 1 rubygems