Computation of a possible route of travel using Interclass booking in the railways

Size: px
Start display at page:

Download "Computation of a possible route of travel using Interclass booking in the railways"

Transcription

1 I J C T A, 10(9), 2017, pp International Science Press ISSN: Computation of a possible route of travel using Interclass booking in the railways Apoorv Aditya 1, Namrata Chatterjee 2 and Kumar Devdutta 3 ABSTRACT Introduction of an algorithm and database design that can calculate a possible itinerary route of travel in railways using interclass booking with the help of an intermediate junction that will act as a journey breaking point for one type of class of travel such as 3AC, 2AC, Sleeper, etc. into another similar class of travel where tickets are available, so that travelling is made possible instead of no travelling when the ticket in any class from our desired source to destination is unavailable Index Terms: algorithm, irctc, database, data mining, data structure, railway, smart computing, ticket booking 1. INTRODUCTION Today Indian Railways has established itself as one of the core means of transportation for a common man. A common man s chariot for travelling, the railways provide the people a cheap and reliable means of transport from one station to another. If a person is travelling with the help of Indian Railways, he needs to buy a ticket, otherwise he may be fined or jailed or both. In order to save ourselves from this harsh punishment, the Indian Railways tickets are a faster sellout than most of the concert tickets or game tickets. People wait in queues for hours in the railway ticket counters just to buy one ticket. Most people fail to reach their destination because they fail to get the tickets. What they fail to realize is that they can still make it to their destination if they could find out an optimized route. We referred to Indian Railways, Significance and problems of Indian Railways by Smriti Chand to look deeper into the problem and are now trying to design an algorithm and a database structure that will help in the efficient determination of possibility of booking a ticket using the concept of interclass booking, where a person can book his tickets in one class or category from the source to an intermediate junction and then, can book tickets from the intermediate junction to his destination station in another class of travel. Classes of travel include 3AC, 2AC, 1AC, SL, CC, 2S. The outcome includes possible options of travel for the user to choose from. Example: If a user wants to travel from Tata to Pune, he has one train as an option which is Azad Hind Express and he is not getting a confirm ticket, it may be possible that he will get a confirm seat in Sleeper class from Tata to Nagpur and a 3AC confirm ticket from Nagpur to Pune. Our algorithm will show him these types of options where he can break the journey in the same train in different classes. 2. ASSUMPTIONS We have assumed the following points before designing the database and the algorithm-: The trains will always be available and will be on time reaching every station. There are no reservations of any category such as Handicapped quota, etc. The number of tickets in a particular train from a source to destination on any day remains constant. 1-3 KIIT University, Bhubaneswar, India, s: apoorvaditya007@gmail.com, namratach2008@gmail.com, kdevduttafcs@kiit.ac.in

2 72 Apoorv Aditya, Namrata Chatterjee and Kumar Devdutta 3. DATABASE DESIGN Following are the tables which are in the database storing various relevant information. The information stored is used at various stages in the algorithm. Most of the stored data are taken from trusted sources like Rail bandhu, the onboard magazine of Indian Railways, Indian Railways train schedule and Report on Indian Railways by Railway Board, India. Collectively the tables contain train numbers, train names, sources, destinations, departure days and number of seats in each class between every source and destination, necessary for the computation purpose Figure 1: Where information about the train number and train name is stored. A unique id is given to all trains. The id is used further in the algorithm to validate the train name and joining various other tables. Figure 2: This is a sample table, where all the possible combinations of source and destination covered by the train having id 1 is stored. The departure days of the train are also stored, which are used in checking the availability of the train on a specific date and between a specific pair source and destination. Here id is the foreign key referring the id(primary key) in the table train_id. To fetch the dept_days the table train_id is joined with this table keeping id as the key. Figure 3: This is a table showing all the possible combinations of source and destination covered by the train having id 2. The table also contains the departure days. This table has the same functionality as that of train_dept_1.

3 Computation of a possible route of travel using Interclass booking in the railways 73 Figure 4:This is a table showing all the possible combinations of source and destination covered by the train having id 3. The table also contains the departure days. This table has the same functionality as that of train_dept_1. Figure 5: Where information about the train source and its various destinations are assigned unique serial numbers. This serial number is used in joining this table with the table t_ticket2_train1 and hence used in fetching the number of seats available in all the classes present in the train. This is a sample table containing data only of train having id 1. Similarly there are separate tables for all the trains. Here, s-no is the primary key. Figure 6: Where information about the tickets for various classes according to serial numbers are located as a master table. Here s_no is the foreign key referring the s_no in t_ticket1_train1. Copies of this master table are made for each day so as to keep updating the number of seats. We keep the master table only for making copies, this table is immutable so as to avoid any kind of inconsistency in the data.

4 74 Apoorv Aditya, Namrata Chatterjee and Kumar Devdutta Figure 7: Where information about the tickets available is gained on a particular date mentioned in the table name. This is a copy of the master table t_ticket2_train1. Figure 8: Where information about the ticket availability for various serial numbers are gained for another day of booking of the train having id 2. Figure 9: This table is used for storing the user_id, and the password of the user obtained at the time of registration. This is further used in validating the user. The user_id and is the composite primary key.

5 Computation of a possible route of travel using Interclass booking in the railways 75 Figure 10: This table stores various other information of the registered users like name and password. Here user_id is the foreign key referring the composite primary key in table user_authentication. This ensures that information of only the registered users are stored avoiding data inconsistency. Figure 11: This table is updated as soon as the ticket is booked. This table keeps a record of the tickets booked. Here pnr is the primary key so as to permit only unique values of the pnr and user_id is the foreign key referring the composite primary key in table user_authentication. 4. ALGORITHM Figure 12: This table contains all the information regarding a particular ticket, having a unique pnr. Here pnr is the foreign key referring the pnr in the table user_pnr. Make the user register herself/himself. Ask for user_id, password, _id, name and phone number. Store these information in the table user_authentication and user_info (ref. fig 9 and fig 10). At the time of login, ask for user_id or _id and password, validate the user using user_authentication table and allow log in, else redirect to register. If user is valid go to STEP A. STEP A: user input: src, destn, preferred train name, date of travel and preferred class

