Graphics Reference
In-Depth Information
For each airport the number of arrivals and departures was computed,
along with average arrival and departure delays. Since location is central to
understanding routesandpatterns, latitudeandlongitudewasalsoincluded
for each airport:
Airport,Arrivals,Departures,Flights,Avg Arrival Delay
(min),Avg
Departure Delay (min),Airport
Name,Latitude,Longitude
ATL,31894,31887,63781,15,14,Hartsfield-Jackson Atlanta
International,...
DFW,23763,23752,47515,17,19,Dallas/Fort Worth
International,
32.89694444,...
LAX,19060,19052,38112,14,14,Los Angeles International,
33.9425,-118.4080556
DEN,19028,19006,38034,21,25,Denver International,
39.86166667,-104.6730556
...
Visualizing Route Segments
For a data set of this scale, Gephi is a good option for rapid analysis. Use
GDF again to import your data. Copy the node data into a new file, and
insert the nodedef> tag, labeling the airport code column as name . Next,
assign a type to each column— VARCHAR for text and DOUBLE or FLOAT
for numbers. Append the link data to the node data and repeat a similar
process, beginning with an edgedef> tag. Change the name of the
Flights column to weight so that Gephi will recognize it, and save it as
usflightdata-dec-2013.gdf .
nodedef>name VARCHAR,Arrivals DOUBLE,Departures
DOUBLE,Flights
DOUBLE,Avg Arrival Delay (min) DOUBLE,Avg
Departure Delay (min)
DOUBLE,Airport Name VARCHAR,Latitude
FLOAT,Longitude FLOAT
ATL,31894,31887,63781,15,14,Hartsfield-Jackson Atlanta
International,...
Search WWH ::




Custom Search