-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathUSairports.R
More file actions
52 lines (52 loc) · 2.06 KB
/
USairports.R
File metadata and controls
52 lines (52 loc) · 2.06 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#' US airport network, 2010 December
#'
#' @description
#'
#' The network of passanger flights between airports in the United
#' States. The data set was compiled based on flights in 2010
#' December. This network is directed and edge directions correspond to
#' flight directions. Each edge is specific to a single carrier aircraft
#' type. Multiple carriers between the same two airports are denoted by
#' multiple edges.
#'
#' See information about the included meta-data below.
#'
#'
#'
#' @name USairports
#' @docType data
#' @usage
#' USairports
#' @format
#' A directed `igraph` graph object, with multiple edges. It has a
#' \sQuote{name} graph attribute, and several vertex and edge
#' attributes. The vertex attributes:
#' \describe{
#' \item{name}{Symbolic vertex name, this is the three letter IATA
#' airport code.}
#' \item{City}{City and state, where the airport is located.}
#' \item{Position}{Position of the airport, in WGS coordinates.}
#' }
#'
#' Edge attributes:
#' \describe{
#' \item{Carrier}{Name of the airline. The network includes both
#' domestic and international carriers that performed at least one
#' flight in December of 2010.}
#' \item{Departures}{The number of departures (for a given airline and
#' aircraft type.}
#' \item{Seats}{The total number of seats available on the flights
#' carried out by a given airline, using a given aircraft type.}
#' \item{Passengers}{The total number of passangers on the flights
#' carried out by a given airline, using a given aircraft type.}
#' \item{Aircraft}{Type of the aircraft.}
#' \item{Distance}{The distance between the two airports, in miles.}
#' }
#' @source
#' Most of this information was downloaded from The (now dissolved) Research and
#' Innovative Technology Administration (RITA). See
#' <https://en.wikipedia.org/wiki/Research_and_Innovative_Technology_Administration> for details. The airport
#' position information was collected from Wikipedia and other public
#' online sources.
#' @keywords datasets
NULL