read_aircrafts {flightsbr} | R Documentation |
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, cache = TRUE)
date |
Numeric. Date of the data in the format |
showProgress |
Logical. Defaults to |
cache |
Logical. Whether the function should read cached data downloaded
previously. Defaults to |
A "data.table" "data.frame"
object. All columns are returned with
class
of type "character"
.
Other download flight data:
read_flights()
## Not run: if (interactive()) {
# Read aircrafts data
aircrafts <- read_aircrafts(date = 202001,
showProgress = TRUE)
}
## End(Not run)