Predicting Flight Delays Using Data Mining Techniques

Size: px
Start display at page:

Download "Predicting Flight Delays Using Data Mining Techniques"

Transcription

1 Todd Keech CSC 600 Project Report Background Predicting Flight Delays Using Data Mining Techniques According to the FAA, air carriers operating in the US in 2012 carried million passengers and the aviation industry supported 11.8 million jobs resulting in a 5.4 percent contribution to the US gross domestic product. Despite positive contributions to the US economy, nearly all commercial airlines experience flight delays and cancellations which can negatively impact economic growth. A 2010 study by researchers at University of California, Berkley concluded that flight delays, cancellations and missed connections cost the US economy approximately $32.9 billion resulting in a $4 billion reduction to the US gross domestic product. Researchers found that $16.7 billion of the $32.9 billion cost is borne by passengers in the form of lost time and additional expenses such as food and lodging. Problem The purpose of this project is to use publicly available data and data mining techniques to construct an analytical model to predict flight delays based on flight attributes such as origin, destination, date/time, distance, etc. Additional models will be created to determine the most likely cause of a flight delay and to predict the approximate length of the delay. Motivation There a number of practical uses for flight delay modeling. The FAA and commercial carriers can use flight delay analytical models to identify the most frequently congested network paths and determine appropriate solutions to address the most common delay causes. Commercial carriers can use predictive models as an input into scheduling optimization algorithms which seek to minimize aircraft ground-time and maximize flight time. Retailers and consumers can also benefit from predictive flight delay modeling. Retailers such as Kayak and Travelocity may provide flight analysis information to end consumers as a means to empower informed decision-making. For example, a customer booking a flight on Kayak may reconsider travel arrangements based on the predicted likelihood of a delay. Retailers looking to increase their customer base can offer information services to enable consumer to make better decisions. Consumers can use this information to avoid the costs and inconvenience of flight delays. Fewer flight reservations across congested paths will force carriers to adjust prices downward or discontinue such flights resulting in greater efficiency in the overall airline system. Data Data for this project is available on the Bureau of Transportation Statistics (BTS) website. The BTS On- Time Performance database contains flight information, including scheduled and actual arrival times, as reported by US commercial airlines in CSV-formatted data files. Each row in the data set represents an individual flight. Data files are available by month dating back to Each monthly file contains approximately 500,000 observations. The following attributes are included in each observation: Flight date Quarter Month Carrier Flight Distance CRS elapsed time

2 CRS arrival time CRS departure time Day of month Day of week Origin Destination Destination city Destination state Origin city Origin state Arrival delay CARRIER_DELAY LATE_AIRCRAFT_DELAY NAS_DELAY WEATHER_DELAY SECURITY_DELAY In the BTS data set, flights are characterized as on-time or delayed based on the arrival delay attribute. This attribute contains the total number of delay minutes relative to the scheduled arrival time. The data set also contains five delay category attributes that quantify the reason for the delay: CARRIER_DELAY Delays due to circumstances under the carrier s control (mechanical, administrative, etc.) LATE_AIRCRAFT_DELAY The aircraft scheduled to service the route was late in arriving NAS_DELAY National Airline System delays (volume, air traffic, control, etc.) SECURITY_DELAY Security-related incidents resulting in a late departure or arrival WEATHER_DELAY Weather-related delays Each of these fields contains the total number of delay minutes for each category. Since a flight can be delayed for multiple reasons, Arrival delay is the summation of the five delay categories. In some cases, the delay cause is not reported. In addition to the On-time Performance data set, this study utilized two additional data sets. The BTS holiday travel data set is used to identify peak travel periods based on airline industry standards. The NOAA storm events database dataset is used to identify severe weather periods. Peak travel periods and sever weather are both used as predictors for determining flight delays, delays lengths and delay causes. Preprocessing The BTS On-Time Performance data contains over 10 million observations based on flight data dating back to To limit the amount of data used in this study, observations were limited to 2014 domestic flight data, including flights to US territories. This project also limits the study area to flights arriving or departing Philadelphia International Airport (PHL) via Southwest Airlines. The rationale behind targeting a narrow band of locational and carrier-specific flight data was to isolate local delay patterns with the intention of improving the accuracy of the models. A data set covering a large geographic area and multiple carriers may be more generalizable, but local delay patterns may be lost in the noise resulting in a less accurate model. Preprocessing consisted of the following steps: Create a binary field, IS_DELAYED, to indicate whether or not a flight was delayed based on the arrival delay attribute Map NOAA severe weather data to flight data based on flight date. The end result was a binary indicator, SEVERE_WEATHER, for each flight record that specified whether or not the flight

3 occurred on a severe weather day. This study included severe weather that occurred in the greater Philadelphia area. Map peak travel data to flight data based on flight date. The end result was a binary indicator, PEAK_TRAVEL, for each flight record that specified whether or not the flight occurred on a peak travel day Create a categorical attribute, DELAY_TYPE, to capture the leading flight delay cause. o DELAY_TYPE = max(carrier_delay, LATE_AIRCRAFT_DELAY, NAS_DELAY, SECURITY_DELAY, WEATHER_DELAY). o In the event of a tie, the delay type was chosen randomly. o In some instances, all values for CARRIER_DELAY, LATE_AIRCRAFT_DELAY, NAS_DELAY, SECURITY_DELAY, WEATHER_DELAY were 0 even though the Arrival delay field was non-zero. In these instances, DELAY_TYPE= UNKNOWN. Create a new fields to capture the CRS arrival hour and CRS departure hour based on the CRS arrival time and CRS departure time fields After preprocessing, the total number of observations used in the study was 17,477. The data was randomly sampled to produce a training set containing 13,107 observations and a test set containing 4,370 records. Data Exploration Exploration of the training set revealed that 47.2% of Southwest flights destined for or originating from PHL were delayed in Further exploration of the data revealed that flight date and flight origin may be good predictors of flight delay given the difference in overall delay percentage compared to the population.