6 76 Apoorv Aditya, Namrata Chatterjee and Kumar Devdutta step A: if preferred train name is entered, select id from table train_id(ref. fig 1). After fetching the id from table train_id fetch dept_days from table train_dept_<id> corresponding to the given travel date(ref. fig 2). If train not available on that date, ask for any other travel date else if the train is available on that day move to next step B. STEP B: select s_no from t_ticket1_train<id> where source and destination matches with the one entered by the user(ref. fig 5). Using s_no fetched, fetch the number of seats present in the preferred class from table t_ticket2_train<id>_<date:ddmmyyyy> (ref. fig 7). If the number of seats is not equal to zero, give an option to the user to book the ticket. If the user books the ticket then store various information like seat_no, coach_no, journey date, date of booking, train_no and pnr in the tables user_pnr and pnr_info (ref. fig 11 and fig 12). Then update the number of seats in train_ticket2_train<1><date:ddmmyyyy>. If the number of seats in the preferred class equal to zero, go to step ICB. STEP ICB: Select all the destinations from t_ticket1_train<id> where the source matches with the one entered by the user (ref. fig 5). Store the fetched destinations as the intermediate stations. Using table t_ticket1_train<id>, check whether the destination given by the user can be reached from the stored intermediate stations. If yes, fetch the Number of seats available in all the classes from the source to intermediate and from the intermediate to destination separately using t_ticket2_train<id> and store in a n-d array. Display the array to the user as list of options. If the user select s an opt ion, book the ticket and update the number of seats in t_ticket2_train<id><date:ddmmyyyy> and store the ticket related information in user_pnr and pnr_info. If user does not select any option, then EXIT. 5. OUTCOME OF THE SYSTEM After implementing this algorithm and the database structure, what we get as an output, is a list of possible choices for the user to choose and book a ticket in spite of unavailability of seats in the preferred class. For example, if a user wants to book a ticket in hwhbbsjanshatabdi express in chair car from hwh to bbs and there is no seat available for the date entered by the user, then our algorithm will compute the following choices for the user: 1st option hwh to kgp number of seats available is 6 kgp to bbs number of seats available is 10 2nd option hwh to bls number of seats available is 3 bls to bbs number of seats available is 5 6. ALGORITHM FLOWCHART

7 Computation of a possible route of travel using Interclass booking in the railways 77

8 78 Apoorv Aditya, Namrata Chatterjee and Kumar Devdutta Assumptions: Flowchart is drawn considering train_id=1. For seat availability the master table is referred. 7. CONCLUSION In this paper, we have used a database design and an efficient algorithm that effectively allows a user to find an itinerary route to travel from a source to a destination with the help of interclass booking and we have developed our algorithm and database design using some aforementioned assumptions. We have tried to implement something which has not yet been implemented by the Indian Railways. To comprehend the management of Indian Railways more clearly we referred to the Journal of Rail Transport Planning &Management by I. Hansen and Report on Indian Railways by National Government Publication. REFERENCES [1] I. Hansen: Journal of Rail Transport Planning &Management, Affiliated with the International Association of Railway Operations Research. [2] Smriti Chand: Indian Railway, Significance and problems of Indian Railways URL- railways/indian-railway-significance-and- problems-of-indian-railways/14136/ [3] Railway Board, India: Report on Indian Railways, National Government Publication, WorldCat database, includes information on the state railways from their beginning. [4] Ministry of Railways, Research Designs and Standard Organization, India: Indian Railway Technical Bulletin, R.D.S.O publisher, Lucknow. [5] Indian Railways: Train Schedule URL- [6] Rail Bandhu: The Onboard Magazine of Indian Railways. URL- railbandhu.in

9

IRCTCC RAIL CONNECT ANDROID APP

IRCTCC RAIL CONNECT ANDROID APP IRCTCC RAIL CONNECT ANDROID APP USER GUIDE NOTE: Document is subject to change. Detailed terms and conditions available on IRCTC website www.irctc.co.in 1 P a g e INDEX Sino Content 1 Launch Screen 2 Login

More information

RECENT ADVANCES in E-ACTIVITIES, INFORMATION SECURITY and PRIVACY. Hierarchy OpenID

RECENT ADVANCES in E-ACTIVITIES, INFORMATION SECURITY and PRIVACY. Hierarchy OpenID Hierarchy OpenID DONGHWI SHIN, INKYUN JEON, HYUNCHEOL JEONG Security Technology Team Korea Internet and Security Agency IT Venture Tower, Jungdaero 135, Songpa, Seoul Korea shindh@kisa.or.kr, ikjeun@kisa.or.kr,

More information

ANDROID BUS TICKETING SYSTEM

ANDROID BUS TICKETING SYSTEM ANDROID BUS TICKETING SYSTEM 1 NIKITHA PATIL, 2 ADARSH K 1,2 UG Students, Department of Electronics and Communication Engineering, Maharaja Institute of Technology, Mysore Abstract - This Manuscript delineates

More information

International Journal Of Electrical, Electronics And Data Communication, ISSN: ANDROID BUS TICKETING SYSTEM

