LogTen Pro API. logten://method/{json_payload}

Size: px
Start display at page:

Download "LogTen Pro API. logten://method/{json_payload}"

Transcription

1 LogTen Pro API proudly presents the LogTen Pro Application Programming Interface (API) v1.1 which allows third-party applications to interact with LogTen Pro using a straight forward URL based approach using JSON (JavaScript Object Notation). The LogTen Pro API v1.1 is available starting with the following versions of the software: LogTen Pro Mac v5.7.0 LogTen Pro iphone v3.2.0 LogTen Pro ipad v1.2.0 LogTen Pro is registered to handle requests to the logten:// URI scheme. Any requests made to the logten:// scheme will be passed off to LogTen Pro for handling. The general format of the request is as follows: logten://method/{json_payload} The json_payload shall always contain a metadata dictionary. The metadata dictionary must always contain the requesting application name as well as the requesting applicationʼs version information. Depending on the actual method invoked, the metadata may contain optional parameters. logten://method/{"metadata":{"application":"my Application", "version":"1.0", "optional_parameter":"some_value"},...} Notes: 1. You must be sure to escape any special JSON characters in your JSON payload to ensure proper parsing by LogTen Pro. If any of your values contains a single quote, double quote or a backslash, you will need to prepend a backslash to that character in the payload. For instance if your value was " My data contains a \ and a. it would become " My data contains a \\ and a \. 2. The complete URL should have any characters escaped that are not legal URL characters (based on RFC 2396). In Cocoa, this can easily be accomplished by running the NSʼs - (NS *) stringbyaddingpercentescapesusingencoding: (NSEncoding)encoding method on the URL string with the NSUTF8Encoding encoding. Identifying flights LogTen Pro utilizes the flight_key attribute on the flight entity to uniquely identify flights provided from an external source. The flight_key attribute is a string value and is required to be unique for a given logbook. When a flight record is sent through the API that includes a flight_key, LogTen Pro will first attempt to locate a matching flight with that flight_key. If a create or modify operation is being run and a matching flight already exists with that flight_key, that flight will be modified with the provided data. If a matching flight is not found, a new one will be created with the provided data. For removal operations, only flights with the matching flight_key will be removed. Please note: If the matching flight is locked (flight_islocked is set to 1), the flight will not be modified or deleted. - LogTen Pro API v1.1-7/15/11 1

2 v1.1 Supported Methods addflights The addflights method allows a third-party application to create/modify flights within the LogTen Pro logbook. When the addflights method is invoked, LogTen Pro will ask the user if they wish to create/modify the flights from the requesting application. The addflights method expects the metadata dictionary and a collection of flights. logten://addflights/{"metadata":{"application":"my App", "version":"1.0",...}, "flights":[{flight1 info...}, {flight2 info...},...]} metadata: The addflights method allows three optional parameters in the metadata dictionary: dateformat - The dateformat parameter specifies how date values should be parsed when they are passed in as string values. The date format string uses the format patterns recognized by the NSDateFormatter class (i.e. MM/dd/yyyy ). dateandtimeformat - The dateandtimeformat parameter specifies how date values should be parsed when they are passed in as string values. The date and time format string uses the format patterns recognized by the NSDateFormatter class (i.e. MM/dd/yyyy HH:mm ). timesarezulu - The timesarezulu parameter specifies whether any passed in string time values are in Zulu time or should be converted to local time based on the time zone of the departure or arrival airports. Valid values for the timesarezulu parameter are true or false. If this parameter is not supplied, the default value is true. flights: The flights collection shall contain the flight information for each flight to be created/ modified. If a flight_key value is provided for a given flight, LogTen Pro will first attempt to locate a flight in the logbook matching the flight_key. If a matching flight is found, that flight will be updated with the provided attributes. If a matching flight is not found, a new flight will be created. Any of the valid LogTen Pro flight attributes are available for use (see Appendix for the current, complete list of relevant flight attributes). The addflights method will allow flight time values to be supplied as either the decimal number of hours (i.e. 1.5), the number of hours and minutes separated by a colon (i.e. 1:30 ) or the number of hours and minutes separated by a plus sign (i.e ). The addflights method will allow date values to be supplied as either a string value that matches the dateformat parameter supplied in the metadata or as the number of seconds from the unix epoch (this value can be returned using the NSDate timeintervalsince1970 method in Cocoa). The addflights method will allow date/time values to be to be supplied as either a string value that matches the dateandtimeformat parameter supplied in the metadata or as the number of seconds from the unix epoch (this value can be returned using the NSDate timeintervalsince1970 method in Cocoa). The timesarezulu parameter is only - LogTen Pro API v1.1-7/15/11 2

3 applicable to date/time values that are passed in as strings. When handling local times, the addflights method will first attempt to obtain the time zone for the applicable to or from place (depending on the attribute being set). If there is no corresponding place or it does not have a time zone associated with it, the addflights method will attempt to use the default timezone set for LogTen Pro. If there is no default timezone configured, the addflights method will use GMT. The following is an example of a valid addflights request: logten://addflights/{"metadata":{"application":"my Application", "version":"1.0", "dateformat":"mm/dd/yyyy", "dateandtimeformat":"mm/dd/yyyy HH:mm", "timesarezulu":"true"}, "flights":[{"flight_flightdate":"12/25/2010", "flight_to": "KPIT", "flight_from":"kpjc", "flight_pic":"1:30", "flight_takeofftime":"12/25/ :50"}]} modifyflights The modifyflights method allows a third-party application to create, modify and remove flights within the LogTen Pro logbook. When the modifyflights method is invoked, LogTen Pro will ask the user if they wish to create/modify and remove the flights from the requesting application. The modifyflights method expects the metadata dictionary, a collection of flights to create/modify and collection of flights to remove. The modifyflights method requires at least both collections to be present, however it is valid to send empty collections. logten://modifyflights/{"metadata":{"application":"my App", "version":"1.0",...}, "flights":[{flight1 info...}, {flight2 info...},...], "removeflights":[{flight1 flight_key}, {flight2 flight_key},...]} metadata: The modifyflights method allows three optional parameters in the metadata dictionary: dateformat - The dateformat parameter specifies how date values should be parsed when they are passed in as string values. The date format string uses the format patterns recognized by the NSDateFormatter class (i.e. MM/dd/yyyy ). dateandtimeformat - The dateandtimeformat parameter specifies how date values should be parsed when they are passed in as string values. The date and time format string uses the format patterns recognized by the NSDateFormatter class (i.e. MM/dd/yyyy HH:mm ). timesarezulu - The timesarezulu parameter specifies whether any passed in string time values are in Zulu time or should be converted to local time based on the time zone of the departure or arrival airports. Valid values for the timesarezulu parameter are true or false. If this parameter is not supplied, the default value is true. flights: The flights collection shall contain the flight information for each flight to be created/ modified. If a flight_key value is provided for a given flight, LogTen Pro will first attempt to locate a flight in the logbook matching the flight_key. If a matching flight is found, that flight will be updated with the provided attributes. If a matching flight is not found, a new - LogTen Pro API v1.1-7/15/11 3