4 Examination of flight delay length revealed that the majority of flight delays are relatively short. 61.9% of delays were less than 30 minutes in length. The following graph shows the breakdown of flight delay reasons. Learning Algorithm Summary Predicting Flight Delays This project employed the use of several different machine learning techniques to predict whether or not a flight would be delayed. The accuracy, precision and recall scores for each model are given in the table below. Method Accuracy % Precision Recall Simple GLM Tree Bagging AdaBoost Random Forest Naïve Bayes K-Nearest Neighbor The Simple model predicted no flights would be delayed resulting in a 53% accuracy rate on the test data set. The simple predictor is used as a reference for comparing more complicated models. Based on data exploration, the Naïve Bayes model was hypothesized to produce the best model while GLM was hypothesized to produce the lowest quality model. The author presumed that a non-linear

5 model between flight delays and the predictor variables would produce the best-fit. Overall, the linear and non-linear models performed similarly with accuracy rates ranging between 65% and 70%. The ROC curve comparison between the GLM model and the Naïve Bayes model actually indicates that the GLM model is a slightly better fit since the area under the curve is greater by.003. Surprisingly, the k-nearest neighbor model performed slightly better than other models in terms accuracy rate and precision and recall scores. The k-nearest neighbor model used the nearest three neighboring points (Euclidean distance) to determine whether or not a flight would be delayed. The accuracy of the model may be explained due to clustering of the flight date, departure time and origin attributes. The Adabag R package contains an importance function which graphs the relative importance of each variable in the model. The importance function used the decrease in GINI as the metric to determine the impact of a variable on the model. Based on the importance graph, flight date and departure hour are the most important predictors in the model. Removing predictors such as severe weather and peak travel did not impact the model significantly. Predicting Flight Delay Length The Random Forest algorithm produced the best-fitting model for predicting the length of a flight delay. Logistic regression resulted in a model with an adjusted R-squared of 20, meaning that the model could only explain 20% of the variability in flight delay length based on the predictors. Similarly, a standard rpart regression tree resulted in a high RSE relative to the mean error indicating a poorly fit model. Method RSE Mean Error Adj R-Squared Linear

6 Regression Tree NA Random Forest NA Predicting Flight Delay Reason The Random Forest model produced an accuracy rate of 55% for predicting the cause of a flight delay. K- nearest neighbor was slightly less accurate with a 54% accuracy rate. A simple model that predicted no flight delays had an accuracy rate of 52%. Method Accuracy % Simple 52 Random Forest 55 K-Nearest Neighbor 54 Conclusion In this study, flight attributes were used to predict flight delays, flight delay lengths and the flight delay causes. Several non-flight attributes such as weather and peak travel data were also used in each model, although removing these predictors did not change the overall model drastically. Flight delay models resulted in 65-70% accuracy rates. Flight delay length and delay type models were far less accurate. One of the goals of this study was to create a forward looking flight prediction model. The models that resulted in the highest accuracy rates relied on flight date as an important predictor. Flight date, however, is a backward looking predictor in that it relies on historical events to predict future events. When flight date was removed from the model, accuracy rates fell by 4-5%. Extension The commercial aviation system is complex. Events occurring in one area of the system can cause ripple effects that impact events in other areas. Consequently, a model that relies solely on flight attributes will fail to account for complex interactions across the system. As an extension to this study, future researchers may choose to include several additional pieces of data to account for these factors: Weather This study used local Philadelphia weather to predict flight delay impacts at PHL. Inclusion of weather conditions at the origin, destination and along the flight path may better capture the impacts of weather. Aircraft age Aircraft age might be used to determine the likelihood of a mechanical issue as the cause of a delay. System and airport congestion Airport capacity metrics and scheduled flight data may be used to calculate expected system and airport congestion level as a means of predicting delays. Project Data Sources Bureau of Transportation Statistics, On-Time Performance Database, Bureau of Transportation Statistics, On-Time Performance Database, National Oceanic and Atmospheric Administration, Storm Events Database, References Flight delays cost $32.9 billion, passengers foot half the bill, University of California, Berkley, October 2010,

7 The Impact of Civil Aviation on the US Economy, Federal Aviation Administartion, June 2014,

Fuel Burn Impacts of Taxi-out Delay and their Implications for Gate-hold Benefits

Fuel Burn Impacts of Taxi-out Delay and their Implications for Gate-hold Benefits Fuel Burn Impacts of Taxi-out Delay and their Implications for Gate-hold Benefits Megan S. Ryerson, Ph.D. Assistant Professor Department of City and Regional Planning Department of Electrical and Systems

More information

IAB / AIC Joint Meeting, November 4, Douglas Fearing Vikrant Vaze