International Journal Of Electrical, Electronics And Data Communication, ISSN: ANDROID BUS TICKETING SYSTEM ANDROID BUS TICKETING SYSTEM 1 NIKITHA PATIL, 2 ADARSH K UG Students, Department of Electronics and Communication Engineering Maharaja Institute of technology, Mysore Abstract - This Manuscript delineates

More information

Monitoring & Control Tim Stevenson Yogesh Wadadekar

Monitoring & Control Tim Stevenson Yogesh Wadadekar Monitoring & Control Tim Stevenson Yogesh Wadadekar Monitoring & Control M&C is not recognised as an SPDO Domain However the volume of work carried out in 2011 justifies a Concept Design Review M&C is

More information

Product information & MORE. Product Solutions

Product information & MORE. Product Solutions Product information & MORE Product Solutions Amadeus India s Ticket Capping Solution For Airlines Document control Company Amadeus India Department Product Management Table of Contents 1. Introduction...4

More information

User Reference Manual

User Reference Manual User Reference Manual Of Food Licensing & Registration System (FLRS) (Version 2.0) For Food Business Operator (FBO) 1 1. Login Page Type the URL: - http://foodlicensing.fssai.gov.in and first create Username

More information

Estimating the Risk of a New Launch Vehicle Using Historical Design Element Data

Estimating the Risk of a New Launch Vehicle Using Historical Design Element Data International Journal of Performability Engineering, Vol. 9, No. 6, November 2013, pp. 599-608. RAMS Consultants Printed in India Estimating the Risk of a New Launch Vehicle Using Historical Design Element

More information

Special edition paper Development of a Crew Schedule Data Transfer System

Special edition paper Development of a Crew Schedule Data Transfer System Development of a Crew Schedule Data Transfer System Hideto Murakami* Takashi Matsumoto* Kazuya Yumikura* Akira Nomura* We developed a crew schedule data transfer system where crew schedule data is transferred

More information

CONCEPT AND APPROACH OF ONLINE PREPARING AMENDED CHART BY TRAVELLING TICKET EXAMINER

CONCEPT AND APPROACH OF ONLINE PREPARING AMENDED CHART BY TRAVELLING TICKET EXAMINER CONCEPT AND APPROACH OF ONLINE PREPARING AMENDED CHART BY TRAVELLING TICKET EXAMINER Mohd. Shamshad West Central Railway, Sagar (M.P.), 470002, INDIA ABSTRACT In this technological world, where the technology

More information

Help Document for utsonmobile - Windows Phone

Help Document for utsonmobile - Windows Phone Help Document for utsonmobile - Windows Phone Indian Railway is introducing the facility of booking unreserved suburban tickets on smartphones. The application has been developed in-house by Centre for

More information

PRAJWAL KHADGI Department of Industrial and Systems Engineering Northern Illinois University DeKalb, Illinois, USA

PRAJWAL KHADGI Department of Industrial and Systems Engineering Northern Illinois University DeKalb, Illinois, USA SIMULATION ANALYSIS OF PASSENGER CHECK IN AND BAGGAGE SCREENING AREA AT CHICAGO-ROCKFORD INTERNATIONAL AIRPORT PRAJWAL KHADGI Department of Industrial and Systems Engineering Northern Illinois University

More information

FareStar Ticket Window Product Functionality Guide

FareStar Ticket Window Product Functionality Guide FareStar Ticket Window Product Functionality Guide To: GlobalStar, Peter Klebanow, Martin Metzler From: Paul Flight, TelMe Farebase Date: 11 August 2006 Version: Five Contact: paulf@telme.com Tel: +44

More information

Concur Travel-Frequently Asked Questions

Concur Travel-Frequently Asked Questions Concur Travel-Frequently Asked Questions Click Links to Navigate User & Profile Assistance First Time Logging into Concur Travel & Expense Forgot Password System is slow Smartphone Access Air Car Hotel-Navigational

More information

Project Sangam PASSAGE - ESS. Training / User Manual. IBM India Pvt. Ltd. GBS- Domestic Page 1 of 16

Project Sangam PASSAGE - ESS. Training / User Manual. IBM India Pvt. Ltd. GBS- Domestic Page 1 of 16 Project Sangam Training / User Manual PASSAGE - ESS IBM India Pvt. Ltd. GBS- Domestic Page 1 of 16 SAP Portal Navigation... 3 Create Passage... 5 Cancel RAO...14 IBM India Pvt. Ltd. GBS- Domestic Page

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

DATA APPLICATION CATEGORY 25 FARE BY RULE

DATA APPLICATION CATEGORY 25 FARE BY RULE DATA APPLICATION CATEGORY 25 FARE BY RULE The information contained in this document is the property of ATPCO. No part of this document may be reproduced, stored in a retrieval system, or transmitted in

More information

Frequently asked questions (FAQ)

Frequently asked questions (FAQ) Frequently asked questions (FAQ) Content 1. Subscription 2. Connectivity 3. Data (General) 4. Air carrier traffic 5. Traffic by Flight Stage (TFS) 6. Air carrier finances 7. Airport traffic 8. On-Flight

More information

The Improvement of Airline Tickets Selling Process

The Improvement of Airline Tickets Selling Process The Improvement of Airline Tickets Selling Process Duran Li (103034466) Department of Industrial Engineering and Engineering Management, National Tsing Hua University, Taiwan Abstract. The process of a

More information

Click the Profile link to review and update your profile. You must save your profile before you first attempt to book a trip. TOP

Click the Profile link to review and update your profile. You must save your profile before you first attempt to book a trip. TOP FAQ Concur Travel Documentation User & Profile Assistance First Time Logging into Concur Travel & Expense Forgot Password System is slow Smartphone Access Air Car Hotel-Navigational Assistance Air-Search

More information

