getAEaircrafts: getAEaircrafts

Description Usage Arguments Value See Also Examples

Description

A function to get airport information from Aviation Edge API. As stated on aviation-edge.com, this api gives access to an aircraft registry in the form of a database of all aircraft types

Available API Options

Usage

1
2
getAEaircrafts(aircraft.registration.number = NULL,
  aircraft.hex.icao = NULL, airline.iata = NULL, api.key)

Arguments

aircraft.registration.number

aircraft registration number

aircraft.hex.icao

aircrafts hex ICAO code

airline.iata

airline IATA code

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
18
19
20
21
22
23
24
25
26
27
All aicrafts
## Not run:  
getAEaircrafts(
              api.key = 'key.here') 

## End(Not run)
Information about a specific airplane by registration number
## Not run:  
getAEaircrafts(
              aircraft.registration.number = 'HB-JVE',
              api.key = 'key.here') 

## End(Not run)
Information about a specific airplane by hex ICAO
## Not run:  
getAEaircrafts(
              aircraft.hex.icao = '4B19EA',
              api.key = 'key.here') 

## End(Not run)
 information about airplanes of a specific airline, by  IATA code. 
## Not run:  
getAEaircrafts(
              airline.iata = '0B',
              api.key = 'key.here') 

## End(Not run)

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