Test and Integration of a Detect and Avoid System

Size: px
Start display at page:

Download "Test and Integration of a Detect and Avoid System"

Transcription

1 AIAA 3rd "Unmanned Unlimited" Technical Conference, Workshop and Exhibit 2-23 September 24, Chicago, Illinois AIAA Test and Integration of a Detect and Avoid System Mr. James Utt * Defense Research Associates, Inc., Beavercreek, OH Dr. John McCalmont s Directorate, Air Force Research Laboratory (AFRL/SNJT), Wright Patterson AFB, OH Mr. Mike Deschenes Defense Research Associates, Inc., Beavercreek, OH Remotely Operated Aircraft (ROAs) currently do not have convenient access to civil airspace due to their inability to provide an onboard capability to see and avoid air traffic. Defense Research Associates, Inc. and AFRL/SNJT have developed affordable technology based on silicon charge couple device sensors and passive moving target detection algorithms. Previously, an all-software implementation of the algorithms demonstrated concept feasibility by using video data recorded during flight testing. This paper documents subsequent implementation and field testing of a real-time version of the system with field programmable gate arrays handling the detection processing and multiple sensors to demonstrate the wide field of regard required. The implementation met demonstration goals by functioning reliably in real-time and providing detection and false detection performance comparable to that of the previous, non-real-time version. I. Introduction Federal Aviation Administration (FAA) Regulation states remotely operated aircraft must provide an equivalent level of safety, comparable to see-and-avoid requirements for manned aircraft in order to operate like manned aircraft in the National Air Space (NAS). The capability must be effective against all air traffic, with or without active, transponder-based collision avoidance systems. Currently, no ROA see and avoid capability exists. ROAs operating in the NAS must obtain Certificates of Authorization, a cumbersome process, and/or use either chase planes or ground-based observers. The Air Force Research Laboratories s Directorate (AFRL/SN), and Defense Research Associates, Inc. (DRA) have developed technology called Detect and Avoid (DAA) that has the potential to meet the FAA s see and avoid requirement. Air Force Research Laboratory, s Directorate (AFRL/SN) has been investigating methods of reducing the number of false alarms in missile approach warning systems. One method showing promising results is the addition of a discrimination algorithm which discerns the motion of the approaching missile relative to the motion of the background. AFRL/SN and the Predator/Global Hawk Program Offices sponsored DRA to adapt this missile detection technology to the See and Avoid application. DRA used a validated AFRL/SN human vision model called OPEC and custom simulation software to numerically quantify the detection ranges required for an equivalent level of safety. DRA performed developmental flight demonstrations on a surrogate ROA aircraft. These demonstrations verified predictions that DAA technology will meet Global Hawk and Predator requirements, as shown by McCalmont, Utt, and Deschenes. The methodology for these demonstrations was to fly sensors in a surrogate ROA in near-collision scenarios while recording sensor data. The data was then processed on the ground using general-purpose computers running the detection algorithm software much slower than real time. These demonstrations proved the concept of using this affordable sensor technology and detection algorithm to meet the needs of Global Hawk and Predator. * Vice President, Systems Development, 3915 Germany Lane, Suite 12, Beavercreek, OH Threat Warning Team Leader, AFRL/SNJT, 35 C Street, Hangar 4B, Wright Patterson AFB, OH Engineering Team Leader, Systems Development, 3915 Germany Lane, Suite 12, Beavercreek, OH Copyright 24 by the, Inc. All rights reserved.

2 TCAS See and Avoid TCAS Procedural II. Scope of Demonstration Operating manned aircraft in civil airspace is a relatively safe proposition due to the arsenal of tools and technologies built up since the invention of flight. Figure 1 illustrates the layered nature of these tools and technologies. Pilots are uniformly trained to follow the same procedures and interact in the same manner with air traffic control and each other. Radars monitor aircraft positions in areas of dense traffic. Transponders automatically announce aircraft positions. More sophisticated technologies, such as Traffic Collision Alert System (TCAS), use transponders to autonomously exchange deconfliction information. Finally, pilots use their eyes to see and avoid air traffic. Except for the latter, all of these tools and technologies can be made available for unmanned aircraft. The purpose of the work described in this and related paper is to develop technologies for ROAs that performs this function. More specifically, the purpose is not to develop a system that replaces any, much less all, of these other tools and technologies. Air Traffic Management Figure 1. Reasons Why Manned Aviation Is Safe The demonstration documented here focused on building a practical real-time implementation of the DAA system capable of delivering performance comparable to that observed for the non-real-time software implementation previously demonstrated. Additionally, real-time multi-target tracking software was written and integrated with the detection sub-system. The result was a complete wide field of view, multi-sensor, real-time onboard brassboard system.. The demonstration did not address integration of the system into an unmanned platform. III. Objectives The effort focused on meeting two objectives: 1. Demonstrate real-time operation of integrated detection and tracking system. 2. Demonstrate real-time tracking of targets across multiples sensor fields of view. IV. Implementation The Detect and Avoid (DAA) concept uses several key technologies: CCD sensors, new discrimination algorithms, and field programmable gate arrays (FPGAs). The DAA concept is to use three sensors to provide adequate non-cooperative target collision avoidance protection. The brassboard implementation is shown, along with it s field of regard, in Figure 2. The architecture implemented is shown in Figure 3, along with instrumentation for the demonstration. Note that this brassboard implementation provides approximately one half of the intended final azimuth coverage. The additional coverage can be obtained by using shorter focal length lenses and larger detector arrays. Both of these can be obtained commercially, but were not available for this demonstration. The sensors are high resolution (megapixel), low cost, digital video cameras available in the commercial market. The selected sensor provides high spatial resolution (~.5 milliradian) while maintaining a large field of view (~3 degrees horizontal by ~3 degrees vertical). The key to this capability is the 124 by 124 pixel silicon focal plane array. In addition to the high resolution, the current selection of digital video sensors are smaller, lighter weight, lower power, and lower cost. The sensor used in the earliest demonstrations was a Dalsa CA-D7-124T. This was subsequently replaced by Basler megapixel sensors, which offer comparable sensitivity and higher frame rates. The principal discrimination algorithm processes digital video from the sensor. The algorithm assumes that energy in the scene is constant over the interval between N frames of digital video data. It then estimates, for each pixel, the displacement of the energy during the N frame interval. The estimates are in the form of two-dimensional displacements called flow vectors. Together, these vectors characterize global scene motion. (In the case of an aircraft, the scene is really stationary while the aircraft moves). The set of vectors can be used to detect moving targets. This is possible because moving targets have motion differing from that of the background. 2