4 flight will be created. Any of the valid LogTen Pro flight attributes are available for use (see Appendix for the current, complete list of relevant flight attributes). The modifyflights method will allow flight time values to be supplied as either the decimal number of hours (i.e. 1.5), the number of hours and minutes separated by a colon (i.e. 1:30 ) or the number of hours and minutes separated by a plus sign (i.e ). The modifyflights method will allow date values to be supplied as either a string value that matches the dateformat parameter supplied in the metadata or as the number of seconds from the unix epoch (this value can be returned using the NSDate timeintervalsince1970 method in Cocoa). The modifyflights method will allow date/time values to be to be supplied as either a string value that matches the dateandtimeformat parameter supplied in the metadata or as the number of seconds from the unix epoch (this value can be returned using the NSDate timeintervalsince1970 method in Cocoa). The timesarezulu parameter is only applicable to date/time values that are passed in as strings. When handling local times, the modifyflights method will first attempt to obtain the time zone for the applicable to or from place (depending on the attribute being set). If there is no corresponding place or it does not have a time zone associated with it, the modifyflights method will attempt to use the default timezone set for LogTen Pro. If there is no default timezone configured, the modifyflights method will use GMT. removeflights: The removeflights collection shall contain the flight_key for each flight to be removed. The following is an example of a valid modifyflights request: logten://modifyflights/{"metadata":{"application":"my Application", "version":"1.0", "dateformat":"mm/dd/yyyy", "dateandtimeformat":"mm/dd/yyyy HH:mm", "timesarezulu":"true"}, "flights":[{"flight_key":"myappflight_101", "flight_flightdate":"12/25/2010", "flight_to": "KPIT", "flight_from":"kpjc", "flight_pic":"1:30", "flight_takeofftime":"12/25/ :50"}], "removeflights": [{"flight_key":"myappflight_101"}, {"flight_key":"myappflight_102"}]} - LogTen Pro API v1.1-7/15/11 4

5 Appendix: Valid attributes Flights General Attributes: flight_key Uniquely identifies a flight created from an external source flight_cloudbase flight_customnote1 flight_customnote2 flight_customnote3 flight_customnote4 flight_customnote5 flight_distance flight_dutytimepayrate flight_expenses flight_flagged 0 or 1 flight_flight flight_flighttimepayrate flight_fuelburned flight_hobbsstart flight_hobbsstop flight_instrumentproficiencycheck 0 or 1 flight_islocked 0 or 1 flight_leg flight_nightvisionsystem flight_payload flight_remarks flight_review 0 or 1 flight_scheduledtimepayrate - LogTen Pro API v1.1-7/15/11 5

6 flight_sky flight_tachstart flight_tachstop flight_totalearned flight_visibility flight_weather flight_winddirection flight_windvelocity Dates and Times: flight_actualarrivaltime flight_actualdeparturetime flight_flightdate flight_landingtime flight_offdutytime flight_ondutytime flight_scheduledarrivaltime flight_scheduleddeparturetime flight_takeofftime Flight Times: flight_actualinstrument flight_aircraftclass1 flight_aircraftclass2 flight_aircraftclass3 flight_aircraftclass4 flight_aircraftclass5 - LogTen Pro API v1.1-7/15/11 6

7 flight_aircraftclass6 flight_aircraftclass7 flight_aircraftclass8 flight_aircraftclass9 flight_aircraftclass10 flight_aircraftclass11 flight_aircraftclass12 flight_aircraftclass13 flight_aircraftclass14 flight_aircraftclass15 flight_category1 flight_category2 flight_category3 flight_category4 flight_category5 flight_category6 flight_category7 flight_category8 flight_category9 flight_category10 flight_category11 flight_category12 flight_category13 flight_category14 flight_category15 flight_commandpractice flight_crosscountry flight_customtime1 - LogTen Pro API v1.1-7/15/11 7

8 flight_customtime2 flight_customtime3 flight_customtime4 flight_customtime5 flight_customtime6 flight_customtime7 flight_customtime8 flight_customtime9 flight_customtime10 flight_customtime11 flight_customtime12 flight_customtime13 flight_customtime14 flight_customtime15 flight_customtime16 flight_customtime17 flight_customtime18 flight_customtime19 flight_customtime20 flight_dualgiven flight_dualreceived flight_dualreceivednight flight_duration flight_enginetype1 flight_enginetype2 flight_enginetype3 flight_enginetype4 flight_enginetype5 - LogTen Pro API v1.1-7/15/11 8

9 flight_enginetype6 flight_enginetype7 flight_enginetype8 flight_enginetype9 flight_enginetype10 flight_enginetype11 flight_enginetype12 flight_enginetype13 flight_enginetype14 flight_enginetype15 flight_flightengineer flight_ground flight_multipilot flight_night flight_nightvisiongoggle flight_p1us flight_p1usnight flight_pic flight_picnight flight_relief flight_scheduledtotaltime flight_sfi flight_sic flight_sicnight flight_simulatedinstrument flight_simulator flight_solo flight_totaldutytime - LogTen Pro API v1.1-7/15/11 9

