Module: ADIWG::Mdtranslator::Writers::MdJson::BoundingBox

Defined in:
lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_boundingBox.rb

Class Method Summary collapse

Class Method Details

.build(hBbox) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_boundingBox.rb', line 16

def self.build(hBbox)

   Jbuilder.new do |json|
      json.westLongitude hBbox[:westLongitude]
      json.eastLongitude hBbox[:eastLongitude]
      json.southLatitude hBbox[:southLatitude]
      json.northLatitude hBbox[:northLatitude]
      json.minimumAltitude hBbox[:minimumAltitude]
      json.maximumAltitude hBbox[:maximumAltitude]
      json.unitsOfAltitude hBbox[:unitsOfAltitude]
   end

end