3 Sense 35 4 Covers 3 degrees elevation 85 Detect Track/Declare Covers 1 degrees azimuth (~1/2 of final design) Figure 2. Brassboard Coverage and Equipment 19 chassis Processor (FPGAs) Processor (FPGAs) Processor (FPGAs) Buffer (DRAM) FSB Tracking and Declaration (Pentium 4) PCI Diagnostic Tools High Bandwidth Camera Link Video Low Bandwidth Binary Data Digital Video Recorder Digital Video Recorder Inertial Measurement Unit Digital Video Recorder IRIG Timer Data Logger GPS Figure 3. Brasboard Real-Time Architecture FPGAs are moving rapidly into the mainstream of embedded high performance computing applications and as such, provided an important enabling technology for DAA. A commercial PCI board capable of expansion by adding daughter cards was selected to facilitate rapid development of a real-time detection processor. Figure 4 3

4 shows the architecture of both the PCI card and the daughter cards, provided by Nallatech Corporation. This hardware was used to implement the detection processor. Figure 4. Commercial Real-Time Processing Hardware A Kalmam tracker was implemented in software, illustrated in Figure 5, running on a Pentium 4 microprocessor. A modified version of the Linux open source operating system was also used. The tracker is the principal application running under Linux, but some ancillary functions responsible for logging low-bandwidth data and managing peripherals. Figure 5. Real-Time Tracking Software Design 4

5 V. Methodology The demonstration utilized the six-seat, twin-engine Aero Commander aircraft shown in Figure 6 as a surrogate ROA. The Beech Bonanza shown in the same figure was the intruder aircraft. Three sensors were mounted in a specially designed aircraft nose cone as shown in Figure 7 to provide coverage shown in Figure 2. The processing and data recording equipment were installed in a custom-designed rack, which replaced the middle row of seats in the Aero Commander. The aircraft were flown toward each other in a series of near-collision engagements. A 5 altitude separation was maintained for safety purposes. Engagements concentrated on nose-on geometries since this was the most challenging (smallest profile of the approaching aircraft and longest detection range requirement). Engagements were also contrived to close in the overlap region of two sensor fields of view. Specific engagements flown are shown in Table 1. During each engagement, the operator could view video data from any one sensor at a time. Output from the detection processor (i.e. the FPGA boards) was indicated on the screen in real time. Output from the track processor was logged to a hard disk for later, off-line analysis. Raw video data from all three sensors was recorded with a time-stamp on each frame. GPS and inertial measurement data were also timestamped and recorded. Intruder Aircraft Installation Controls Surrogate UAV Test Aircraft Figure 6. Demonstration Assets Figure 7. Plan, Side, and Three-Dimensional Drawings of s Installed on Surrogate UAV 5

6 Table 1. Demonstration Scenarios Engagement Number Altitude Diff (ft) Approach Angle (deg) Offset (NM) Heading VI. Results and Conclusions The system functioned reliably during the demonstration. Specifically, the three detection processor sub-systems kept pace with data from the sensors and did not drop any frames of raw data. Likewise, the tracking software kept pace with the detection processors without dropping frames of detection data. and false detection probabilities were consistent with results from the previous, non-real-time demonstration. Specifically, initial detection ranges were consistently greater than four nautical miles with confidences near 1% and false detection probabilities around.5%. The tracking software tracked targets across the seam between two sensor fields of view reliably, but briefly showed two tracks in the overlap region in some of the engagements. Based on these observations, the brassboard system met the demonstration goals, albeit with the caveat that the tracking software for handling the overlap regions needs improvement. VII. Acknowledgements The authors wish to thank the Unmanned Air Vehicle Battlelab for supporting the flight demonstration of the technology discussed. VIII. References 1. Global Hawk ORD CAF I/II-C Basic Systems for the Global Hawk Unmanned Aerial Vehicle (ROA) System, Air Force Command and Control & Intelligence, Surveillance, and Reconnaissance Center, (September 2) 2. RQ-1 Predator ORD # CAF 3-9-I-A, 24 June MQ-9 Capability Development Document (Draft), 3 Sep FAA Order 761.4J: Special Military Operations, Change 2 (Effective July 12, 21) 5. McCalmont, J., Utt, J. and Deschenes, M., Detect And Avoid Technology Demonstration, Air Force Research Laboratory (AFRL/SNJT), Wright Patterson AFB, OH, and Defense Research Associates, Inc., Beavercreek, OH (22) 6. Bryner, M., McCalmont, J., Utt J., Global Hawk Definition of Equivalent Level of Safety Requirements See and Avoid (SAA), Proceedings of the 23 UAV Technical Analysis and Applications Conference 7. Air Force Instruction 11-22, Vol. 3, General Flight Rules, (June 98) 6

Development of a Sense and Avoid System

Development of a Sense and Avoid System Infotech@Aerospace 26-29 September 2005, Arlington, Virginia AIAA 2005-7177 Development of a Sense and Avoid System Mr. James Utt * Defense Research Associates, Inc., Beavercreek, OH 45431 Dr. John McCalmont

More information

ACAS Xu UAS Detect and Avoid Solution

ACAS Xu UAS Detect and Avoid Solution ACAS Xu UAS Detect and Avoid Solution Wes Olson 8 December, 2016 Sponsor: Neal Suchy, TCAS Program Manager, AJM-233 DISTRIBUTION STATEMENT A. Approved for public release: distribution unlimited. Legal

More information

Jager UAVs to Locate GPS Interference

Jager UAVs to Locate GPS Interference JIFX 16-1 2-6 November 2015 Camp Roberts, CA Jager UAVs to Locate GPS Interference Stanford GPS Research Laboratory and the Stanford Intelligent Systems Lab Principal Investigator: Sherman Lo, PhD Area

More information

Copyrighted Material - Taylor & Francis

Copyrighted Material - Taylor & Francis 22 Traffic Alert and Collision Avoidance System II (TCAS II) Steve Henely Rockwell Collins 22. Introduction...22-22.2 Components...22-2 22.3 Surveillance...22-3 22. Protected Airspace...22-3 22. Collision

More information

Applying Multisensor Information Fusion Technology to Develop an UAV Aircraft with Collision Avoidance Model

Applying Multisensor Information Fusion Technology to Develop an UAV Aircraft with Collision Avoidance Model Applying Multisensor Information Fusion Technology to Develop an UAV Aircraft with Collision Avoidance Model by Dr. Buddy H Jeun and John Younker Sensor Fusion Technology, LLC 4522 Village Springs Run

More information