10 flight_totalinstrument flight_totaltime Takeoffs: flight_customtakeoff1 flight_customtakeoff2 flight_customtakeoff3 flight_customtakeoff4 flight_customtakeoff5 flight_customtakeoff6 flight_customtakeoff7 flight_customtakeoff8 flight_customtakeoff9 flight_customtakeoff10 flight_daytakeoffs flight_nighttakeoffs flight_nightvisiongoggletakeoffs flight_shipboardtakeoffs flight_totaltakeoffs flight_watertakeoffs Landings: flight_customlanding1 flight_customlanding2 flight_customlanding3 flight_customlanding4 flight_customlanding5 - LogTen Pro API v1.1-7/15/11 1

11 flight_customlanding6 flight_customlanding7 flight_customlanding8 flight_customlanding9 flight_customlanding10 flight_daylandings flight_nightlandings flight_nightvisiongogglelandings flight_shipboardlandings flight_totallandings flight_waterlandings Misc Takeoff/Landing: flight_arrests flight_autolands flight_bolters flight_catapults flight_fcls flight_fullstops flight_touchandgoes Operations: flight_aerotows flight_approachplace flight_approachtype flight_catii flight_catiii - LogTen Pro API v1.1-7/15/11 11

12 flight_customop1 flight_customop2 flight_customop3 flight_customop4 flight_customop5 flight_customop6 flight_customop7 flight_customop8 flight_customop9 flight_customop10 flight_goarounds flight_groundlaunches flight_holds flight_poweredlaunches flight_totalapproaches Capacities: flight_customcapacity1 0 or 1 flight_customcapacity2 0 or 1 flight_customcapacity3 0 or 1 flight_customcapacity4 0 or 1 flight_customcapacity5 0 or 1 flight_customcapacity6 0 or 1 flight_customcapacity7 0 or 1 flight_customcapacity8 0 or 1 flight_customcapacity9 0 or 1 flight_customcapacity10 0 or 1 flight_faapart61 0 or 1 - LogTen Pro API v1.1-7/15/11 12

13 flight_faapart91 0 or 1 flight_faapart121 0 or 1 flight_faapart135 0 or 1 flight_far1 0 or 1 flight_flightengineercapacity 0 or 1 flight_landingcapacity 0 or 1 flight_piccapacity 0 or 1 flight_pilotflyingcapacity 0 or 1 flight_reliefcrewcapacity 0 or 1 flight_siccapacity 0 or 1 flight_undersupervisioncapacity 0 or 1 Aircraft: flight_selectedaircraftclass flight_selectedaircraftid flight_selectedaircrafttype flight_selectedcategory flight_selectedenginetype flight_selectedmake flight_selectedmodel Crew: flight_selectedcrewcommander flight_selectedcrewcustom1 flight_selectedcrewcustom2 flight_selectedcrewcustom3 flight_selectedcrewcustom4 - LogTen Pro API v1.1-7/15/11 13

14 flight_selectedcrewcustom5 flight_selectedcrewflightattendant flight_selectedcrewflightattendant2 flight_selectedcrewflightattendant3 flight_selectedcrewflightattendant4 flight_selectedcrewflightengineer flight_selectedcrewinstructor flight_selectedcrewobserver flight_selectedcrewobserver2 flight_selectedcrewpic flight_selectedcrewpicid flight_selectedcrewpurser flight_selectedcrewrelief flight_selectedcrewrelief2 flight_selectedcrewrelief3 flight_selectedcrewrelief4 flight_selectedcrewsic flight_selectedcrewsicid flight_selectedcrewstudent Place: flight_from flight_fromcity flight_fromcountry flight_fromstate flight_route flight_to flight_tocity - LogTen Pro API v1.1-7/15/11 14

15 flight_tocountry flight_tostate - LogTen Pro API v1.1-7/15/11 15

Configuring a Secure Access etrust SiteMinder Server Instance (NSM Procedure)

Configuring a Secure Access etrust SiteMinder Server Instance (NSM Procedure) Configuring a Secure Access etrust SiteMinder Server Instance (NSM Procedure) Within the Secure Access device, a SiteMinder instance is a set of configuration settings that defines how the Secure Access

More information

Passenger Rebooking - Decision Modeling Challenge

Passenger Rebooking - Decision Modeling Challenge Passenger Rebooking - Decision Modeling Challenge Solution by Edson Tirelli Table of Contents Table of Contents... 1 Introduction... 1 Problem statement... 2 Solution... 2 Input Nodes... 2 Prioritized

More information

ultimate traffic Live User Guide

ultimate traffic Live User Guide ultimate traffic Live User Guide Welcome to ultimate traffic Live This manual has been prepared to aid you in learning about utlive. ultimate traffic Live is an AI traffic generation and management program

More information

Aviation Software. DFT Database API. Prepared by: Toby Wicks, Software Engineer Version 1.1

Aviation Software. DFT Database API. Prepared by: Toby Wicks, Software Engineer Version 1.1 DFT Database API Prepared by: Toby Wicks, Software Engineer Version 1.1 19 November 2010 Table of Contents Overview 3 Document Overview 3 Contact Details 3 Database Overview 4 DFT Packages 4 File Structures

More information

MARKETO INTEGRATION GUIDE

MARKETO INTEGRATION GUIDE MARKETO INTEGRATION GUIDE VERSION 1.2 JANUARY 2016 DOCUMENT PURPOSE This purpose of this document is to guide clients through the process of integrating Marketo and the WorkCast Platform. DOCUMENT CONTROL

More information

NAIPS Internet Service Authorised NOTAM Originator User Guide Version 3.0. (To be read in addition to NIS User Guide 3.0)

NAIPS Internet Service Authorised NOTAM Originator User Guide Version 3.0. (To be read in addition to NIS User Guide 3.0) NAIPS Internet Service Authorised NOTAM Originator User Guide Version 3.0 (To be read in addition to NIS User Guide 3.0) User Guide for Authorised NOTAM Originators Version 3.0 1. Introduction... 3 1.1

More information

ELOQUA INTEGRATION GUIDE

ELOQUA INTEGRATION GUIDE ELOQUA INTEGRATION GUIDE VERSION 2.2 APRIL 2016 DOCUMENT PURPOSE This purpose of this document is to guide clients through the process of integrating Eloqua and the WorkCast Platform and to explain the

