VATSIM Analysis. Calvin Kim & Josh Pedowitz. Middlebury College, Middlebury, VT 05753

Size: px
Start display at page:

Download "VATSIM Analysis. Calvin Kim & Josh Pedowitz. Middlebury College, Middlebury, VT 05753"

Transcription

1 VATSIM Analysis Calvin Kim & Josh Pedowitz Middlebury College, Middlebury, VT Abstract. VATSIM is a flight simulation software used by thousands of people every day. Currently, there is no tool to visualize the data generated by this software. In our work we create a data set from the simulations and provide a starting point for a visualization and analysis tool. This paper breaks down this process and explains how the work can be expanded upon. 1 Introduction Virtual Air Traffic Simulation Network (VATSIM) is a flight simulator that was created in July Since its creation it has grown to be the largest online flight simulator in the world with over 209,000 registered users. This user base is made up of people who engage in the simulation as both pilots and air traffic controllers (ATCs) in order to keep the simulation as close to real-life aviation procedures. Due to its realism, VATSIM is not only used as a hobby but also as a training tool for student pilots as well as private and commercial pilots who are looking to improve or brush up on their skills. For example, in 2009 the Israeli airline El Al required upwards of 700 of its new pilots to go through training sessions using VATSIM to provide realistic training before letting them fly with passengers. [1] 1.1 Motivation VATSIM keeps track of tons of data about their current flights including GPS coordinates, current altitude, and true airspeed. All of the data from these simulations is shared in a CSV file which updates every two minutes. The motivation for this project was to help these pilots visualize the data that is interesting to them in a way that is intuitive and easy for them to understand.

2 2 Calvin Kim & Josh Pedowitz 2 Implementation In this section, we will be describing the languages, libraries, and databases we used in our implementation. 2.1 CSV In order to do meaningful analysis on the data, we wanted to be able to aggregate tons of data about flights from throughout the day rather than just looking at data for current active flights. This meant that we needed some way to parse VATSIM s data and somewhere to store it. Thankfully, VATSIM shares their data as a CSV file which means it is easy to work with. This data can be found at Scraper We chose to use Python as our programming language because it s a language that we were both familiar with and one that is relatively easy to read and understand. In addition, there is a library for Python called pandas that is extremely useful when performing statistical operation and doing analysis on large data sets. Our scraper had two main sections to it. The first dealt with inserting data about active flights into our database and the second dealt with building a data set of every flight that has occurred since we started the project. Currently the active flights portion of the database is not nearly as useful as the main flights table so we will focus on the main flights. In the future, however, the active flights will prove to be very useful. In order to insert our flights into the table with the necessary information we had to not only grab the relevant data from the CSV, but also perform a few calculations on that data. One of the main things that we calculated on our own was ground time. To do this we used airport location data, current GPS location of the flight, and the current ground speed of the plane. If planes were within a five mile radius of their departure airport and moving at a speed of less than 15 knots we decided they were still on the ground. Once outside of the radius or above the speed we logged the time and subtracted the time that the flight

3 VATSIM Analysis 3 was begun. This gave us ground time at the departure airport. Once the flight was within a five mile radius of the destination airport and moving at a speed of less than 15 knots we decided the plane was back on the ground again which helped us figure out the total duration of the flight. Since the CSV is updated about every two minutes, we scheduled the scraper to run every two minutes using cron so that we don t miss any data. In order to make sure we don t run our scraper on the same update twice we used a field that shows what time the CSV was updated and compare our last update with it. 2.3 Database We decided to use sqlite3 as our database to store our data since the data is stored locally and because we were both relatively familiar with SQL commands. SQL is also a relational database that meets the needs of our dataset since the data that we re working with is highly structured. 2.4 Data Analysis One of the main motivations for using Python was because of the open source pandas library, which uses numpy. pandas is a powerful and easy to use library that includes functions and data structures that make data analysis and visualization fast and easy. 3 Results Our project consisted of two major visualizations: the Misery Map (Figure 1) and the Traffic Graph (Figure 2). For both of these visualization, we set the threshold for a bad ground time to be anything over an hour. 3.1 Misery Map The bottom layer of the Misery Map displays of all of the airports in the world as a way of representing a map. On the layer, the map colors airports on a gradient between blue

4 4 Calvin Kim & Josh Pedowitz and red depending on how bad the average ground time is for that airport (blue = good, red = bad). The size of the airport is also increased based on it s popularity relative to other airports. The popularity of an airport is based on the number of flights that depart and arrive at that airport over time. Fig. 1. A map of the airports in the U.S. 3.2 Traffic Graph The Traffic Graph is a way to both visualize the overall traffic of VATSIM over time as well as the number of flights that had bad ground time vs. good ground time on each specific day. The graph is an area map with number of flights on the x-axis and date on the y-axis. The blue area displays the number of flights with good ground time on that day and the red area displays the number of flights with bad ground time. This allows us to see things such as specific days where ground time was especially bad or days that just had very high traffic.

