getAEairlines: getAEailines

Description Usage Arguments Value See Also Examples

Description

A function to get airlines information from Aviation Edge API. As stated on aviation-edge.com, this is a complete database of all the airlines in the world, especially Interesting if used in combination with other AE API solutions such as the flight tracker.

Available API Options

Usage

1
2
getAEairlines(airline.iata.code = NULL, country.iso.code = NULL,
  api.key)

Arguments

airline.iata.code

IATA code of the airport

country.iso.code

ISO code of the country (eg. DE)

api.key

you authentication api key

Value

answer a json object containing airports information details

See Also

https://www.iata.org/publications/Pages/code-search.aspx

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
The entire airlines database
## Not run:  
getAEairlines( api.key = 'key.here') 

## End(Not run)

Information about AA airlines
## Not run: 
getAEairlines(airline.iata.code = "AA", api.key = 'key.here')

## End(Not run)

All airlines in France
## Not run: 
getAEairlines(airline.iata.code = NULL,country.iso.code = "FR",api.key = 'key.here')

## End(Not run)

longwei66/flightR documentation built on May 18, 2019, 2:35 a.m.