Fox World Travel/Concur Documentation Concur FAQ

Fox World Travel/Concur Documentation Concur FAQ Fox World Travel/Concur Documentation Concur FAQ User and Profile Assistance First Time Logging into Concur Travel & Expense Forgot Password System is Slow Smartphone Access Air Car Hotel-Navigational

More information

Online Guest Accommodation Booking System

Online Guest Accommodation Booking System DIRECTORATE OF ESTATES, MINISTRY OF URBAN DEVELOPMENT, GOVERNMENT OF INDIA Online Guest Accommodation Booking System [User Manual For Booking Agency] Document Prepared By Sunil Babbar, Scientist C, NIC

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

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

Concur Travel - Frequently Asked Questions

Concur Travel - Frequently Asked Questions Concur Travel - Frequently Asked Questions Click on the question to navigate to the answer. What should I do the first time I log into Concur Travel & Expense? What do I do if I forgot my password? Why

More information

Refund Rules and TDR Filing w.e.f 01-JULY-2013

Refund Rules and TDR Filing w.e.f 01-JULY-2013 Refund Rules and TDR Filing w.e.f 01-JULY-2013 Authority:- Railway Board letter No.TCII/2003/12/Refund Policy dated 14 Jun 2013 The Gazette Of India Notification Dated 07.06.2013. Refer Alert & Update

More information

Application of Graph Theory in Transportation Networks

Application of Graph Theory in Transportation Networks International Journal of Scientific Research and Management (IJSRM) Volume 5 Issue 07 Pages 6197-6201 2017 Website: www.ijsrm.in ISSN (e): 2321-3418 Index Copernicus value (2015): 57.47 DOI: 10.18535/ijsrm/v5i7.48

More information

MEMBER PORTAL QUICK GUIDE

MEMBER PORTAL QUICK GUIDE MEMBER PORTAL QUICK GUIDE Table of Contents How to register:... 2 How to log into Member Portal:... 3 To book a round trip:... 4 To book a one way to appointment (from home to appointment with no return

More information

Runway Length Analysis Prescott Municipal Airport

Runway Length Analysis Prescott Municipal Airport APPENDIX 2 Runway Length Analysis Prescott Municipal Airport May 11, 2009 Version 2 (draft) Table of Contents Introduction... 1-1 Section 1 Purpose & Need... 1-2 Section 2 Design Standards...1-3 Section

More information

Network Revenue Management

Network Revenue Management Network Revenue Management Page 1 Outline Network Management Problem Greedy Heuristic LP Approach Virtual Nesting Bid Prices Based on Phillips (2005) Chapter 8 Demand for Hotel Rooms Vary over a Week Page

More information

Daily Estimation of Passenger Flow in Large and Complicated Urban Railway Network. Shuichi Myojo. Railway Technical Research Institute, Tokyo, Japan

Daily Estimation of Passenger Flow in Large and Complicated Urban Railway Network. Shuichi Myojo. Railway Technical Research Institute, Tokyo, Japan Daily Estimation of Passenger Flow in Large and Complicated Urban Railway Network Shuichi Myojo Abstract Railway Technical Research Institute, Tokyo, Japan Railway passenger flow data including the on-board

More information

Measuring Productivity for Car Booking Solutions

Measuring Productivity for Car Booking Solutions Measuring Productivity for Car Booking Solutions Value Creation Study Rebecca Bartlett 20th January 2014 Table of Contents Executive Summary Introduction Method Productivity Analysis Scenario 1 Scenario

More information

GOVERNMENT OF INDIA CIVIL AVIATION DEPARTMENT APPLICATION FOR THE ISSUE OF PRIVATE PILOT S LICENCE (AEROPLANE)

GOVERNMENT OF INDIA CIVIL AVIATION DEPARTMENT APPLICATION FOR THE ISSUE OF PRIVATE PILOT S LICENCE (AEROPLANE) GOVERNMENT OF INDIA CIVIL AVIATION DEPARTMENT APPLICATION FOR THE ISSUE OF PRIVATE PILOT S LICENCE (AEROPLANE) (Please see the instructions to fill this application) PART A Affix self attested recent photograph

More information

Concur Travel FAQs. 5. How do I log in to Concur Travel? Visit or the link is available on the Travel page of the Compass.

Concur Travel FAQs. 5. How do I log in to Concur Travel? Visit   or the link is available on the Travel page of the Compass. General 1. What is Concur Travel? Concur Travel is a hosted, web-based system that allows users to book travel using a web browser or mobile device instead of booking travel through a travel agent. Concur

More information

USER GUIDE Cruises Section

USER GUIDE Cruises Section USER GUIDE Cruises Section CONTENTS 1. WELCOME.... CRUISE RESERVATION SYSTEM... 4.1 Quotes and availability searches... 4.1.1 Search Page... 5.1. Search Results Page and Cruise Selection... 6.1. Modifying

More information

1. MICE Offer Log In page MICE605-_-CXHP-_-XX

1. MICE Offer Log In page   MICE605-_-CXHP-_-XX MICE IBE BOOKING STEPS 1. MICE Offer Log In page http://www.cathaypacific.com/cpa/en_intl/offerspromotions/micelogin?cm_mmc=mice-hk-_- MICE605-_-CXHP-_-XX 1.1 Log in with your Marco Polo Club or Asia Miles

More information

Simulation of disturbances and modelling of expected train passenger delays

Simulation of disturbances and modelling of expected train passenger delays Computers in Railways X 521 Simulation of disturbances and modelling of expected train passenger delays A. Landex & O. A. Nielsen Centre for Traffic and Transport, Technical University of Denmark, Denmark

More information

Certify Online R eservation Guide

Certify Online R eservation Guide Certify Online R eservation Guide 1) Click on the following link to access the portal. 2) Portal Page: a) Click on the Certify Login to access the User Login page. 1 http://osu.ciazumano.com 3) Login To