5 VATSIM Analysis 5 Fig. 2. A graph of the number of flights per day. 3.3 Issues We ran into a number of problems while working on this project. Fields in the CSV were often not populated and the CSV had many sections, which were not formatted as CSV, that we had to sort through and ignore in order to get the data we needed. The Airports database had incorrect or incomplete names as well as certain unicode characters that couldn t be handled by the database so we had to go into the SQL file to manually change the characters ourselves. Another issue we ran into is that cron only runs when the computer is on which means that in order to regularly fetch data, we need a dedicated computer or server that is always on. There was also the occasional human error that would mess up our data. For example, there was a flight with a ground time of over 24 hours due to human error. This meant that we had to set a threshold for what data we would accept as kosher and remove the remaining outliers.

6 6 Calvin Kim & Josh Pedowitz 4 Future Work While we accomplished what we set out to do this semester, there are a number of improvements we would like to make. In the future, we would like to move our scraper onto a dedicated server so that we can run the program continuously and get all of the data points. In addition, we would like to move our database into an online database server such as Amazon RDS so that the data isn t just stored locally. The next step for this project would probably be to create an app or an webpage for our results. This would allow more people to access what we ve accomplished and would provide us with a space to create a more scalable product. On this app we would display information about current flights and past flights in addition to our analysis. Users would be able to see their flight routes, statistics about themselves and more. We would also like to make our visualizations dynamic instead of static graphs like we have now. We could potentially move our visualizations over to d3.js which would allow us to have clickable nodes on our map and would allow our graphs to be interactive. Having interactive maps would enable us to include functionality such as letting a user select a date range to use for either visualization or even setting their own threshold for bad ground time. References 1. Wikipedia. Virtual air traffic simulation network wikipedia, the free encyclopedia, [Online; accessed 14-December-2015].

SPORT PILOT TRAINING SYLLABUS

SPORT PILOT TRAINING SYLLABUS Checked out from the Members Only Library Page 1 of 13 Society of Aviation and Flight Educators www.safepilots.0rg SPORT PILOT TRAINING SYLLABUS LESSON ONE: INTRODUCTORY FLIGHT TIME: 1 hour Ground Instruction;

More information

Project 2 Database Design and ETL

Project 2 Database Design and ETL Project 2 Database Design and ETL Out: October 7th, 2015 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

transavia virtual dispatch manager user manual 2015, transavia virtual airline. All rights reserved. http://www.transavia-virtual.

transavia virtual dispatch manager user manual 2015, transavia virtual airline. All rights reserved. http://www.transavia-virtual. transavia virtual dispatch manager user manual applies to version 1.5.0 http://www.transavia-virtual.com/ 2015, transavia virtual airline. All rights reserved. table of contents table of contents... 2

More information

Twitter and Natural Disasters Peter Ney

Twitter and Natural Disasters Peter Ney Twitter and Natural Disasters Peter Ney Introduction The growing popularity of mobile computing and social media has created new opportunities to incorporate social media data into crisis response. In

More information

Augmented reality enhances learning at Manchester School of Medicine

Augmented reality enhances learning at Manchester School of Medicine Augmented reality enhances learning at Manchester School of Medicine Welcome to the Jisc podcast. The University of Manchester is taking a unique approach to prescription training for its medical students

More information

MicroStrategy Desktop

MicroStrategy Desktop MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop is designed to enable business professionals like you to explore data, simply and without needing direct support from IT. 1 Import data from

More information

MACS Data Collection and Data Analysis. Joey Mercer & James Wong

MACS Data Collection and Data Analysis. Joey Mercer & James Wong MACS Data Collection and Data Analysis Joey Mercer & James Wong Outline Data Collection Setup panel Types of Logs Location of MACS Data Other Influencing Factors Real-Time Analysis Tools Post-Processing

More information

Building an Interactive Online Fact Book with R Shiny

Building an Interactive Online Fact Book with R Shiny Building an Interactive Online Fact Book with R Shiny Mike Wallinga Director of Institutional Research Northwestern College, Orange City, IA AIRUM Conference 2013 My Annual Fact Book Struggle/Soapbox Creating

More information

Understanding Drag, Thrust, and Airspeed relationships

Understanding Drag, Thrust, and Airspeed relationships Understanding Drag, Thrust, and Airspeed relationships Wayne Pratt May 30, 2010 CFII 1473091 The classic curve of drag verses airspeed can be found in any aviation textbook. However, there is little discussion

More information

A Dynamic Programming Approach for 4D Flight Route Optimization

A Dynamic Programming Approach for 4D Flight Route Optimization A Dynamic Programming Approach for 4D Flight Route Optimization Christian Kiss-Tóth, Gábor Takács Széchenyi István University, Győr, Hungary IEEE International Conference on Big Data Oct 27-30, 2014 Washington

More information

MicroStrategy Analytics Express User Guide

MicroStrategy Analytics Express User Guide MicroStrategy Analytics Express User Guide Analyzing Data with MicroStrategy Analytics Express Version: 4.0 Document Number: 09770040 CONTENTS 1. Getting Started with MicroStrategy Analytics Express Introduction...

More information

Surveillance System Using Wireless Sensor Networks

Surveillance System Using Wireless Sensor Networks Surveillance System Using Wireless Sensor Networks Dan Nguyen, Leo Chang Computer Engineering, Santa Clara University Santa Clara, California, USA dantnguyen84@gmail.com chihshun@gmail.com Abstract The