More information

Supports full integration with Apollo, Galileo and Worldspan GDS.

Supports full integration with Apollo, Galileo and Worldspan GDS. FEATURES GENERAL Web-based Solution ALL TRAVELPORT GDS Supports full integration with Apollo, Galileo and Worldspan GDS. GRAPHICAL INTUITIVE WEB EXPERIENCE Intuitive web experience for both GDS expert

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

Mobile FliteDeck VFR Release Notes

Mobile FliteDeck VFR Release Notes Mobile FliteDeck VFR Release Notes This document supports version 2.3.0 (build 2.3.0.10334) of Mobile FliteDeck VFR for ios. The minimum operating system requirement for this release is ios10. On the date

More information

UM1868. The BlueNRG and BlueNRG-MS information register (IFR) User manual. Introduction

UM1868. The BlueNRG and BlueNRG-MS information register (IFR) User manual. Introduction User manual The BlueNRG and BlueNRG-MS information register (IFR) Introduction This user manual describes the information register (IFR) of the BlueNRG and BlueNRG-MS devices and provides related programming

More information

Mobile FliteDeck VFR Version Release Notes

Mobile FliteDeck VFR Version Release Notes Mobile FliteDeck VFR Version 2.2.1 - Release Notes This document supports version 2.2.1 (build 10281) of Mobile FliteDeck VFR for ios. The minimum operating system requirement for this release is ios10.

More information

MYOB EXO OnTheGo. Release Notes 1.2

MYOB EXO OnTheGo. Release Notes 1.2 MYOB EXO OnTheGo Release Notes 1.2 Contents Introduction 1 What s New in this Release?... 1 Installation 2 Pre-Install Requirements... 2 Installing the EXO API... 2 Installing EXO OnTheGo... 2 New Features

More information

FAASafety.gov Help Manual for WINGS - Pilot Proficiency Program Federal Aviation Administration May 1, 2007

FAASafety.gov Help Manual for WINGS - Pilot Proficiency Program Federal Aviation Administration May 1, 2007 FAASafety.gov Help Manual for WINGS - Pilot Proficiency Program Federal Aviation Administration May 1, 2007 Gold Systems Inc. FAASafety.gov WINGS Pilot Proficiency Program 1 FAASafety.gov Help Manual for

More information

Guyana Civil Aviation Authority. ATR Form M Instructions

Guyana Civil Aviation Authority. ATR Form M Instructions Guyana Civil Aviation Authority ATR Form M Instructions P a g e 2 Submission of ATR Forms The ATR Forms were developed in MS Excel so as to be used to submit data electronically. Completed electronic ATR

More information

OTP SERVER NETEGRITY SITEMINDER 6. Rev 1.0 INTEGRATION MODULE. Copyright, NordicEdge, 2005 O T P S E R V E R I N T E G R A T I O N M O D U L E

OTP SERVER NETEGRITY SITEMINDER 6. Rev 1.0 INTEGRATION MODULE. Copyright, NordicEdge, 2005 O T P S E R V E R I N T E G R A T I O N M O D U L E OTP SERVER INTEGRATION MODULE NETEGRITY SITEMINDER 6 Copyright, NordicEdge, 2005 www.nordicedge.se Copyright, 2005, NordicEdge AB Page 1 of 11 1 Introduction 1.1 OTP Server Overview Nordic Edge OTP Server

More information

Version 8.5 PENTAGON 2000 SOFTWARE. Flight Operations Module

Version 8.5 PENTAGON 2000 SOFTWARE. Flight Operations Module Version 8.5 PENTAGON 2000 SOFTWARE Pentagon 2000 Software 15 West 34 th Street 5 th Floor New York, NY 10001 Phone 212.629.7521 Fax 212.629.7513 TITLE: PART: Quality MODULE: BUILD 8.5.54.113.18 RESPONSIBILITY:

More information

Firewall Network and Proxy Datasheet

Firewall Network and Proxy Datasheet Firewall Network and Proxy Datasheet This document lists information about Kontiki servers that you might need for configuring firewalls and proxy servers. As Kontiki selects vendors and expands services,

More information

SERVICE BULLETIN TITLE NAVIGATION - GARMIN G1000 ENHANCED SEARCH AND RESCUE ENABLEMENT

SERVICE BULLETIN TITLE NAVIGATION - GARMIN G1000 ENHANCED SEARCH AND RESCUE ENABLEMENT TITLE NAVIGATION - GARMIN G1000 ENHANCED SEARCH AND RESCUE ENABLEMENT EFFECTIVITY The following G1000-equipped airplanes with system software version 0563.24 (or later) installed: MODEL 172R 172S 182T

More information

Technical Standard Order

Technical Standard Order Department of Transportation Federal Aviation Administration Aircraft Certification Service Washington, DC TSO-C145a Effective Date: 09/19/02 Technical Standard Order Subject: AIRBORNE NAVIGATION SENSORS

More information

A New Way to Work in the ERCOT Market

A New Way to Work in the ERCOT Market Siemens Energy, Inc. Power Technology Issue 111 A New Way to Work in the ERCOT Market Joseph M. Smith Senior Staff Business Development Specialist joseph_smith@siemens.com In recent months The Electric

More information

Andy s Guide for Talking on the Radios

Andy s Guide for Talking on the Radios The Basics Andy s Guide for Talking on the Radios The radios are used to both get and transmit information to/from external sources or agencies. Talking on the radios is really not difficult; but unlike

More information

HELICOPTERS Service. Connected Services

HELICOPTERS Service. Connected Services HELICOPTERS Service Connected Services 002 HCare by Airbus Helicopters - Connected Services Over the past several years, Airbus Helicopters has ushered in a new era of connected services, and a new way

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

Release Notes Business Rules Version 10x Up to Spring 2019 Release for SIBR/BSAP/RC-BSAP

Release Notes Business Rules Version 10x Up to Spring 2019 Release for SIBR/BSAP/RC-BSAP Release Notes Business Rules Version 10x Up to Spring 2019 Release for SIBR/BSAP/RC-BSAP Revision History Date Version By Description 11/27/2018 1.0 WT Initial Draft for Spring 2019 set. RC Base Schedule

