class ADIWG::Mdtranslator::Writers::Html::Html_CoordinateResolution

Public Class Methods

new(html) click to toggle source
# File lib/adiwg/mdtranslator/writers/html/sections/html_coordinateResolution.rb, line 14
def initialize(html)
   @html = html
end

Public Instance Methods

writeHtml(hCoordRes) click to toggle source
# File lib/adiwg/mdtranslator/writers/html/sections/html_coordinateResolution.rb, line 18
def writeHtml(hCoordRes)

   # coordinate resolution - abscissa
   unless hCoordRes[:abscissaResolutionX].nil?
      @html.em('X Resolution (abscissa): ')
      @html.text!(hCoordRes[:abscissaResolutionX].to_s)
      @html.br
   end

   # coordinate resolution - ordinate
   unless hCoordRes[:ordinateResolutionY].nil?
      @html.em('Y Resolution (ordinate): ')
      @html.text!(hCoordRes[:ordinateResolutionY].to_s)
      @html.br
   end

   # coordinate resolution - unit of measure
   unless hCoordRes[:unitOfMeasure].nil?
      @html.em('Units of Measure: ')
      @html.text!(hCoordRes[:unitOfMeasure])
      @html.br
   end

end