More information

Logbook in ForeFlight Mobile

Logbook in ForeFlight Mobile Logbook in ForeFlight Mobile Logbook ForeFlight, LLC 3rd Edition - Covers ForeFlight Mobile 7.6 Introduction... 4 Logbook... 5 About the Design... 5 Importing your Logbook... 6 Adding New Flights... 7

More information

Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ

Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ PharmaSUG 2014 PO10 Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ ABSTRACT As more and more organizations adapt to the SAS Enterprise Guide,

More information

Training program for S2 (TWR) rating

Training program for S2 (TWR) rating Training program for S2 (TWR) rating Introduction This is the official Vatsim Scandinavia training program for students training for the TWR (S2) Rating. Each mentor is expected to take his student through

More information

Seeing by Degrees: Programming Visualization From Sensor Networks

Seeing by Degrees: Programming Visualization From Sensor Networks Seeing by Degrees: Programming Visualization From Sensor Networks Da-Wei Huang Michael Bobker Daniel Harris Engineer, Building Manager, Building Director of Control Control Technology Strategy Development

More information

WHICH AIR TRAFFIC CONTROLLER TO CONTACT

WHICH AIR TRAFFIC CONTROLLER TO CONTACT WHICH AIR TRAFFIC CONTROLLER TO CONTACT 1. Introduction This article is written in order to explain to all beginners in the IVAO network the basics for any pilot to contact the correct air traffic controller.

More information

Memo. Open Source Development and Documentation Project English 420. instructor name taken out students names taken out OSDDP Proposal.

Memo. Open Source Development and Documentation Project English 420. instructor name taken out students names taken out OSDDP Proposal. Memo Date: 11/3/2005 To: From: RE: instructor name taken out students names taken out OSDDP Proposal Description: The Wikipedia encyclopedia was introduced in 2001. It is a free encyclopedia that anyone

More information

Modifying Colors and Symbols in ArcMap

Modifying Colors and Symbols in ArcMap Modifying Colors and Symbols in ArcMap Contents Introduction... 1 Displaying Categorical Data... 3 Creating New Categories... 5 Displaying Numeric Data... 6 Graduated Colors... 6 Graduated Symbols... 9

More information

Product Guide. Sawmill Analytics, Swindon SN4 9LZ UK sales@sawmill.co.uk tel: +44 845 250 4470

Product Guide. Sawmill Analytics, Swindon SN4 9LZ UK sales@sawmill.co.uk tel: +44 845 250 4470 Product Guide What is Sawmill Sawmill is a highly sophisticated and flexible analysis and reporting tool. It can read text log files from over 800 different sources and analyse their content. Once analyzed

More information

Visualization with Excel Tools and Microsoft Azure

Visualization with Excel Tools and Microsoft Azure Visualization with Excel Tools and Microsoft Azure Introduction Power Query and Power Map are add-ins that are available as free downloads from Microsoft to enhance the data access and data visualization

More information

Chase Wu New Jersey Ins0tute of Technology

Chase Wu New Jersey Ins0tute of Technology CS 698: Special Topics in Big Data Chapter 4. Big Data Analytics Platforms Chase Wu New Jersey Ins0tute of Technology Some of the slides have been provided through the courtesy of Dr. Ching-Yung Lin at

More information

CTAF PROCEDURES GUIDE

CTAF PROCEDURES GUIDE CTAF PROCEDURES GUIDE First Edition Updated on 02 December 2010 to correct minor errors. Information contained within this document is intended for simulation use only and should not be applied to real

More information

Shared Cockpit Mode in FSX

Shared Cockpit Mode in FSX Here are brief instructions on how to use the shared cockpit feature in Flight Simulator. These are the necessary steps to use the Cockpit Sharing feature in with Finn. Before Starting Always place your

More information

TIBCO Spotfire Business Author Essentials Quick Reference Guide. Table of contents:

TIBCO Spotfire Business Author Essentials Quick Reference Guide. Table of contents: Table of contents: Access Data for Analysis Data file types Format assumptions Data from Excel Information links Add multiple data tables Create & Interpret Visualizations Table Pie Chart Cross Table Treemap

More information

The Quality of Internet Service: AT&T s Global IP Network Performance Measurements

The Quality of Internet Service: AT&T s Global IP Network Performance Measurements The Quality of Internet Service: AT&T s Global IP Network Performance Measurements In today's economy, corporations need to make the most of opportunities made possible by the Internet, while managing

More information

Mauro Calvano. About Aviation Safety Management Systems

Mauro Calvano. About Aviation Safety Management Systems Mauro Calvano About Aviation Safety Management Systems January 2003 1 INTRODUCTION In order to be aware of the factors that are driving the accident rate during the last decade, we must identify the hazards

More information

Building a Real-Time Bus Tracking Data Display System

Building a Real-Time Bus Tracking Data Display System Building a Real-Time Bus Tracking Data Display System Jason Dudley jaydud@gmail.com Department of Computer Science Ron Vetter vetterr@uncw.edu Department of Computer Science Jeff Brown brownj@uncw.edu

More information

Visualizing airplane accidents over time- Hassan Jannah, Siddharth Agrawal, Sufia Siddiqui