More information

Travel Agent - User Guide

Travel Agent - User Guide Travel Agent - User Guide Amadeus Fare World Contents Amadeus Fare World... 3 Search screen... 4 Standard Search... 4 Open Jaw search... 5 Agentweb... 5 Power Pricer (Agency Mark Up)... 6 Search functions...

More information

SENIOR CERTIFICATE EXAMINATIONS

SENIOR CERTIFICATE EXAMINATIONS SENIOR CERTIFICATE EXAMINATIONS INFORMATION TECHNOLOGY P1 2017 MARKS: 150 TIME: 3 hours This question paper consists of 21 pages. Information Technology/P1 2 DBE/2017 INSTRUCTIONS AND INFORMATION 1. This

More information

Can I download my e-ticket onto my laptop, smart phones, or tablets instead of printing the ticket?

Can I download my e-ticket onto my laptop, smart phones, or tablets instead of printing the ticket? What is an e-ticket? e-tickets are an electronic version of the paper ticket. You can print the ticket in colour or black and white from any office, café or home that has a printer. Please note that tickets

More information

Entry of Low-Cost-Airlines in Germany - Some Lessons for the Economics of Railroads and Intermodal Competition -

Entry of Low-Cost-Airlines in Germany - Some Lessons for the Economics of Railroads and Intermodal Competition - Entry of Low-Cost-Airlines in Germany - Some Lessons for the Economics of Railroads and Intermodal Competition - Juergen Antes Deutsche Bahn Strategic Network Management Guido Friebel University of Toulouse

More information

ONLINE DELAY MANAGEMENT IN RAILWAYS - SIMULATION OF A TRAIN TIMETABLE

ONLINE DELAY MANAGEMENT IN RAILWAYS - SIMULATION OF A TRAIN TIMETABLE ONLINE DELAY MANAGEMENT IN RAILWAYS - SIMULATION OF A TRAIN TIMETABLE WITH DECISION RULES - N. VAN MEERTEN 333485 28-08-2013 Econometrics & Operational Research Erasmus University Rotterdam Bachelor thesis

More information

myidtravel Functional Description

myidtravel Functional Description myidtravel Functional Description Table of Contents 1 Login & Authentication... 3 2 Registration... 3 3 Reset/ Lost Password... 4 4 Privacy Statement... 4 5 Booking/Listing... 5 6 Traveler selection...

More information

HOW TO IMPROVE HIGH-FREQUENCY BUS SERVICE RELIABILITY THROUGH SCHEDULING

HOW TO IMPROVE HIGH-FREQUENCY BUS SERVICE RELIABILITY THROUGH SCHEDULING HOW TO IMPROVE HIGH-FREQUENCY BUS SERVICE RELIABILITY THROUGH SCHEDULING Ms. Grace Fattouche Abstract This paper outlines a scheduling process for improving high-frequency bus service reliability based

More information

REPORT A-024/2012 DATA SUMMARY

REPORT A-024/2012 DATA SUMMARY REPORT A-024/2012 DATA SUMMARY LOCATION Date and time Sunday, 1 July 2012; 08:45 UTC 1 Site La Juliana Aerodrome (Seville, Spain) AIRCRAFT Registration Type and model Operator HA-NAH SMG-92 Turbo Finist

More information

CHAPTER 5 SIMULATION MODEL TO DETERMINE FREQUENCY OF A SINGLE BUS ROUTE WITH SINGLE AND MULTIPLE HEADWAYS

CHAPTER 5 SIMULATION MODEL TO DETERMINE FREQUENCY OF A SINGLE BUS ROUTE WITH SINGLE AND MULTIPLE HEADWAYS 91 CHAPTER 5 SIMULATION MODEL TO DETERMINE FREQUENCY OF A SINGLE BUS ROUTE WITH SINGLE AND MULTIPLE HEADWAYS 5.1 INTRODUCTION In chapter 4, from the evaluation of routes and the sensitive analysis, it

More information

SUSTAIN: A Framework for Sustainable Aviation

SUSTAIN: A Framework for Sustainable Aviation SUSTAIN: A Framework for Sustainable Aviation Ted Elliff Research Area Manager, Society, Environment & Economy 1 SEMANTICS (1) The Oxford English Dictionary defines sustainable as follows: sustainable

More information

PLANNING & ADVICE. Print this page. Introducing Holland America Line Express Docs

PLANNING & ADVICE. Print this page. Introducing Holland America Line Express Docs Call your travel professional or 1-877-932-4259 For Booked Guests > Planning & Advice PLANNING & ADVICE Print this page Introducing Holland America Line Express Docs NEW: Online Check-in can now be completed

More information

DART. Duty & Recreation Travel STAFF TRAVEL SIMPLIFIED. Straightforward, easy to use staff travel management system for the airline industry

DART. Duty & Recreation Travel STAFF TRAVEL SIMPLIFIED. Straightforward, easy to use staff travel management system for the airline industry DART Duty & Recreation Travel STAFF TRAVEL SIMPLIFIED. Straightforward, easy to use staff travel management system for the airline industry DART Duty & Recreation Travel 2 STAFF TRAVEL COULDN T GET EASIER

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

Specialty Cruises. 100% Tally and Strip Cruises

Specialty Cruises. 100% Tally and Strip Cruises Specialty Cruises 100% Tally and Strip Cruises Cumulative Tally Tree Category Cruises Stratified Cruises Tree or Log Average Cruises Multiple Cruisers on the same Stand Site Index Cruises Reproduction

