Download data of all aircrafts registered in the Brazilian Aeronautical Registry (Registro Aeronáutico Brasileiro - RAB), organized by the Brazilian Civil Aviation Agency (ANAC). A description of all variables included in the data is available at https://www.gov.br/anac/pt-br/sistemas/rab.

read_aircrafts(date = 202001, showProgress = TRUE)

Arguments

date

Numeric. Date of the data in the format yyyymm. Defaults to 202001. To download the data for all months in a year, the user can pass a 4-digit year input yyyy.

showProgress

Logical. Defaults to TRUE display progress.

Value

A "data.table" "data.frame" object. All columns are returned with class of type "character".

See also

Other download flight data: read_flights()

Examples

if (FALSE)  if (interactive()) {
# Read aircrafts data
aircrafts <- read_aircrafts(showProgress = TRUE)

}