im200 Payload Autonomy Interface for Heron USVs

Size: px
Start display at page:

Download "im200 Payload Autonomy Interface for Heron USVs"

Transcription

1 im200 Payload Autonomy Interface for Heron USVs Fall 2017 Alon Yaari, Michael Benjamin, Department of Mechanical Engineering, CSAIL MIT, Cambridge MA im200 Payload Autonomy Interface for Heron USVs 1 2 Using the im200 Application Thrust Modes Vehicle Position Magnetic Variation The XY Grid Configuration Parameters for im An Example MOOS Configuration Block Publications and Subscriptions for im Variables Published by im Variables Subscribed for by im im200 Payload Autonomy Interface for Heron USVs The im200 application is a driver that interfaces a MOOS community to the Clearpath Robotics Heron M300 vehicle. The onboard front-seat computer manages vehicle actuation per received instructions. Using a documented wire protocol, thrust commands from an outside entity are published to the front-seat via an IP port on its wireless Ethernet interface. The vehicle returns data from onboard navigation sensors and limited health status. The im200 application converts DESIRED * from the MOOS community into Clearpath protocol motor commands and pushes instructions to the vehicle. Regular position details received from the front-seat are parsed and published to the MOOS community as NAV * variables, along with an occasional battery voltage message. 2 Using the im200 Application 2.1 Thrust Modes As the M200 vehicle has two thrusters, one on each pontoon. Forward movement and turning is under differential-thrust control. To transit straight-ahead, thrust both motors equally, to turn toward the right, thrust only the left-side motor, and so on. Typically, the output of MOOS-IvP navigation decisions is desired rudder and thrust. Therefore, im200 has two thrust modes: 1

2 Rudder-thrust. In this mode, DESIRED THRUST and DESIRED RUDDER MOOS messages are the input to im200. They are translated into percent thrust and pushed to the vehicle for actuation. This is the default mode of im200 and requires no special parameters in the mission file to enact it. Direct-thrust. This mode is a pass-through, allowing another MOOS application to send exact thrust percentages to each thruster. DESIRED THRUST L and DESIRED THRUST R messages are the input to im200. Values are pushed to the vehicle for actuation. Direct-thrust mode is enacted when the direct thrust parameter is set to true in the mission file. 2.2 Vehicle Position The Clearpath controller in the M200 front-seat receives sentences from the GPS, digital compass, and IMU. A filter estimates pose and position, packages data into the wire protocol format, then pushes the data over the IP interface. The im200 application receives the 5Hz updates, parses incoming position data, then publishes the following messages: message name [prefix] X [prefix] Y [prefix] LAT [prefix] LON [prefix] SPEED [prefix] HEADING Description X-position on the local grid (based on current lat-lon) Y-position on the local grid (based on current lat-lon) Latitude, as reported by the Clearpath controller Longitude, as reported by the Clearpath controller Speed over ground, as reported by the Clearpath controller Heading,as reported by the Clearpath controller Each message name is preceded by [prefix], a string value set in the GPS PREFIX mission file parameter. By default, the prefix is NAV, making im200 the source of NAV * variables removing the need for a dedicated GPS or digital compass interface MOOS module. 2.3 Magnetic Variation The front-seat s estimation filter takes into account magnetic variation, the difference between true and magnetic north at the compass reading location. In the unlikely event that the offset is incorrect or in certain specific situations (e.g., taking readings from M200 while it is on the deck of a moving boat), the reported heading can be adjusted using the heading offset parameter. 2.4 The XY Grid The NAV X and NAV Y variables are transformations of latitude and longitude fixes provided by the M200 s integrated GPS. X,Y positions are referenced in number of meters from a 0,0 origin location as defined in the mission file. Historically, MOOS has used two different methods to convert geographic positions into X,Y, the MOOS Grid and UTM-based Grid. Note that in both cases, 0,0 will always be the origin specified in the mission file and the X,Y is a report of position in meters away from the origin in meters. MOOS Grid. Historically, the core MOOSGeodesy library included the concept of a local tangent plane centered about the origin. Angular distance of any position fix is converted using simple 2

3 trigonometry based on WGS84 spheroid approximations of the earth. Surface curvature is negligible within a 300 square kilometer area centered on the origin. UTM-based Grid. MOOSGeodesy has also included the option of transforming positions to X,Y using the Universal Transverse Mercator (UTM) projection. A concise description of UTM is provided by the USGS: Working with UTMbased transformations provides multiple benefits, including a larger area of accurate gird positions, compatibility to positioning systems outside of MOOS, and reliance on the dedicated proj.4 conversion code base instead of static historical functions. Which grid to use? Those without historical reasons to do so should use UTM-based X,Y transformations. Besides the benefits listed above, UTM-based Grid is the default for applications like pmarineviewer. MOOS Grid conversions are appropriate for those who must remain compatible with historical X,Y positions originally calculated using MOOS Grid. 3 Configuration Parameters for im200 The im200 application may be configured with a configuration block within a MOOS mission file, typically with a.moos file suffix. The following parameters are defined for im200: Listing 3.1: Configuration Parameters for im200. ip address: The IPv4 address of the M200 front-seat computer that is being interfaced with. Default value is localhost, which implies that the im200 application is being run on the front-seat vehicle itself. port number: At the defined ip address, this is the port number to communicate with the vehicle. gps prefix: This string is inserted at the start of X, Y, heading, and speed publications. Default is nav. The underscore will be added if not supplied in the mission file. direct thrust: When true, im200 is in direct-thrust mode. When false or if this parameter is omitted, im200 operates in rudder-thrust mode. See 2.1 for more details. heading offset: Degrees offset added to the published heading. Value can be negative. Default is 0.0. See 2.1 for more details. publish raw: The Clearpath controller publishes updates to im200 using NMEA sentences as defined in the formal wire protocol. When true, all sentences are published under the MOOS message M200 RAW NMEA, while still being processed normally by im200. No raw messages are published with false or if this parameter is omitted. max rudder: DESIRED RUDDER will be constrained to this value (+ or ) when converted to thrust values for the front-seat. Value must be a real number greater than 0.0 and less than Default value is max thrust: DESIRED THRUST will be constrained to this value when converted to thrust values for the front-seat. Value must be a real number greater than 0.0 and less than or equal to Default value is