More information

This document (issue 1) is issued in September Comments or queries on this document should be ed to

This document (issue 1) is issued in September Comments or queries on this document should be  ed to BMAA TECHNICAL INFORMATION LEAFLET (TIL) TIL 074 ISSUE 1 SPECIAL PERMIT REVALIDATION INSPECTIONS Contents 1. Introduction... 1 2. FAQ... 1 2.1. Should I contact the Technical Office before undertaking

More information

The System User Manual

The System User Manual The System User Manual The URL is: http://131.193.40.52/diseasemap.html The user interface facilitates mapping of four major types of entities: disease outbreaks, ports, ships, and aggregate ship traffic.

More information

IRELAND SAFETY REGULATION DIVISION IRISH AVIATION AUTHORITY AVIATION HOUSE HAWKINS STREET DUBLIN 2 Tel Fax AFTN EIDWYOYX

IRELAND SAFETY REGULATION DIVISION IRISH AVIATION AUTHORITY AVIATION HOUSE HAWKINS STREET DUBLIN 2 Tel Fax AFTN EIDWYOYX IRELAND SAFETY REGULATION DIVISION IRISH AVIATION AUTHORITY AVIATION HOUSE HAWKINS STREET DUBLIN 2 Tel +353 1 6718655 Fax +353 1 6774068 AFTN EIDWYOYX EASA PERMIT TO FLY AERONAUTICAL NOTICE NR A.91 ISSUE

More information

Baggage Reconciliation System

Baggage Reconciliation System Product Description PD-TS-105 Issue 1.0 Date January 2015 The purpose of this product description is to enable the customer to satisfy himself as to whether or not the product or service would be suitable

More information

e-airportslots Tutorial

e-airportslots Tutorial e-airportslots Tutorial 2017 by IACS (International Airport Coordination Support) page 1 Table of contents 1 Browser compatibility... 4 2 Welcome Screen... 4 3 Show Flights:... 4 4 Coordination... 7 4.1

More information

Certificate of Airworthiness

Certificate of Airworthiness United Kingdom Overseas Territories Aviation Circular OTAC 21-3 Certificate of Airworthiness Issue 1 2 November 2011 Effective on issue GENERAL Overseas Territories Aviation Circulars are issued to provide

More information

Comfort Pro A Hotel. User Manual

Comfort Pro A Hotel. User Manual Comfort Pro A Hotel User Manual Contents ComfortPro A Hotel 5 Software Features............................................................6 Scope of Delivery.............................................................7

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 2 Database Design and ETL

Project 2 Database Design and ETL Project 2 Database Design and ETL Out: October 5th, 2017 1 Introduction: What is this project all about? We ve now studied many techniques that help in modeling data (E-R diagrams), which can then be migrated

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

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

TABLE OF CONTENTS 1.0 INTRODUCTION...

TABLE OF CONTENTS 1.0 INTRODUCTION... Advisory Circular Subject: Publication of the Level of Service with Respect to Departure Below RVR 2600 (½ Statute Mile) Issuing Office: Civil Aviation, Standards Document No.: AC 302-001 File Classification

More information

SH Push, version 2.2 Release 2012:12

SH Push, version 2.2 Release 2012:12 SH Push, version 2.2 Release 2012:12 This update of Push updates the following methods with support for release hour calendar information. SH.UpdateCalendarInformation EX.UpdateCalendarInformation SH.UpdateSuperDealCalendar

More information

Passenger Rebooking Decision Modeling Challenge

Passenger Rebooking Decision Modeling Challenge Passenger Rebooking Decision Modeling Challenge Method and Style Solution, Bruce Silver My solution to the challenge uses DMN 1.1. I suspect this may be the first publication demonstrating a complete DMN

More information

Phytclean Guide: How to apply for phytosanitary (special) markets

Phytclean Guide: How to apply for phytosanitary (special) markets Wednesday, 27 June 2018 Phytclean Guide: How to apply for phytosanitary (special) markets Preamble This help file is designed for pome fruit producers registering for special markets. Please use this guide

More information

TRT800 ATC Transponder Mode A, A-C, S P/N 800ATC-(1XX)-(1XX) Operation Manual. Document No.: e Revision 1.00 Datum:

TRT800 ATC Transponder Mode A, A-C, S P/N 800ATC-(1XX)-(1XX) Operation Manual. Document No.: e Revision 1.00 Datum: TRT800 ATC Transponder Mode A, A-C, S P/N 800ATC-(1XX)-(1XX) Operation Manual Document No.: 03.2101.010.11e Revision 1.00 Datum: 19.04.2006 Gewerbestraße 2 86875 Waal phone: 08246 / 96 99-0 fax: 08246

More information

GENERAL ADVISORY CIRCULAR

GENERAL ADVISORY CIRCULAR GENERAL CIVIL AVIATION AUTHORITY OF BOTSWANA ADVISORY CIRCULAR CAAB Document GAC-002 ACCEPTABLE FLIGHT SAFETY DOCUMENTS SYSTEM GAC-002 Revision: Original August 2012 PAGE 1 Intentionally left blank GAC-002

More information

ADQ Regulators Working Group

ADQ Regulators Working Group ADQ Regulators Working Group Common Understanding 01/2013 Application of the provisions of Commission Regulation (EU) 73/2010 to NOTAM Edition: 1.4 Date: 20 October 2016 Reference: ARWG CU 01/2013 ARWG

More information

1. General Provisions 1. Parties. These Terms & Conditions regulate the legal relationship between us, Skypicker.com s.r.o., ID No.

1. General Provisions 1. Parties. These Terms & Conditions regulate the legal relationship between us, Skypicker.com s.r.o., ID No. 1. General Provisions 1. Parties. These Terms & Conditions regulate the legal relationship between us, Skypicker.com s.r.o., ID No. 29352886, with registered office at Bakalovo nábřeží 2/2, Štýřice, 639

More information

2018 PSO Profile Highlights and Tips. December 18, :00 3:00 PM

2018 PSO Profile Highlights and Tips. December 18, :00 3:00 PM 2018 PSO Profile Highlights and Tips December 18, 2018 2:00 3:00 PM Call Logistics The PSOPPC will be presenting the 2018 PSO Profile Highlights and Tips. Please use the chat (Ask a Question) to submit