More information

Refund Rules and TDR Filing w.e.f. 12-NOVEMBER-2015

Refund Rules and TDR Filing w.e.f. 12-NOVEMBER-2015 Refund Rules and TDR Filing w.e.f. 12-NOVEMBER-2015 Authority:- Railway Board letter No.TCII/2003/2015/Refund Policy/1 dated 06-Nov-2015 The Gazette Of India Notification Dated 04-Nov-2015. Ticket Booking/cancellation

More information

COVER SHEET. Reduced Vertical Separation Minimum (RVSM) Information Sheet Part 91 RVSM Letter of Authorization

COVER SHEET. Reduced Vertical Separation Minimum (RVSM) Information Sheet Part 91 RVSM Letter of Authorization COVER SHEET Reduced Vertical Separation Minimum (RVSM) Information Sheet Part 91 RVSM Letter of Authorization NOTE: FAA Advisory Circular 91-85, Authorization of Aircraft and Operators for Flight in Reduced

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

Saighton Camp, Chester. Technical Note: Impact of Boughton Heath S278 Works upon the operation of the Local Highway Network

Saighton Camp, Chester. Technical Note: Impact of Boughton Heath S278 Works upon the operation of the Local Highway Network Technical Note: Impact of Boughton Heath S278 Works July 2013 SAIGHTON CAMP CHESTER COMMERCIAL ESTATES GROUP TECHNICAL NOTE: IMPACT OF BOUGHTON HEATH S278 WORKS UPON THE OPERATION OF THE LOCAL HIGHWAY

More information

AIRPORT OF THE FUTURE

AIRPORT OF THE FUTURE AIRPORT OF THE FUTURE Airport of the Future Which airport is ready for the future? IATA has launched a new activity, working with industry partners, to help define the way of the future for airports. There

More information

By Prabath Siriwardena, WSO2

By Prabath Siriwardena, WSO2 By Prabath Siriwardena, WSO2 Why OpenID??? Too many passwords Duplicated profiles everywhere Oops..!!! My favorite user name GONE!!! Why OpenID??? OpenID solves them all!!! Single user name/password Single

More information

SUPPLEMENT 3 11 APRIL CITATION PERFORMANCE CALCULATOR (CPCalc) MODEL AND ON 510FM-S3-00 S3-1 U.S.

SUPPLEMENT 3 11 APRIL CITATION PERFORMANCE CALCULATOR (CPCalc) MODEL AND ON 510FM-S3-00 S3-1 U.S. 510-0001 AND ON CITATION PERFORMANCE CALCULATOR (CPCalc) COPYRIGHT 2007 CESSNA AIRCRAFT COMPANY WICHITA, KANSAS, USA 11 APRIL 2007 U.S. S3-1 CITATION PERFORMANCE CALCULATOR (CPCalc) Use the Log of Effective

More information

Rule Based Aircraft Performance Systems

Rule Based Aircraft Performance Systems Rule Based Aircraft Performance Systems Metin ZONTUL 1, Uğur BATAK 2, Orkun POLAT 3 1 Istanbul Aydin University, Software Engineering Department, metinzontul@aydin.edu.tr 2 SKY Airlines, Manager, Flight

More information

An Analysis of Dynamic Actions on the Big Long River

An Analysis of Dynamic Actions on the Big Long River Control # 17126 Page 1 of 19 An Analysis of Dynamic Actions on the Big Long River MCM Team Control # 17126 February 13, 2012 Control # 17126 Page 2 of 19 Contents 1. Introduction... 3 1.1 Problem Background...

More information

GDC Services Access via PDA. User Guide

GDC Services Access via PDA. User Guide GDC Services Access via PDA User Guide Usage Instructions Once the application is open on your PDA and you are connected to the Internet (either a wireless connection or linked to a computer via ActiveSync),

More information

Wishlist Auto Registration Manual

Wishlist Auto Registration Manual Wishlist Auto Registration Manual Table of Contents Use the quick navigation links below to navigate through the manual: Introduction to Wishlist Auto Registration Complete Activation Process Summary in

More information

UC Berkeley Working Papers

UC Berkeley Working Papers UC Berkeley Working Papers Title The Value Of Runway Time Slots For Airlines Permalink https://escholarship.org/uc/item/69t9v6qb Authors Cao, Jia-ming Kanafani, Adib Publication Date 1997-05-01 escholarship.org

More information

A Design and Development of Prototype Web Based Tourism Information System (WBTIS) for the Maharashtra and Goa States of India

A Design and Development of Prototype Web Based Tourism Information System (WBTIS) for the Maharashtra and Goa States of India 2016 International Conference on Computer Engineering and Information Systems (CEIS-16) A Design and Development of Prototype Web Based Tourism Information System (WBTIS) for the Maharashtra and Goa States

More information

Dell EMC Unisphere 360

Dell EMC Unisphere 360 Dell EMC Unisphere 360 Version 9.0.1 Installation Guide REV 02 Copyright 2014-2018 Dell Inc. or its subsidiaries. All rights reserved. Published October 2018 Dell believes the information in this publication

More information

TECHNOLOGICAL SOLUTIONS FOR BAGGAGE HANDLING ON TIME PERFORMANCE. Copyright 2017 Project Business Digital Airport. All Rights Reserved.

TECHNOLOGICAL SOLUTIONS FOR BAGGAGE HANDLING ON TIME PERFORMANCE. Copyright 2017 Project Business Digital Airport. All Rights Reserved. TECHNOLOGICAL SOLUTIONS FOR BAGGAGE HANDLING ON TIME PERFORMANCE Baggage Handling On Time Performance Management, Is a system to monitor passenger s baggage from the aircraft through Baggage Claim area.