IAB / AIC Joint Meeting, November 4, Douglas Fearing Vikrant Vaze Passenger Delay Impacts of Airline Schedules and Operations IAB / AIC Joint Meeting, November 4, 2010 Cynthia Barnhart (cbarnhart@mit edu) Cynthia Barnhart (cbarnhart@mit.edu) Douglas Fearing (dfearing@hbs.edu

More information

Shazia Zaman MSDS 63712Section 401 Project 2: Data Reduction Page 1 of 9

Shazia Zaman MSDS 63712Section 401 Project 2: Data Reduction Page 1 of 9 Shazia Zaman MSDS 63712Section 401 Project 2: Data Reduction Page 1 of 9 Introduction: Airport operation as on-timer performance, fares for travelling to or from the airport, certain connection facilities

More information

Big Data Processing using Parallelism Techniques Shazia Zaman MSDS 7333 Quantifying the World, 4/20/2017

Big Data Processing using Parallelism Techniques Shazia Zaman MSDS 7333 Quantifying the World, 4/20/2017 Big Data Processing using Parallelism Techniques Shazia Zaman MSDS 7333 Quantifying the World, 4/20/2017 ABSTRACT In order to process and analyze Big Data, different techniques have been introduced to

More information

Accuracy of Flight Delays Caused by Low Ceilings and Visibilities at Chicago s Midway and O Hare International Airports

Accuracy of Flight Delays Caused by Low Ceilings and Visibilities at Chicago s Midway and O Hare International Airports Meteorology Senior Theses Undergraduate Theses and Capstone Projects 12-2016 Accuracy of Flight Delays Caused by Low Ceilings and Visibilities at Chicago s Midway and O Hare International Airports Kerry

More information

An Econometric Study of Flight Delay Causes at O Hare International Airport Nathan Daniel Boettcher, Dr. Don Thompson*

An Econometric Study of Flight Delay Causes at O Hare International Airport Nathan Daniel Boettcher, Dr. Don Thompson* An Econometric Study of Flight Delay Causes at O Hare International Airport Nathan Daniel Boettcher, Dr. Don Thompson* Abstract This study examined the relationship between sources of delay and the level

More information

Abstract. Introduction

Abstract. Introduction COMPARISON OF EFFICIENCY OF SLOT ALLOCATION BY CONGESTION PRICING AND RATION BY SCHEDULE Saba Neyshaboury,Vivek Kumar, Lance Sherry, Karla Hoffman Center for Air Transportation Systems Research (CATSR)

More information

Predicting a Dramatic Contraction in the 10-Year Passenger Demand

Predicting a Dramatic Contraction in the 10-Year Passenger Demand Predicting a Dramatic Contraction in the 10-Year Passenger Demand Daniel Y. Suh Megan S. Ryerson University of Pennsylvania 6/29/2018 8 th International Conference on Research in Air Transportation Outline

More information

Congestion. Vikrant Vaze Prof. Cynthia Barnhart. Department of Civil and Environmental Engineering Massachusetts Institute of Technology

Congestion. Vikrant Vaze Prof. Cynthia Barnhart. Department of Civil and Environmental Engineering Massachusetts Institute of Technology Frequency Competition and Congestion Vikrant Vaze Prof. Cynthia Barnhart Department of Civil and Environmental Engineering Massachusetts Institute of Technology Delays and Demand Capacity Imbalance Estimated

More information

Fewer air traffic delays in the summer of 2001

Fewer air traffic delays in the summer of 2001 June 21, 22 Fewer air traffic delays in the summer of 21 by Ken Lamon The MITRE Corporation Center for Advanced Aviation System Development T he FAA worries a lot about summer. Not only is summer the time

More information

3. Aviation Activity Forecasts

3. Aviation Activity Forecasts 3. Aviation Activity Forecasts This section presents forecasts of aviation activity for the Airport through 2029. Forecasts were developed for enplaned passengers, air carrier and regional/commuter airline

More information

Evaluation of Predictability as a Performance Measure

Evaluation of Predictability as a Performance Measure Evaluation of Predictability as a Performance Measure Presented by: Mark Hansen, UC Berkeley Global Challenges Workshop February 12, 2015 With Assistance From: John Gulding, FAA Lu Hao, Lei Kang, Yi Liu,

More information

Impact of Landing Fee Policy on Airlines Service Decisions, Financial Performance and Airport Congestion

Impact of Landing Fee Policy on Airlines Service Decisions, Financial Performance and Airport Congestion Wenbin Wei Impact of Landing Fee Policy on Airlines Service Decisions, Financial Performance and Airport Congestion Wenbin Wei Department of Aviation and Technology San Jose State University One Washington

More information

Estimates of the Economic Importance of Tourism

Estimates of the Economic Importance of Tourism Estimates of the Economic Importance of Tourism 2008-2013 Coverage: UK Date: 03 December 2014 Geographical Area: UK Theme: People and Places Theme: Economy Theme: Travel and Transport Key Points This article

More information

American Airlines Next Top Model

American Airlines Next Top Model Page 1 of 12 American Airlines Next Top Model Introduction Airlines employ several distinct strategies for the boarding and deboarding of airplanes in an attempt to minimize the time each plane spends

More information

RENO-TAHOE INTERNATIONAL AIRPORT APRIL 2008 PASSENGER STATISTICS

RENO-TAHOE INTERNATIONAL AIRPORT APRIL 2008 PASSENGER STATISTICS Inter-Office Memo Reno-Tahoe Airport Authority Date: June 5, 2008 To: Statistics Recipients From: Tom Medland, Director Air Service Business Development Subject: RENO-TAHOE INTERNATIONAL AIRPORT PASSENGER

More information

AUGUST 2008 MONTHLY PASSENGER AND CARGO STATISTICS

AUGUST 2008 MONTHLY PASSENGER AND CARGO STATISTICS Inter-Office Memo Reno-Tahoe Airport Authority Date: October 2, 2008 To: Statistics Recipients From: Tom Medland, Director Air Service Business Development Subject: RENO-TAHOE INTERNATIONAL AIRPORT PASSENGER

More information

Frequent Fliers Rank New York - Los Angeles as the Top Market for Reward Travel in the United States

Frequent Fliers Rank New York - Los Angeles as the Top Market for Reward Travel in the United States Issued: April 4, 2007 Contact: Jay Sorensen, 414-961-1939 IdeaWorksCompany.com Frequent Fliers Rank New York - Los Angeles as the Top Market for Reward Travel in the United States IdeaWorks releases report

More information

15:00 minutes of the scheduled arrival time. As a leader in aviation and air travel data insights, we are uniquely positioned to provide an

15:00 minutes of the scheduled arrival time. As a leader in aviation and air travel data insights, we are uniquely positioned to provide an FlightGlobal, incorporating FlightStats, On-time Performance Service Awards: A Long-time Partner Recognizing Industry Success ON-TIME PERFORMANCE 2018 WINNER SERVICE AWARDS As a leader in aviation and

More information

Quantile Regression Based Estimation of Statistical Contingency Fuel. Lei Kang, Mark Hansen June 29, 2017

Quantile Regression Based Estimation of Statistical Contingency Fuel. Lei Kang, Mark Hansen June 29, 2017 Quantile Regression Based Estimation of Statistical Contingency Fuel Lei Kang, Mark Hansen June 29, 2017 Agenda Background Industry practice Data Methodology Benefit assessment Conclusion 2 Agenda Background

More information

The Impact of Baggage Fees on Passenger Demand, Airfares, and Airline Operations in the US

The Impact of Baggage Fees on Passenger Demand, Airfares, and Airline Operations in the US The Impact of Baggage Fees on Passenger Demand, Airfares, and Airline Operations in the US Martin Dresner R H Smith School of Business University of Maryland The Institute of Transport and Logistics Studies

More information

Incentives and Competition in the Airline Industry

Incentives and Competition in the Airline Industry Preliminary and Incomplete Comments Welcome Incentives and Competition in the Airline Industry Rajesh K. Aggarwal D Amore-McKim School of Business Northeastern University Hayden Hall 413 Boston, MA 02115

More information

The forecasts evaluated in this appendix are prepared for based aircraft, general aviation, military and overall activity.

The forecasts evaluated in this appendix are prepared for based aircraft, general aviation, military and overall activity. Chapter 3: Forecast Introduction Forecasting provides an airport with a general idea of the magnitude of growth, as well as fluctuations in activity anticipated, over a 20-year forecast period. Forecasting

More information

Proceedings of the 54th Annual Transportation Research Forum

Proceedings of the 54th Annual Transportation Research Forum March 21-23, 2013 DOUBLETREE HOTEL ANNAPOLIS, MARYLAND Proceedings of the 54th Annual Transportation Research Forum www.trforum.org AN APPLICATION OF RELIABILITY ANALYSIS TO TAXI-OUT DELAY: THE CASE OF

More information

CS229: AUTUMN Application of Machine Learning Algorithms to Predict Flight Arrival Delays

CS229: AUTUMN Application of Machine Learning Algorithms to Predict Flight Arrival Delays CS229: AUTUMN 2017 1 Application of Machine Learning Algorithms to Predict Flight Arrival Delays Nathalie Kuhn and Navaneeth Jamadagni Email: nk1105@stanford.edu, njamadag@stanford.edu Abstract Growth

More information

PLANNING A RESILIENT AND SCALABLE AIR TRANSPORTATION SYSTEM IN A CLIMATE-IMPACTED FUTURE

PLANNING A RESILIENT AND SCALABLE AIR TRANSPORTATION SYSTEM IN A CLIMATE-IMPACTED FUTURE PLANNING A RESILIENT AND SCALABLE AIR TRANSPORTATION SYSTEM IN A CLIMATE-IMPACTED FUTURE Megan S. Ryerson Department of City and Regional Planning Department of Electrical and Systems Engineering University

More information

Accommodation Survey: November 2009

Accommodation Survey: November 2009 Embargoed until 10:45am 19 January 2010 Accommodation Survey: November 2009 Highlights Compared with November 2008: International guest nights were up 2 percent, while domestic guest nights were down 1

More information

SLOW GROWTH OF SOUTHERN NEVADA ECONOMY

SLOW GROWTH OF SOUTHERN NEVADA ECONOMY NEVADA S ECONOMY A monthly report produced for Commerce Real Estate Solutions by Stephen P. A. Brown, PhD, Center for Business & Economic Research, University of Nevada, Las Vegas To receive an electronic

More information

POST-IMPLEMENTATION COMMUNITY IMPACT REVIEW

POST-IMPLEMENTATION COMMUNITY IMPACT REVIEW POST-IMPLEMENTATION COMMUNITY IMPACT REVIEW RNAV STAR updates and RNP AR approaches at Halifax Stanfield International Airport NAV CANADA 77 Metcalfe Street Ottawa, Ontario K1P 5L6 November 2017 The information

More information

How much did the airline industry recover since September 11, 2001?

How much did the airline industry recover since September 11, 2001? Catalogue no. 51F0009XIE Research Paper How much did the airline industry recover since September 11, 2001? by Robert Masse Transportation Division Main Building, Room 1506, Ottawa, K1A 0T6 Telephone:

More information

Proof of Concept Study for a National Database of Air Passenger Survey Data

Proof of Concept Study for a National Database of Air Passenger Survey Data NATIONAL CENTER OF EXCELLENCE FOR AVIATION OPERATIONS RESEARCH University of California at Berkeley Development of a National Database of Air Passenger Survey Data Research Report Proof of Concept Study

More information

Airline Response to Changing Economics and Policy

Airline Response to Changing Economics and Policy Airline Response to Changing Economics and Policy John Ferguson (Ph.D. Candidate), Karla Hoffman (Ph.D.), Lance Sherry (Ph.D.), George Donohue (Ph.D.), Abdul Qadar Kara (Ph.D. Candidate), Rosa Oseguera-Lohr

More information

Estimating Sources of Temporal Deviations from Flight Plans

Estimating Sources of Temporal Deviations from Flight Plans Estimating Sources of Temporal Deviations from Flight Plans Ms. Natasha Yakovchuk (yakovn2@rpi.edu) Prof. Thomas R. Willemain (willet@rpi.edu) Department of Decision Sciences and Engineering Systems Rensselaer

More information

January 2014 Passenger and Cargo Traffic Statistics Reno-Tahoe International Airport

January 2014 Passenger and Cargo Traffic Statistics Reno-Tahoe International Airport January 2014 Passenger and Cargo Traffic Statistics Reno-Tahoe International Airport March 12, 2014 U.S. DOMESTIC INDUSTRY OVERVIEW FOR DECEMBER 2013 All RNO Carriers Domestic Systemwide year over year

More information

1. Introduction. 2.2 Surface Movement Radar Data. 2.3 Determining Spot from Radar Data. 2. Data Sources and Processing. 2.1 SMAP and ODAP Data

1. Introduction. 2.2 Surface Movement Radar Data. 2.3 Determining Spot from Radar Data. 2. Data Sources and Processing. 2.1 SMAP and ODAP Data 1. Introduction The Electronic Navigation Research Institute (ENRI) is analysing surface movements at Tokyo International (Haneda) airport to create a simulation model that will be used to explore ways

More information

Juneau Household Waterfront Opinion Survey

Juneau Household Waterfront Opinion Survey Juneau Household Waterfront Opinion Survey Prepared for: City and Borough of Juneau Prepared by: April 13, 2004 TABLE OF CONTENTS Executive Summary...1 Introduction and Methodology...6 Survey Results...7

More information

Performance monitoring report for first half of 2016

Performance monitoring report for first half of 2016 Performance monitoring report for first half of 2016 Gatwick Airport Limited 1. Introduction Date of issue: 5 December 2016 This report provides an update on performance at Gatwick in the first half of

More information

EXECUTIVE SUMMARY. hospitality compensation as a share of total compensation at. Page 1

EXECUTIVE SUMMARY. hospitality compensation as a share of total compensation at. Page 1 EXECUTIVE SUMMARY Applied Analysis was retained by the Las Vegas Convention and Visitors Authority (the LVCVA ) to review and analyze the economic impacts associated with its various operations and southern

More information

Managing And Understand The Impact Of Of The Air Air Traffic System: United Airline s Perspective

Managing And Understand The Impact Of Of The Air Air Traffic System: United Airline s Perspective Managing And Understand The Impact Of Of The Air Air Traffic System: United Airline s Perspective NEXTOR NEXTOR Moving Moving Metrics: Metrics: A Performance-Oriented View View of of the the Aviation Aviation

More information

POST-IMPLEMENTATION COMMUNITY IMPACT REVIEW

POST-IMPLEMENTATION COMMUNITY IMPACT REVIEW POST-IMPLEMENTATION COMMUNITY IMPACT REVIEW RNAV STAR updates and RNP AR approaches at Winnipeg James Armstrong Richardson International Airport NAV CANADA 77 Metcalfe Street Ottawa, Ontario K1P 5L6 November

More information

Weather Index Project: Investigating the effect of weather on flight delays

Weather Index Project: Investigating the effect of weather on flight delays Weather Index Project: Investigating the effect of weather on flight delays September 2013 Vera Lo Faculty Advisor: Professor Amy Cohn Agenda Background Industry Flight Delays Goals & Objectives Data Processing

More information

Time-series methodologies Market share methodologies Socioeconomic methodologies

Time-series methodologies Market share methodologies Socioeconomic methodologies This Chapter features aviation activity forecasts for the Asheville Regional Airport (Airport) over a next 20- year planning horizon. Aviation demand forecasts are an important step in the master planning

More information

The Effects of Schedule Unreliability on Departure Time Choice

The Effects of Schedule Unreliability on Departure Time Choice The Effects of Schedule Unreliability on Departure Time Choice NEXTOR Research Symposium Federal Aviation Administration Headquarters Presented by: Kevin Neels and Nathan Barczi January 15, 2010 Copyright

More information

LCC Competition in the U.S. and EU: Implications for the Effect of Entry by Foreign Carriers on Fares in U.S. Domestic Markets

LCC Competition in the U.S. and EU: Implications for the Effect of Entry by Foreign Carriers on Fares in U.S. Domestic Markets LCC Competition in the U.S. and EU: Implications for the Effect of Entry by Foreign Carriers on Fares in U.S. Domestic Markets Xinlong Tan Clifford Winston Jia Yan Bayes Data Intelligence Inc. Brookings

More information

A Macroscopic Tool for Measuring Delay Performance in the National Airspace System. Yu Zhang Nagesh Nayak

A Macroscopic Tool for Measuring Delay Performance in the National Airspace System. Yu Zhang Nagesh Nayak A Macroscopic Tool for Measuring Delay Performance in the National Airspace System Yu Zhang Nagesh Nayak Introduction US air transportation demand has increased since the advent of 20 th Century The Geographical

More information

Measuring the Business of the NAS

Measuring the Business of the NAS Measuring the Business of the NAS Presented at: Moving Metrics: A Performance Oriented View of the Aviation Infrastructure NEXTOR Conference Pacific Grove, CA Richard Golaszewski 115 West Avenue Jenkintown,

More information

Comments on Notice of Proposed Amendment to Policy Statement U.S. Department of Transportation, Federal Aviation Administration

Comments on Notice of Proposed Amendment to Policy Statement U.S. Department of Transportation, Federal Aviation Administration Comments on Notice of Proposed Amendment to Policy Statement U.S. Department of Transportation, Federal Aviation Administration POLICY REGARDING AIRPORT RATES AND CHARGES Docket No. FAA-2008-0036, January

More information

HEATHROW COMMUNITY NOISE FORUM

HEATHROW COMMUNITY NOISE FORUM HEATHROW COMMUNITY NOISE FORUM 3Villages flight path analysis report January 216 1 Contents 1. Executive summary 2. Introduction 3. Evolution of traffic from 25 to 215 4. Easterly departures 5. Westerly

More information

POST-IMPLEMENTATION COMMUNITY IMPACT REVIEW

POST-IMPLEMENTATION COMMUNITY IMPACT REVIEW POST-IMPLEMENTATION COMMUNITY IMPACT REVIEW RNAV STAR updates and RNP AR approaches at Edmonton International Airport NAV CANADA 77 Metcalfe Street Ottawa, Ontario K1P 5L6 January 2018 The information

More information

Federal Subsidies to Passenger Transportation December 2004

Federal Subsidies to Passenger Transportation December 2004 U.S. Department of Transportation Bureau of Transportation Statistics Federal Subsidies to Passenger Transportation December 2004 Federal Subsidies to Passenger Transportation Executive Summary Recent

More information

PERFORMANCE REPORT JANUARY Keith A. Clinkscale Performance Manager

PERFORMANCE REPORT JANUARY Keith A. Clinkscale Performance Manager PERFORMANCE REPORT JANUARY 2018 Keith A. Clinkscale Performance Manager INTRODUCTION/BACKGROUND Keith A. Clinkscale Performance Manager FIXED ROUTE DASHBOARD JANUARY 2018 Safety Max Target Goal Preventable

More information

Economic Impact Analysis. Tourism on Tasmania s King Island

Economic Impact Analysis. Tourism on Tasmania s King Island Economic Impact Analysis Tourism on Tasmania s King Island i Economic Impact Analysis Tourism on Tasmania s King Island This project has been conducted by REMPLAN Project Team Matthew Nichol Principal

More information

PERFORMANCE REPORT DECEMBER 2017

PERFORMANCE REPORT DECEMBER 2017 PERFORMANCE REPORT DECEMBER 2017 Note: New FY2018 Goal/Target/Min or Max incorporated in the Fixed Route and Connection Dashboards. Keith A. Clinkscale Performance Manager INTRODUCTION/BACKGROUND Keith

More information

Big Data In Airport Operations

Big Data In Airport Operations Big Data In Airport Operations ART Workshop Airport Capacity 21 st September 2016 Tom Garside Heathrow Airport Bert De Reyck UCL Xiaojia Guo - UCL Improving Performance through Operating to Plan Forecast

More information

Operational Evaluation of a Flight-deck Software Application

Operational Evaluation of a Flight-deck Software Application Operational Evaluation of a Flight-deck Software Application Sara R. Wilson National Aeronautics and Space Administration Langley Research Center DATAWorks March 21-22, 2018 Traffic Aware Strategic Aircrew

More information

Content. Study Results. Next Steps. Background

Content. Study Results. Next Steps. Background Content Background Study Results Next Steps 2 ICAO role and actions in previous crisis time Background October 1973 oil crisis: oil price increased by 400% and oil production decreased by 240% Early 1974:

More information

Efficiency and Automation

Efficiency and Automation Efficiency and Automation Towards higher levels of automation in Air Traffic Management HALA! Summer School Cursos de Verano Politécnica de Madrid La Granja, July 2011 Guest Lecturer: Rosa Arnaldo Universidad

More information

FAA Update Society of American Military Engineers

FAA Update Society of American Military Engineers FAA Update Society of American Military Engineers May 8, 2013 Presented by Joseph Miniace Regional Administrator FAA Central Region Current FAA FAA Mission is to provide the safest, most efficient aerospace

More information

Airport Characterization for the Adaptation of Surface Congestion Management Approaches*

Airport Characterization for the Adaptation of Surface Congestion Management Approaches* MIT Lincoln Laboratory Partnership for AiR Transportation Noise and Emissions Reduction MIT International Center for Air Transportation Airport Characterization for the Adaptation of Surface Congestion

More information

Produced by: Destination Research Sergi Jarques, Director

Produced by: Destination Research Sergi Jarques, Director Produced by: Destination Research Sergi Jarques, Director Economic Impact of Tourism Oxfordshire - 2015 Economic Impact of Tourism Headline Figures Oxfordshire - 2015 Total number of trips (day & staying)

More information

Have Descents Really Become More Efficient? Presented by: Dan Howell and Rob Dean Date: 6/29/2017

Have Descents Really Become More Efficient? Presented by: Dan Howell and Rob Dean Date: 6/29/2017 Have Descents Really Become More Efficient? Presented by: Dan Howell and Rob Dean Date: 6/29/2017 Outline Introduction Airport Initiative Categories Methodology Results Comparison with NextGen Performance

More information

Estimating Domestic U.S. Airline Cost of Delay based on European Model

Estimating Domestic U.S. Airline Cost of Delay based on European Model Estimating Domestic U.S. Airline Cost of Delay based on European Model Abdul Qadar Kara, John Ferguson, Karla Hoffman, Lance Sherry George Mason University Fairfax, VA, USA akara;jfergus3;khoffman;lsherry@gmu.edu

More information

LCC IMPACT ON THE US AIRPORT S BUSINESS

LCC IMPACT ON THE US AIRPORT S BUSINESS LCC IMPACT ON THE US AIRPORT S BUSINESS Nadezda Volkova German Airport Performance (GAP) Project GARS Workshop New Issues in Aviation Economics Hamburg, 9 February 2011 Motivation for the research LCCs

More information

October 2013 Passenger and Cargo Traffic Statistics Reno-Tahoe International Airport

October 2013 Passenger and Cargo Traffic Statistics Reno-Tahoe International Airport October 2013 Passenger and Cargo Traffic Statistics Reno-Tahoe International Airport December 4, 2013 U.S. DOMESTIC INDUSTRY OVERVIEW FOR OCTOBER 2013 All RNO Carriers Systemwide year over year comparison

More information

November 2013 Passenger and Cargo Traffic Statistics Reno-Tahoe International Airport

November 2013 Passenger and Cargo Traffic Statistics Reno-Tahoe International Airport November 2013 Passenger and Cargo Traffic Statistics Reno-Tahoe International Airport December 26, 2013 U.S. DOMESTIC INDUSTRY OVERVIEW FOR NOVEMBER 2013 All RNO Carriers Domestic Systemwide year over

More information

APPENDIX D MSP Airfield Simulation Analysis

APPENDIX D MSP Airfield Simulation Analysis APPENDIX D MSP Airfield Simulation Analysis This page is left intentionally blank. MSP Airfield Simulation Analysis Technical Report Prepared by: HNTB November 2011 2020 Improvements Environmental Assessment/

More information

Thank you for participating in the financial results for fiscal 2014.

Thank you for participating in the financial results for fiscal 2014. Thank you for participating in the financial results for fiscal 2014. ANA HOLDINGS strongly believes that safety is the most important principle of our air transportation business. The expansion of slots

More information

December 2013 Passenger and Cargo Traffic Statistics Reno-Tahoe International Airport

December 2013 Passenger and Cargo Traffic Statistics Reno-Tahoe International Airport December 2013 Passenger and Cargo Traffic Statistics Reno-Tahoe International Airport January 24, 2014 U.S. DOMESTIC INDUSTRY OVERVIEW FOR DECEMBER 2013 All RNO Carriers Domestic Systemwide year over year

More information

Optimized Maintenance Program (OMP)

Optimized Maintenance Program (OMP) Global Services Optimized Maintenance Program (OMP) Rebecca Merkel September 20, 2018 Optimized Maintenance Program Optimization at individual task level Customized analysis of each individual task interval

More information

Testimony of Greg Principato President, Airports Council International-North America. before the

Testimony of Greg Principato President, Airports Council International-North America. before the Testimony of Greg Principato President, Airports Council International-North America before the House Transportation and Infrastructure Committee Subcommittee on Aviation Aviation Delays and Consumer Issues

More information

AIRLINES decisions on route selection are, along with fleet planning and schedule development, the most important

AIRLINES decisions on route selection are, along with fleet planning and schedule development, the most important Modeling Airline Decisions on Route Planning Using Discrete Choice Models Zhenghui Sha, Kushal Moolchandani, Apoorv Maheshwari, Joseph Thekinen, Jitesh H. Panchal, Daniel A. DeLaurentis Purdue University,

More information

Modeling Airline Fares

Modeling Airline Fares Modeling Airline Fares Evidence from the U.S. Domestic Airline Sector Domingo Acedo Gomez Arturs Lukjanovics Joris van den Berg 31 January 2014 Motivation and Main Findings Which Factors Influence Fares?

More information

New Mexico Tourism Department 2016 Annual Report

New Mexico Tourism Department 2016 Annual Report New Mexico Tourism Department 2016 Annual Report April 2017 INTRODUCTION The New Mexico Tourism Department s (NMTD) marketing strategy is thoroughly research based, utilizing the highest quality data sources

More information

QUALITY OF SERVICE INDEX Advanced

QUALITY OF SERVICE INDEX Advanced QUALITY OF SERVICE INDEX Advanced Presented by: D. Austin Horowitz ICF SH&E Technical Specialist 2014 Air Service Data Seminar January 26-28, 2014 0 Workshop Agenda Introduction QSI/CSI Overview QSI Uses

More information

NOTES ON COST AND COST ESTIMATION by D. Gillen

NOTES ON COST AND COST ESTIMATION by D. Gillen NOTES ON COST AND COST ESTIMATION by D. Gillen The basic unit of the cost analysis is the flight segment. In describing the carrier s cost we distinguish costs which vary by segment and those which vary

More information

Schedule Compression by Fair Allocation Methods

Schedule Compression by Fair Allocation Methods Schedule Compression by Fair Allocation Methods by Michael Ball Andrew Churchill David Lovell University of Maryland and NEXTOR, the National Center of Excellence for Aviation Operations Research November

More information

The Economic Impacts of the Open Skies Initiative: Past and Future

The Economic Impacts of the Open Skies Initiative: Past and Future The Economic Impacts of the Open Skies Initiative Past and Future strategic transportation & tourism solutions The Economic Impacts of the Open Skies Initiative: Past and Future Prepared for Aéroports

More information

Exploration of Sequestration Impacts on U.S. Air Traffic Delays

Exploration of Sequestration Impacts on U.S. Air Traffic Delays International Journal of Business and Social Science Vol. 5, No. 11(1); October 2014 Exploration of Sequestration Impacts on U.S. Air Traffic Delays Susan Kelly Archer, Ed.D. Casey Richardson Embry Riddle

More information

Analysis of Operational Impacts of Continuous Descent Arrivals (CDA) using runwaysimulator

Analysis of Operational Impacts of Continuous Descent Arrivals (CDA) using runwaysimulator Analysis of Operational Impacts of Continuous Descent Arrivals (CDA) using runwaysimulator Camille Shiotsuki Dr. Gene C. Lin Ed Hahn December 5, 2007 Outline Background Objective and Scope Study Approach

More information

Unit Activity Answer Sheet

Unit Activity Answer Sheet Probability and Statistics Unit Activity Answer Sheet Unit: Applying Probability The Lesson Activities will help you meet these educational goals: Mathematical Practices You will make sense of problems

More information

Methodology and coverage of the survey. Background

Methodology and coverage of the survey. Background Methodology and coverage of the survey Background The International Passenger Survey (IPS) is a large multi-purpose survey that collects information from passengers as they enter or leave the United Kingdom.

More information

THE EFFECTIVENESS OF DUTCH AIR TRANSPORT POLICY

THE EFFECTIVENESS OF DUTCH AIR TRANSPORT POLICY THE EFFECTIVENESS OF DUTCH AIR TRANSPORT POLICY STUDY PREPARED BY: THE BRATTLE GROUP BY JOHN HORN JAMES REITZES ADAM SCHUMACHER 2 December 22 6 th Floor 8 th Floor 15 Berners Street 1133 2 th Street, NW

More information

Fly Quiet Report. 3 rd Quarter November 27, Prepared by:

Fly Quiet Report. 3 rd Quarter November 27, Prepared by: November 27, 2017 Fly Quiet Report Prepared by: Sjohnna Knack Program Manager, Airport Noise Mitigation Planning & Environmental Affairs San Diego County Regional Airport Authority 1.0 Summary of Report

More information

Reno-Tahoe Airport Authority U.S. DOMESTIC INDUSTRY OVERVIEW FOR FEBRUARY

Reno-Tahoe Airport Authority U.S. DOMESTIC INDUSTRY OVERVIEW FOR FEBRUARY Inter-Office Memo Reno-Tahoe Airport Authority Date: March 30, 2009 To: Statistics Recipients From: Krys T. Bart, A.A.E., President/CEO Subject: RENO-TAHOE INTERNATIONAL AIRPORT PASSENGER STATISTICS U.S.

More information

Data Analysis and Simula/on Tools Prof. Hamsa Balakrishnan

Data Analysis and Simula/on Tools Prof. Hamsa Balakrishnan Data Analysis and Simula/on Tools Prof. Hamsa Balakrishnan Istanbul Technical University Air Transporta,on Management M.Sc. Program Air Transporta,on Systems and Infrastructure Strategic Planning Module

More information

The Economic Impact of Tourism Brighton & Hove Prepared by: Tourism South East Research Unit 40 Chamberlayne Road Eastleigh Hampshire SO50 5JH

The Economic Impact of Tourism Brighton & Hove Prepared by: Tourism South East Research Unit 40 Chamberlayne Road Eastleigh Hampshire SO50 5JH The Economic Impact of Tourism Brighton & Hove 2013 Prepared by: Tourism South East Research Unit 40 Chamberlayne Road Eastleigh Hampshire SO50 5JH CONTENTS 1. Summary of Results 1 1.1 Introduction 1 1.2

More information

2009 Muskoka Airport Economic Impact Study

2009 Muskoka Airport Economic Impact Study 2009 Muskoka Airport Economic Impact Study November 4, 2009 Prepared by The District of Muskoka Planning and Economic Development Department BACKGROUND The Muskoka Airport is situated at the north end

More information

Appendix B Ultimate Airport Capacity and Delay Simulation Modeling Analysis

Appendix B Ultimate Airport Capacity and Delay Simulation Modeling Analysis Appendix B ULTIMATE AIRPORT CAPACITY & DELAY SIMULATION MODELING ANALYSIS B TABLE OF CONTENTS EXHIBITS TABLES B.1 Introduction... 1 B.2 Simulation Modeling Assumption and Methodology... 4 B.2.1 Runway

More information

Produced by: Destination Research Sergi Jarques, Director

Produced by: Destination Research Sergi Jarques, Director Produced by: Destination Research Sergi Jarques, Director Economic Impact of Tourism Epping Forest - 2014 Economic Impact of Tourism Headline Figures Epping Forest - 2014 Total number of trips (day & staying)

More information

2004 SOUTH DAKOTA MOTEL AND CAMPGROUND OCCUPANCY REPORT and INTERNATIONAL VISITOR SURVEY

2004 SOUTH DAKOTA MOTEL AND CAMPGROUND OCCUPANCY REPORT and INTERNATIONAL VISITOR SURVEY 2004 SOUTH DAKOTA MOTEL AND CAMPGROUND OCCUPANCY REPORT and INTERNATIONAL VISITOR SURVEY Prepared By: Center for Tourism Research Black Hills State University Spearfish, South Dakota Commissioned by: South

More information

Aboriginal and Torres Strait Islander Life Expectancy and Mortality Trend Reporting to 2014

Aboriginal and Torres Strait Islander Life Expectancy and Mortality Trend Reporting to 2014 Aboriginal and Torres Strait Islander Life Expectancy and Mortality Trend Reporting to 2014 Technical Report June 2016 Authors: Clare Coleman, Nicola Fortune, Vanessa Lee, Kalinda Griffiths, Richard Madden

More information

Civil Aviation, Monthly Key Operating Statistics, Major Canadian Air Carriers

Civil Aviation, Monthly Key Operating Statistics, Major Canadian Air Carriers Catalogue no. 51-004-X Vol. 43, no. 1. Aviation Civil Aviation, Monthly Key Operating Statistics, Major Canadian Air Carriers January to December 2010. Highlights For the 12-month period, January to December

More information

July 2012 Passenger and Cargo Traffic Statistics Reno-Tahoe International Airport

July 2012 Passenger and Cargo Traffic Statistics Reno-Tahoe International Airport July 2012 Passenger and Cargo Traffic Statistics Reno-Tahoe International Airport August 31, 2012 U.S. DOMESTIC INDUSTRY OVERVIEW FOR JULY 2012 All RNO Carriers Systemwide year over year comparison Average

More information

NAPA VALLEY VISITOR INDUSTRY 2012 Economic Impact Report

NAPA VALLEY VISITOR INDUSTRY 2012 Economic Impact Report Join Visit Napa Valley NAPA VALLEY VISITOR INDUSTRY 2012 Economic Impact Report Research prepared for Visit Napa Valley by Destination Analysts, Inc. Table of Contents SECTION 1 Introduction 2 SECTION

More information

The Fall of Frequent Flier Mileage Values in the U.S. Market - Industry Analysis from IdeaWorks

The Fall of Frequent Flier Mileage Values in the U.S. Market - Industry Analysis from IdeaWorks Issued: February 16, 2005 Contact: Jay Sorensen For inquiries: 414-961-1939 The Fall of Frequent Flier Mileage Values in the U.S. Market - Industry Analysis from IdeaWorks Mileage buying power is weakest

More information

YARTS ON-BOARD SURVEY MEMORANDUM

YARTS ON-BOARD SURVEY MEMORANDUM YARTS ON-BOARD SURVEY MEMORANDUM Prepared for the Yosemite Area Regional Transportation System Prepared by LSC Transportation Consultants, Inc. This page left intentionally blank. YARTS On-Board Survey

More information

Airport Profile Pensacola International

Airport Profile Pensacola International Airport Profile Pensacola International 2015 BY THE NUMBERS Enplanements 808,170 Airport Pensacola International Airport (PNS) is located approximately three nautical miles northeast of the central business

More information

1. Air Traffic Statistics Suvarnabhumi Airport: Monday, 11 Sunday, 17 June Actual Daily Traffic & Runway Utilization. (Wed) 13 Jun.

1. Air Traffic Statistics Suvarnabhumi Airport: Monday, 11 Sunday, 17 June Actual Daily Traffic & Runway Utilization. (Wed) 13 Jun. Flight Movement Weekly Air Traffic Management Situation Report Due to maintenance of the eastern runway at the Suvarnabhumi Airport from 11 e 212, Aeronautical Radio of Thailand Ltd (AEROTHAI) compiled

More information

DATA-DRIVEN STAFFING RECOMMENDATIONS FOR AIR TRAFFIC CONTROL TOWERS

DATA-DRIVEN STAFFING RECOMMENDATIONS FOR AIR TRAFFIC CONTROL TOWERS DATA-DRIVEN STAFFING RECOMMENDATIONS FOR AIR TRAFFIC CONTROL TOWERS Linda G. Pierce FAA Aviation Safety Civil Aerospace Medical Institute Oklahoma City, OK Terry L. Craft FAA Air Traffic Organization Management

More information

REVIEW OF THE STATE EXECUTIVE AIRCRAFT POOL

REVIEW OF THE STATE EXECUTIVE AIRCRAFT POOL STATE OF FLORIDA Report No. 95-05 James L. Carpenter Interim Director Office of Program Policy Analysis And Government Accountability September 14, 1995 REVIEW OF THE STATE EXECUTIVE AIRCRAFT POOL PURPOSE

More information