More information

HelpAndManual_unregistered_evaluation_copy AirLog Pilot Logbook V3

HelpAndManual_unregistered_evaluation_copy AirLog Pilot Logbook V3 HelpAndManual_unregistered_evaluation_copy AirLog Pilot Logbook V3 HelpAndManual_unregistered_evaluation_copy AirLog Pilot Logbook V3 Version 3 LLTSoftware.com AirLog pilot logbook for Windows provides

More information

easycredit Integration Guide Version As of: About easycredit: General information about easycredit

easycredit Integration Guide Version As of: About easycredit: General information about easycredit About easycredit: General information about easycredit easycredit Integration Guide Version 6.2.1 As of: 01.03.2018 Integration Guide Computop easycredit 1 About easycredit: General information about easycredit

More information

COMMISSION REGULATION (EU)

COMMISSION REGULATION (EU) L 23/6 Official Journal of the European Union 27.1.2010 COMMISSION REGULATION (EU) No 73/2010 of 26 January 2010 laying down requirements on the quality of aeronautical data and aeronautical information

More information

E: W: avinet.com.au. Air Maestro Training Guide Flight Records Module Page 1

E: W: avinet.com.au. Air Maestro Training Guide Flight Records Module Page 1 E: help@avinet.com.au W: avinet.com.au Air Maestro Training Guide Flight Records Module Page 1 Contents Assigning Access Levels... 3 Setting Up Flight Records... 4 Editing the Flight Records Setup... 10

More information

TABLE OF CONTENTS 1.0 INTRODUCTION...

TABLE OF CONTENTS 1.0 INTRODUCTION... Staff Instruction Subject: Airworthiness Evaluation of the Installation of IFR Equipment to Allow the Removal of the VFR Only Operating Condition from the Special Certificate of Airworthiness Amateur-Built

More information

Quality Management System (QMS)

Quality Management System (QMS) Quality Management System (QMS) Abbas NIKNEJAD Regional Officer, AIM/ATM Annex 15 provisions related to QMS Quality: Degree to which a set of inherent characteristics fulfils requirements (ISO 9000*).

More information

Flight Evaluation Schedule For GPS IFR Approval Primary Means Enroute, Terminal and Non-Precision Approach

Flight Evaluation Schedule For GPS IFR Approval Primary Means Enroute, Terminal and Non-Precision Approach Flight Evaluation Schedule For GPS IFR Approval Primary Means Enroute, Terminal and Non-Precision Approach Aircraft Description: Model ZK- Operator GPS Description: Manufacturer Model Serial Number TSO-C129

More information

2018 Cathay Pacific Virtual 2 P a g e

2018 Cathay Pacific Virtual 2 P a g e 2018 Cathay Pacific Virtual 2 P a g e SYSTEM OF REVISIONS Version Date Comments Author 1.0 20/12/2016 Initial publication of document. CEO 2018 Cathay Pacific Virtual 3 P a g e TABLE OF CONTENTS SYSTEM

More information

SIS Miscellaneous PDF Detail Listing Improvements

SIS Miscellaneous PDF Detail Listing Improvements SIS Miscellaneous PDF Detail Listing Improvements Charge Category ATC Airport Ground Handling Date Issued: March 24, 2016 Introduction The Line Item Detail Listing PDF was designed to provide reconciliation

More information

Model Solutions. ENGR 110: Test 2. 2 Oct, 2014

Model Solutions. ENGR 110: Test 2. 2 Oct, 2014 Family Name:.............................. Other Names:............................. ID Number:............................... Signature.................................. Model Solutions ENGR 110: Test

More information

Job Aid. ESS - Create request for Self-ticketing (Low value fares)

Job Aid. ESS - Create request for Self-ticketing (Low value fares) Table of Contents Overview... 3 Objectives... 3 Enterprise Roles... 3 Create self-ticketing for low value fares... 4 Approval Process by TPO... 44 Umoja Training 2/76 Overview This Job documents traveler

More information

AirFrance KLM - AirShopping

AirFrance KLM - AirShopping AirFrance KL - AirShopping This document describes the AirFrance KL AirShopping Service Document Version: 1.0 Document Status: approved Date of last Update: 26/10/2017 Document Location: https://developer.airfranceklm.com/

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

Airline Monthly Point to Point Guidance Notes

Airline Monthly Point to Point Guidance Notes Airline Monthly Point to Point General Instructions This form is to be completed monthly by holders of a Type A Operating Licence, Air Transport Licence and holders of a Type B Operating Licence when at

More information

Preliminary Staff User s Manual. CASSi The Computerized Aircraft Scheduling System Rev. 1.28a. February 10, 2001

Preliminary Staff User s Manual. CASSi The Computerized Aircraft Scheduling System Rev. 1.28a. February 10, 2001 CASSi The Computerized Aircraft Scheduling System Rev. 1.28a February 10, 2001 Page 1 of 37 June 25, 2000 Introduction CASSi is the Computerized Aircraft Scheduling System, an Internet based system that

More information

