Method: Metar::Data::SkyCondition#to_s
- Defined in:
- lib/metar/data/sky_condition.rb
#to_s ⇒ Object
63 64 65 66 67 68 69 |
# File 'lib/metar/data/sky_condition.rb', line 63 def to_s if @height.nil? to_summary else to_summary + ' ' + I18n.t('metar.altitude.at') + ' ' + height.to_s end end |