4 publish thrust: xy source: When true, im200 publishes M200 THRUST L and M200 THRUST R MOOS messages whenever a thrust command is sent to the vehicle. Method for converting latitude and longitude position fixes into X,Y positions on the local grid. See?? for more details. Valid values are UTM (default) and GRID. If unsure, use the default value. 3.1 An Example MOOS Configuration Block An example MOOS configuration block is provided in Listing 2 below. This can also be obtained from a terminal window with: $ im200 --example or -e Listing 3.2: Example configuration of the im200 application. 1 ============================================================================ 2 im200 Example MOOS Configuration 3 ============================================================================ 4 5 ProcessConfig = im200 6 { 7 AppTick = 10 8 CommsTick = PORT_NUMBER = IP_ADDRESS = localhost // Default is localhost 12 GPS_PREFIX = NAV_ // Prepended to GPS position messages. 13 DIRECT_THRUST = false // Default is false. 14 // When true, vehicle is in direct-thrust mode. 15 // When false, vehicle is in rudder-thrust mode. 16 HEADING_OFFSET = 0.0 // Offset to add to published heading 17 PUBLISH_RAW = false // When true, publish all messages from 18 // front seat to M200_RAW_NMEA 19 MAX_RUDDER = 50.0 // Rudder value will be capped to this, +/- 20 MAX_THRUST = // Thrust value to each motor will be 21 // capped to this value, +/- 22 PUBLISH_THRUST = false // When true, publishes M200_THRUST_L and _R 23 } 4 Publications and Subscriptions for im200 The interface for im200, in terms of publications and subscriptions, is described below. This same information may also be obtained from the terminal with: $ im200 --interface or -i 4

5 4.1 Variables Published by im200 APPCAST: Contains an appcast report identical to the terminal output. Reports are posted only in response to an appcast request messages. [prefix] X: Last reported X position of the vehicle, in meters east or west of the MOOS origin. [prefix] Y: Last reported Y position of the vehicle, in meters north or south of the MOOS origin. [prefix] LAT: Last reported latitude of the vehicle, in decimal degrees. [prefix] LON: Last reported longitude of the vehicle, in decimal degrees. [prefix] SPEED: Last reported vehicle speed over ground, in meters per second. [prefix] HEADING: Last reported vehicle heading, in degrees clockwise from true north. Will be offset by heading offset, if defined. M200 BATTERY VOLTAGE: Last reported battery voltage, in volts. M200 RAW NMEA: If publish raw=true, all incoming Clearpath wire protocol messages will be published to this MOOS message. Note that im200 will continue to process messages when publishing raw. M200 THRUST L: Published at the time a thrust command is sent to the vehicle, if mission parameter publish thrust=true Value is the actual percent thrust requested at the left thruster. M200 THRUST R: Published at the time a thrust command is sent to the vehicle, if mission parameter publish thrust=true Value is the actual percent thrust requested at the right thruster. 4.2 Variables Subscribed for by im200 The im200 always subscribes for appcasting events: APPCAST REQ: A request to generate and post a new apppcast report, with reporting criteria, and expiration. When in direct thrust mode, im200 listens for commands to be sent directly to the motors: DESIRED THRUST L: Push this percent thrust value to the vehicle for commanding the left thruster. Constrained by im200 to 100.0and DESIRED THRUST R: Push this percent thrust value to the vehicle for commanding the right thruster. Constrained by im200 between 100.0and When in Ruddder thrust mode, im200 listens for commands to be sent directly to the motors: DESIRED THRUST: Percent thrust requested of the vehicle. When combined with the DESIRED RUDDER value, is used to calculate percent thrust for each motor. Constrained by im200 between the value set in mission file parameter max thrust and 0 the value. DESIRED RUDDER: Notional rudder angle requested of the vehicle. When combined with the DESIRED THRUST value, is used to calculate percent thrust for each motor. Constrained by im200 to between the value set in mission file parameter max rudder and 0.0 the value. 5

igpsdevice: A MOOS Driver for GPS Devices

igpsdevice: A MOOS Driver for GPS Devices igpsdevice: A MOOS Driver for GPS Devices Fall 2017 Alon Yaari, ayaari@mit.edu Michael Benjamin, mikerb@mit.edu Department of Mechanical Engineering, CSAIL MIT, Cambridge MA 02139 1 igpsdevice: A MOOS

More information

pbasiccontactmgr: Managing Platform Contacts

pbasiccontactmgr: Managing Platform Contacts pbasiccontactmgr: Managing Platform Contacts June 2018 Michael Benjamin, mikerb@mit.edu Department of Mechanical Engineering, CSAIL MIT, Cambridge MA 02139 1 Overview 1 2 Using pbasiccontactmgr 2 2.1 Contact

More information

GPS System Design and Control Modeling. Chua Shyan Jin, Ronald. Assoc. Prof Gerard Leng. Aeronautical Engineering Group, NUS

GPS System Design and Control Modeling. Chua Shyan Jin, Ronald. Assoc. Prof Gerard Leng. Aeronautical Engineering Group, NUS GPS System Design and Control Modeling Chua Shyan Jin, Ronald Assoc. Prof Gerard Leng Aeronautical Engineering Group, NUS Abstract A GPS system for the autonomous navigation and surveillance of an airship

More information

Megamark Arduino Library Documentation

Megamark Arduino Library Documentation Megamark Arduino Library Documentation The Choitek Megamark is an advanced full-size multipurpose mobile manipulator robotics platform for students, artists, educators and researchers alike. In our mission

More information

Multi-Agent Robotics with GPS Navigation

Multi-Agent Robotics with GPS Navigation Jay Joshi Edison High School 50 Boulevard of the Eagles Edison, NJ 08817 Multi-Agent Robotics with GPS Navigation Abstract The GPS Navigation project is a multi-agent robotics project. A GPS Navigation

More information

Marine Robotics. Alfredo Martins. Unmanned Autonomous Vehicles in Air Land and Sea. Politecnico Milano June 2016

Marine Robotics. Alfredo Martins. Unmanned Autonomous Vehicles in Air Land and Sea. Politecnico Milano June 2016 Marine Robotics Unmanned Autonomous Vehicles in Air Land and Sea Politecnico Milano June 2016 INESC TEC / ISEP Portugal alfredo.martins@inesctec.pt Tools 2 MOOS Mission Oriented Operating Suite 3 MOOS

More information

Lecture # 7 Coordinate systems and georeferencing

Lecture # 7 Coordinate systems and georeferencing Lecture # 7 Coordinate systems and georeferencing Coordinate Systems Coordinate reference on a plane Coordinate reference on a sphere Coordinate reference on a plane Coordinates are a convenient way of

More information

Line and polygon features can be created via on-screen digitizing.

Line and polygon features can be created via on-screen digitizing. This module explains how GPS works, sources of error, and error correction using real time or post processing differential correction. Cost and accuracy of different grades of GPS units are also part of

More information

NMEA2000- Par PGN. Mandatory Request, Command, or Acknowledge Group Function Receive/Transmit PGN's

NMEA2000- Par PGN. Mandatory Request, Command, or Acknowledge Group Function Receive/Transmit PGN's PGN Number Category Notes - Datum Local geodetic datum and datum offsets from a reference datum. T The Request / Command / Acknowledge Group type of 126208 - NMEA - Request function is defined by first

More information

The plan... CSE 6324 From control to actuators Michael Jenkin Office Hours: Sherman 1028 Wed 3-4. From the bottom up...

The plan... CSE 6324 From control to actuators Michael Jenkin Office Hours: Sherman 1028 Wed 3-4. From the bottom up... The plan... CSE 6324 From control to actuators Michael Jenkin jenkin@cse.yorku.ca Office Hours: Sherman 1028 Wed 3-4 Lectures this week No class next week Start building the week after (i) Need to sort

More information

041 GPS Interface (001 processor only)

041 GPS Interface (001 processor only) INSTRUMENTS,INC. 041 GPS Interface (001 processor only) 0 1 2 3 4 5 6 7 8 9 A B C D E F GPS Interface "S" addr None 1 2 3 4 5 6 7 chan. Enabled Disabled S2 S1 Ockam config 64 NMEA On=OK 1=Searching 2=No

More information

Piksi Multi Settings. 1 Introduction. Firmware Version v1.0.11

Piksi Multi Settings. 1 Introduction. Firmware Version v1.0.11 Firmware Version v1.0.11 1 Introduction Piksi Multi has a number of settings that can be controlled by the end user via the provided Piksi Console or through the SBP binary message protocol. This Document

More information

GPS Waypoint Application

GPS Waypoint Application GPS Waypoint Application Kris Koiner, Haytham ElMiligi and Fayez Gebali Department of Electrical and Computer Engineering University of Victoria Victoria, BC, Canada Email: {kkoiner, haytham, fayez}@ece.uvic.ca

More information

Generic Bathymetry Data - Interface Control Document

Generic Bathymetry Data - Interface Control Document Generic Bathymetry Data - Interface Control Document For WASSP Prepared by: Keith Fletcher Electronic Navigation Ltd October 15, 2013 Version 2.2 2013 by WASSP Ltd No part of this document should be reproduced

More information

GPS Sway. Coordinate Converter User Manual. Last Update: 15 Mar 07 GPS Sway Version: GPS Sway Manual 1

GPS Sway. Coordinate Converter User Manual. Last Update: 15 Mar 07 GPS Sway Version: GPS Sway Manual 1 GPS Sway Coordinate Converter User Manual Last Update: 15 Mar 07 GPS Sway Version: 1.0.0 GPS Sway Manual 1 Table of Contents Table of Contents...2 Introduction...3 Installation...3 Installer Version...3

More information

NMEA 2000 Parameter Group Numbers and Description as of August 2007 NMEA 2000 DB Ver

NMEA 2000 Parameter Group Numbers and Description as of August 2007 NMEA 2000 DB Ver Category General & or Mandatory ISO Acknowledgment This message is provided by ISO 11783 for a handshake mechanism between transmitting and receiving devices. This message is the possible response to acknowledge

More information

Easytrak Portable. Ultra-Short Base Line Navigation System. Operations Manual

Easytrak Portable. Ultra-Short Base Line Navigation System. Operations Manual Easytrak Portable Ultra-Short Base Line Navigation System Operations Manual (For use with Win software Version 2.2 and above and the 902C Transducer only) Document Number EZT-2650-8002/7 Version: 7 2 Easytrak

More information

Dariel Marlow darielmarlow@hotmail.com Michael DeLisi delisi@eng.utah.edu Toren Monson nicmonson@gmail.com Matt Stoker matt.stoker@gmail.com www.cs.utah.edu/~delisi/cs3992 Introduction The Synapse UAV

More information

NMEA WINDSPEED AND DIRECTION USER MANUAL. November 2007 manual doc Software Release 0 Hardware Version

NMEA WINDSPEED AND DIRECTION USER MANUAL. November 2007 manual doc Software Release 0 Hardware Version pcnautic.nl NMEA WINDSPEED AND DIRECTION USER MANUAL November 2007 manual 00-02.doc Software Release 0 Hardware Version 1 Table of Contents 1 Introduction and description of fluxgate-based wind-speed and

More information

LD2342 USWM V1.6. LD2342 V1.4 Page 1 of 18

LD2342 USWM V1.6. LD2342 V1.4 Page 1 of 18 LD2342 USWM V1.6 LD2342 V1.4 Page 1 of 18 GENERAL WARNINGS All Class A and Class B marine Automatic Identification System (AIS) units utilize a satellite based system such as the Global Positioning Satellite

More information

Using GPS in Embedded Applications Pascal Stang Stanford University - EE281 November 28, 2000

Using GPS in Embedded Applications Pascal Stang Stanford University - EE281 November 28, 2000 Using GPS in Embedded Applications Pascal Stang Stanford University - EE281 INTRODUCTION Brief history of GPS Transit System NavStar (what we now call GPS) Started development in 1973 First four satellites

More information

GPS-G5 User s Manual

GPS-G5 User s Manual GPS-G5 User s Manual Contents Using the GPS... 1 Description...1 Electrical Connections...2 Mounting...3 GPS Configuration...3 GPS Operation...3 Logging Device Configuration...4 Data Analysis...5 Specifications...

More information

GGA-Global Positioning System Fixed Data

GGA-Global Positioning System Fixed Data SOFTWARE COMMAND NMEA Output Command GGA-Global Positioning System Fixed Data Table B-2 contains the values for the following example: $GPGGA,161229.487,3723.2475,N,12158.3416,W,1,07,1.0,9.0,M,,,,0000*18

More information

Navigation and Thrust System for AUVSI RoboBoat

Navigation and Thrust System for AUVSI RoboBoat Navigation and Thrust System for AUVSI RoboBoat Authors: Michael S. Barnes, Evan J. Dinelli, Dan R. Van de Water Advisor: Dr. Gary Dempsey Client: Mr. Nick Schmidt Department of Electrical and Computer

More information

GPS Firmware A1080 A description of the standard NMEA GPS firmware provided on Tyco Electronics GPS module A1080 User s Manual Version 3.

GPS Firmware A1080 A description of the standard NMEA GPS firmware provided on Tyco Electronics GPS module A1080 User s Manual Version 3. GPS Firmware A description of the standard NMEA GPS firmware provided on Tyco Electronics GPS module User s Manual Version 3.0 This page was intentionally left blank. Revision History Revision History

More information

Mapping The Study Area

Mapping The Study Area While on the beach you will need to take some measurements to show where the study area is relative to the rest of the world and to show what is inside the study area. Once the measurements have been taken,

More information

Attitude and Heading Reference Systems

Attitude and Heading Reference Systems Attitude and Heading Reference Systems FY-AHRS-2000B Installation Instructions V1.0 Guilin FeiYu Electronic Technology Co., Ltd Addr: Rm. B305,Innovation Building, Information Industry Park,ChaoYang Road,Qi

More information

GPS-41MLR GPS-41MLF. GPS Receiver Module GPS-41ML. Fast Acquisition Enhanced Sensitivity 12 Channel GPS Sensor Module FEATURES. Ordering Information

GPS-41MLR GPS-41MLF. GPS Receiver Module GPS-41ML. Fast Acquisition Enhanced Sensitivity 12 Channel GPS Sensor Module FEATURES. Ordering Information GPS-41ML Fast Acquisition Enhanced Sensitivity 12 Channel GPS Sensor Module FEATURES 12 parallel channel GPS receiver 4100 simultaneous time-frequency search bins SBAS (WAAS, EGNOS) support High Sensitivity:

More information

A Mini UAV for security environmental monitoring and surveillance: telemetry data analysis

A Mini UAV for security environmental monitoring and surveillance: telemetry data analysis A Mini UAV for security environmental monitoring and surveillance: telemetry data analysis G. Belloni 2,3, M. Feroli 3, A. Ficola 1, S. Pagnottelli 1,3, P. Valigi 2 1 Department of Electronic and Information

More information

BusWorks 900EN Series Modbus TCP/IP 10/100M Industrial Ethernet I/O Modules

BusWorks 900EN Series Modbus TCP/IP 10/100M Industrial Ethernet I/O Modules BusWorks 900EN Series Modbus TCP/IP 10/100M Industrial Ethernet I/O Modules Six Differential Current Inputs Six Differential Voltage Inputs USER S MANUAL ACROMAG INCORPORATED Tel: (248) 295-0880 30765

More information

Using Malå GPR systems with GPS equipment

Using Malå GPR systems with GPS equipment Using Malå GPR systems with GPS equipment Description of problem In many situations it is convenient to use a GPS to keep track of the position in terms of x- and y-coordinates for all measured GPR profiles.

More information

3DM-GX3-45 Theory of Operation

3DM-GX3-45 Theory of Operation Theory of Operation 8500-0016 Revision 001 3DM-GX3-45 Theory of Operation www.microstrain.com Little Sensors, Big Ideas 2012 by MicroStrain, Inc. 459 Hurricane Lane Williston, VT 05495 United States of

More information

NR402 GIS Applications in Natural Resources

NR402 GIS Applications in Natural Resources NR402 GIS Applications in Natural Resources Lesson 5 GPS/GIS integration Global Positioning System (GPS)..a global navigation system that everyone can use What is GPS? How does it work? How accurate is

More information

Primer on GPS Operations

Primer on GPS Operations MP Rugged Wireless Modem Primer on GPS Operations 2130313 Rev 1.0 Cover illustration by Emma Jantz-Lee (age 11). An Introduction to GPS This primer is intended to provide the foundation for understanding

More information

Implementation of GPS for Location Tracking

Implementation of GPS for Location Tracking Implementation of GPS for Location Tracking Ahmad Ashraff Bin Ariffin, Noor Hafizah Abdul Aziz and Kama Azura Othman Faculty of Electrical Engineering Universiti Teknologi MARA Malaysia Shah Alam, Malaysia

More information

How to do Geo-fencing with the FM200

How to do Geo-fencing with the FM200 Handling a complex world. How to do Geo-fencing with the FM200 Introduction The ability to define custom user events for the FM200 unit, allows you to do Geo-fencing for vehicles fitted with GPS units.

More information

Users guide ECS 1/2/3 COMPASS / GPS Sensor

Users guide ECS 1/2/3 COMPASS / GPS Sensor Users guide ECS 1/2/3 COMPASS / GPS Sensor ECS1/2/3 REV.1.2 10-05-2004 For latest update: www.elproma.com/compass Electronic Compass Sensor ECS1/2/3 Contents 1 Introduction...1 1.1 ECS1...1 1.2 ECS2...1

More information

C Commands. Send comments to

C Commands. Send comments to This chapter describes the Cisco NX-OS Open Shortest Path First (OSPF) commands that begin with C. UCR-583 clear ip ospf neighbor clear ip ospf neighbor To clear neighbor statistics and reset adjacencies

More information

CiberRato 2019 Rules and Technical Specifications

CiberRato 2019 Rules and Technical Specifications Departamento de Electrónica, Telecomunicações e Informática Universidade de Aveiro CiberRato 2019 Rules and Technical Specifications (March, 2018) 2 CONTENTS Contents 3 1 Introduction This document describes

More information

Geodesy, Geographic Datums & Coordinate Systems

Geodesy, Geographic Datums & Coordinate Systems Geodesy, Geographic Datums & Coordinate Systems What is the shape of the earth? Why is it relevant for GIS? 1/23/2018 2-1 From Conceptual to Pragmatic Dividing a sphere into a stack of pancakes (latitude)

More information

DEVICE CONFIGURATION INSTRUCTIONS. WinFrog Device Group:

DEVICE CONFIGURATION INSTRUCTIONS. WinFrog Device Group: WinFrog Device Group: Device Name/Model: Device Manufacturer: Device Data String(s) Output to WinFrog: WinFrog Data String(s) Output to Device: WinFrog Data Item(s) and their RAW record: GPS NMEA GPS (Sercel)

More information

GPS Position Sensor PS-2175

GPS Position Sensor PS-2175 In s tr u c ti o n M a n u a l 012-09919A GPS Position Sensor PS-2175! Table of Contents Contents Introduction........................................................... 3 Theory of Operation....................................................

More information

Key Modules For Your Success SKYTRAQ. GPS Module MG-ST1315. UUser s Manual Ver 展得國際有限公司

Key Modules For Your Success SKYTRAQ. GPS Module MG-ST1315. UUser s Manual Ver 展得國際有限公司 SKYTRAQ GPS Module MG-ST1315 UUser s Manual Ver 1.01 1. IntroductionT 1.1 Overview Modulestek GPS module MG-ST1315 is a high sensitivity, low power consumption; compact size GPS module designed for a broad

More information

ANNUAL OF NAVIGATION 19/2012/part 1

ANNUAL OF NAVIGATION 19/2012/part 1 ANNUAL OF NAVIGATION 19/2012/part 1 PAWEŁ BANYŚ, THORALF NOACK, STEFAN GEWIES German Aerospace Center (DLR), Institute of Communications and Navigation (IKN) ASSESSMENT OF AIS VESSEL POSITION REPORT UNDER

More information

GPS (GLOBAL POSITIONING SYSTEM)

GPS (GLOBAL POSITIONING SYSTEM) GPS (GLOBAL POSITIONING SYSTEM) What is GPS? GPS, standing for Global Positioning System, is becoming common nowadays. Following is a brief introduction. The American Defense Department developed GPS originally

More information

3D Animation of Recorded Flight Data

3D Animation of Recorded Flight Data 3D Animation of Recorded Flight Data *Carole Bolduc **Wayne Jackson *Software Kinetics Ltd, 65 Iber Rd, Stittsville, Ontario, Canada K2S 1E7 Tel: (613) 831-0888, Email: Carole.Bolduc@SoftwareKinetics.ca

More information

BlinkRC User Manual. 21 December Hardware Version 1.1. Manual Version 2.0. Copyright 2010, Blink Gear LLC. All rights reserved.

BlinkRC User Manual. 21 December Hardware Version 1.1. Manual Version 2.0. Copyright 2010, Blink Gear LLC. All rights reserved. BlinkRC 802.11b/g WiFi Servo Controller with Analog Feedback BlinkRC User Manual 21 December 2010 Hardware Version 1.1 Manual Version 2.0 Copyright 2010, Blink Gear LLC. All rights reserved. http://blinkgear.com

More information

The prior specification for navaid data was XP NAV810, which was compatible with X-Plane Changes in the spec for XP NAV1100 were:

The prior specification for navaid data was XP NAV810, which was compatible with X-Plane Changes in the spec for XP NAV1100 were: X-PLANE NAVIGATION DATA FOR NAVAIDS (USER_NAV.DAT & EARTH_NAV.DAT) FILE SPECIFICATION VERSION 1100 REVISION HISTORY 7 May 2009 Spec converted to this new format to support new web site (http://data.x-plane.com).

More information

BRB900 GPS Telemetry System August 2013 Version 0.06

BRB900 GPS Telemetry System August 2013 Version 0.06 BRB900 GPS Telemetry System August 2013 Version 0.06 As of January 2013, a new model of the BRB900 has been introduced. The key differences are listed below. 1. U-blox GPS Chipset: The Trimble Lassen IQ

More information

GMS6-CR6(SIRF-IV) Fast Acquisition Enhanced Sensitivity 48 Channel GPS Sensor Module

GMS6-CR6(SIRF-IV) Fast Acquisition Enhanced Sensitivity 48 Channel GPS Sensor Module GMS6-CR6(SIRF-IV) Fast Acquisition Enhanced Sensitivity 48 Channel GPS Sensor Module The GMS6-CR6 is a compact all-in-one GPS module solution intended for a broad range of Original Equipment Manufacturer

More information

Real-Time Control of a Remotely Operated Vessel

Real-Time Control of a Remotely Operated Vessel Real-Time Control of a Remotely Operated Vessel R. BACHNAK, C. STEIDLEY, M. MENDEZ, J. ESPARZA, D. DAVIS Department of Computing and Mathematical Sciences Texas A&M University-Corpus Christi 6300 Ocean

More information

GLOBAL POSITIONING SYSTEMS. Knowing where and when

GLOBAL POSITIONING SYSTEMS. Knowing where and when GLOBAL POSITIONING SYSTEMS Knowing where and when Overview Continuous position fixes Worldwide coverage Latitude/Longitude/Height Centimeter accuracy Accurate time Feasibility studies begun in 1960 s.

More information

2.017 DESIGN OF ELECTROMECHANICAL ROBOTIC SYSTEMS Fall 2009 Lab 3: GPS and Data Logging. September 28, 2009 Dr. Harrison H. Chin

2.017 DESIGN OF ELECTROMECHANICAL ROBOTIC SYSTEMS Fall 2009 Lab 3: GPS and Data Logging. September 28, 2009 Dr. Harrison H. Chin 2.017 DESIGN OF ELECTROMECHANICAL ROBOTIC SYSTEMS Fall 2009 Lab 3: GPS and Data Logging September 28, 2009 Dr. Harrison H. Chin Formal Labs 1. Microcontrollers Introduction to microcontrollers Arduino

More information

AIT2000 CLASS B AIS TRANSPONDER

AIT2000 CLASS B AIS TRANSPONDER IMPORTANT NOTE The USB cable of the AIT2000 is designed to be used for configuring/programming the unit during installation and not for permanent connection to the boat s Navigation PC. If you intend to

More information

SKYTRAQ. GPS Module MG-ST1315S. UUser s Manual Ver 1.01

SKYTRAQ. GPS Module MG-ST1315S. UUser s Manual Ver 1.01 SKYTRAQ GPS Module MG-ST1315S UUser s Manual Ver 1.01 1. IntroductionT Overview Modulestek GPS module MG-ST1315S is a high sensitivity, low power consumption; compact size GPS module designed for a broad

More information

Mission Objective Tree

Mission Objective Tree Group 2 Mission Objective Tree Tasks Rugged Vehicle Fly Planned Path Fly Parallel to Wall Photo-Survey Bridge Solar Feasibility Objectives Analyze Vehicle Capabilities Construct Support Structure Analyze

More information

Receiver Technology CRESCENT OEM WHITE PAPER AMY DEWIS JENNIFER COLPITTS

Receiver Technology CRESCENT OEM WHITE PAPER AMY DEWIS JENNIFER COLPITTS CRESCENT OEM WHITE PAPER AMY DEWIS JENNIFER COLPITTS With offices in Kansas City, Hiawatha, Calgary and Scottsdale, Hemisphere GPS is a global leader in designing and manufacturing innovative, costeffective,

More information

HT101V Reference Manual

HT101V Reference Manual HT101V Reference Manual Overview The HT101V from Ag-Tester is our handheld tester designed to diagnose valve components on agricultural machinery. Valves tested include: 1- Boom Control Valves 2- Servo

More information

Power Requirements. Features

Power Requirements. Features Datasheet Positional accuracy (CEP50) autonomous positional error less than 2.5 meters SiRF Star IV GPS chip Satellite-based augmentation systems: WAAS, EGNOS, MSAS, GAGAN High sensitivity navigation engine

More information

Maritime Autonomous Navigation in GPS Limited Environments

Maritime Autonomous Navigation in GPS Limited Environments Maritime Autonomous Navigation in GPS Limited Environments 29/06/2017 IIR/University of Portsmouth GPS signal is unreliable Tamper Jam U.S. stealth UAV captured by Iranian government by means of GPS spoofing.

More information

GPS-41EBR GPS-41EBF. GPS Receiver Module GPS-41EB. Fast Acquisition Enhanced Sensitivity 12 Channel GPS Sensor Module FEATURES. Ordering Information

GPS-41EBR GPS-41EBF. GPS Receiver Module GPS-41EB. Fast Acquisition Enhanced Sensitivity 12 Channel GPS Sensor Module FEATURES. Ordering Information FEATURES 12 parallel channel GPS receiver 4000 simultaneous time-frequency search bins SBAS (WAAS, EGNOS) support High Sensitivity: -140dBm acquisition sensitivity -150dBm tracking sensitivity Fast Acquisition:

More information

PB100 WeatherStation Technical Manual

PB100 WeatherStation Technical Manual PB100 WeatherStation Technical Manual also covers model LB100 Revision 1.009 AIRMAR Technology Corporation 35 Meadowbrook Drive Milford, NH 03055-4613 (603) 673-9570 1. Introduction This document is a

More information

Version 5.0 Release Notes

Version 5.0 Release Notes Version 5.0 Release Notes Carlson Software, 2016 Table of Contents Improvements and Resolved Issues By Release 3 3 Improvements And Resolved Issues By Manufacturer 5 GNSS Receivers 5 Altus 6 Carlson 7

More information

AAPSilver System Performance Validation

AAPSilver System Performance Validation Report No. CG-D-04-13 AAPSilver System Performance Validation Distribution Statement A: Approved for public release; distribution is unlimited. 1 N O T I C E This document is disseminated under the sponsorship

More information

Chapter 6 Navigation and Field Mapping

Chapter 6 Navigation and Field Mapping Chapter 6 Navigation and Field Mapping In this chapter you will learn about: Orienting maps Measuring a bearing on a map Plotting points on a map using latitude/longitude Plotting points on a map using

More information

GT-720F (Flash version) Fast Acquisition Enhanced Sensitivity 65 Channel GPS Sensor Module

GT-720F (Flash version) Fast Acquisition Enhanced Sensitivity 65 Channel GPS Sensor Module GT-720F (Flash version) Fast Acquisition Enhanced Sensitivity 65 Channel GPS Sensor Module The GT-720F is a compact all-in-one GPS module solution intended for a broad range of Original Equipment Manufacturer

More information

Overview and Setup Guide

Overview and Setup Guide October 8, 2009. Application Note Page 1 of 10 Firmware 3.700 ALIGN Release With Y-Model Feature: 1 Introduction Overview and Setup Guide This application note provides an overview of the new ALIGN feature

More information

Addendum I. Additional Instructions for. Lowrance M68i S/Map

Addendum I. Additional Instructions for. Lowrance M68i S/Map 1 Pub. 988-0152-061 Addendum I Additional Instructions for Lowrance M68i S/Map Your sonar/gps unit, the M68i, functions exactly like the M68 described in the manual provided (part 988-0152-031). In addition,

More information

UniTraQ OEM Module. GT-310F (Flash version) Fast Acquisition Enhanced Sensitivity 12 Channel GPS Sensor Module. Features

UniTraQ OEM Module. GT-310F (Flash version) Fast Acquisition Enhanced Sensitivity 12 Channel GPS Sensor Module. Features UniTraQ OEM Module Features 12 parallel channel GPS receiver 4000 simultaneous time-frequency search bins SBAS (WAAS, EGNOS) support Programmable Flash version -140dBm acquisition sensitivity -150dBm tracking

More information

Hardware System for Unmanned Surface Vehicle Using IPC Xiang Shi 1, Shiming Wang 1, a, Zhe Xu 1, Qingyi He 1

Hardware System for Unmanned Surface Vehicle Using IPC Xiang Shi 1, Shiming Wang 1, a, Zhe Xu 1, Qingyi He 1 Advanced Materials Research Online: 2014-06-25 ISSN: 1662-8985, Vols. 971-973, pp 507-510 doi:10.4028/www.scientific.net/amr.971-973.507 2014 Trans Tech Publications, Switzerland Hardware System for Unmanned

More information

Quick Start Guide V1.1

Quick Start Guide V1.1 X-Pilot autopilot for bait boats Quick Start Guide V1.1 www.toslon.com 1. What s on the display & Keypad instruction 6 7 8 9 10 13 14 15 16 5 4 12.1V 10 1.1 m/s 2 86.5m 10 4 deg 11 275.2m 1.2m/s 18 deg

More information

CONTENTS CONTENTS...1 USING THE LIGHTS KEY... 16

CONTENTS CONTENTS...1 USING THE LIGHTS KEY... 16 CONTENTS CONTENTS...1 GENERAL INTRODUCTION TO B&G NETWORK...2 INTRODUCTION TO NETWORK NAV...3 NETWORK NMEA INTERFACING RULES...5 SYSTEMS WITH MULTIPLE NAV UNITS...5 INTERFACING NETWORK NAV AND PILOT...6

More information

Appendix B The Garmin GPS Map 76 Receiver: Features, Functions, Setup, and Quality of Position

Appendix B The Garmin GPS Map 76 Receiver: Features, Functions, Setup, and Quality of Position Appendix B The Garmin GPS Map 76 Receiver: Features, Functions, Setup, and Quality of Position Garmin GPS Map76 Features Specifications Weight: 7.5 ounces No. channels: 12 parallel Antenna type: Quad Helix

More information

Scanning Laser Range Finder

Scanning Laser Range Finder Date: 2011.11.25 Scanning Laser Range Finder UTM-30LX-EW Specification Symbol Amendment Details Amendment Date Amended by Number Approved by Checked by Drawn by Designed by MORI KAMITANI TAGAMI HINO Drawing.

More information

DEVICE CONFIGURATION INSTRUCTIONS

DEVICE CONFIGURATION INSTRUCTIONS WinFrog Device Group: Device Name/Model: Device Manufacturer: Device Data String(s) Output to WinFrog: WinFrog Data String(s) Output to Device: WinFrog Data Item(s) and their RAW record: GPS POS/MV (NMEA)

More information

EEL 4665/5666 Intelligent Machines Design Laboratory. Messenger. Final Report. Date: 4/22/14 Name: Revant shah

EEL 4665/5666 Intelligent Machines Design Laboratory. Messenger. Final Report. Date: 4/22/14 Name: Revant shah EEL 4665/5666 Intelligent Machines Design Laboratory Messenger Final Report Date: 4/22/14 Name: Revant shah E-Mail:revantshah2000@ufl.edu Instructors: Dr. A. Antonio Arroyo Dr. Eric M. Schwartz TAs: Andy

More information

Platform Independent Launch Vehicle Avionics

Platform Independent Launch Vehicle Avionics Platform Independent Launch Vehicle Avionics Small Satellite Conference Logan, Utah August 5 th, 2014 Company Introduction Founded in 2011 The Co-Founders blend Academia and Commercial Experience ~20 Employees

More information

STRIKER Series. Owner s Manual

STRIKER Series. Owner s Manual STRIKER Series Owner s Manual Table of Contents Introduction...1 Device Keys... 1 Contacting Garmin Product Support... 1 Selecting the Transducer Type... 1 Zooming on the STRIKER 4... 1 Panning on the

More information

RELEASE NOTES. Trimble. SPS Series Receivers. Introduction. New features and changes

RELEASE NOTES. Trimble. SPS Series Receivers. Introduction. New features and changes RELEASE NOTES Trimble SPS Series Receivers Introduction New features and changes Version 4.42 Revision A June 2011 F Corporate office Trimble Navigation Limited Engineering and Construction group 5475

More information

Nebraska 4-H Robotics and GPS/GIS and SPIRIT Robotics Projects

Nebraska 4-H Robotics and GPS/GIS and SPIRIT Robotics Projects Name: Club or School: Robots Knowledge Survey (Pre) Multiple Choice: For each of the following questions, circle the letter of the answer that best answers the question. 1. A robot must be in order to

More information

2. CHARTS. 2.1 Chart projections Mercator projections. Maps which are used for marine or aeronautical navigation are called charts.

2. CHARTS. 2.1 Chart projections Mercator projections. Maps which are used for marine or aeronautical navigation are called charts. Maps which are used for marine or aeronautical navigation are called charts. In Canadian waters, mariners are required to carry the latest editions of the paper charts, at the largest scale available (see

More information

Team Autono-Mo. Jacobia. Department of Computer Science and Engineering The University of Texas at Arlington

Team Autono-Mo. Jacobia. Department of Computer Science and Engineering The University of Texas at Arlington Department of Computer Science and Engineering The University of Texas at Arlington Team Autono-Mo Jacobia Architecture Design Specification Team Members: Bill Butts Darius Salemizadeh Lance Storey Yunesh

More information

Trimble FMX/FM with Hydraulic Steer - Trimble Aftermarket. Installation & Configuration Guide for Harness :

Trimble FMX/FM with Hydraulic Steer - Trimble Aftermarket. Installation & Configuration Guide for Harness : Trimble FMX/FM 1000 - with Hydraulic Steer - Trimble Aftermarket Installation & Configuration Guide for Harness 725599: Summary: In order for 20/20 SeedSense Monitor to receive NMEA strings from a third

More information

COS Lecture 7 Autonomous Robot Navigation

COS Lecture 7 Autonomous Robot Navigation COS 495 - Lecture 7 Autonomous Robot Navigation Instructor: Chris Clark Semester: Fall 2011 1 Figures courtesy of Siegwart & Nourbakhsh Control Structure Prior Knowledge Operator Commands Localization

More information

Piksi Multi Settings. 1 Introduction. Firmware Version v1.2.14

Piksi Multi Settings. 1 Introduction. Firmware Version v1.2.14 Firmware Version v1.2.14 1 Introduction Piksi R Multi has a number of settings that can be controlled by the end user via the provided Swift Console or through the SBP binary message protocol. This document

More information

GPS Receiver. User s Guide. Dec Rev. A

GPS Receiver. User s Guide. Dec Rev. A GR-213U GPS Receiver User s Guide Dec. 25 2005 Rev. A Technology, Inc. 1F.No 30, R&D Rd. II. Hsinchu City, Science-based Industrial Park Taiwan Phone: +886-3-6687000 Fax: +886-3-6687111 E-Mail: info@holux.com.tw

More information

U.K.O.O.A. P1/90 POST PLOT DATA EXCHANGE TAPE 1990 FORMAT

U.K.O.O.A. P1/90 POST PLOT DATA EXCHANGE TAPE 1990 FORMAT U.K.O.O.A. P1/90 POST PLOT DATA EXCHANGE TAPE 1990 FORMAT Prepared by The Surveying and Positioning Committee For The U.K.O.O.A. Exploration Committee Version: 28 June 1990 P1-90.DOC Page 1 of 25 1. General

More information

GPS and GSM Based Transmission Line Monitoring System with Fault Detection Introduction:

GPS and GSM Based Transmission Line Monitoring System with Fault Detection Introduction: GPS and GSM Based Transmission Line Monitoring System with Fault Detection Introduction: Electricity is an extremely handy and useful form of energy. It plays an ever growing role in our modern industrialized

More information

11.2 LIMITS AND CONTINUITY

11.2 LIMITS AND CONTINUITY 11. LIMITS AND CONTINUITY INTRODUCTION: Consider functions of one variable y = f(x). If you are told that f(x) is continuous at x = a, explain what the graph looks like near x = a. Formal definition of

More information

High Gain Advanced GPS Receiver

High Gain Advanced GPS Receiver High Gain Advanced GPS Receiver NAVSYS Corporation 14960 Woodcarver Road, Colorado Springs, CO 80921 Introduction The NAVSYS High Gain Advanced GPS Receiver (HAGR) is a digital beam steering receiver designed

More information

Microsoft Excel Illustrated Unit B: Working with Formulas and Functions

Microsoft Excel Illustrated Unit B: Working with Formulas and Functions Microsoft Excel 2010- Illustrated Unit B: Working with Formulas and Functions Objectives Create a complex formula Insert a function Type a function Copy and move cell entries Understand relative and absolute

More information

Basic Functions. The program is able to remotely: - manage all the system parameters of the PPM box. - execute the sensor tuning process

Basic Functions. The program is able to remotely: - manage all the system parameters of the PPM box. - execute the sensor tuning process PPM Utility Program Our PPM system has originally been designed with a basic human-interface made of an integrated LCD and keypad but it can now be remotely controlled from a Windows-based PC through any

More information

Installation & Quick Start Guide AIT2000 Class B AIS Transponder

Installation & Quick Start Guide AIT2000 Class B AIS Transponder Installation & Quick Start Guide AIT2000 Class B AIS Transponder QUICK START AIT2000 - VR1.01 1. Introduction Congratulations on the purchase of your AIT2000 Class B AIS Transponder. It is recommended

More information

Physics-based Simulation Environment for Adaptive and Collaborative Marine Sensing with MOOS-IvP

Physics-based Simulation Environment for Adaptive and Collaborative Marine Sensing with MOOS-IvP Physics-based Simulation Environment for Adaptive and Collaborative Marine Sensing with MOOS-IvP Prof. Henrik Schmidt Laboratory for Autonomous Marine Sensing Systems Massachusetts Institute of technology

More information

Image Processing Based Autonomous Bradley Rover

Image Processing Based Autonomous Bradley Rover Image Processing Based Autonomous Bradley Rover Bradley University ECE Department December 7 th, 2004 Team Members: Steve Goggins Pete Lange Rob Scherbinske Advisors: Dr. Huggins Dr. Malinowski Dr. Schertz

More information

Quick Start: Radiator Control

Quick Start: Radiator Control Quick Start: Radiator Control Mount coupling Technical specifications Normal operating voltage Frequency range Wireless range 2x AA 1,5V batteries 868.42 MHz Min. 150 meters in a mesh network Basic operations

More information

era, eric, era-lora, eric-lora & eric-sigfox Evaluation Board with GNSS

era, eric, era-lora, eric-lora & eric-sigfox Evaluation Board with GNSS This board can be used for the evaluation and range testing of the following LPRS RF Modules: era400, era900, eric4, eric9, era-lora, eric-lora and eric-sigfox. The board is provided with a u-blox GNSS

More information

Bluetooth GPS Navigator

Bluetooth GPS Navigator Userr manuall v1..1 USER MANUAL UG-301 Bluetooth GPS Navigator The UG-301 is optimized for good performance and low cost. Its 12 parallel channels and 4000 search bins provide short start-up time and fast

More information

Power Matters. Time Interfaces. Adam Wertheimer Applications Engineer. 03 November Microsemi Corporation.

Power Matters. Time Interfaces. Adam Wertheimer Applications Engineer. 03 November Microsemi Corporation. Power Matters Time Interfaces Adam Wertheimer Applications Engineer 03 November 2011 2011 Microsemi Corporation. Why do we need time? What time is it? It is 11:53 AM on the third of November 2011. High

More information

Navigation of an Autonomous Underwater Vehicle in a Mobile Network

Navigation of an Autonomous Underwater Vehicle in a Mobile Network Navigation of an Autonomous Underwater Vehicle in a Mobile Network Nuno Santos, Aníbal Matos and Nuno Cruz Faculdade de Engenharia da Universidade do Porto Instituto de Sistemas e Robótica - Porto Rua

More information