airports {nycflights13} | R Documentation |
Useful metadata about airports.
airports
A data frame with columns:
FAA airport code
Usual name of the aiport
Location of airport
Altitude, in feet
Timezone offset from GMT
Daylight savings time zone. A = Standard US DST: starts on the second Sunday of March, ends on the first Sunday of November. U = unknown. N = no dst.
IANA time zone, as determined by GeoNames webservice
http://openflights.org/data.html, downloaded 2014-06-27
if (require("dplyr")) { airports airports %>% mutate(dest = faa) %>% semi_join(flights) flights %>% anti_join(airports %>% mutate(dest = faa)) airports %>% mutate(origin = faa) %>% semi_join(flights) }