SURVEILLANCE MONITORING OF PARALLEL PRECISION APPROACHES IN A FREE FLIGHT ENVIRONMENT. Carl Evers Dan Hicok Rannoch Corporation

SURVEILLANCE MONITORING OF PARALLEL PRECISION APPROACHES IN A FREE FLIGHT ENVIRONMENT. Carl Evers Dan Hicok Rannoch Corporation SURVEILLANCE MONITORING OF PARALLEL PRECISION APPROACHES IN A FREE FLIGHT ENVIRONMENT Carl Evers (cevers@rannoch.com), Dan Hicok Rannoch Corporation Gene Wong Federal Aviation Administration (FAA) ABSTRACT

More information

Phase One 190MP Aerial System

Phase One 190MP Aerial System White Paper Phase One 190MP Aerial System Introduction Phase One Industrial s 100MP medium format aerial camera systems have earned a worldwide reputation for its high performance. They are commonly used

More information

Applying Multisensor Information Fusion Technology to Develop an UAV Aircraft with Collision Avoidance Model

Applying Multisensor Information Fusion Technology to Develop an UAV Aircraft with Collision Avoidance Model 1 Applying Multisensor Information Fusion Technology to Develop an UAV Aircraft with Collision Avoidance Model {Final Version with

More information

2. Radar receives and processes this request, and forwards it to Ground Datalink Processor (in our case named GRATIS)

2. Radar receives and processes this request, and forwards it to Ground Datalink Processor (in our case named GRATIS) 1 Short Description The Traffic Information Service (TIS) provides information to the cockpit via data link that is similar to VFR radar traffic advisories normally received over voice radio. TIS is intended

More information

Automatic Dependent Surveillance -ADS-B

Automatic Dependent Surveillance -ADS-B ASECNA Workshop on ADS-B (Dakar, Senegal, 22 to 23 July 2014) Automatic Dependent Surveillance -ADS-B Presented by FX SALAMBANGA Regional Officer, CNS WACAF OUTLINE I Definition II Principles III Architecture

More information

A Review of Vulnerabilities of ADS-B

A Review of Vulnerabilities of ADS-B A Review of Vulnerabilities of ADS-B S. Sudha Rani 1, R. Hemalatha 2 Post Graduate Student, Dept. of ECE, Osmania University, 1 Asst. Professor, Dept. of ECE, Osmania University 2 Email: ssrani.me.ou@gmail.com

More information

UAV PHOTOGRAMMETRY COMPARED TO TRADITIONAL RTK GPS SURVEYING

UAV PHOTOGRAMMETRY COMPARED TO TRADITIONAL RTK GPS SURVEYING UAV PHOTOGRAMMETRY COMPARED TO TRADITIONAL RTK GPS SURVEYING Brad C. Mathison and Amber Warlick March 20, 2016 Fearless Eye Inc. Kansas City, Missouri www.fearlesseye.com KEY WORDS: UAV, UAS, Accuracy

More information

MK-XII/A IFF Transponders

MK-XII/A IFF Transponders DEFENSE and SECURITY MK-XII/A IFF Transponders Defense and security in five continents indracompany.com TXP-2000 TXP-2000N TXP-25S5 MK-XII/A IFF Transponders TXP-2000 A new family of transponders has been

More information

Experimental Cooperative Control of Fixed-Wing Unmanned Aerial Vehicles

Experimental Cooperative Control of Fixed-Wing Unmanned Aerial Vehicles Experimental Cooperative Control of Fixed-Wing Unmanned Aerial Vehicles Selcuk Bayraktar, Georgios E. Fainekos, and George J. Pappas GRASP Laboratory Departments of ESE and CIS University of Pennsylvania

More information

Commercializing Federal R&D: Secrets to Startup Success

Commercializing Federal R&D: Secrets to Startup Success Commercializing Federal R&D: Secrets to Startup Success Janeya Griffin NASA s Armstrong Flight Research Center Kraettli L. Epperson Vigilant Aerospace Systems Agenda What is FlightHorizon? Vetting federal

More information

Sample Copy. Not For Distribution.

Sample Copy. Not For Distribution. Photogrammetry, GIS & Remote Sensing Quick Reference Book i EDUCREATION PUBLISHING Shubham Vihar, Mangla, Bilaspur, Chhattisgarh - 495001 Website: www.educreation.in Copyright, 2017, S.S. Manugula, V.

More information

ARCHIVED REPORT. For data and forecasts on current programs please visit or call

ARCHIVED REPORT. For data and forecasts on current programs please visit   or call Radar Forecast ARCHIVED REPORT For data and forecasts on current programs please visit www.forecastinternational.com or call +1 203.426.0800 ASR-23SS - Archived 08/2003 Outlook Production complete Procured

More information

PROGRESS ON THE SIMULATOR AND EYE-TRACKER FOR ASSESSMENT OF PVFR ROUTES AND SNI OPERATIONS FOR ROTORCRAFT

PROGRESS ON THE SIMULATOR AND EYE-TRACKER FOR ASSESSMENT OF PVFR ROUTES AND SNI OPERATIONS FOR ROTORCRAFT PROGRESS ON THE SIMULATOR AND EYE-TRACKER FOR ASSESSMENT OF PVFR ROUTES AND SNI OPERATIONS FOR ROTORCRAFT 1 Rudolph P. Darken, 1 Joseph A. Sullivan, and 2 Jeffrey Mulligan 1 Naval Postgraduate School,

More information

KMD 550/850. Traffic Avoidance Function (TCAS/TAS/TIS) Pilot s Guide Addendum. Multi-Function Display. For Software Version 01/13 or later

KMD 550/850. Traffic Avoidance Function (TCAS/TAS/TIS) Pilot s Guide Addendum. Multi-Function Display. For Software Version 01/13 or later N B KMD 550/850 Multi-Function Display Traffic Avoidance Function (TCAS/TAS/TIS) Pilot s Guide Addendum For Software Version 01/13 or later Revision 3 Jun/2004 006-18238-0000 The information contained

More information

AIR ROUTE SURVEILLANCE 3D RADAR

AIR ROUTE SURVEILLANCE 3D RADAR AIR TRAFFIC MANAGEMENT AIR ROUTE SURVEILLANCE 3D RADAR Supplying ATM systems around the world for more than 30 years indracompany.com ARSR-10D3 AIR ROUTE SURVEILLANCE 3D RADAR ARSR 3D & MSSR Antenna Medium

More information

SYSTEM AND METHOD FOR SENSING AIRCRAFT AND OTHER OBJECTS

SYSTEM AND METHOD FOR SENSING AIRCRAFT AND OTHER OBJECTS 1 UNITED STATES PROVISIONAL APPLICATION FOR PATENT FOR SYSTEM AND METHOD FOR SENSING AIRCRAFT AND OTHER OBJECTS INVENTOR: JED MARGOLIN SYSTEM AND METHOD FOR SENSING AIRCRAFT AND OTHER OBJECTS BACKGROUND

More information

FROM IN-FLIGHT SIMULATORS TO UAV SURROGATES

FROM IN-FLIGHT SIMULATORS TO UAV SURROGATES FROM IN-FLIGHT SIMULATORS TO UAV SURROGATES Ryan P. McMahon Associate Program Manager Calspan Corporation Telephone: 716-236-1030 E-mail: ryan.mcmahon@calspan.com ABSTRACT Calspan has been the worldwide

More information

Willie D. Caraway III Randy R. McElroy

Willie D. Caraway III Randy R. McElroy TECHNICAL REPORT RD-MG-01-37 AN ANALYSIS OF MULTI-ROLE SURVIVABLE RADAR TRACKING PERFORMANCE USING THE KTP-2 GROUP S REAL TRACK METRICS Willie D. Caraway III Randy R. McElroy Missile Guidance Directorate

More information

Trajectory Assessment Support for Air Traffic Control

Trajectory Assessment Support for Air Traffic Control AIAA Infotech@Aerospace Conference andaiaa Unmanned...Unlimited Conference 6-9 April 2009, Seattle, Washington AIAA 2009-1864 Trajectory Assessment Support for Air Traffic Control G.J.M. Koeners

More information

Stratollites set to provide persistent-image capability

Stratollites set to provide persistent-image capability Stratollites set to provide persistent-image capability [Content preview Subscribe to Jane s Intelligence Review for full article] Persistent remote imaging of a target area is a capability previously

More information

WIDE AREA MULTILATERATION system

WIDE AREA MULTILATERATION system AIR TRAFFIC MANAGEMENT WIDE AREA MULTILATERATION system Supplying ATM systems around the world for more than 30 years indracompany.com WAM WIDE AREA MULTILATERATION system The highest performance with

More information

New and Emerging Technologies

New and Emerging Technologies New and Emerging Technologies Edwin E. Herricks University of Illinois Center of Excellence for Airport Technology (CEAT) Airport Safety Management Program (ASMP) Reality Check! There are no new basic

More information

Flexible Hybrid Electronics for Aerospace Applications

Flexible Hybrid Electronics for Aerospace Applications Flexible Hybrid Electronics for Aerospace Applications B.J. Leever, B. Maruyama, M.F. Durstock, J.D. Berrigan, C.E. Tabor, A.T. Juhl Integrity Service Excellence AFRL/RXAS Materials & Manufacturing Directorate

More information

Sense and Avoid: Analysis of Sensor Design Factors for Optimal Deconfliction

Sense and Avoid: Analysis of Sensor Design Factors for Optimal Deconfliction Sense and Avoid: Analysis of Sensor Design Factors for Optimal Deconfliction Basically, we want this: For these: Background: UAVs Weight Mid-Sized UAVs The Big Ones Small UAVs MAVs The area of study for

More information

39N6E KASTA-2E2 Low-Altitude 3D All-Round Surveillance Radar

39N6E KASTA-2E2 Low-Altitude 3D All-Round Surveillance Radar 39N6E KASTA-2E2 Low-Altitude 3D All-Round Surveillance Radar The Kasta-2E2 low-altitude 3D all-round surveillance radar is designed to control airspace and to perform automatic detection, range/azimuth/altitude

More information

THE DEVELOPMENT OF A LOW-COST NAVIGATION SYSTEM USING GPS/RDS TECHNOLOGY

THE DEVELOPMENT OF A LOW-COST NAVIGATION SYSTEM USING GPS/RDS TECHNOLOGY ICAS 2 CONGRESS THE DEVELOPMENT OF A LOW-COST NAVIGATION SYSTEM USING /RDS TECHNOLOGY Yung-Ren Lin, Wen-Chi Lu, Ming-Hao Yang and Fei-Bin Hsiao Institute of Aeronautics and Astronautics, National Cheng

More information

Unmanned Air Systems. Naval Unmanned Combat. Precision Navigation for Critical Operations. DEFENSE Precision Navigation

Unmanned Air Systems. Naval Unmanned Combat. Precision Navigation for Critical Operations. DEFENSE Precision Navigation NAVAIR Public Release 2012-152. Distribution Statement A - Approved for public release; distribution is unlimited. FIGURE 1 Autonomous air refuleing operational view. Unmanned Air Systems Precision Navigation

More information

THREE DIMENSIONAL FLASH LADAR FOCAL PLANES AND TIME DEPENDENT IMAGING

THREE DIMENSIONAL FLASH LADAR FOCAL PLANES AND TIME DEPENDENT IMAGING THREE DIMENSIONAL FLASH LADAR FOCAL PLANES AND TIME DEPENDENT IMAGING ROGER STETTNER, HOWARD BAILEY AND STEVEN SILVERMAN Advanced Scientific Concepts, Inc. 305 E. Haley St. Santa Barbara, CA 93103 ASC@advancedscientificconcepts.com

More information

Geometry of Aerial Photographs

Geometry of Aerial Photographs Geometry of Aerial Photographs Aerial Cameras Aerial cameras must be (details in lectures): Geometrically stable Have fast and efficient shutters Have high geometric and optical quality lenses They can

More information

An Introduction to Airline Communication Types

An Introduction to Airline Communication Types AN INTEL COMPANY An Introduction to Airline Communication Types By Chip Downing, Senior Director, Aerospace & Defense WHEN IT MATTERS, IT RUNS ON WIND RIVER EXECUTIVE SUMMARY Today s global airliners use

More information

Silent Sentry. Lockheed Martin Mission Systems. Jonathan Baniak Dr. Gregory Baker Ann Marie Cunningham Lorraine Martin.

Silent Sentry. Lockheed Martin Mission Systems. Jonathan Baniak Dr. Gregory Baker Ann Marie Cunningham Lorraine Martin. Silent Sentry Passive Surveillance Lockheed Martin Mission Systems Jonathan Baniak Dr. Gregory Baker Ann Marie Cunningham Lorraine Martin June 7, 1999 6/7/99 1 Contact: Lorraine Martin Telephone: (301)

More information

Special Projects Office. Mr. Lee R. Moyer Special Projects Office. DARPATech September 2000

Special Projects Office. Mr. Lee R. Moyer Special Projects Office. DARPATech September 2000 Mr. Lee R. Moyer DARPATech 2000 6-8 September 2000 1 CC&D Tactics Pose A Challenge to U.S. Targeting Systems The Challenge: Camouflage, Concealment and Deception techniques include: Masking: Foliage cover,

More information

Aerial photography: Principles. Frame capture sensors: Analog film and digital cameras

Aerial photography: Principles. Frame capture sensors: Analog film and digital cameras Aerial photography: Principles Frame capture sensors: Analog film and digital cameras Overview Introduction Frame vs scanning sensors Cameras (film and digital) Photogrammetry Orthophotos Air photos are

More information

Characteristics and spectrum considerations for sense and avoid systems use on unmanned aircraft systems

Characteristics and spectrum considerations for sense and avoid systems use on unmanned aircraft systems Report ITU-R M.2204 (11/2010) Characteristics and spectrum considerations for sense and avoid systems use on unmanned aircraft systems M Series Mobile, radiodetermination, amateur and related satellites

More information

Radar Systems.

Radar Systems. www.aselsan.com.tr Radar Systems With extensive radar heritage exceeding 20 years, ASELSAN is a new generation manufacturer of indigenous, state-ofthe-art radar systems. ASELSAN s radar product portfolio

More information

SURVEILLANCE DATA EXCHANGE. Part 18 : Category 019. Multilateration System Status Messages

SURVEILLANCE DATA EXCHANGE. Part 18 : Category 019. Multilateration System Status Messages EUROPEAN ORGANISATION FOR THE SAFETY OF AIR NAVIGATION E U R O C O N T R O L EUROCONTROL STANDARD DOCUMENT FOR SURVEILLANCE DATA EXCHANGE Part 18 : Category 019 Multilateration System Status Messages Edition

More information

DLR Project ADVISE-PRO Advanced Visual System for Situation Awareness Enhancement Prototype Introduction The Project ADVISE-PRO

DLR Project ADVISE-PRO Advanced Visual System for Situation Awareness Enhancement Prototype Introduction The Project ADVISE-PRO DLR Project ADVISE-PRO Advanced Visual System for Situation Awareness Enhancement Prototype Dr. Bernd Korn DLR, Institute of Flight Guidance Lilienthalplatz 7 38108 Braunschweig Bernd.Korn@dlr.de phone

More information

VCU Skyline. Team Members: Project Advisor: Dr. Robert Klenke. Last Modified May 13, 2004 VCU SKYLINE 1

VCU Skyline. Team Members: Project Advisor: Dr. Robert Klenke. Last Modified May 13, 2004 VCU SKYLINE 1 VCU Skyline Last Modified May 13, 2004 Team Members: Abhishek Handa Kevin Van Brittiany Wynne Jeffrey E. Quiñones Project Advisor: Dr. Robert Klenke VCU SKYLINE 1 * Table of Contents I. Abstract... 3 II.

More information

11 Traffic-alert and Collision Avoidance System (TCAS)

11 Traffic-alert and Collision Avoidance System (TCAS) 11 Traffic-alert and Collision Avoidance System (TCAS) INSTRUMENTATION 11.1 Introduction In the early nineties the American FAA stated that civil aircraft flying in US airspace were equipped with a Traffic-alert

More information

Copyright Notice. William A. Skillman. March 12, 2011

Copyright Notice. William A. Skillman. March 12, 2011 Copyright Notice Environmental Effects on Airborne Radar Performance William A. Skillman March 12, 2011 Copyright IEEE 2011 Environmental Effects on Airborne Radar Performance William A. Skillman, Life

More information

Small Airport Surveillance Sensor (SASS)

Small Airport Surveillance Sensor (SASS) Small Airport Surveillance Sensor (SASS) Matthew J. Rebholz 27 October 2015 Sponsor: Matthew Royston, ANG-C52, Surveillance Branch (Andras Kovacs, Manager) Distribution Statement A. Approved for public

More information

UNCLASSIFIED R-1 ITEM NOMENCLATURE FY 2013 OCO

UNCLASSIFIED R-1 ITEM NOMENCLATURE FY 2013 OCO Exhibit R-2, RDT&E Budget Item Justification: PB 2013 Air Force DATE: February 2012 BA 3: Advanced Development (ATD) COST ($ in Millions) Program Element 75.103 74.009 64.557-64.557 61.690 67.075 54.973

More information

1 st IFAC Conference on Mechatronic Systems - Mechatronics 2000, September 18-20, 2000, Darmstadt, Germany

1 st IFAC Conference on Mechatronic Systems - Mechatronics 2000, September 18-20, 2000, Darmstadt, Germany 1 st IFAC Conference on Mechatronic Systems - Mechatronics 2000, September 18-20, 2000, Darmstadt, Germany SPACE APPLICATION OF A SELF-CALIBRATING OPTICAL PROCESSOR FOR HARSH MECHANICAL ENVIRONMENT V.

More information

Total Border Security Surveillance

Total Border Security Surveillance Total Border Security Surveillance Item Type text; Proceedings Authors Herold, Fredrick W. Publisher International Foundation for Telemetering Journal International Telemetering Conference Proceedings

More information

FLY EYE RADAR MINE DETECTION GROUND PENETRATING RADAR ON TETHERED DRONE PASSIVE RADAR FOR SMALL UAS PASSIVE SMALL PROJECTILE TRACKING RADAR

FLY EYE RADAR MINE DETECTION GROUND PENETRATING RADAR ON TETHERED DRONE PASSIVE RADAR FOR SMALL UAS PASSIVE SMALL PROJECTILE TRACKING RADAR PASSIVE RADAR FOR SMALL UAS PLANAR MONOLITHICS INDUSTRIES, INC. East Coast: 7311F GROVE ROAD, FREDERICK, MD 21704 USA PHONE: 301-662-5019 FAX: 301-662-2029 West Coast: 4921 ROBERT J. MATHEWS PARKWAY, SUITE

More information

The EDA SUM Project. Surveillance in an Urban environment using Mobile sensors. 2012, September 13 th - FMV SENSORS SYMPOSIUM 2012

The EDA SUM Project. Surveillance in an Urban environment using Mobile sensors. 2012, September 13 th - FMV SENSORS SYMPOSIUM 2012 Surveillance in an Urban environment using Mobile sensors 2012, September 13 th - FMV SENSORS SYMPOSIUM 2012 TABLE OF CONTENTS European Defence Agency Supported Project 1. SUM Project Description. 2. Subsystems

More information

Remote Sensing Calibration Solutions

Remote Sensing Calibration Solutions Remote Sensing Calibration Solutions Cameras, Sensors and Focal Plane Arrays Multispectral and Hyperspectral Imagers Small Satellite Imagers Earth Observation Systems SWIR Band Science and Imaging Reconnaissance

More information

Integrated Safety Envelopes

Integrated Safety Envelopes Integrated Safety Envelopes Built-in Restrictions of Navigable Airspace Edward A. Lee Professor, EECS, UC Berkeley NSF / OSTP Workshop on Information Technology Research for Critical Infrastructure Protection

More information

Israel Railways No Fault Liability Renewal The Implementation of New Technological Safety Devices at Level Crossings. Amos Gellert, Nataly Kats

Israel Railways No Fault Liability Renewal The Implementation of New Technological Safety Devices at Level Crossings. Amos Gellert, Nataly Kats Mr. Amos Gellert Technological aspects of level crossing facilities Israel Railways No Fault Liability Renewal The Implementation of New Technological Safety Devices at Level Crossings Deputy General Manager

More information

Performance objectives and functional requirements for the use of improved hybrid surveillance in European environment

Performance objectives and functional requirements for the use of improved hybrid surveillance in European environment Performance objectives and functional requirements for the use of improved hybrid surveillance in European environment Document information Project TCAS Evolution Project Number 09.47.00 Project Manager

More information

EE Chapter 14 Communication and Navigation Systems

EE Chapter 14 Communication and Navigation Systems EE 2145230 Chapter 14 Communication and Navigation Systems Two way radio communication with air traffic controllers and tower operators is necessary. Aviation electronics or avionics: Avionic systems cover

More information

MILITARY RADAR TRENDS AND ANALYSIS REPORT

MILITARY RADAR TRENDS AND ANALYSIS REPORT MILITARY RADAR TRENDS AND ANALYSIS REPORT 2016 CONTENTS About the research 3 Analysis of factors driving innovation and demand 4 Overview of challenges for R&D and implementation of new radar 7 Analysis

More information

RF 1090 MHZ BAND LOAD MODEL

RF 1090 MHZ BAND LOAD MODEL RF 1090 MHZ BAND LOAD MODEL Tomáš Lipták 1, Stanislav Pleninger 2 Summary: Nowadays, the load of 1090 MHz frequency represents a key factor determining the quality of surveillance application in terms

More information

UAV + Onboard Pilot = enhanced performance Light Aircraft?

UAV + Onboard Pilot = enhanced performance Light Aircraft? Royal Aeronautical Society Light Aircraft Design: Methods and Tools 2014 17 November, 2014 UAV + Onboard Pilot = enhanced performance Light Aircraft? Dr Joseph Barnard joseph.barnard@barnardmicrosystems.com

More information

Multibeam Monopulse Radar for Airborne Sense and Avoid System

Multibeam Monopulse Radar for Airborne Sense and Avoid System Multibeam Monopulse Radar for Airborne Sense and Avoid System Dr. Ashok Gorwara a, Dr. Pavlo Molchanov* a a Planar Monolithics Industries Inc., 7311-F Grove Road, Frederick, MD, USA 21704 ABSTRACT The

More information

Recent Progress in the Development of On-Board Electronics for Micro Air Vehicles

Recent Progress in the Development of On-Board Electronics for Micro Air Vehicles Recent Progress in the Development of On-Board Electronics for Micro Air Vehicles Jason Plew Jason Grzywna M. C. Nechyba Jason@mil.ufl.edu number9@mil.ufl.edu Nechyba@mil.ufl.edu Machine Intelligence Lab

More information

Real-Time Spectrum Monitoring System Provides Superior Detection And Location Of Suspicious RF Traffic

Real-Time Spectrum Monitoring System Provides Superior Detection And Location Of Suspicious RF Traffic Real-Time Spectrum Monitoring System Provides Superior Detection And Location Of Suspicious RF Traffic By Malcolm Levy, Vice President, Americas, CRFS Inc., California INTRODUCTION TO RF SPECTRUM MONITORING

More information

The Detect & Avoid Requirements and Technologies for small RPAS

The Detect & Avoid Requirements and Technologies for small RPAS Royal Aeronautical Society Detect & Avoid Workshop 2015 31 March, 2015 The Detect & Avoid Requirements and Technologies for small RPAS Dr Joseph Barnard joseph.barnard@barnardmicrosystems.com Barnard Microsystems

More information

OBSTACLE AWARENESS AND COLLISION AVOIDANCE RADAR SENSOR SYSTEM FOR LOW-ALTITUDE FLYING SMART UAV

OBSTACLE AWARENESS AND COLLISION AVOIDANCE RADAR SENSOR SYSTEM FOR LOW-ALTITUDE FLYING SMART UAV OBSTACLE AWARENESS AND COLLISION AVOIDANCE RADAR SENSOR SYSTEM FOR LOW-ALTITUDE FLYING SMART UAV Young K Kwag and Jung W Kang, Avionics Dept. AERC, Hanhk Aviation University, Seoul, Korea Abstract In this

More information

Bayesian Filter to accurately track airport moving objects

Bayesian Filter to accurately track airport moving objects Bayesian Filter to accurately track airport moving objects Hamza Taheri Moving from human based operations to machine-based systems is a global trend Congestion in airports complicates surveillance, and

More information

HALS-H1 Ground Surveillance & Targeting Helicopter

HALS-H1 Ground Surveillance & Targeting Helicopter ARATOS-SWISS Homeland Security AG & SMA PROGRESS, LLC HALS-H1 Ground Surveillance & Targeting Helicopter Defense, Emergency, Homeland Security (Border Patrol, Pipeline Monitoring)... Automatic detection

More information

White paper on SP25 millimeter wave radar

White paper on SP25 millimeter wave radar White paper on SP25 millimeter wave radar Hunan Nanoradar Science and Technology Co.,Ltd. Version history Date Version Version description 2016-08-22 1.0 the 1 st version of white paper on SP25 Contents

More information

PHOTOGRAMMETRY STEREOSCOPY FLIGHT PLANNING PHOTOGRAMMETRIC DEFINITIONS GROUND CONTROL INTRODUCTION

PHOTOGRAMMETRY STEREOSCOPY FLIGHT PLANNING PHOTOGRAMMETRIC DEFINITIONS GROUND CONTROL INTRODUCTION PHOTOGRAMMETRY STEREOSCOPY FLIGHT PLANNING PHOTOGRAMMETRIC DEFINITIONS GROUND CONTROL INTRODUCTION Before aerial photography and photogrammetry became a reliable mapping tool, planimetric and topographic

More information

Mode-S Receiver and ADS-B Decoder

Mode-S Receiver and ADS-B Decoder Group 24 - Mode-S Receiver and ADS-B Decoder 1 Mode-S Receiver and ADS-B Decoder Group 24 - Sand5 Michael Vose Sean Koceski Long Lam Motivation Group 24 - Mode-S Receiver and ADS-B Decoder 2 In this ever

More information

Design Methodology in the Development of Mechatronic Products -Part 1

Design Methodology in the Development of Mechatronic Products -Part 1 Design Methodology in the Development of Mechatronic Products -Part 1 Robert Bjärnemo Division of Machine Design at the Department of Design Sciences Agenda On the Concept of Mechatronics Characteristics

More information

Transponder Based Ranging

Transponder Based Ranging Transponder Based Ranging Transponderbasierte Abstandsmessung Gerrit Kalverkamp, Bernhard Schaffer Technische Universität München Outline Secondary radar principle Looking around corners: Diffraction of

More information

Improving Airport Planning & Development and Operations & Maintenance via Skyline 3D Software

Improving Airport Planning & Development and Operations & Maintenance via Skyline 3D Software Improving Airport Planning & Development and Operations & Maintenance via Skyline 3D Software By David Tamir, February 2014 Skyline Software Systems has pioneered web-enabled 3D information mapping and

More information

TCAS Functioning and Enhancements

TCAS Functioning and Enhancements TCAS Functioning and Enhancements Sathyan Murugan SASTRA University Tirumalaisamudram, Thanjavur - 613 402. Tamil Nadu, India. Aniruth A.Oblah KLN College of Engineering Pottapalayam 630611, Sivagangai

More information

UltraCam and UltraMap An Update

UltraCam and UltraMap An Update Photogrammetric Week '15 Dieter Fritsch (Ed.) Wichmann/VDE Verlag, Belin & Offenbach, 2015 Wiechert, Gruber 45 UltraCam and UltraMap An Update Alexander Wiechert, Michael Gruber, Graz ABSTRACT When UltraCam

More information

Relative Navigation, Timing & Data. Communications for CubeSat Clusters. Nestor Voronka, Tyrel Newton

Relative Navigation, Timing & Data. Communications for CubeSat Clusters. Nestor Voronka, Tyrel Newton Relative Navigation, Timing & Data Communications for CubeSat Clusters Nestor Voronka, Tyrel Newton Tethers Unlimited, Inc. 11711 N. Creek Pkwy S., Suite D113 Bothell, WA 98011 425-486-0100x678 voronka@tethers.com

More information

The Army s Future Tactical UAS Technology Demonstrator Program

The Army s Future Tactical UAS Technology Demonstrator Program The Army s Future Tactical UAS Technology Demonstrator Program This information product has been reviewed and approved for public release, distribution A (Unlimited). Review completed by the AMRDEC Public

More information

Customer Showcase > Defense and Intelligence

Customer Showcase > Defense and Intelligence Customer Showcase Skyline TerraExplorer is a critical visualization technology broadly deployed in defense and intelligence, public safety and security, 3D geoportals, and urban planning markets. It fuses

More information

PHOTOGRAMMETRIC RESECTION DIFFERENCES BASED ON LABORATORY vs. OPERATIONAL CALIBRATIONS

PHOTOGRAMMETRIC RESECTION DIFFERENCES BASED ON LABORATORY vs. OPERATIONAL CALIBRATIONS PHOTOGRAMMETRIC RESECTION DIFFERENCES BASED ON LABORATORY vs. OPERATIONAL CALIBRATIONS Dean C. MERCHANT Topo Photo Inc. Columbus, Ohio USA merchant.2@osu.edu KEY WORDS: Photogrammetry, Calibration, GPS,

More information

SENLUTION Miniature Angular & Heading Reference System The World s Smallest Mini-AHRS

SENLUTION Miniature Angular & Heading Reference System The World s Smallest Mini-AHRS SENLUTION Miniature Angular & Heading Reference System The World s Smallest Mini-AHRS MotionCore, the smallest size AHRS in the world, is an ultra-small form factor, highly accurate inertia system based

More information

MSPO 2017: POLISH RADAR CAPABILITIES

MSPO 2017: POLISH RADAR CAPABILITIES aut. Maksymilian Dura 08.09.2017 MSPO 2017: POLISH RADAR CAPABILITIES MSPO International Defence Industry Exhibition organized in Kielce is yet another occasion for the PIT-RADWAR company to show that

More information

GPS SOLVES THE COMBAT PILOT TRAINING RANGE PROBLEMS

GPS SOLVES THE COMBAT PILOT TRAINING RANGE PROBLEMS GPS SOLVES THE COMBAT PILOT TRAINING RANGE PROBLEMS Item Type text; Proceedings Authors Hoefener, Carl E.; Wechel, Robert Van Publisher International Foundation for Telemetering Journal International Telemetering

More information

Name of Customer Representative: n/a (program was funded by Rockwell Collins) Phone Number:

Name of Customer Representative: n/a (program was funded by Rockwell Collins) Phone Number: Phase I Submission Name of Program: Synthetic Vision System for Head-Up Display Name of Program Leader: Jean J. Pollari Phone Number: (319) 295-8219 Email: jjpollar@rockwellcollins.com Postage Address:

More information

FLASH LiDAR KEY BENEFITS

FLASH LiDAR KEY BENEFITS In 2013, 1.2 million people died in vehicle accidents. That is one death every 25 seconds. Some of these lives could have been saved with vehicles that have a better understanding of the world around them

More information

ADS-B Introduction Greg Dunstone

ADS-B Introduction Greg Dunstone ADS-B Introduction Greg Dunstone Surveillance Program Lead, Airservices Australia SURVEILLANCE Basics Primary and Secondary radar Why do we need Surveillance? Why surveillance? Improved safety Reduced

More information

Airborne Satellite Communications on the Move Solutions Overview

Airborne Satellite Communications on the Move Solutions Overview Airborne Satellite Communications on the Move Solutions Overview High-Speed Broadband in the Sky The connected aircraft is taking the business of commercial airline to new heights. In-flight systems are

More information

Profiling Radiometer for Atmospheric and Cloud Observations PRACO

Profiling Radiometer for Atmospheric and Cloud Observations PRACO Profiling Radiometer for Atmospheric and Cloud Observations PRACO Boulder Environmental Sciences and Technology BEST Small startup company, established in 2006 Focused on radiometry ground based and airborne

More information

Introduction Objective and Scope p. 1 Generic Requirements p. 2 Basic Requirements p. 3 Surveillance System p. 3 Content of the Book p.

Introduction Objective and Scope p. 1 Generic Requirements p. 2 Basic Requirements p. 3 Surveillance System p. 3 Content of the Book p. Preface p. xi Acknowledgments p. xvii Introduction Objective and Scope p. 1 Generic Requirements p. 2 Basic Requirements p. 3 Surveillance System p. 3 Content of the Book p. 4 References p. 6 Maritime

More information

Orientation. Status. Available for sale. Application. terminal area. Contractors

Orientation. Status. Available for sale. Application. terminal area. Contractors Radar Forecast Outlook FI estimates that Raytheon will sell about three ASR-11 radar systems in the coming decade This forecast is being driven by the United States' need to replace aging terminal-area

More information

ADVANCED TECHNOLOGY DEMONSTRATOR FOR IR IMAGING MISSILE WARNING SYSTEM (FEBRUARY 2002)

ADVANCED TECHNOLOGY DEMONSTRATOR FOR IR IMAGING MISSILE WARNING SYSTEM (FEBRUARY 2002) ADVANCED TECHNOLOGY DEMONSTRATOR FOR IR IMAGING MISSILE WARNING SYSTEM (FEBRUARY 2002) Ingo Schwaetzer ingo.schwaetzer@bgt.de Page 1 von 15 Report Documentation Page Form Approved OMB No. 0704-0188 Public

More information

ADS-B and WFP Operators. Safety Advantages Security Concerns. Thomas Anthony Director U.S.C. Aviation Safety and Security Program ADS-B

ADS-B and WFP Operators. Safety Advantages Security Concerns. Thomas Anthony Director U.S.C. Aviation Safety and Security Program ADS-B ADS-B and WFP Operators Safety Advantages Security Concerns Thomas Anthony Director U.S.C. Aviation Safety and Security Program ADS-B How can ADS-B be useful for Humanitarian Air Operation? Are there security

More information

Remote Sensing using Bistatic GPS and a Digital Beam Steering Receiver

Remote Sensing using Bistatic GPS and a Digital Beam Steering Receiver Remote Sensing using Bistatic GPS and a Digital Beam Steering Receiver Alison Brown and Ben Mathews, NAVSYS Corporation BIOGRAPHY Alison Brown is the President and Chief Executive Officer of NAVSYS Corporation.

More information

AIRPORT MAPPING JUNE 2016 EXPLORING UAS EFFECTIVENESS GEOSPATIAL SLAM TECHNOLOGY FEMA S ROMANCE WITH LIDAR VOLUME 6 ISSUE 4

AIRPORT MAPPING JUNE 2016 EXPLORING UAS EFFECTIVENESS GEOSPATIAL SLAM TECHNOLOGY FEMA S ROMANCE WITH LIDAR VOLUME 6 ISSUE 4 VOLUME 6 ISSUE 4 JUNE 2016 AIRPORT MAPPING 18 EXPLORING UAS EFFECTIVENESS 29 GEOSPATIAL SLAM TECHNOLOGY 36 FEMA S ROMANCE WITH LIDAR Nearly 2,000 U.S. landfill facilities stand to gain from cost-effective

More information

CHAPTER 1 INTRODUCTION

CHAPTER 1 INTRODUCTION 1 CHAPTER 1 INTRODUCTION In maritime surveillance, radar echoes which clutter the radar and challenge small target detection. Clutter is unwanted echoes that can make target detection of wanted targets

More information

DURIP Distributed SDR testbed for Collaborative Research. Wednesday, November 19, 14

DURIP Distributed SDR testbed for Collaborative Research. Wednesday, November 19, 14 DURIP Distributed SDR testbed for Collaborative Research Distributed Software Defined Radar Testbed Collaborative research resource based on software defined radar (SDR) platforms that can adaptively modify

More information

Author s Name Name of the Paper Session. DYNAMIC POSITIONING CONFERENCE October 10-11, 2017 SENSORS SESSION. Sensing Autonomy.

Author s Name Name of the Paper Session. DYNAMIC POSITIONING CONFERENCE October 10-11, 2017 SENSORS SESSION. Sensing Autonomy. Author s Name Name of the Paper Session DYNAMIC POSITIONING CONFERENCE October 10-11, 2017 SENSORS SESSION Sensing Autonomy By Arne Rinnan Kongsberg Seatex AS Abstract A certain level of autonomy is already

More information

Ron Turner Technical Lead for Surface Systems. Syracuse, NY. Sensis Air Traffic Systems - 1

Ron Turner Technical Lead for Surface Systems. Syracuse, NY. Sensis Air Traffic Systems - 1 Multilateration Technology Overview Ron Turner Technical Lead for Surface Systems Sensis Corporation Syracuse, NY Sensis Air Traffic Systems - 1 Presentation Agenda Multilateration Overview Transponder

More information

Test Results from a Novel Passive Bistatic GPS Radar Using a Phased Sensor Array

Test Results from a Novel Passive Bistatic GPS Radar Using a Phased Sensor Array Test Results from a Novel Passive Bistatic GPS Radar Using a Phased Sensor Array Alison Brown and Ben Mathews, NAVSYS Corporation BIOGRAPHY Alison Brown is the Chief Visionary Officer of NAVSYS Corporation.

More information

Advisory Circular. U.S. Department of Transportation Federal Aviation Administration

Advisory Circular. U.S. Department of Transportation Federal Aviation Administration U.S. Department of Transportation Federal Aviation Administration Advisory Circular Subject: Airworthiness Approval of Automatic Date: 11/07/12 AC No: 20-165A Dependent Surveillance - Broadcast (ADS-B)

More information

This page is intentionally blank. GARMIN G1000 SYNTHETIC VISION AND PATHWAYS OPTION Rev 1 Page 2 of 27

This page is intentionally blank. GARMIN G1000 SYNTHETIC VISION AND PATHWAYS OPTION Rev 1 Page 2 of 27 This page is intentionally blank. 190-00492-15 Rev 1 Page 2 of 27 Revision Number Page Number(s) LOG OF REVISIONS Description FAA Approved Date of Approval 1 All Initial Release See Page 1 See Page 1 190-00492-15

More information

CALIBRATING THE NEW ULTRACAM OSPREY OBLIQUE AERIAL SENSOR Michael Gruber, Wolfgang Walcher

CALIBRATING THE NEW ULTRACAM OSPREY OBLIQUE AERIAL SENSOR Michael Gruber, Wolfgang Walcher CALIBRATING THE NEW ULTRACAM OSPREY OBLIQUE AERIAL SENSOR Michael Gruber, Wolfgang Walcher Microsoft UltraCam Business Unit Anzengrubergasse 8/4, 8010 Graz / Austria {michgrub, wwalcher}@microsoft.com

More information