Visualizing airplane accidents over time- Hassan Jannah, Siddharth Agrawal, Sufia Siddiqui TaleSpin 2014 Visualizing airplane accidents over time- Hassan Jannah, Siddharth Agrawal, Sufia Siddiqui TaleSpin is a data driven visualization of airplane accidents from 1919 to 2014 designed for anyone

More information

Providing Flight Training at:

Providing Flight Training at: Providing Flight Training at: The G. O. Carlson / Chester County Airport Business Route 30, in Valley Township 1 Earhart Drive, Suite 4, Coatesville, PA 19320 610-384-9000 www.chestercountyaviation.com

More information

Rockwell Collins ARINC MultiLink SM flight tracking service

Rockwell Collins ARINC MultiLink SM flight tracking service Rockwell Collins ARINC MultiLink SM flight tracking service Background Each time a highly publicized event involving a commercial airline occurs, the aviation community begins to clamor for automated transponders

More information

Aviation Safety: Making a safe system even safer. Nancy Graham Director, Air Navigation Bureau International Civil Aviation Organization

Aviation Safety: Making a safe system even safer. Nancy Graham Director, Air Navigation Bureau International Civil Aviation Organization Aviation Safety: Making a safe system even safer Nancy Graham Director, Air Navigation Bureau International Civil Aviation Organization Video Message, October 1st, 2010 (http://livestream.com/icao) I am

More information

Takeoff Tools TM Crosswind Calculator Instructions Copyright 2005 by Eric C. King. All rights reserved. Rev. 11Sep05. How to Use

Takeoff Tools TM Crosswind Calculator Instructions Copyright 2005 by Eric C. King. All rights reserved. Rev. 11Sep05. How to Use Takeoff Tools TM Crosswind Calculator Instructions Copyright 2005 by Eric C. King. All rights reserved. Rev. 11Sep05 Takeoff Tools TM Suppose you re arriving at, or about to depart from, an airport. You

More information

FLIGHT SIMULATOR QUICK START GUIDE

FLIGHT SIMULATOR QUICK START GUIDE FLIGHT SIMULATOR QUICK START GUIDE XPlane 10 Developed by: Laminar Research Copyright: 2012/ Aerosoft GmbH Airport Paderborn/Lippstadt D33142 Bueren, Germany Tel: +49 (0) 29 55 / 76 0310 Fax: +49 (0) 29

More information

Guide to online booking and having tickets issued

Guide to online booking and having tickets issued Guide to online booking and having tickets issued Search. As shown on Figure 1 the www.aeroflot.ru hyperlink points to the main page of the website from where you can navigate to the section of the site

More information

A Scalable Network Monitoring and Bandwidth Throttling System for Cloud Computing

A Scalable Network Monitoring and Bandwidth Throttling System for Cloud Computing A Scalable Network Monitoring and Bandwidth Throttling System for Cloud Computing N.F. Huysamen and A.E. Krzesinski Department of Mathematical Sciences University of Stellenbosch 7600 Stellenbosch, South

More information

Introduction... 1 Website Development... 4 Content... 7 Tools and Tracking... 19 Distribution... 20 What to Expect... 26 Next Step...

Introduction... 1 Website Development... 4 Content... 7 Tools and Tracking... 19 Distribution... 20 What to Expect... 26 Next Step... Contents Introduction... 1 Website Development... 4 Content... 7 Tools and Tracking... 19 Distribution... 20 What to Expect... 26 Next Step... 27 Introduction Your goal is to generate leads that you can

More information

CHAPTER 4. o Hotel Results 15 CHAPTER 5. o Car Results: Matrix & Options 19. o Ground and Limo Service 21. o Trip Purchasing & Booking 23

CHAPTER 4. o Hotel Results 15 CHAPTER 5. o Car Results: Matrix & Options 19. o Ground and Limo Service 21. o Trip Purchasing & Booking 23 User Manual - CTS Table of Contents CHAPTER 1 Log In 1 CHAPTER 4 Find a Hotel 15 Home Page 2 o Navigation Toolbar 2 o Search by Airport, Search by Address o Quick Trip Search 2 o Hotel Results 15 o Welcome

More information

INITIAL TEST RESULTS OF PATHPROX A RUNWAY INCURSION ALERTING SYSTEM

INITIAL TEST RESULTS OF PATHPROX A RUNWAY INCURSION ALERTING SYSTEM INITIAL TEST RESULTS OF PATHPROX A RUNWAY INCURSION ALERTING SYSTEM Rick Cassell, Carl Evers, Ben Sleep and Jeff Esche Rannoch Corporation, 1800 Diagonal Rd. Suite 430, Alexandria, VA 22314 Abstract This

More information

International Journal of Advanced Engineering Research and Applications (IJAERA) ISSN: 2454-2377 Vol. 1, Issue 6, October 2015. Big Data and Hadoop

International Journal of Advanced Engineering Research and Applications (IJAERA) ISSN: 2454-2377 Vol. 1, Issue 6, October 2015. Big Data and Hadoop ISSN: 2454-2377, October 2015 Big Data and Hadoop Simmi Bagga 1 Satinder Kaur 2 1 Assistant Professor, Sant Hira Dass Kanya MahaVidyalaya, Kala Sanghian, Distt Kpt. INDIA E-mail: simmibagga12@gmail.com

More information

Medications Shortages Dashboard

Medications Shortages Dashboard Medications Shortages Dashboard Project Plan Spring 2014 Spectrum Health Contact Jeff McConnell Team Members Alex Lockwood Alex Seling Cameron Keif 1 Table of Contents 1. Project Overview 3 2. Functional

More information

Experimental Analysis

Experimental Analysis Experimental Analysis Instructors: If your institution does not have the Fish Farm computer simulation, contact the project directors for information on obtaining it free of charge. The ESA21 project team

More information

CRITICAL PATH ANALYSIS AND GANTT CHARTS

CRITICAL PATH ANALYSIS AND GANTT CHARTS CRITICAL PATH ANALYSIS AND GANTT CHARTS 1. An engineering project is modelled by the activity network shown in the figure above. The activities are represented by the arcs. The number in brackets on each

More information

VATSIM CODE OF CONDUCT

VATSIM CODE OF CONDUCT VATSIM CODE OF CONDUCT VATSIM is an online community created for enthusiasts of flight simulation and air traffic control. One of the main goals of VATSIM is to create an environment which is fun and,

More information

Tariff Regulations at Torp Sandefjord Airport

Tariff Regulations at Torp Sandefjord Airport Tariff Regulations at Torp Sandefjord Airport Valid from 1 January 2016 Sandefjord Lufthavn AS Torpveien 130 N-3241 Sandefjord Translation only The Norwegian text shall prevail. Tel.: +47 33 42 70 00 E-Mail:

More information

VisualCalc AdWords Dashboard Indicator Whitepaper Rev 3.2

VisualCalc AdWords Dashboard Indicator Whitepaper Rev 3.2 VisualCalc AdWords Dashboard Indicator Whitepaper Rev 3.2 873 Embarcadero Drive, Suite 3 El Dorado Hills, California 95762 916.939.2020 www.visualcalc.com Introduction The VisualCalc AdWords Dashboard

More information

Pavement Management System Overview

Pavement Management System Overview TABLE OF CONTENTS The Home Screen... 3 The Gutter... 4 Icons... 4 Quick Links... 5 Miscellaneous... 6 PMS Menus... 7 Setup Menu... 7 Construction Setup... 7 1. Material Codes... 8 2. Standard Sections...

More information

User interface design. Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 16 Slide 1

User interface design. Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 16 Slide 1 User interface design Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 16 Slide 1 Objectives To suggest some general design principles for user interface design To explain different interaction

More information

The Lighting Effects Filter

The Lighting Effects Filter Appendix appendix E The Lighting Effects Filter The Lighting Effects filter is like a little program in itself. With this filter, you can create a wealth of different lighting effects, from making a particular

More information

Edge Configuration Series Reporting Overview

Edge Configuration Series Reporting Overview Reporting Edge Configuration Series Reporting Overview The Reporting portion of the Edge appliance provides a number of enhanced network monitoring and reporting capabilities. WAN Reporting Provides detailed

More information

How to search for cheap flights

How to search for cheap flights How to search for cheap flights Regardless of where you want to travel, the AFF Flight Finder is a great place to start searching! The flight search tool, which is powered by Skyscanner, allows you to

More information

VATSIM CODE OF CONDUCT

VATSIM CODE OF CONDUCT VATSIM CODE OF CONDUCT VATSIM is an online community created for enthusiasts of flight simulation and air traffic control. One of the main goals of VATSIM is to create an environment which is fun and,

More information

User Guide for Patients

User Guide for Patients User Guide for Patients Creating a My Health Online Account Before you can create a My Health Online account you must register for this service at your GP practice. Your practice will provide you with

More information

DIRECCION DE PERSONAL AERONAUTICO DPTO. DE INSTRUCCION PREGUNTAS Y OPCIONES POR TEMA

DIRECCION DE PERSONAL AERONAUTICO DPTO. DE INSTRUCCION PREGUNTAS Y OPCIONES POR TEMA MT DIREION DE PERSONL ERONUTIO DPTO. DE INSTRUION PREGUNTS Y OPIONES POR TEM Pag.: 1 TEM: 0321 INSTRUTOR_DVNED_06_ENR FLT & NVIGTION OD_PREG: PREGUNT: RPT: 6856 GIVEN: Departure path... straight out Takeoff

More information

3D Interactive Information Visualization: Guidelines from experience and analysis of applications

3D Interactive Information Visualization: Guidelines from experience and analysis of applications 3D Interactive Information Visualization: Guidelines from experience and analysis of applications Richard Brath Visible Decisions Inc., 200 Front St. W. #2203, Toronto, Canada, rbrath@vdi.com 1. EXPERT

More information

Visualizations and Correlations in Troubleshooting

Visualizations and Correlations in Troubleshooting Visualizations and Correlations in Troubleshooting Kevin Burns Comcast kevin_burns@cable.comcast.com 1 Comcast Technology Groups Cable CMTS, Modem, Edge Services Backbone Transport, Routing Converged Regional

More information

PF3 ATC at its best Version History

PF3 ATC at its best Version History The latest version of this document and the PF3 User Guide can always be found in the...\pf3\help folder after any update. 30 th May 2016 Version 3.1.18 FIXED a problem that could occur if an emergency

More information

An Introduction to KeyLines and Network Visualization

An Introduction to KeyLines and Network Visualization An Introduction to KeyLines and Network Visualization 1. What is KeyLines?... 2 2. Benefits of network visualization... 2 3. Benefits of KeyLines... 3 4. KeyLines architecture... 3 5. Uses of network visualization...

More information

TIBCO Spotfire Guided Analytics. Transferring Best Practice Analytics from Experts to Everyone

TIBCO Spotfire Guided Analytics. Transferring Best Practice Analytics from Experts to Everyone TIBCO Spotfire Guided Analytics Transferring Best Practice Analytics from Experts to Everyone Introduction Business professionals need powerful and easy-to-use data analysis applications in order to make

More information

Introduction to SQL for Data Scientists

Introduction to SQL for Data Scientists Introduction to SQL for Data Scientists Ben O. Smith College of Business Administration University of Nebraska at Omaha Learning Objectives By the end of this document you will learn: 1. How to perform

More information

How To Calculate The Cost Of Atc Zero At Chicago Airport

How To Calculate The Cost Of Atc Zero At Chicago Airport ATC Zero: Estimating the Impact of the Chicago Control Center Fire Kellie Scarbrough March 30, 2015 Contents 1 Introduction 2 2 Methods 2 2.1 Normalizing the Flight Data from the ATC Zero Event.... 3 2.2

More information

Call Logging Quick Reference User Guide

Call Logging Quick Reference User Guide Call Logging provides companywide call records, comparison and analytical tools for tracking and improving the efficiency and effectiveness of business communications. An intuitive, feature rich interface

More information

CONTENTS. Overview. Profile. Drones/UAVs. Batteries. Equipment. Customers

CONTENTS. Overview. Profile. Drones/UAVs. Batteries. Equipment. Customers User Manual 2016 CONTENTS Overview 0.1 Drone Logbook Overview... 5 0.2 Upgrading your Account... 6 0.3 Retrieving your Password... 7 0.4 Changing Your Password... 7 0.6 Main Dashboard... 7 Profile 1.1

More information

Visualization of Semantic Windows with SciDB Integration

Visualization of Semantic Windows with SciDB Integration Visualization of Semantic Windows with SciDB Integration Hasan Tuna Icingir Department of Computer Science Brown University Providence, RI 02912 hti@cs.brown.edu February 6, 2013 Abstract Interactive Data

More information

AIRCRAFT PERFORMANCE Pressure Altitude And Density Altitude

AIRCRAFT PERFORMANCE Pressure Altitude And Density Altitude Performance- Page 67 AIRCRAFT PERFORMANCE Pressure Altitude And Density Altitude Pressure altitude is indicated altitude corrected for nonstandard pressure. It is determined by setting 29.92 in the altimeter

More information

How To Convert A Lead In Sugarcrm

How To Convert A Lead In Sugarcrm Attract. Convert. Retain. Lead Management in SugarCRM Written by: Josh Sweeney and Matthew Poer www.atcoresystems.com Atcore Systems, LLC 2010 All rights reserved. No part of this publication may be reproduced

More information

911207 Amman 11191 Jordan e-mail: info@di.jo Mob: +962 79 999 65 85 Tel: +962 6 401 5565

911207 Amman 11191 Jordan e-mail: info@di.jo Mob: +962 79 999 65 85 Tel: +962 6 401 5565 1 Dynamics GP Excel Paste Installation and deployment guide 2 DISCLAIMER STATEMENT All the information presented in this document is the sole intellectual property of Dynamics Innovations IT Solutions.

More information

Data Visualization in Julia

Data Visualization in Julia Introduction: Data Visualization in Julia Andres Lopez-Pineda December 13th, 211 I am Course 6 and 18, and I am primarily interested in Human Interfaces and Graphics. I took this class because I believe

More information

National Transportation Safety Board Washington, DC 20594

National Transportation Safety Board Washington, DC 20594 National Transportation Safety Board Washington, DC 20594 Safety Recommendation The Honorable Michael P. Huerta Administrator Federal Aviation Administration Washington, DC 20590 Date: May 4, 2015 In reply

More information

Optimizing Hadoop Block Placement Policy & Cluster Blocks Distribution

Optimizing Hadoop Block Placement Policy & Cluster Blocks Distribution International Journal of Computer, Electrical, Automation, Control and Information Engineering Vol:6, No:1, 212 Optimizing Hadoop Block Placement Policy & Cluster Blocks Distribution Nchimbi Edward Pius,

More information

Low Level Windshear Alert System (LLWAS) An integral part of the U.S. FAA Wind-shear safety program

Low Level Windshear Alert System (LLWAS) An integral part of the U.S. FAA Wind-shear safety program Low Level Windshear Alert System (LLWAS) An integral part of the U.S. FAA Wind-shear safety program Low-level windshear is a hazard to aircraft in the airport runway corridors. With Climatronics LLWAS,

More information

Billings Pro ios User Guide (Last updated: Feb 15th, 2016)

Billings Pro ios User Guide (Last updated: Feb 15th, 2016) Billings Pro ios User Guide (Last updated: Feb 15th, 2016) Table of Contents Table of Contents 2 Overview 3 Objective 3 Audience 3 Device Requirements 3 Other requirements 3 About Billings Pro on ios 4

More information

Bitrix Site Manager 4.0. Quick Start Guide to Newsletters and Subscriptions

Bitrix Site Manager 4.0. Quick Start Guide to Newsletters and Subscriptions Bitrix Site Manager 4.0 Quick Start Guide to Newsletters and Subscriptions Contents PREFACE...3 CONFIGURING THE MODULE...4 SETTING UP FOR MANUAL SENDING E-MAIL MESSAGES...6 Creating a newsletter...6 Providing

More information

Introduction to Microsoft Excel 2007/2010

Introduction to Microsoft Excel 2007/2010 to Microsoft Excel 2007/2010 Abstract: Microsoft Excel is one of the most powerful and widely used spreadsheet applications available today. Excel's functionality and popularity have made it an essential

More information

Welcome, Commander! Main Features

Welcome, Commander! Main Features Welcome, Commander! Elite Virtual Assistant - EVA - is your in-flight trade computer. Keep track of where you've been, find out where you want to go, and work out the best single trades, or circular trade

More information

AIRSPACE EXPLAINED. Separation of Traffic

AIRSPACE EXPLAINED. Separation of Traffic AIRSPACE EXPLAINED Airspace is an area of aeronautical knowledge that is commonly poorly demonstrated on airman practical tests. Even when airman applicants demonstrate knowledge of the airspace system

More information

2014 NIFA CRM Contestant Briefing Guide San Diego, California

2014 NIFA CRM Contestant Briefing Guide San Diego, California 2014 NIFA CRM Contestant Briefing Guide San Diego, California Region 2 SAFECON 2014 November 12 15 This document supports the 2014 NIFA Collegiate Cockpit Resource Management Simulation and is not for

More information

Realtime Change Detection & Automatic Network Response

Realtime Change Detection & Automatic Network Response Realtime Change Detection & Automatic Network Response Alex Brugh (presenter) Mike Fisk, Josh Neil, Paul Ferrell, Scott Miller, Danny Quist Los Alamos National Laboratory Advanced Computing Solutions LA-UR

More information

1. Comments on reviews a. Need to avoid just summarizing web page asks you for:

1. Comments on reviews a. Need to avoid just summarizing web page asks you for: 1. Comments on reviews a. Need to avoid just summarizing web page asks you for: i. A one or two sentence summary of the paper ii. A description of the problem they were trying to solve iii. A summary of

More information

TRAVEL AND EXPENSE CENTER REPORTS

TRAVEL AND EXPENSE CENTER REPORTS TRAVEL AND EXPENSE CENTER REPORTS NOTE: This document is designed to be used online and has a number of embedded links to processes and additional information. We discourage the printing of manuals as

More information

User Guide. Analytics Desktop Document Number: 09619414

User Guide. Analytics Desktop Document Number: 09619414 User Guide Analytics Desktop Document Number: 09619414 CONTENTS Guide Overview Description of this guide... ix What s new in this guide...x 1. Getting Started with Analytics Desktop Introduction... 1

More information

An Evaluation of No-Cost Business Intelligence Tools. Claire Walsh. Contact: claire.walsh@excella.com @datanurturer 703-840-8600

An Evaluation of No-Cost Business Intelligence Tools. Claire Walsh. Contact: claire.walsh@excella.com @datanurturer 703-840-8600 An Evaluation of No-Cost Business Intelligence Tools Contact: Claire Walsh claire.walsh@excella.com @datanurturer 703-840-8600 1 An Evaluation of No-Cost Business Intelligence Tools Business Intelligence

More information

Managing the Performance of Cloud-Based Applications

Managing the Performance of Cloud-Based Applications Managing the Performance of Cloud-Based Applications Taking Advantage of What the Cloud Has to Offer And Avoiding Common Pitfalls Moving your application to the cloud isn t as simple as porting over your

More information

Instagram Post Data Analysis

Instagram Post Data Analysis Instagram Post Data Analysis Yanling He Xin Yang Xiaoyi Zhang Abstract Because of the spread of the Internet, social platforms become big data pools. From there we can learn about the trends, culture and

More information

Nav-Cam 7000 TripMaster Software User Guide

Nav-Cam 7000 TripMaster Software User Guide Nav-Cam 7000 TripMaster Software User Guide 1 Contents INSTALLATION... 2 IN-VEHICLE INSTALLATION... 3 TRIPMASTER MAIN MENU... 4 Follow Map... 4 Drive To... 5 PLAN ROUTE... 5 Browse Map... 5 Select Place

More information

Toad for Oracle 8.6 SQL Tuning

Toad for Oracle 8.6 SQL Tuning Quick User Guide for Toad for Oracle 8.6 SQL Tuning SQL Tuning Version 6.1.1 SQL Tuning definitively solves SQL bottlenecks through a unique methodology that scans code, without executing programs, to

More information

Analytics That Allow You To See Beyond The Cloud. By Alex Huang, Ph.D., Head of Aviation Analytics Services, The Weather Company, an IBM Business

Analytics That Allow You To See Beyond The Cloud. By Alex Huang, Ph.D., Head of Aviation Analytics Services, The Weather Company, an IBM Business Analytics That Allow You To See Beyond The Cloud By Alex Huang, Ph.D., Head of Aviation Analytics Services, The Weather Company, an IBM Business Table of Contents 3 Ways Predictive Airport Analytics Could

More information

UNIVERSITY TRAVEL EXPENSE REPORT STEP-BY-STEP INSTRUCTIONS - - - - - - - - -

UNIVERSITY TRAVEL EXPENSE REPORT STEP-BY-STEP INSTRUCTIONS - - - - - - - - - UNIVERSITY TRAVEL EXPENSE REPORT STEP-BY-STEP INSTRUCTIONS - - - - - - - - - Updated October 2012 Table of Contents CONTACTS..3 WHEN TO USE TRAVEL EXPENSE REPORT.3 COMMON CAUSES FOR DELAYS IN PROCESSING

More information

Module Google Rich Snippets + Product Ratings and Reviews

Module Google Rich Snippets + Product Ratings and Reviews Module Google Rich Snippets + Product Ratings and Reviews Date : June 3 th, 2014 Business Tech Installation Service If you need help installing and configuring your module, we can offer you an installation

More information

Pilot Professionalism It Isn t Just For The Big Guys

Pilot Professionalism It Isn t Just For The Big Guys Pilot Professionalism It Isn t Just For The Big Guys Earl F Weener Board Member American Bonanza Society Convention & Trade Show Buffalo, NY September 25, 2010 Pilot Professionalism - NTSB Interest Lack

More information

Quick Trip Quote Quick Reference

Quick Trip Quote Quick Reference Quick Trip Quote Quick Reference O V E R V I E W Quick Trip Quote is an app that allows agents to request for quotations of Air, Hotel and Car in 4 types of different combinations, as follows: Air only

More information

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD)

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD) USING MYWEBSQL MyWebSQL is a database web administration tool that will be used during LIS 458 & CS 333. This document will provide the basic steps for you to become familiar with the application. 1. To

