Class: TrackExStruct
- Inherits:
-
Object
- Object
- TrackExStruct
- Defined in:
- lib/FlightXML2REST.rb
Instance Attribute Summary collapse
-
#altitude ⇒ Object
Returns the value of attribute altitude.
-
#altitudeChange ⇒ Object
Returns the value of attribute altitudeChange.
-
#altitudeStatus ⇒ Object
Returns the value of attribute altitudeStatus.
-
#faFlightID ⇒ Object
Returns the value of attribute faFlightID.
-
#groundspeed ⇒ Object
Returns the value of attribute groundspeed.
-
#latitude ⇒ Object
Returns the value of attribute latitude.
-
#longitude ⇒ Object
Returns the value of attribute longitude.
-
#timestamp ⇒ Object
Returns the value of attribute timestamp.
-
#updateType ⇒ Object
Returns the value of attribute updateType.
Instance Method Summary collapse
-
#initialize(altitude = nil, altitudeChange = nil, altitudeStatus = nil, faFlightID = nil, groundspeed = nil, latitude = nil, longitude = nil, timestamp = nil, updateType = nil) ⇒ TrackExStruct
constructor
A new instance of TrackExStruct.
Constructor Details
#initialize(altitude = nil, altitudeChange = nil, altitudeStatus = nil, faFlightID = nil, groundspeed = nil, latitude = nil, longitude = nil, timestamp = nil, updateType = nil) ⇒ TrackExStruct
Returns a new instance of TrackExStruct.
2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 |
# File 'lib/FlightXML2REST.rb', line 2204 def initialize(altitude = nil, altitudeChange = nil, altitudeStatus = nil, faFlightID = nil, groundspeed = nil, latitude = nil, longitude = nil, = nil, updateType = nil ) @altitude = altitude @altitudeChange = altitudeChange @altitudeStatus = altitudeStatus @faFlightID = faFlightID @groundspeed = groundspeed @latitude = latitude @longitude = longitude @timestamp = @updateType = updateType end |
Instance Attribute Details
#altitude ⇒ Object
Returns the value of attribute altitude.
2194 2195 2196 |
# File 'lib/FlightXML2REST.rb', line 2194 def altitude @altitude end |
#altitudeChange ⇒ Object
Returns the value of attribute altitudeChange.
2194 2195 2196 |
# File 'lib/FlightXML2REST.rb', line 2194 def altitudeChange @altitudeChange end |
#altitudeStatus ⇒ Object
Returns the value of attribute altitudeStatus.
2194 2195 2196 |
# File 'lib/FlightXML2REST.rb', line 2194 def altitudeStatus @altitudeStatus end |
#faFlightID ⇒ Object
Returns the value of attribute faFlightID.
2194 2195 2196 |
# File 'lib/FlightXML2REST.rb', line 2194 def faFlightID @faFlightID end |
#groundspeed ⇒ Object
Returns the value of attribute groundspeed.
2194 2195 2196 |
# File 'lib/FlightXML2REST.rb', line 2194 def groundspeed @groundspeed end |
#latitude ⇒ Object
Returns the value of attribute latitude.
2194 2195 2196 |
# File 'lib/FlightXML2REST.rb', line 2194 def latitude @latitude end |
#longitude ⇒ Object
Returns the value of attribute longitude.
2194 2195 2196 |
# File 'lib/FlightXML2REST.rb', line 2194 def longitude @longitude end |
#timestamp ⇒ Object
Returns the value of attribute timestamp.
2194 2195 2196 |
# File 'lib/FlightXML2REST.rb', line 2194 def @timestamp end |
#updateType ⇒ Object
Returns the value of attribute updateType.
2194 2195 2196 |
# File 'lib/FlightXML2REST.rb', line 2194 def updateType @updateType end |