AIRLINE CONNECTION POINT ANALYSIS

Size: px
Start display at page:

Download "AIRLINE CONNECTION POINT ANALYSIS"

Transcription

1 AIRLINE CONNECTION POINT ANALYSIS D. W. Baird, Trans World Airlines, Inc. ABSTRACT This paper describes a SAS Institute, Inc. based system for computing connection cities to be used for Trans World Airlines', Inc. World Wide Availability System. This system utilizes the worlds airline schedules to compute roughly 35,000 markets that contain direct (no plane change) flight service. The direct markets are then processed to find all combinations of connection points, by utilizing spherical trigonometry (with world latitudes and longitudes), market and trip mileages may be used as a base for elliptical analysis. This program will aid us in identifying the best connect points and routings for our airlines' construction of trips in markets that may have no direct service or due to traffic "flow", require connection trips as well as direct trips. DESCRIPTION The foundation for this program is an input file consisting of the worlds airline schedules. This data is initially received from Official Airline Guide, Inc., a company who distributes all airline schedules to those carriers who purchase this information. This data is sent via a Standard Schedule Input Manual (SSIM) tape. The data on this tape contains all of the single legs of travel that carriers fly. TWA takes this schedule data, and transforms it into city pair information as described below: CHICAGO / ~. --(~O~~O_) -J. LOS ANGELES () ATLANTA (ATL) NEW YORK (NYC) The above represents an airline schedule for one flight, from Los Angeles to New York, with stops in Chicago and Atlanta. This is a 3 leg flight. From a single flight schedule, resultant city pairs are produced, in numbers, according to the following algorithm: Number of City Pairs = [(Number of Legs) (Number of Legs + l)j 2 In transposing the above schedule data into city pairs, the following results: From the contents of approximately 35,000 records are created. seasonal schedules, slightly. DIRECT CITY PAIRS BOARD OFF ATL 3. NYC 4. ATL 5. NYC 6. ATL NYC the SSIM file, direct city pair Depending upon this number may vary After all the direct city pair records have been created, the mileage between the board point, and the off point (for each city pair) must be calculated. This is done by merging an ATLAS file (containing the latitude and longitude of the worlds airports) by the board point of the city pair records, then merging again by the off point. Now by utilizing the algorithm shown in Figure 3, the mileage for each city pair is computed. This resultant file is then shown in Figure 2 as DATA = READ2. This file will contain approximately 35,000 "observations". Only one other file is required, and that is the "market", or "markets" over which connect points are to be computed. This is shown in Figure 2 as: DATA = READ!. The general SAS program flow is now described, and follows the flow depicted in Figure 2, and utilized the data given in Figure 1. STEP 1 The markets that the connect points are to be computed for, are placed into the "market" file. This is data set READ1. 392

2 STEP 2 STEP 3 STEP 4 STEP 5 After reading the Worlds Airline Schedule tape (SSlM), a world wide direct data file is created, as described previously. These direct city pairs with mileages, are read into data set READ2. This done in a previous merge with the ATLAS file. The program now creates data set READ3, as an exact copy of READ2. The effect of Step 2, and Step 3 is to create READ2 for the first segment possibilities of all connections, and READ3 will be the second segment possibilities. This data set, called BRD, is a merge of data sets READ! and READ2, by board point. NOTE: The program is written as a rj1acro. So, if data set READ1 has multiple observations, the entire program acts on each observation via a call to the MACRO. Hence, to the program it always "appears" as though data set READ! has only one observations - as shown in the example. The effect of this step is to retain only those segments that depart from the board point of interest. This data set, called OFF, is a merge of data sets READ! and READ3, by off points. This step will retain only those segments that arrive into the point of interest. Now in data set BRD (Step 4), variable name OFF is changed to CONNECT. In data set OFF (Step 5), variable name BOARD is changed to CONNECT. STEP 6 This data set is now a merge of data sets BRD and OFF, by CONNECT keeping an observation only if it existed in BOTH data sets. This resultant data set is exactly the file that is needed. Since this file contains mileages, and other carrier related information regarding the associated city pairs, several calculations and sorts may now be made. For TWA's purposes, this file may be analized by several factors in order to determine which connect points are indeed the "best". Some of these factors are: Segment 1 vs Segment 2 mileage. That is, which segment is the longest. How does the connection point compare to the markets direct mileage. This is our "Ellipse". Which of the listed connect points have TWA service, as Segment 1 or Segment 2. CONCLUSION As airlines change their schedules, approximately once each month, TWA needs to have a dynamic method of determining what connect points are "best", based upon new schedule information. Since the SAS program is CLIST driven, our analysts are able to gain knowledge regarding a specific market, and its connect point possibilities in a interactive mode. 393

3 FIGURE 1 SAMPLE PROBLEM This example contains data for the program flow shown in Figure 2 given the following file: DIRECT CITY PAIRS (MARKETS) BOARD POINT OFF POINT _... DAB ~ ORD ~===============:: _ ORD i",. BaS =====-=: - DAB - BOS - Los Angeles Daytona Beach Boston ORD - Chicago O-Hare - New York - St. Louis John F. Kennedy Utilizing the above, we need to compute the following: points and routings MARKET ROUTINGS Board s Off Routing CONNECTION MARKETS JI,. ~ORD~ #1 #2 BOS , ;..;) BaS #1 394

4 FIGURE 2 Step 1 DATA READ 1 ; MARKET FILE Sort by OFF Sort by BRD Step 2 DATA READ2; WORLD WIDE DIRECTS Step 3 DATA READ3; WORLD WIDE DIRECTS ~Qil. OAB BOS DUPLICATE ~ Sort by OFF Sort by BRO Step 4 DATA BRD MERGE READl (IN=A) READ2; IF A; BY BRD; Step 5 DATA OFF MERGE READl ~d ~ Off OAB Step 6 DATA CONN: MERGE BRD (IN=A) OFF (IN=B); IF A & B; by CONNECT POINT; BOARO CONNECT POINT OFF 395

5 ! FIGURE 3 SPHERICAL TRIANGLE TRIGONOMETRY REFERENCES FORMULAS: Suppose A, B, C ilre the three angles of 8 spherical triangle and a, b, c are the Opposite sides. 1. SAS Institute (1982) SAS USER'S GUIDE: BASICS, If A, b, c a,e given, then ~'c ~.A <,,' -' b, a B 8 = cos 1 [cos b cos c + sm b sin c cosaj c= cos 1 [COS C - COS.8 cos b] sin 8 SIn b 2. SAS Institute (1980) SAS APPLICATIONS GUIDE, 3. SAS Institute (1983) SAS VIEWS: PROCESSING, 4. Hewlett Packard (1974) HP-45 APPLICATIONS, Cupertino, California NAVIGATtONAL COURSE: This routine can be used to find the grnt circle route and the true course C if the coordinates of the source (Ills- "s) and destination (GO' 9 0 )8,e known. 5. SAS sample program library: Member COMBO NOTE: SAS is a registered trademark of SAS Institute, Inc. Further Information May Be Obtained From: NOTES: IS" Latitude S" Source 9 " Longitude 0= OestinatiOl'l 1. A=Os 90,1II=9O"-If$'c=9O" Nonhern hemisphere latitudes ami Western hemisphere longitudes 8,e indicated 8S positive numbers. Southern and Eastern coordinates are indicated 811 negative numbers (spherical coordinate) = 60 naulical miles 4. True course = 36()o - C If sin A < 0 Ii. e going _st). D. W. Baird Trans World Airlines, Inc. Administrative Center - Level Ambassador Drive Kansas City, Missouri (816) , I. 396

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

Activity Template. Drexel-SDP GK-12 ACTIVITY. Subject Area(s): Sound Associated Unit: Associated Lesson: None

Activity Template. Drexel-SDP GK-12 ACTIVITY. Subject Area(s): Sound Associated Unit: Associated Lesson: None Activity Template Subject Area(s): Sound Associated Unit: Associated Lesson: None Drexel-SDP GK-12 ACTIVITY Activity Title: What is the quickest way to my destination? Grade Level: 8 (7-9) Activity Dependency:

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

Applications of a Terminal Area Flight Path Library

Applications of a Terminal Area Flight Path Library Applications of a Terminal Area Flight Path Library James DeArmon (jdearmon@mitre.org, phone: 703-983-6051) Anuja Mahashabde, William Baden, Peter Kuzminski Center for Advanced Aviation System Development

More information

November 8, Chico Municipal Airport Industry Overview and Catchment Area Discussion

November 8, Chico Municipal Airport Industry Overview and Catchment Area Discussion November 8, 2017 Chico Municipal Airport Industry Overview and Catchment Area Discussion Agenda Regional industry discussion Chico performance review Chico catchment area study results Summary / conclusions

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

Maximization of an Airline s Profit

Maximization of an Airline s Profit Maximization of an Airline s Profit Team 8 Wei Jin Bong Liwen Lee Justin Tompkins WIN 15 Abstract This project aims to maximize the profit of an airline. Three subsystems will be considered Price and Demand,

More information

MEASUREMENT OF ACCELERATION Pre-Lab. Name: Roster#

MEASUREMENT OF ACCELERATION Pre-Lab. Name: Roster# MEASUREMENT OF ACCELERATION Pre-Lab Name: Roster# Date: 1. A tree is 15.0 m high and cast a shadow along the ground that is 30.0 m long. Draw a triangle that represents this situation. What angle does

More information

Introduction to Topographic Maps

Introduction to Topographic Maps Introduction to Topographic Maps DIRECTIONS: Read all of the following content. READ EVERYTHING!! At the end of the packet, you will find two topographic maps. Your task is to indentify each of the elevations

More information

The Effects of Porter Airlines Expansion

The Effects of Porter Airlines Expansion The Effects of Porter Airlines Expansion Ambarish Chandra Mara Lederman March 11, 2014 Abstract In 2007 Porter Airlines entered the Canadian airline industry and since then it has rapidly increased its

More information

System Oriented Runway Management: A Research Update

System Oriented Runway Management: A Research Update National Aeronautics and Space Administration System Oriented Runway Management: A Research Update Gary W. Lohr gary.lohr@nasa.gov Senior Research Engineer NASA-Langley Research Center ATM 2011 Ninth USA/EUROPE

More information

The Effectiveness of JetBlue if Allowed to Manage More of its Resources

The Effectiveness of JetBlue if Allowed to Manage More of its Resources McNair Scholars Research Journal Volume 2 Article 4 2015 The Effectiveness of JetBlue if Allowed to Manage More of its Resources Jerre F. Johnson Embry Riddle Aeronautical University, johnsff9@my.erau.edu

More information

Directional Price Discrimination. in the U.S. Airline Industry

Directional Price Discrimination. in the U.S. Airline Industry Evidence of in the U.S. Airline Industry University of California, Irvine aluttman@uci.edu June 21st, 2017 Summary First paper to explore possible determinants that may factor into an airline s decision

More information

Sample enumeration model for airport ground access

Sample enumeration model for airport ground access Sample enumeration model for airport ground access Surabhi Gupta, Peter Vovsha (WSP) Session 6B Cool model applications Sample enumeration model as example of data-driven approach Use model to predict

More information

Origin & Destination Report

Origin & Destination Report Sample Reports Origin & Destination Report Market OS O&D Report for LON to CHI for All Classes of Travel Year Month Dom Al Al 1 Al 2 Orig Stop #1 Dest Reported + Est. Pax Pax Share Fare Est. Revenue 2009

More information

Gulf Carrier Profitability on U.S. Routes

Gulf Carrier Profitability on U.S. Routes GRA, Incorporated Economic Counsel to the Transportation Industry Gulf Carrier Profitability on U.S. Routes November 11, 2015 Prepared for: Wilmer Hale Prepared by: GRA, Incorporated 115 West Avenue Suite

More information

VARIBLE COMMISSIONS OVERVIEW

VARIBLE COMMISSIONS OVERVIEW VARIBLE COMMISSIONS OVERVIEW The BSPConnect Variable Commission System provides the airline with the ability to audit commissions. These may be simple or complex, based on route, agent and also: A. Commission

More information

Online Appendix to Quality Disclosure Programs and Internal Organizational Practices: Evidence from Airline Flight Delays

Online Appendix to Quality Disclosure Programs and Internal Organizational Practices: Evidence from Airline Flight Delays Online Appendix to Quality Disclosure Programs and Internal Organizational Practices: Evidence from Airline Flight Delays By SILKE J. FORBES, MARA LEDERMAN AND TREVOR TOMBE Appendix A: Identifying Reporting

More information

Department of Transportation, Federal Aviation Administration (FAA). SUMMARY: Under this notice, the FAA announces the submission deadline of

Department of Transportation, Federal Aviation Administration (FAA). SUMMARY: Under this notice, the FAA announces the submission deadline of This document is scheduled to be published in the Federal Register on 10/02/2017 and available online at https://federalregister.gov/d/2017-21045, and on FDsys.gov [4910-13] DEPARTMENT OF TRANSPORTATION

More information

Project: Implications of Congestion for the Configuration of Airport Networks and Airline Networks (AirNets)

Project: Implications of Congestion for the Configuration of Airport Networks and Airline Networks (AirNets) Research Thrust: Airport and Airline Systems Project: Implications of Congestion for the Configuration of Airport Networks and Airline Networks (AirNets) Duration: (November 2007 December 2010) Description:

More information

Aviation Insights No. 8

Aviation Insights No. 8 Aviation Insights Explaining the modern airline industry from an independent, objective perspective No. 8 January 17, 2018 Question: How do taxes and fees change if air traffic control is privatized? Congress

More information

Corporate Productivity Case Study

Corporate Productivity Case Study BOMBARDIER BUSINESS AIRCRAFT Corporate Productivity Case Study April 2009 Marketing Executive Summary» In today's environment it is critical to have the right tools to demonstrate the contribution of business

More information

Discounted Agent Vacations (DAV) is available for the travel agent and one companion. Dates

Discounted Agent Vacations (DAV) is available for the travel agent and one companion. Dates Origin Funjet Vacations Discounted Agent Vacations Opportunities - Updated January 10th at 3:00pm CST Please scroll through the complete listings below for the latest air only offers. Offer is subject

More information

Megahubs United States Index 2018

Megahubs United States Index 2018 Published: Sep 2018 Megahubs United States Index 2018 The Most Connected Airports in the US 2018 OAG Aviation Worldwide Limited. All rights reserved About OAG Megahubs US Index 2018 Published alongside

More information

You Paid What for That Flight?

You Paid What for That Flight? Page 1 of 5 Dow Jones Reprints: This copy is for your personal, non-commercial use only. To order presentation-ready copies for distribution to your colleagues, clients or customers, use the Order Reprints

More information

New Solutions for Old Problems

New Solutions for Old Problems New Solutions for Old Problems Transfer of ULD assets- a very old problem RECOMMENDED that, when a unit load device (ULD), loaded or empty, is transferred, the Transferring Party shall provide the Receiving

More information

Impact of Advance Purchase and Length-of-Stay on Average Ticket Prices in Top Business Destinations

Impact of Advance Purchase and Length-of-Stay on Average Ticket Prices in Top Business Destinations Impact of Advance Purchase and Length-of-Stay on Average Ticket Prices in Top Business Destinations Research Summary Average ticket prices continue to trend downward in 2016, but since 2014 there have

More information

Availability. 2002, Worldspan L.P. All Rights Reserved.

Availability. 2002, Worldspan L.P. All Rights Reserved. Availability 2002, Worldspan L.P. All Rights Reserved. Table of Contents Availability...1 Best Trip...2 Class of Service...2 Displaying Availability...3 Flight Number...4 Continuation Entries...5 Return

More information

TravelWise Travel wisely. Travel safely.

TravelWise Travel wisely. Travel safely. TravelWise Travel wisely. Travel safely. The (CATSR), at George Mason University (GMU), conducts analysis of the performance of the air transportation system for the DOT, FAA, NASA, airlines, and aviation

More information

FAA Progress on Wake Avoidance Solutions for Closely Spaced Parallel Runways (CSPR)

FAA Progress on Wake Avoidance Solutions for Closely Spaced Parallel Runways (CSPR) FAA Progress on Wake Avoidance Solutions for Closely Spaced Parallel Runways (CSPR) WakeNet-Europe Workshop 2015 April 2015 Amsterdam, The National Aerospace Laboratory (NLR) Tittsworth (FAA Air Traffic

More information

Time Benefits of Free-Flight for a Commercial Aircraft

Time Benefits of Free-Flight for a Commercial Aircraft Time Benefits of Free-Flight for a Commercial Aircraft James A. McDonald and Yiyuan Zhao University of Minnesota, Minneapolis, Minnesota 55455 Introduction The nationwide increase in air traffic has severely

More information

MIT ICAT. Fares and Competition in US Markets: Changes in Fares and Demand Since Peter Belobaba Celian Geslin Nikolaos Pyrgiotis

MIT ICAT. Fares and Competition in US Markets: Changes in Fares and Demand Since Peter Belobaba Celian Geslin Nikolaos Pyrgiotis Fares and Competition in US Markets: Changes in Fares and Demand Since 2000 Peter Belobaba Celian Geslin Nikolaos Pyrgiotis Objectives & Approach Objectives Track fare and traffic changes in US domestic

More information

ISTANBUL s AIRPORT SWAP

ISTANBUL s AIRPORT SWAP ISTANBUL s AIRPORT SWAP A TRAVEL INSIGHT THAT TURNS INTO ACTION by VELOXITY, Inc mobile is not a device, it s a behavior August 24, 2018 The Effect of The New Istanbul Airport to Air Travel The new airport

More information

Young Researchers Seminar 2009

Young Researchers Seminar 2009 Young Researchers Seminar 2009 Torino, Italy, 3 to 5 June 2009 Hubs versus Airport Dominance (joint with Vivek Pai) Background Airport dominance effect has been documented on the US market Airline with

More information

Overview of PODS Consortium Research

Overview of PODS Consortium Research Overview of PODS Consortium Research Dr. Peter P. Belobaba MIT International Center for Air Transportation Presentation to ATPCO Dynamic Pricing Working Group Washington, DC February 23, 2016 MIT PODS

More information

Investor Update: October 25, 2016

Investor Update: October 25, 2016 Investor Update: October 25, 2016 This investor update provides JetBlue s investor guidance for the fourth quarter ending December 31, 2016 and full year 2016. Recent Announcements JetBlue has recently

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

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

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

Istanbul Technical University Air Transportation Management, M.Sc. Program Aviation Economics and Financial Analysis Module November 2014

Istanbul Technical University Air Transportation Management, M.Sc. Program Aviation Economics and Financial Analysis Module November 2014 Pricing Istanbul Technical University Air Transportation Management, M.Sc. Program Aviation Economics and Financial Analysis Module 11 14 November 2014 Outline Revenue management Fares Buckets Restrictions

More information

Applying Integer Linear Programming to the Fleet Assignment Problem

Applying Integer Linear Programming to the Fleet Assignment Problem Applying Integer Linear Programming to the Fleet Assignment Problem ABARA American Airlines Decision Ti'chnohi^ics PO Box 619616 Dallasll'ort Worth Airport, Texas 75261-9616 We formulated and solved the

More information

A METHODOLOGY FOR AIRPORT ARRIVAL FLOW ANALYSIS USING TRACK DATA A CASE STUDY FOR MDW ARRIVALS

A METHODOLOGY FOR AIRPORT ARRIVAL FLOW ANALYSIS USING TRACK DATA A CASE STUDY FOR MDW ARRIVALS A METHODOLOGY FOR AIRPORT ARRIVAL FLOW ANALYSIS USING TRACK DATA A CASE STUDY FOR MDW ARRIVALS Akshay Belle (PhD Candidate), Lance Sherry (Ph.D), Center for Air Transportation Systems Research, Fairfax,

More information

Clinical results using the Holladay 2 intraocular lens power formula

Clinical results using the Holladay 2 intraocular lens power formula Clinical results using the Holladay 2 intraocular lens power formula Kenneth J. Hoffer, MD ABSTRACT Purpose: To analyze the accuracy of the Holladay 2 formula, which has been proposed as an improvement

More information

Department of Transportation, Federal Aviation Administration (FAA). SUMMARY: Under this notice, the FAA announces the submission deadline of

Department of Transportation, Federal Aviation Administration (FAA). SUMMARY: Under this notice, the FAA announces the submission deadline of This document is scheduled to be published in the Federal Register on 05/09/2018 and available online at https://federalregister.gov/d/2018-09894, and on FDsys.gov [4910-13] DEPARTMENT OF TRANSPORTATION

More information

Semantic Representation and Scale-up of Integrated Air Traffic Management Data

Semantic Representation and Scale-up of Integrated Air Traffic Management Data Semantic Representation and Scale-up of Integrated Air Traffic Management Data Rich Keller, Ph.D. * Mei Wei * Shubha Ranjan + Michelle Eshow *Intelligent Systems Division / Aviation Systems Division +

More information

MIT ICAT. Price Competition in the Top US Domestic Markets: Revenues and Yield Premium. Nikolas Pyrgiotis Dr P. Belobaba

MIT ICAT. Price Competition in the Top US Domestic Markets: Revenues and Yield Premium. Nikolas Pyrgiotis Dr P. Belobaba Price Competition in the Top US Domestic Markets: Revenues and Yield Premium Nikolas Pyrgiotis Dr P. Belobaba Objectives Perform an analysis of US Domestic markets from years 2000 to 2006 in order to:

More information

Fundamentals of Airline Markets and Demand Dr. Peter Belobaba

Fundamentals of Airline Markets and Demand Dr. Peter Belobaba Fundamentals of Airline Markets and Demand Dr. Peter Belobaba Istanbul Technical University Air Transportation Management M.Sc. Program Network, Fleet and Schedule Strategic Planning Module 10: 30 March

More information

Factorial Study on Airport Delay for Flight Scheduling Process

Factorial Study on Airport Delay for Flight Scheduling Process 2012 International Conference on Economics, Business Innovation IPEDR vol.38 (2012) (2012) IACSIT Press, Singapore Factorial Study on Airport Delay for Flight Scheduling Process Fairuz I. Romli +, Tan

More information

Aviation Economics & Finance

Aviation Economics & Finance Aviation Economics & Finance Professor David Gillen (University of British Columbia )& Professor Tuba Toru-Delibasi (Bahcesehir University) Istanbul Technical University Air Transportation Management M.Sc.

More information

Multi-Aero Inc. d/b/a Air Choice One

Multi-Aero Inc. d/b/a Air Choice One Multi-Aero Inc. d/b/a Air Choice One Proposal to Provide Essential Air Service at Owensboro, Kentucky Docket DOT-OST-2000-7855 Direct Inquiries Regarding this Proposal to: Shane Storz, CEO Air Choice One

More information

CSCE 520 Final Exam Thursday December 14, 2017

CSCE 520 Final Exam Thursday December 14, 2017 CSCE 520 Final Exam Thursday December 14, 2017 Do all problems, putting your answers on separate paper. All answers should be reasonably short. The exam is open book, open notes, but no electronic devices.

More information

Measure 67: Intermodality for people First page:

Measure 67: Intermodality for people First page: Measure 67: Intermodality for people First page: Policy package: 5: Intermodal package Measure 69: Intermodality for people: the principle of subsidiarity notwithstanding, priority should be given in the

More information

Airline Network Structures Dr. Peter Belobaba

Airline Network Structures Dr. Peter Belobaba Airline Network Structures Dr. Peter Belobaba Istanbul Technical University Air Transportation Management M.Sc. Program Network, Fleet and Schedule Strategic Planning Module 8: 11 March 2014 Lecture Outline

More information

Route Planning and Profit Evaluation Dr. Peter Belobaba

Route Planning and Profit Evaluation Dr. Peter Belobaba Route Planning and Profit Evaluation Dr. Peter Belobaba Istanbul Technical University Air Transportation Management M.Sc. Program Network, Fleet and Schedule Strategic Planning Module 9 : 11 March 2014

More information

Advisory Circular AC61-3 Revision 11 SUPERSEDED Define and identify, on a diagram of the earth, and explain the meaning of the following:

Advisory Circular AC61-3 Revision 11 SUPERSEDED Define and identify, on a diagram of the earth, and explain the meaning of the following: Subject No 6 Air Navigation and Flight Planning Each subject has been given a subject number and each topic within that subject a topic number. These reference numbers will be used on knowledge deficiency

More information

DEPARTMENT OF HOMELAND SECURITY U.S. CUSTOMS AND BORDER PROTECTION. CBP Dec. No EXPANSION OF GLOBAL ENTRY TO NINE ADDITIONAL AIRPORTS

DEPARTMENT OF HOMELAND SECURITY U.S. CUSTOMS AND BORDER PROTECTION. CBP Dec. No EXPANSION OF GLOBAL ENTRY TO NINE ADDITIONAL AIRPORTS This document is scheduled to be published in the Federal Register on 10/04/2016 and available online at https://federalregister.gov/d/2016-23966, and on FDsys.gov 9111-14 DEPARTMENT OF HOMELAND SECURITY

More information

FSXmap.com. Interactive Airport and Runway map for Flight Simulator X

FSXmap.com. Interactive Airport and Runway map for Flight Simulator X FSXmap.com Interactive Airport and Runway map for Flight Simulator X Thank you for your interest in FSXmap.com! This is an interactive Airport and Runway map targeted for Microsoft Flight Simulator X (onwards

More information

The Role of U.S. Airports in the National Economy

The Role of U.S. Airports in the National Economy The Role of U.S. Airports in the National Economy Presented to TRB Session #506 Financing Airports January 9, 2018 By Steven Landau Economic Development Research Group ACRP 03-28, Report 132 Key Collaborators

More information

Vanderbilt Travel January 2019 Airfare Price Testing Testing Session, January 14, 9:30am 10:30am

Vanderbilt Travel January 2019 Airfare Price Testing Testing Session, January 14, 9:30am 10:30am Feb 28 Feb 13, 4:50pm Feb 7, 12:05pm Feb 26, 1:18pm Date / Time 2:35pm/5:35pm/10:55pm Feb 8, 10:40pm / 1:20pm City Pair New York (LGA) Denver (DEN) Washington (DCA) Abuja (ABV) Abu Dhabi (AUH) Southwest

More information

Delta and Minnesota. January 29, 2015

Delta and Minnesota. January 29, 2015 Delta and Minnesota January 29, 2015 Delta & Minnesota: By The Numbers 456 Delta peak-day departures from Minneapolis/St. Paul 2 MSP is Delta s 2 nd largest hub (Seat departures July 2014) 145 Total nonstop

More information

Step-by-Step Instructions

Step-by-Step Instructions Step-by-Step Instructions Trip Manager is customized to your company s travel policy. Please contact the Trip Manager Administrator for questions regarding Trip Manager at: Keona Boothe kboothe@jlab.org,

More information

New Developments in RM Forecasting and Optimization Dr. Peter Belobaba

New Developments in RM Forecasting and Optimization Dr. Peter Belobaba New Developments in RM Forecasting and Optimization Dr. Peter Belobaba Istanbul Technical University Air Transportation Management M.Sc. Program Network, Fleet and Schedule Strategic Planning Module 24

More information

Spring Break Just Got Cheaper

Spring Break Just Got Cheaper Fly.com 590 Madison Avenue 37th Floor New York, NY 10022 Media Contact: Michelle Erickson Fly.com, North America +1 (650) 316-6835 merickson@fly.com FOR IMMEDIATE RELEASE Spring Break Just Got Cheaper

More information

SIMAIR: A STOCHASTIC MODEL OF AIRLINE OPERATIONS

SIMAIR: A STOCHASTIC MODEL OF AIRLINE OPERATIONS SIMAIR: A STOCHASTIC MODEL OF AIRLINE OPERATIONS Jay M. Rosenberger Andrew J. Schaefer David Goldsman Ellis L. Johnson Anton J. Kleywegt George L. Nemhauser School of Industrial and Systems Engineering

More information

Overview: Network Profitability and Performance Measurement. Andrew Jay Blackburn Principal Consultant 11 January, 2006

Overview: Network Profitability and Performance Measurement. Andrew Jay Blackburn Principal Consultant 11 January, 2006 Overview: Network Profitability and Performance Measurement ndrew Jay Blackburn Principal Consultant 11 January, 2006 Focus BC viation Consultancy offers expertise in the development and enhancement of

More information

Business Intelligence Development at Winnipeg Transit

Business Intelligence Development at Winnipeg Transit ITS Canada Webinar February 28, 2013 Business Intelligence Development at Winnipeg Transit Bill Menzies Senior Transit Planner, Dillon Consulting Limited Manager of Service Development, Winnipeg Transit

More information

ICAO CORSIA CO 2 Estimation and Reporting Tool (CERT) Design, Development and Validation

ICAO CORSIA CO 2 Estimation and Reporting Tool (CERT) Design, Development and Validation ICAO CORSIA CO 2 Estimation and Reporting Tool (CERT) Design, Development and Validation August 2018 - 2 - TABLE OF CONTENTS Page 1. Introduction 3 2. High level architecture and evolution of the ICAO

More information

Concur Travel Southwest Direct Connect

Concur Travel Southwest Direct Connect Concur Travel Southwest Direct Connect Booking Southwest Airlines using Concur Travel s Southwest Direct Connect is easy! Before you begin, check your Concur Travel profile for the following: If you have

More information

Predicting Flight Delays Using Data Mining Techniques

Predicting Flight Delays Using Data Mining Techniques 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 837.2 million passengers and the

More information

A Rope, a Goat, a Shed, and a Silo

A Rope, a Goat, a Shed, and a Silo A Rope, a Goat, a Shed, and a Silo by: Joshua Wood Problem: Grazing area. Farmer Jones had a goat on a tether. He tied the end of the tether not attached to the goat to a stake in a field. Over what area

More information

PHY 133 Lab 6 - Conservation of Momentum

PHY 133 Lab 6 - Conservation of Momentum Stony Brook Physics Laboratory Manuals PHY 133 Lab 6 - Conservation of Momentum The purpose of this lab is to demonstrate conservation of linear momentum in one-dimensional collisions of objects, and to

More information

Effects of Competition and Changes in Route Structure on Growth of Domestic Air Travel

Effects of Competition and Changes in Route Structure on Growth of Domestic Air Travel Journal of Air Law and Commerce Volume 18 1951 Effects of Competition and Changes in Route Structure on Growth of Domestic Air Travel Herbert H. Whitehead Follow this and additional works at: https://scholar.smu.edu/jalc

More information

Delta Already Has Access to 79 Percent of U.S.-Rome Traffic with Its JFK Service

Delta Already Has Access to 79 Percent of U.S.-Rome Traffic with Its JFK Service Already Has Access to 79 Percent of U.S.-Rome Traffic with Its Service Philadelphia R-103 (Rebuttal to -103) Seattle Portland Salt Lake City Denver Chicago Detroit Cleveland Columbus Dayton Pittsburgh

More information

SITE ELEVATION AMSL...Ground Elevation in feet AMSL STRUCTURE HEIGHT...Height Above Ground Level OVERALL HEIGHT AMSL...Total Overall Height AMSL

SITE ELEVATION AMSL...Ground Elevation in feet AMSL STRUCTURE HEIGHT...Height Above Ground Level OVERALL HEIGHT AMSL...Total Overall Height AMSL ******************************************** * Federal Airways & Airspace * * Summary Report * ******************************************** File: User Assigned File Name Latitude: NAD83 Coordinate Longitude:

More information

Demand Forecast Uncertainty

Demand Forecast Uncertainty Demand Forecast Uncertainty Dr. Antonio Trani (Virginia Tech) CEE 4674 Airport Planning and Design April 20, 2015 Introduction to Airport Demand Uncertainty Airport demand cannot be predicted with accuracy

More information

Chico Municipal Airport. Catchment Area Analysis Results

Chico Municipal Airport. Catchment Area Analysis Results Chico Municipal Airport Catchment Area Analysis Results Table of Contents Chico market overview 4 Comparative market analysis 9 Regional airport discussion 14 CIC catchment area results 19 2 Executive

More information

PVC Competitor Airports & Customer Service Outcomes

PVC Competitor Airports & Customer Service Outcomes PVC Competitor Airports & Customer Service Outcomes Premium Value Concession Program June 20, 2013 Robb Brown / Rob McDaniel Metrix Advisors, LLC 303.641.3443 rob@metrixadvisors.com Agenda Introduction

More information

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

Airline Scheduling Optimization ( Chapter 7 I)

Airline Scheduling Optimization ( Chapter 7 I) Airline Scheduling Optimization ( Chapter 7 I) Vivek Kumar (Research Associate, CATSR/GMU) February 28 th, 2011 CENTER FOR AIR TRANSPORTATION SYSTEMS RESEARCH 2 Agenda Airline Scheduling Factors affecting

More information

CONNECTIONS ANALYSER GLOSSARY

CONNECTIONS ANALYSER GLOSSARY CONNECTIONS ANALYSER GLOSSARY SEPTEMBER 2017 CONNECTIONS ANALYSER USER GUIDE GLOSSARY Aircraft Categories Code Description A H JN JW P S T Amphibian / Sea Plane Helicopter Pure Jet (Narrowbody) Pure Jet

More information

Outlook for Air Travel

Outlook for Air Travel University of Massachusetts Amherst ScholarWorks@UMass Amherst Tourism Travel and Research Association: Advancing Tourism Research Globally 2014 Marketing Outlook Forum - Outlook for 2015 Outlook for Air

More information

Project Consultant (PC) Alternative 5 Runway 22R/L RNAV Departures

Project Consultant (PC) Alternative 5 Runway 22R/L RNAV Departures VIA E-MAIL Date: To: From: Subject: Boston Technical Advisory Committee (BOS/TAC) Project Consultant (PC) Alternative 5 Runway 22R/L RNAV Departures At the February 17, 2006 BOS/TAC meeting several issues

More information

(Presented by the United States)

(Presented by the United States) International Civil Aviation Organization 31/07/09 North American, Central American and Caribbean Office (NACC) Tenth Meeting of Directors of Civil Aviation of the Central Caribbean (C/CAR/DCA/10) Grand

More information

Flight Arrival Simulation

Flight Arrival Simulation Flight Arrival Simulation Ali Reza Afshari Buein Zahra Technical University, Department of Industrial Engineering, Iran, afshari@bzte.ac.ir Mohammad Anisseh Imam Khomeini International University, Department

More information

Paper presented to the 40 th European Congress of the Regional Science Association International, Barcelona, Spain, 30 August 2 September, 2000.

Paper presented to the 40 th European Congress of the Regional Science Association International, Barcelona, Spain, 30 August 2 September, 2000. Airline Strategies for Aircraft Size and Airline Frequency with changing Demand and Competition: A Two-Stage Least Squares Analysis for long haul traffic on the North Atlantic. D.E.Pitfield and R.E.Caves

More information

Efficiency and Environment KPAs

Efficiency and Environment KPAs Efficiency and Environment KPAs Regional Performance Framework Workshop, Bishkek, Kyrgyzstan, 21 23 May 2013 ICAO European and North Atlantic Office 20 May 2013 Page 1 Efficiency (Doc 9854) Doc 9854 Appendix

More information

Chamber of. Dubuque Area. Commerce. Task Force Members. Ellen Sandberg-Shook. Barry Gentry. Molly Grover. Dubuque Area Chamber of Commerce

Chamber of. Dubuque Area. Commerce. Task Force Members. Ellen Sandberg-Shook. Barry Gentry. Molly Grover. Dubuque Area Chamber of Commerce Air Service Forum Molly Grover Barry Gentry Ellen Sandberg-Shook Dubuque Area Chamber of Commerce Dubuque Area Chamber of Commerce Dubuque Area Chamber of Commerce Dubuque Area Chamber of Commerce Task

More information

Air Connectivity and Competition

Air Connectivity and Competition Air Connectivity and Competition Sainarayan A Chief, Aviation Data and Analysis Section, ATB Concept of Connectivity in Air Transport Movement of passengers, mail and cargo involving the minimum of transit

More information

Carbon Offsetting and Reduction Scheme for International Aviation (CORSIA):

Carbon Offsetting and Reduction Scheme for International Aviation (CORSIA): Carbon Offsetting and Reduction Scheme for International Aviation (CORSIA): Introduction & Expectations on the Submission of Emissions Monitoring Plan Presented to: By: Date: NBAA S Business Aviation Convention

More information

Cleveland Hopkins International Airport Preliminary Merger Analysis

Cleveland Hopkins International Airport Preliminary Merger Analysis City of Cleveland Frank G. Jackson, Mayor Operational Issues Cleveland Hopkins International Airport Preliminary Merger Analysis As of today, Continental and United have not even admitted that they are

More information

Forecast of Aviation Activity

Forecast of Aviation Activity DETROIT METROPOLITAN WAYNE COUNTY AIRPORT FAR PART 150 NOISE COMPATIBILITY STUDY UPDATE CHAPTER B FORECAST OF AVIATION ACTIVITY Forecast of Aviation Activity Introduction This chapter summarizes past aviation

More information

AGENCY: U.S. Customs and Border Protection; Department of Homeland Security.

AGENCY: U.S. Customs and Border Protection; Department of Homeland Security. This document is scheduled to be published in the Federal Register on 06/25/2013 and available online at http://federalregister.gov/a/2013-15087, and on FDsys.gov 9111-14 DEPARTMENT OF HOMELAND SECURITY

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

Data Session U.S.: T-100 and O&D Survey Data. Presented by: Tom Reich

Data Session U.S.: T-100 and O&D Survey Data. Presented by: Tom Reich Data Session U.S.: T-100 and O&D Survey Data Presented by: Tom Reich 1 What are Doing Here? Learn how to use T100 & O&D (DB1A/DB1B) to: Enhance your air service presentations Identify opportunities for

More information

Wake Turbulence Research Modeling

Wake Turbulence Research Modeling Wake Turbulence Research Modeling John Shortle, Lance Sherry Jianfeng Wang, Yimin Zhang George Mason University C. Doug Swol and Antonio Trani Virginia Tech Introduction This presentation and a companion

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

PBN AIRSPACE CONCEPT WORKSHOP. SIDs/STARs/HOLDS. Continuous Descent Operations (CDO) ICAO Doc 9931

PBN AIRSPACE CONCEPT WORKSHOP. SIDs/STARs/HOLDS. Continuous Descent Operations (CDO) ICAO Doc 9931 International Civil Aviation Organization PBN AIRSPACE CONCEPT WORKSHOP SIDs/STARs/HOLDS Continuous Descent Operations (CDO) ICAO Doc 9931 Design in context Methodology STEPS TFC Where does the traffic

More information

Directors, Field Operations Office of Field Operations. Director, Pre Clearance Operations

Directors, Field Operations Office of Field Operations. Director, Pre Clearance Operations U.S. Deparunent of Homeland Security Washington, DC 20229 U.S. Customs and Border Protection MAY 11 2010 MEMORANDUM FOR: Directors, Field Operations Office of Field Operations Director, Pre Clearance Operations

More information

September Air Traffic Statistics. Prepared by the Office of Corporate Risk and Strategy

September Air Traffic Statistics. Prepared by the Office of Corporate Risk and Strategy September 214 Air Traffic Statistics Prepared by the Office of Corporate Risk and Strategy Air Traffic Summary September 214 Commercial Total Dom Int'l Passengers % Change Passenger Activity (in Millions)

More information

Aircraft Arrival Sequencing: Creating order from disorder

Aircraft Arrival Sequencing: Creating order from disorder Aircraft Arrival Sequencing: Creating order from disorder Sponsor Dr. John Shortle Assistant Professor SEOR Dept, GMU Mentor Dr. Lance Sherry Executive Director CATSR, GMU Group members Vivek Kumar David

More information