More information

Guide to PanAm Agent and Online Booking Tool Services!

Guide to PanAm Agent and Online Booking Tool Services! Guide to PanAm Agent and Online Booking Tool Services Sections: 1. Getting Started with PanAm 2. Booking with An Agent 3. TripCase 4. Online Booking Tool - Logging In & Completing Your Profile 5. Book

More information

How to Borrow Adobe EPUB Ebooks From Your iphone and ipod Touch

How to Borrow Adobe EPUB Ebooks From Your iphone and ipod Touch How to Borrow Adobe EPUB Ebooks From Your iphone and ipod Touch What you will need before starting: 1. WIFI or 3G connection 2. Westlake Porter Public Library Card number (located on the back of your card,

More information

Predicting Flight Delays

Predicting Flight Delays Predicting Flight Delays Dieterich Lawson jdlawson@stanford.edu William Castillo will.castillo@stanford.edu Introduction Every year approximately 20% of airline flights are delayed or cancelled, costing

More information

Visualizing MyAnimeList

Visualizing MyAnimeList Visualizing MyAnimeList Binh Tran Abstract MyAnimeList users use myanimelist.net to track the anime they watch. The users see a lot of simple visualizations on the website. There is not a lot of understanding

More information

How To Create Your Own Profitable Banners In Minutes!

How To Create Your Own Profitable Banners In Minutes! How To Create Your Own Profitable Banners In Minutes!..Without Graphic Design Skills Or Photoshop! Brought to you by EasyBannerCreator Introduction Banner ads are one of the most popular and effective

More information

PERFORMANCE OF MOBILE AD HOC NETWORKING ROUTING PROTOCOLS IN REALISTIC SCENARIOS

PERFORMANCE OF MOBILE AD HOC NETWORKING ROUTING PROTOCOLS IN REALISTIC SCENARIOS PERFORMANCE OF MOBILE AD HOC NETWORKING ROUTING PROTOCOLS IN REALISTIC SCENARIOS Julian Hsu, Sameer Bhatia, Mineo Takai, Rajive Bagrodia, Scalable Network Technologies, Inc., Culver City, CA, and Michael

More information

900612 ESP -- SURF Center : ESP GUI Users Guide

900612 ESP -- SURF Center : ESP GUI Users Guide 900612 ESP -- SURF Center : ESP GUI Users Guide This page last changed on Oct 31, 2011 by kgomes. This is a quick sequence of steps to get the user up and running with the ESP GUI application. When you

More information

M-Files Gantt View. User Guide. App Version: 1.1.0 Author: Joel Heinrich

M-Files Gantt View. User Guide. App Version: 1.1.0 Author: Joel Heinrich M-Files Gantt View User Guide App Version: 1.1.0 Author: Joel Heinrich Date: 02-Jan-2013 Contents 1 Introduction... 1 1.1 Requirements... 1 2 Basic Use... 1 2.1 Activation... 1 2.2 Layout... 1 2.3 Navigation...

More information