etrust SiteMinder Connector for Oracle Solutions Architecture, Installation and Configuration Guide For UNIX Version 1.6 (Rev 1.

etrust SiteMinder Connector for Oracle Solutions Architecture, Installation and Configuration Guide For UNIX Version 1.6 (Rev 1. etrust SiteMinder Connector for Oracle Solutions Architecture, Installation and Configuration Guide For UNIX Version 1.6 (Rev 1.1) October 2006 CA Inc. Solution Engineering Team 100 Staples Drive Framingham,

More information

New Distribution Capability (NDC)

New Distribution Capability (NDC) Together Let s Build Airline Retailing Accountable Document Validated official document (such as any type of an airline ticket, or a Standard Traffic Document (STD) or payment voucher) that has a value

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

Eurowings Aviation & Consulting Ltd.

Eurowings Aviation & Consulting Ltd. Planning of Eurowings cross country flights shall be mainly performed through a Microsoft Excel application designed and developed by Eurowings as a teaching tool for its students but also licensed pilots,

More information

Amadeus e-travel Management Release Notes Highlights

Amadeus e-travel Management Release Notes Highlights Amadeus e-travel Management 17.2 Release Notes Highlights Integration of Danish Air Transport via Travelfusion Low Cost Carrier content on AeTM is enriched with Danish Air Transport B2C through Travelfusion

More information

PublicVue TM Flight Tracking System. Quick-Start Guide

PublicVue TM Flight Tracking System. Quick-Start Guide PublicVue TM Flight Tracking System Quick-Start Guide DISCLAIMER Data from the PublicVue TM Flight Tracking System (FTS) is being provided to the community as an informational tool, designed to increase

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

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

SERVICE LEVEL AGREEMENT. Aeronautical Information Service (AIS) NAME Page 1 of 26 AGREEMENT. Aeronautical Information Service

SERVICE LEVEL AGREEMENT. Aeronautical Information Service (AIS) NAME Page 1 of 26 AGREEMENT. Aeronautical Information Service NAME Page 1 of 26 CONTROLLED COPY SERVICE LEVEL Aeronautical Information Service No section of this work may be reproduced or copied, stored, transmitted, on electronic format, photocopy, recording, or

More information

e User Guid Version 4.0 December 30,

e User Guid Version 4.0 December 30, User Guide Version 4.0 December 30, 2014 1 Table of Contents Software License Agreement... 6 Author... 8 Software Editions... 9 Helpdesk... 9 Understanding Time Mode & Time Zones... 10 Part I Getting Started...

More information

RV10 Weight and Balance

RV10 Weight and Balance RV10 Weight and Balance Author: Greg Hale -------- ghale5224@aol.com Rev. Date: 4/15/2008 11:43:34 AM The RV10 weight and balance program was designed for the Van's RV10 aircraft. The program includes

More information

etrust SiteMinder Agent r6.0 for IBM WebSphere

etrust SiteMinder Agent r6.0 for IBM WebSphere etrust SiteMinder Agent r6.0 for IBM WebSphere SiteMinder Agent for IBM WebSphere Guide r6.0 This documentation (the Documentation ) and related computer software program (the Software ) (hereinafter collectively

More information

TIMS to PowerSchool Transportation Data Import

TIMS to PowerSchool Transportation Data Import TIMS to PowerSchool Transportation Data Import Extracting and Formatting TIMS Data Creating the TIMS Extract(s) for PowerSchool Extracting Student Transportation Data from TIMS Formatting TIMS Transportation

More information

S-Series Hotel App User Guide

S-Series Hotel App User Guide S-Series Hotel App User Guide Version 1.2 Date: April 10, 2017 Yeastar Information Technology Co. Ltd. 1 Contents Introduction... 3 About This Guide... 3 Installing and Activating Hotel App... 4 Installing

More information

Form SR FCL 1105 (JAR FCL 02) Issue 8 (Jan 2009) Page 1 of 6

Form SR FCL 1105 (JAR FCL 02) Issue 8 (Jan 2009) Page 1 of 6 SEYCHELLES CIVIL AVIATION AUTHORITY JAR-FCL PRIVATE PILOT LICENCE (AEROPLANES) / SEYCHELLES FLIGHT RADIOTELEPHONY OPERATOR S LICENCE APPLICATION Please complete the form in BLOCK CAPITALS using black or

More information

LS-Data. Manual. Altenrhein Luftfahrt GmbH Office Park 3 Top 312 / Postfach 90 A-1300 Wien Flughafen

LS-Data. Manual. Altenrhein Luftfahrt GmbH Office Park 3 Top 312 / Postfach 90 A-1300 Wien Flughafen LS-Data Manual Altenrhein Luftfahrt GmbH Office Park 3 Top 312 / Postfach 90 A-1300 Wien Flughafen Contents: 1. General... 2 2. Requirements... 2 3. Log In... 3 4. Cockpit crew... 4 4.1. New flight...

More information

Flight Operations Briefing Notes

Flight Operations Briefing Notes Flight Operations Briefing Notes I Introduction Strict adherence to suitable standard operating procedures (SOPs) and associated normal checklists is a major contribution to preventing and reducing incidents

More information

Pelican AMR Gateway User Guide

Pelican AMR Gateway User Guide Pelican AMR Gateway User Guide Document Reference: 8194 June 2016 Version: 2 Version Date Author Changes Number 1 Feb 2014 Bettina Rubek-Slater 2 Jun 2016 Sam Smith Branding updated API section updated

More information

This document is meant purely as a documentation tool and the institutions do not assume any liability for its contents

This document is meant purely as a documentation tool and the institutions do not assume any liability for its contents 2010R0073 EN 20.10.2014 001.001 1 This document is meant purely as a documentation tool and the institutions do not assume any liability for its contents B COMMISSION REGULATION (EU) No 73/2010 of 26 January

More information

Excerpts from ICAO PBCS Manual

Excerpts from ICAO PBCS Manual IBAC Bulletin - 8 Dec. 2017 Attachment A Excerpts from ICAO PBCS Manual Chapter 4. Complying with and RCP/RSP specification 4-8 4.3.1.7 The ANSP should establish the following, subject to a bilateral,

More information

Project 2 Database Design and ETL

Project 2 Database Design and ETL Project 2 Database Design and ETL Out: October 4th, 2018 1 Introduction: What is this project all about? We ve now studied many techniques that help in modeling data (E-R diagrams), which can then be migrated

More information

WHAT S NEW in 7.9 RELEASE NOTES

WHAT S NEW in 7.9 RELEASE NOTES 7.9 RELEASE NOTES January 2015 Table of Contents Session Usability...3 Smarter Bookmarks... 3 Multi-Tabbed Browsing... 3 Session Time Out Pop Up... 4 Batch No Show Processing...5 Selecting a Guarantee

More information

e-crew Horizon Air Pilot Trip Trades Phase I Notes for the Crewmembers

e-crew Horizon Air Pilot Trip Trades Phase I Notes for the Crewmembers e-crew Horizon Air Pilot Trip Trades Phase I Notes for the Crewmembers Trip Trades allow Crewmembers to trade trips without involving Crew Scheduling, provided the trade does not violate any Government,

More information

Weight and Balance User Guide

Weight and Balance User Guide Weight and Balance User Guide Selecting the Weight and Balance tab brings up the Departure and Destination screen, used for initiating the process for a standalone WB report. Select the tail to be used

More information

ENAC Circular GEN - 05 / 8 October 2014

ENAC Circular GEN - 05 / 8 October 2014 Information Article ENAC Circular GEN - 05 / 8 October 2014 Relevance Italian Civil Aviation Authority (ENAC) Regulatory Requirement - enacted 8 October 2014 Note - This information article is based on

More information

Determination of Takeoff and Landing Distances Using an ipad Performance Application for the Diamond DA40

Determination of Takeoff and Landing Distances Using an ipad Performance Application for the Diamond DA40 International Journal of Aviation, Aeronautics, and Aerospace Volume 5 Issue 4 Article 1 8-1-2018 Determination of Takeoff and Landing Distances Using an ipad Performance Application for the Diamond DA40

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

Opera TWI Room Type Changes Introduction

Opera TWI Room Type Changes Introduction Opera TWI Room Type Changes Introduction This document will outline the procedure for making changes to room types at an Opera TWI property. Room type counts should always match between Wyndham CRS and

More information

OAG FV Flight Notifications for Business (FNB) Integration Guide

OAG FV Flight Notifications for Business (FNB) Integration Guide OAG FV Flight Notifications for Business (FNB) Integration Guide Table of Contents 1. Introduction... 3 Flight Notifications to a business customer... 3 Flight Notifications to end users... 3 2. OAG flightview

More information

Total failure of the. on its maiden flight. Ian Sommerville 2001 CS 365 Ariane 5 launcher failure Slide 1

Total failure of the. on its maiden flight. Ian Sommerville 2001 CS 365 Ariane 5 launcher failure Slide 1 The Ariane 5 Launcher Failure June 4th 1996 Total failure of the Ariane 5 launcher on its maiden flight Ian Sommerville 2001 CS 365 Ariane 5 launcher failure Slide 1 Ariane 5 A European rocket designed

More information

Order TCAA-O-PEL005. November 2007 VALIDATION AND CONVERSION OF A FOREIGN FLIGHT CREW LICENCE

Order TCAA-O-PEL005. November 2007 VALIDATION AND CONVERSION OF A FOREIGN FLIGHT CREW LICENCE Order TCAA-O-PEL005 November 2007 VALIDATION AND CONVERSION OF A FOREIGN FLIGHT CREW LICENCE 1.0 PURPOSE This Order is issued to guide the Personnel Licensing Officers in determining if the applicant meets

More information

CoPilot. User s Manual ... Flight Planning Software for Palm OS Handhelds. Laurie J. Davis. Version 5.3

CoPilot. User s Manual ... Flight Planning Software for Palm OS Handhelds. Laurie J. Davis. Version 5.3 . CoPilot User s Manual.......... Flight Planning Software for Palm OS Handhelds Laurie J. Davis Version 5.3 . CoPilot User s Manual Flight Planning Software for Palm OS Handhelds General Description...

More information

PSS Integrating 3 rd Party Intelligent Terminal. Application Note. Date December 15, 2009 Document number PSS5000/APNO/804680/00

PSS Integrating 3 rd Party Intelligent Terminal. Application Note. Date December 15, 2009 Document number PSS5000/APNO/804680/00 PSS 5000 Application Note Integrating 3 rd Party Intelligent Terminal Date December 15, 2009 Document number PSS5000/APNO/804680/00 Doms A/S Formervangen 28 Tel. +45 4329 9400 info@doms.dk DK-2600 Glostrup

More information

App. uavionix Ping App QUICK START GUIDE

App. uavionix Ping App QUICK START GUIDE App uavionix Ping App QUICK START GUIDE Quick Start Guide The uavionix Ping App allows configuration of a Ping or FYX navigation source with the aircraft s unique information for broadcast during flight.

More information

ST Electronics (Info-Software Systems) Pte Ltd. AOCS ACDM Flight Information Management (FIM) Training Guide

ST Electronics (Info-Software Systems) Pte Ltd. AOCS ACDM Flight Information Management (FIM) Training Guide Pte Ltd (Regn No: 198601030N) AOCS ACDM Flight Information Management (FIM) Training Guide The information contained herein is the property of Pte Ltd and may not be copied, used or disclosed in whole

More information

Master Minimum Equipment Lists/Minimum Equipment Lists. Amendment Summary PART-MMEL/MEL. Amendment No. Effective Date Subpart Paragraph

Master Minimum Equipment Lists/Minimum Equipment Lists. Amendment Summary PART-MMEL/MEL. Amendment No. Effective Date Subpart Paragraph Amendment Summary PART-MMEL/MEL Master Minimum Equipment Lists/Minimum Equipment Lists Amendment No. Effective Date Subpart Paragraph Contents Section No. Subject SUBPART- A GENERAL MMEL/MEL.001 Applicability

More information

The Official s Guide to Athletix

The Official s Guide to Athletix The Official s Guide to Athletix Introduction This tutorial is designed to help Officials learn more about how to use the site and how it can help manage officiating information. Table of Contents Introduction

More information

Management System for Flight Information

Management System for Flight Information Management System for Flight Information COP 5611 Chantelle Erasmus Page 1 of 17 Project Phases Design Phase (100 percent complete)... 3 Initial Implementation and Testing Phase (90 percent complete)...

More information

Avionics CyberThreat. Airplanes Are Hard!

Avionics CyberThreat. Airplanes Are Hard! Avionics CyberThreat Airplanes Are Hard! Disclaimer The subject matter of this presentation is provided for educational purposes only. The information presented relates to a dynamic and complex cyber security

More information

SIMULATION MODELING AND ANALYSIS OF A NEW INTERNATIONAL TERMINAL

SIMULATION MODELING AND ANALYSIS OF A NEW INTERNATIONAL TERMINAL Proceedings of the 2000 Winter Simulation Conference J. A. Joines, R. R. Barton, K. Kang, and P. A. Fishwick, eds. SIMULATION MODELING AND ANALYSIS OF A NEW INTERNATIONAL TERMINAL Ali S. Kiran Tekin Cetinkaya

More information