class MetarStruct
Attributes
airport[RW]
cloud_altitude[RW]
cloud_friendly[RW]
cloud_type[RW]
conditions[RW]
pressure[RW]
raw_data[RW]
temp_air[RW]
temp_dewpoint[RW]
temp_relhum[RW]
time[RW]
visibility[RW]
wind_direction[RW]
wind_friendly[RW]
wind_speed[RW]
wind_speed_gust[RW]
Public Class Methods
new(airport = nil, cloud_altitude = nil, cloud_friendly = nil, cloud_type = nil, conditions = nil, pressure = nil, raw_data = nil, temp_air = nil, temp_dewpoint = nil, temp_relhum = nil, time = nil, visibility = nil, wind_direction = nil, wind_friendly = nil, wind_speed = nil, wind_speed_gust = nil )
click to toggle source
# File lib/FlightXML2REST.rb, line 1948 def initialize(airport = nil, cloud_altitude = nil, cloud_friendly = nil, cloud_type = nil, conditions = nil, pressure = nil, raw_data = nil, temp_air = nil, temp_dewpoint = nil, temp_relhum = nil, time = nil, visibility = nil, wind_direction = nil, wind_friendly = nil, wind_speed = nil, wind_speed_gust = nil ) @airport = airport @cloud_altitude = cloud_altitude @cloud_friendly = cloud_friendly @cloud_type = cloud_type @conditions = conditions @pressure = pressure @raw_data = raw_data @temp_air = temp_air @temp_dewpoint = temp_dewpoint @temp_relhum = temp_relhum @time = time @visibility = visibility @wind_direction = wind_direction @wind_friendly = wind_friendly @wind_speed = wind_speed @wind_speed_gust = wind_speed_gust end