findAirports
returns a SpatialPointsDataframe
of all airports within an AOI.
Data comes from the Openflights database and includes the following attributes:
'name' : character
Name of airport. May or may not contain the City name.
'city' : character
Main city served by airport. May be spelled differently from Name.
'country': character
Country or territory where airport is located.
'IATA' : character
3-letter IATA code
'ICAO' : numeric
4-letter ICAO code
'lat' : numeric
Latitude of airport
'lon' : numeric
Longitude of airport
findAirports(AOI = NULL, ids = FALSE)
AOI | A Spatial* or simple features geometry, can be piped from getAOI |
---|---|
ids | If TRUE, a vector of airport ICAO codes is added to retuned list (default = |
a list of minimum length 2: AOI and ap
# NOT RUN { ap = getAOI(state = "CO", county = "El Paso") %>% findAirports() # }