More information

Sonia Pinto ALL RIGHTS RESERVED

Sonia Pinto ALL RIGHTS RESERVED 2011 Sonia Pinto ALL RIGHTS RESERVED A RESERVATION BASED PARKING LOT SYSTEM TO MAXIMIZE OCCUPANCY AND REVENUE by SONIA PREETI PINTO A thesis submitted to the Graduate School-New Brunswick Rutgers, The

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

ARRIVAL CHARACTERISTICS OF PASSENGERS INTENDING TO USE PUBLIC TRANSPORT

ARRIVAL CHARACTERISTICS OF PASSENGERS INTENDING TO USE PUBLIC TRANSPORT ARRIVAL CHARACTERISTICS OF PASSENGERS INTENDING TO USE PUBLIC TRANSPORT Tiffany Lester, Darren Walton Opus International Consultants, Central Laboratories, Lower Hutt, New Zealand ABSTRACT A public transport

More information

ASTHA SPECIAL TOURIST TRAIN West India Jyotirlinga Special Tour (08 Nights/ 09 Days)

ASTHA SPECIAL TOURIST TRAIN West India Jyotirlinga Special Tour (08 Nights/ 09 Days) ASTHA SPECIAL TOURIST TRAIN West India Jyotirlinga Special Tour (08 Nights/ 09 Days) Description: "Astha / Bharat Darshan Special Tourist Train", one of the most affordable all inclusive tour package,

More information

Heuristic technique for tour package models

Heuristic technique for tour package models Proceedings of the 214 International Conference on Information, Operations Management and Statistics (ICIOMS213), Kuala Lumpur, Malaysia, September 1-3, 213 Heuristic technique for tour package models

More information

How to Integrate CA SiteMinder with the Barracuda Web Application Firewall

How to Integrate CA SiteMinder with the Barracuda Web Application Firewall How to Integrate CA SiteMinder with the Barracuda Web Application Firewall Overview CA/Netegrity SiteMinder provides an infrastructure for centralized and secure policy management of websites. It uniquely

More information

How to login 1. Updating/viewing agent profile How to book 5. Key notes. 16

How to login 1. Updating/viewing agent profile How to book 5. Key notes. 16 How to login 1 Updating/viewing agent profile... 2 How to book 5 Key notes. 16 Visit login page Visit https://booking.tigerair.com.au/tigerairportal/agent/ 2. Login Enter agent username and agent password

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

Smart Commute Tool User Guide

