LiveFlight
public struct LiveFlight : Codable, Hashable
extension LiveFlight: PolygonFilterable
The live flight object.
-
Flight number.
Declaration
Swift
public var number: String -
Departure airport’s ICAO code.
Declaration
Swift
public var dep: String -
Destination airport’s ICAO code.
Declaration
Swift
public var dest: String -
The aircraft type. Typically it is an ICAO code.
Declaration
Swift
public var acType: String -
Aircraft size type based on
acType.Declaration
Swift
public var acSize: AircraftSize -
A UNIX timestamp of when the live flight was reported.
Declaration
Swift
public var ts: Int -
Location coordinate.
Could be last reported or predicted based on the last reported if
LiveFlightQuery.predictwas set totrue.Declaration
Swift
public var coordinate: CLLocationCoordinate2D { get } -
Altitude. Measured in feet.
Declaration
Swift
public var altFt: Double { get } -
Heading. Measured in degrees.
Declaration
Swift
public var hdg: Int -
Speed. Measured in meters per second (m/s).
Declaration
Swift
public var spdMs: CLLocationSpeed -
A tile representation of the flight’s location.
Declaration
Swift
public var tile: Tile
LiveFlight Structure Reference