Smart Commute Tool User Guide Smart Commute Tool User Guide The Smart Commute tool is a trip planning tool that allows users to explore commute options, match trips with others and track personal impact (trips logged, distance travelled,

More information

myldtravel USER GUIDE

myldtravel USER GUIDE myldtravel USER GUIDE Rev #2 Page 2 of 37 Table of Contents 1. First-Time Login... 4 2. Introduction to the myldtravel Application... 7 3. Creating a Listing... 8 3.1 Traveller Selection... 9 3.2 Flight

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

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

2016 European Cruise Star Creator Trip Registration FAQs

2016 European Cruise Star Creator Trip Registration FAQs 2016 European Cruise Star Creator Trip Registration FAQs 1. When can I start to register? You can start to register once you have completed four (4) months of your qualified tier as a Star, New Star, or

More information

MODAIR. Measure and development of intermodality at AIRport

MODAIR. Measure and development of intermodality at AIRport MODAIR Measure and development of intermodality at AIRport M3SYSTEM ANA ENAC GISMEDIA Eurocontrol CARE INO II programme Airports are, by nature, interchange nodes, with connections at least to the road

More information

Impact of a new type of aircraft on ATM

Impact of a new type of aircraft on ATM Impact of a new type of aircraft on ATM Study of the low & slow concept Cyril Allignol ATM in smart and efficient air transport systems Workshop in Oslo, 31st May 2017 Introduction 1 / 25 Low & Slow concept

More information

Boarding Group 5 Frequently Asked Questions (FAQ)

Boarding Group 5 Frequently Asked Questions (FAQ) Boarding Group 5 Frequently Asked Questions (FAQ) Boarding Group 5 Eligibility SSR CLID Requirements Frequent Traveler Other Miscellaneous Flight Booking Policies Terms & Conditions American Airlines boarding

More information

E-tourism Usage Patterns of Tourism Business in Chiang Mai, Thailand. Paisarn Kanchanawong, Chodok Charungkon, Songsak Poonoi

E-tourism Usage Patterns of Tourism Business in Chiang Mai, Thailand. Paisarn Kanchanawong, Chodok Charungkon, Songsak Poonoi Chinese Business Review, ISSN 1537-1506 February 2012, Vol. 11, No. 2, 193-198 D DAVID PUBLISHING E-tourism Usage Patterns of Tourism Business in Chiang Mai, Thailand Paisarn Kanchanawong, Chodok Charungkon,

More information

Do Not Write Below Question Maximum Possible Points Score Total Points = 100

Do Not Write Below Question Maximum Possible Points Score Total Points = 100 University of Toronto Department of Economics ECO 204 Summer 2012 Ajaz Hussain TEST 3 SOLUTIONS TIME: 1 HOUR AND 50 MINUTES YOU CANNOT LEAVE THE EXAM ROOM DURING THE LAST 10 MINUTES OF THE TEST. PLEASE

More information

Ticket reservation posts on train platforms: an assessment using the microscopic pedestrian simulation tool Nomad

Ticket reservation posts on train platforms: an assessment using the microscopic pedestrian simulation tool Nomad Daamen, Hoogendoorn, Campanella and Eggengoor 1 Ticket reservation posts on train platforms: an assessment using the microscopic pedestrian simulation tool Nomad Winnie Daamen, PhD (corresponding author)

More information

International Journal of Informative & Futuristic Research ISSN:

International Journal of Informative & Futuristic Research ISSN: Original Paper Volume 3 Issue 8 April 2016 International Journal of Informative & Futuristic Research A Study Of Competitiveness Of Airports Using Paper ID IJIFR/V3/ E8/ 049 Page No. 2987-2995 Subject

More information

ScienceDirect. Prediction of Commercial Aircraft Price using the COC & Aircraft Design Factors

ScienceDirect. Prediction of Commercial Aircraft Price using the COC & Aircraft Design Factors Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 67 ( 2013 ) 70 77 7th Asian-Pacific Conference on Aerospace Technology and Science, 7th APCATS 2013 Prediction of Commercial

More information

INDIAN RAILWAYS PASSENGER RESERVATION ENQUIRY

INDIAN RAILWAYS PASSENGER RESERVATION ENQUIRY INDIAN RAILWAYS PASSENGER RESERVATION ENQUIRY Availability at Major Stations Train Schedule Tatkal Scheme Upgraded Passenger Scheme SMS Service Circular Journey Tickets Train Berth Availability Information

More information

Concur Travel: User Supplied Hotels

Concur Travel: User Supplied Hotels Concur Travel: User Supplied Hotels Travel Service Guide Applies to Concur Travel: Professional/Premium edition TMC Partners Direct Customers Standard edition TMC Partners Direct Customers Contents User

More information

RECEDING HORIZON CONTROL FOR AIRPORT CAPACITY MANAGEMENT

RECEDING HORIZON CONTROL FOR AIRPORT CAPACITY MANAGEMENT RECEDING HORIZON CONTROL FOR AIRPORT CAPACITY MANAGEMENT W.-H. Chen, X.B. Hu Dept. of Aeronautical & Automotive Engineering, Loughborough University, UK Keywords: Receding Horizon Control, Air Traffic

More information

International Symposium on a Sustainable Future (ISSF), 2013

International Symposium on a Sustainable Future (ISSF), 2013 International Symposium on a Sustainable Future (ISSF), 2013 ISSF Schedule Dates: October 16-18, 2013. Venue: Indira Gandhi Institute of Development Research (IGIDR), Mumbai-400 065 India. Expected Outcome:

More information

All India Council for Technical Education

All India Council for Technical Education All India Council for Technical Education (A Statutory body under Ministry of HRD, Govt. of India) Nelson Mandela MargVasant Kunj, New Delhi-110067 PHONE: 23724151/52/53/54/55/56/57 FAX: 011-23724183 www.aicte-india.org

More information

Facilities to be provided to passengers by airlines due to denied boarding, cancellation of flights and delays in flights.

Facilities to be provided to passengers by airlines due to denied boarding, cancellation of flights and delays in flights. GOVERNMENT OF INDIA OFFICE OF THE DIRECTOR GENERAL OF CIVIL AVIATION TECHNICAL CENTRE, OPP SAFDURJUNG AIRPORT, NEW DELHI CIVIL AVIATION REQUIREMENTS AIR TRANSPORT ISSUE I, DATED EFFECTIVE: 01.08.2016 File

More information

7. Demand (passenger, air)

7. Demand (passenger, air) 7. Demand (passenger, air) Overview Target The view is intended to forecast the target pkm in air transport through the S-curves that link the GDP per capita with the share of air transport pkm in the

More information

(b) No certificate holder may schedule and no flightcrew member may accept an assignment if the flightcrew member s total flight time will

(b) No certificate holder may schedule and no flightcrew member may accept an assignment if the flightcrew member s total flight time will As of today, the company s automated tracking of FAR legalities has several holes which have reduced the ability of the company and pilots to ensure FAR 117 compliance. Unfortunately, the company s inability

More information

MEASURING ACCESSIBILITY TO PASSENGER FLIGHTS IN EUROPE: TOWARDS HARMONISED INDICATORS AT THE REGIONAL LEVEL. Regional Focus.

MEASURING ACCESSIBILITY TO PASSENGER FLIGHTS IN EUROPE: TOWARDS HARMONISED INDICATORS AT THE REGIONAL LEVEL. Regional Focus. Regional Focus A series of short papers on regional research and indicators produced by the Directorate-General for Regional and Urban Policy 01/2013 SEPTEMBER 2013 MEASURING ACCESSIBILITY TO PASSENGER

More information

Environmental Performance Evaluation of Ro-Ro Passenger Ferry Transportation

Environmental Performance Evaluation of Ro-Ro Passenger Ferry Transportation Environmental Performance Evaluation of Ro-Ro Passenger Ferry Transportation Authors: Hans Otto Holmegaard Kristensen (hohk@mek.dtu.dk) The Technical University of Denmark Constantin Hagemeister. Nordic

More information

Transportation Timetabling

Transportation Timetabling Outline DM87 SCHEDULING, TIMETABLING AND ROUTING Lecture 16 Transportation Timetabling 1. Transportation Timetabling Tanker Scheduling Air Transport Train Timetabling Marco Chiarandini DM87 Scheduling,

More information

JAPAN RAIL PASS REGIONAL RAIL PASS Sales Manual. with Japan Leading Destination Management Company,

JAPAN RAIL PASS REGIONAL RAIL PASS Sales Manual. with Japan Leading Destination Management Company, JAPAN RAIL PASS REGIONAL RAIL PASS Sales Manual with Japan Leading Destination Management Company, As of 01 Aug. 2018 1. What is JAPAN RAIL PASS / REGIONAL RAIL PASS? JAPAN RAIL PASS JAPAN RAIL PASS (hereinafter

More information