2018/05/14 15:56 1/13 NMEAconverter

Size: px
Start display at page:

Download "2018/05/14 15:56 1/13 NMEAconverter"

Transcription

1 2018/05/14 15:56 1/13 NMEAconverter NMEAconverter Links Source: Release: RooieDirk Release TAB Download: Website Download Forum: NMEA Converter can convert incoming NMEA Sentences Be aware you need at least some knowledge of NMEA Sentences For Reference from the Nmea Sentences Page DBT - Depth Below Transducer DPT - Depth of Water GGA - Global Positioning System Fix Data GLL - Geographic Position - Latitude/Longitude HDG Heading - Deviation & Variation HDM - Heading - Magnetic HDT - Heading - True MTA - Air Temperature (obsolete) MDA - Meteorological Composite (obsolete) Use XDR transducer instead. MTW - Mean Temperature of Water VLW - Distance Traveled through Water MWD - Wind Direction & Speed MWV - Wind Speed and Angle RMC - Recommended Minimum Navigation Information RSA - Rudder Sensor Angle VHW - Water speed and heading VTG - Track made good and Ground speed VWR - Relative Wind Speed and Angle VWT - True Windspeed and Angle (obsolete) XDR - Transducer Values ZDA -Time & Date - UTC, day, month, year and local time zone AIVDO - Automatic Information System (AIS) position reports from own vessel Install the plugin in accord with the Install and Enable Instructions. Then open the Preference Dialog to set your conversions.

2 Last update: opencpn:opencpn_user_manual:plugins:log_data_translate:nmea_converter /05/14 14:02 If you see something like above please enlarge the nmeasendobjectdlg window so it will show some buttons. 1. First Test Printed on 2018/05/14 15:56

3 2018/05/14 15:56 3/13 NMEAconverter This is a completely useless sentence that is sent every second to OpenCPN. Check also the nmeadebug window in the picture above, and note that a checksum is added to the sentence. It is easy to change this one into something like: $GPRMC,085437,A, ,N, ,E,3.3,68.9,070614,0.3,E,A Just enter this line into the NmeaConverter > Preference > New > Edit box and Save it. No VDR file is needed. That will fake a GPS position into OpenCPN, but still not very usefull. 2. Use incoming data to send a different NMEA sentence. The real power of this plugin is that you can change the data of the sent sentence by cherry picking from

4 Last update: opencpn:opencpn_user_manual:plugins:log_data_translate:nmea_converter /05/14 14:02 incoming sentences. The reason I wrote this plugin was I wanted Dashboard to show the air temperature. To get the data, Dashboard needs a $xxmta sentence, however I had a Airmar PB200 unit that is sending $xxmda sentences. An example: We have from the windset, MDA- Meterological (Obsolete) $WIMDA,30.1,I,1.0,B,11.3,C,,,,,,,18.6,T,18.5,M,5.8,N,3.0,M*27 and want: MDA- Air temperature $xxmta,11.3,c*<checksum> Note that the data needed is in fields 5 and 6 of the MDA sentence. (11.3 degrees Celcius) Setting the format to $XXMTA, $WIMDA5, $WIMDA6 will give an output sentence: $XXMTA, 11.3, C*26 Where $WIMDA5 is replaced by the 5th field of the $WIMDA sentence. etc. As seen above, the $XXMTA sentece is sent each time a $WIMDA sentence is received and read by Dashboard. Printed on 2018/05/14 15:56

5 2018/05/14 15:56 5/13 NMEAconverter For testing use VDR_pi or VDRplayer and run WIMDA+OCMDA.txt from this zip 3. Do math-convert units, e.g. Centigrade to Fahrenheit But what if I was living in the US and prefered the reading to be in degrees Fahrenheit? Just change the format to: $XXMTA, 9/5*$WIMDA5 + 32, F The value is recalculated and displayed as degrees Fahrenheit. Use the same file for testing use VDR_pi or VDRplayer and run WIMDA+OCMDA.txt from this zip 4. Force True Heading to COG In NMEAconverter create a HDG (compass) sentence from your COG. Possible use when the autopilot is old and does not receive heading (true or magnetic). Note: Since computation of the drift and surface current requires HDG, it is understood that while using Tactics_pi value for Current speed and direction will not be useful. All you will see is the speed difference between SOG and STW, which would force Current to be the vector component normal to the keel. That means the current display will always be directly from bow or stern, in other words the component of the current along the centerline of the boat, assuming your STW(speed through water) is calibrated correctly. See CF Tactics_pi Post #22.

6 Last update: opencpn:opencpn_user_manual:plugins:log_data_translate:nmea_converter /05/14 14:02 The nmea file being run by VDR_pi is vdr2 - copie.xls Tactics_pi and in particular, NMEAconverter_pi is using $XXHDT,$IIVTG1,$IIVTG2 Remember that setting HDT to COG will give you no drift angle at all (except maybe a small portion via the manual heel input), so you will not see any real current I suggest to set a fixed heel angle to 0 (see screenshot above), to avoid side effects with manual heel input at very low speeds and small speed differences between SOG and STW. 5. Calculate True Wind from Apparent Wind Printed on 2018/05/14 15:56

7 2018/05/14 15:56 7/13 NMEAconverter Known Boat Speed ground (kts) = SOG Apparent wind speed (degrees) = AWS Apparent wind angle (degrees) = AWA MWV - Wind Speed and Angle - Input $ MWV,x.x,a,x.x,a*hh<CR><LF> Field Number: Wind Angle, 0 to 360 degrees Reference, R = Relative, T = True Wind Speed Wind Speed Units, K/M/N Status, A = Data Valid Checksum RMA - Recommended Minimum Navigation Information - Input $ RMA,A,llll.ll,a,yyyyy.yy,a,x.x,x.x,x.x,x.x,x.x,a*hh<CR><LF> Field Number: Blink Warning Latitude N or S Longitude E or W Time Difference A, us Time Difference B, us Speed Over Ground, Knots Track Made Good, degrees true Magnetic Variation, degrees E or W Checksum MWV - Wind Speed and Angle - Output TW in Knots $ MWV,x.x,T,x.x,K*hh<CR><LF> Field Number:

8 Last update: opencpn:opencpn_user_manual:plugins:log_data_translate:nmea_converter /05/14 14: Wind Angle, 0 to 360 degrees Reference, R = Relative, T = True Wind Speed Wind Speed Units, K/M/N Status, A = Data Valid Checksum Nmea0183 from Calculations Needed: x =AWS*sin(AWA* /180) y =(x/tan(awa* /180)) - SOG TWS (True Wind Speed) =x/sin(twa* /180) TWA (True Wind Angle) =atan(x/y)*180/ *Formula from The formula now needs to be completed: $XXMWV, TWS and TWA (From zzz, see zzz's Cruiser Forum Post $XXMWV,$WIMWV1+acos((sqr($WIMWV3)+sqr($GPRMC7)+sqr($WIMWV3)-2*$GPRMC7*$WIMWV3* cos($wimwv1* /180)- sqr($gprmc7))/(2*sqrt(sqr($gprmc7)+sqr($wimwv3)-2*$gprmc7*cos($wimwv1* /180))*$WIMWV3)),T,sqrt(sqr($GPRMC7)+SQR($WIMWV3)-2*$GPRMC7*$WIMWV3*cos($WIM WV1* /180)),N,A 1. $s were missing in the previous version 2. Changed wind speed unit from K to N 3. Deleted spaces after commas. 4. In terms of sog vs. stw, as pointed out, in most cases, diff is negligible I believe. 5. One thing about stw is that the sensor cannot capture the movement of a vessel due to tide (as high as 5 knots!). 6. For my purpose, gps is good enough. Observations by Rhythm Doctor: One needs to be careful with this calculation. There are at least two different syntaxes for the reporting of relative wind angle. The older VWR and VWT sentences for relative and true wind are not recommended for new devices, but there are many older devices and SeaTalk converters that still use Printed on 2018/05/14 15:56

9 2018/05/14 15:56 9/13 NMEAconverter them (specifically, my own instruments). The sentences look like this (with II talker ID in this example): $IIVWR,084.0,R,10.4,N,5.4,M,19.3,K $IIVWT,084.0,R,10.4,N,5.4,M,19.3,K Wind Angle R Right of vessel heading (L = Left) Wind Speed 4 N Wind Speed units Knots Wind Speed 6 M Wind Speed units Metres per second Wind Speed 9 K Wind Speed units Km/Hr Newer devices use the preferred MWV sentence structure that looks like this (with II talker ID in this case): $IIMWV,084.0,R,10.4,N,A $IIMWV,084.0,T,10.4,N,A Wind Angle R Relative (T = True) Wind Speed 4 N Wind Speed units Knots (K = KPH, M = MPH) 5 A Status (A= Valid) Note that VWR/VWT and MWV work totally differently: VWR provides wind angles from with an additional parameter of L or R, while MWV provides wind angles from with no L or R. Converting your obsolete VWR sentence to the more modern MWV sentence would seem to be impossible without a conditional if() statement, which appears to not be supported (since I was unable to get it to work). Here is the sentence that works best for me for converting VWR (relative/apparent wind) to VWT (true wind). Using the wildcard (instead of II, GP, or WI sender IDs) allows testing with others' VWR sentences, including Paul Elliot's test nmea files: $XXVWT,90-deg(atan(($??VWR3*cos(rad($??VWR1))- $??RMC7)/$??VWR3*sin(rad($??VWR1)))),$??VWR2,sqrt(sqr($??VWR3*sin(rad($??VWR1) ))+sqr($??vwr3*cos(rad($??vwr1))-$??rmc7)),$??vwr4,,,, Note that there is an invisible <return> character at the end of this sentence (after the four commas). In my testing, things don't work right without it. I recommend that you include it if you copy/paste this formula into the config dialog. Transmitter Dan advises: It is possible to replace the sender ID (GP or WI) with?? which means any sender ID will be accepted. Using the wildcard will allow Paul Elliot's test nmea file to work with the nmeaconverter formula, using

10 Last update: opencpn:opencpn_user_manual:plugins:log_data_translate:nmea_converter /05/14 14:02 Seatalk - vyacht dialect: $XXMWV,90-deg(atan(($??MWV3*cos(rad($??MWV1))- $GPRMC7)/$??MWV3*sin(rad($??MWV1)))),T,sqrt(sqr($??MWV3*sin (rad($??mwv1)))+sqr($??mwv3*cos(rad($??mwv1))-$gprmc7)),n,a Paul Elliot's Test Files 7. Prepare Barometer Sensor Output for Dashboard Aim The BMP180 pressure sensor output from Raspberry Pi/OpenPlotter uses the sentence $OSXDR. This cannot be read by Dashboard. BMP180 Output Units are Bars i.e 1000 times the reading needed for display - mbar/hectopascal. Any error in the output cannot be corrected. This formula creates an $xxmda (deprecated) or $xxxdr sentence that can be used by Dashboard. Conversion $MYXDR,P, /1000 * $OSXDR2,B,Barometer Deprecated: $MYMDA,,, /1000*$OSXDR2,,B,,,,,,,,,,,,,,,,M (0.018 is an error correction and also adjusts the barometer pressure for a sea level reading) Applying the settings Found it necessary to tick the 'block incomming (sic) messages with wrong checksum' box when editing the sentence. Printed on 2018/05/14 15:56

11 2018/05/14 15:56 11/13 NMEAconverter When editing the sentence; starting a variable with '.' or '$' causes OpenCPN to freeze. Variables are being read by the plugin all the time and these characters are not recognised. Workaround is to type '0.' and then the number. Also 'OSXDR2' and then add the '$' in front, '$OSXDR2'.

12 Last update: opencpn:opencpn_user_manual:plugins:log_data_translate:nmea_converter /05/14 14:02 8. Use Wildcards Now it is possible to use wildcards in the identifiers. So you could make it talkerid independent by using something similar to...$??xxx3... and whatever character on the? position will cause a hit. Even more important, you might use it for special transducers sending the something like $OWXDR,H,...or $OWXDR,C... sentence. Note that field 1 is part of the identifier. As the comma is the nmea separator, you can not use it as an identifier string, but by using a wildcard it works. For example...$owxdr?h2... or $??XDR?H2... will work. 9. Contribute your Formulas & Conversions If you have an useful format formula please feel free to add it here. Another future possibility is to do a comparison lookup of a boat''s Polar data and send a special NMEA sentence of the comparative result to the Dashboard using a special dedicated performance instrument, for example. Calculations Supported For calculations the following functions are suported: Normal functions abs : the absolute value, it removes the sign ceil : the smallest integer greater than or equal to x cub : x^3, safe way to compute such an exponent Printed on 2018/05/14 15:56

13 2018/05/14 15:56 13/13 NMEAconverter deg : converts from radian to degree exp : the exponential value hvi : Heaviside's function, =0 if x<0, =1 if x>=0 int : the largest integer less than or equal to x inv : inverts, 1/x floor : not supported, see int ln : the neperian logarithm lnep : see ln log : the logarithm base 10 rad : converts from degree to radian sgn : the sign, -1 or +1. Zero returns +1. sqr : x^2, safe way to compute such an exponent sqrt : the root square Trigonometric functions acos : the secant (inverse of cosine) acsh : the inverse of the hyperbolic cosine asin : the cosecant (inverse of sine) asnh : the inverse of the hyperbolic sine atan : the cotangent (inverse of tangent) atnh : the inverse of the hyperbolic tangent cos : the cosine cosh : the hyperbolic cosine sin : the sine sinc : the cardinal sine (radian) sinh : the hyperbolic sine tan : the tangent tanh : the hyperbolic tangent This makes it possible to do spreadsheet-like calculations. And as in a spreadsheet the trigonometric functions use radians. From: - OpenCPN Manuals Permanent link: Last update: 2018/05/14 14:02

2019/03/20 16:45 1/17 NMEAconverter

2019/03/20 16:45 1/17 NMEAconverter 2019/03/20 16:45 1/17 NMEAconverter NMEAconverter Links Source: https://github.com/rooiedirk/nmeaconverter_pi Release: RooieDirk Release TAB Download: Website Download Forum: http://www.cruisersforum.com/forums/f134/new-plugin-nmeaconvertor-145073.html

More information

TECNAUTIC_GmbH. Display Functions with the PB100/200 connected: -- GND Speed -- GND Course -- Heading (Gyro option is recommended) 2 m

TECNAUTIC_GmbH. Display Functions with the PB100/200 connected: -- GND Speed -- GND Course -- Heading (Gyro option is recommended) 2 m PB100/200 Sonic Wind Wind, GPS, Compass Display Config: SE=12 di=00 df=20,91,30,34,(61) 35,36,81 Gr=01 n0=00 n1=07 n2=07**) n3=00 Display Functions with the PB100/200 connected: -- Apparent Wind -- True

More information

PART 6 - DIAGNOSTIC DATA CONTENTS

PART 6 - DIAGNOSTIC DATA CONTENTS PART 6 - DIAGNOSTIC DATA Hydra 2000 User Manual Para CONTENTS Page 6.1 FFD DIAGNOSTICS 6-3 6.1.1 Diagnostic Function Selection 6-3 6.1.2 Key Test 6-4 6.1.3 Display 6-4 6.1.4 Network 6-4 6.1.5 RAM 6-4 6.1.6

More information

Naval Postgraduate School, Operational Oceanography and Meteorology. Since inputs from UDAS are continuously used in projects at the Naval

Naval Postgraduate School, Operational Oceanography and Meteorology. Since inputs from UDAS are continuously used in projects at the Naval How Accurate are UDAS True Winds? Charles L Williams, LT USN September 5, 2006 Naval Postgraduate School, Operational Oceanography and Meteorology Abstract Since inputs from UDAS are continuously used

More information

tactics_pi a performance enhancement to dashboard_pi Rev 1.0

tactics_pi a performance enhancement to dashboard_pi Rev 1.0 tactics_pi a performance enhancement to dashboard_pi Rev 1.0 1. Introduction Everything started with the question : Do we make it around the corner of that island when we tack now and sail the same apparent

More information

OMC-140 Multifunctional NMEA display. Operators Manual. Version Author: Observator Instruments

OMC-140 Multifunctional NMEA display. Operators Manual. Version Author: Observator Instruments OMC-140 Multifunctional NMEA display Operators Manual Version 1.04-2015 Author: Observator Instruments Revisions: 1.01 July 2014 First issue 1.02 Oct 2014 Preliminary edition 1.03 April 2015 Test Manual

More information

APPLICATION NOTES. WIND MEASURING SYSTEMS using XDi-N indicators. Document no.: B

APPLICATION NOTES. WIND MEASURING SYSTEMS using XDi-N indicators. Document no.: B APPLICATION NOTES WIND MEASURING SYSTEMS using XDi-N indicators Document no.: 4189350080B Table of contents GENERAL INFORMATION... 4 WARNINGS, LEGAL INFORMATION AND SAFETY... 4 LEGAL INFORMATION AND DISCLAIMER...

More information

Tactics. Links. Source: Download: Forum: Tactics plugin thread

Tactics. Links. Source:   Download:   Forum: Tactics plugin thread 2019/01/08 20:00 1/38 Links Source: https://github.com/tom-r/tactics_pi Download: https://opencpn.org/opencpn/plugins/tactics.html Forum: plugin thread Windows Download OpenCPN Beta File Thingie 2.5.7

More information

MANUAL. P C - C E N T E R Version Copyright by Dinand van het Reve CONTENTS

MANUAL. P C - C E N T E R Version Copyright by Dinand van het Reve CONTENTS P C - C E N T E R Version 4.00 Copyright 1995-2004 by Dinand van het Reve CONTENTS 1. Introduction 2. Installing PC-CENTER 3. Licence 4. Using PC-CENTER 5. Description of 'Small Windows' 6. Main Menu Description

More information

The number you enter to CAL VAL1 should correspond to the sensor you are connecting as follows: Value. Sensor Input

The number you enter to CAL VAL1 should correspond to the sensor you are connecting as follows: Value. Sensor Input Sensor Input Configuration Additional sensors can be added to the system connecting to one of the four linear inputs on the CPU. 12 extra linear inputs are available with the addition of an Expansion Processor.

More information

PART 5 - OPTIONS CONTENTS 5.1 SYSTEM EXPANSION 5-5

PART 5 - OPTIONS CONTENTS 5.1 SYSTEM EXPANSION 5-5 PART 5 - OPTIONS CONTENTS Para Page 5.1 SYSTEM EXPANSION 5-5 5.2 SENSORS 5-5 5.2.1 Heel Angle Sensor 5-5 5.2.2 Mast Rotation Sensor 5-5 5.2.3 Trim Angle Sensor 5-5 5.2.4 Barometric Pressure Sensor 5-5

More information

GNX 20/21. Owner s Manual

GNX 20/21. Owner s Manual GNX 20/21 Owner s Manual Table of Contents Introduction...1 Device Overview... 1 Using the Race Timer... 1 Profiles... 1 Selecting a Profile... 1 Restoring Profiles to their Default Settings... 1 Instrument

More information

INSTALLATION INSTRUCTIONS AND REFERENCE HANDBOOK

INSTALLATION INSTRUCTIONS AND REFERENCE HANDBOOK INSTALLATION INSTRUCTIONS AND REFERENCE HANDBOOK APPLICATION NOTES WIND MEASURING SYSTEMS Document no.: 4189340577BC SW version AGC 3.4X0.X0 or later and AGC 4.00.0 or later Document no.: 4189350050A Table

More information

GNX 20/21 Owner s Manual

GNX 20/21 Owner s Manual GNX 20/21 Owner s Manual February 2014 190-01659-00_0B Printed in Taiwan All rights reserved. Under the copyright laws, this manual may not be copied, in whole or in part, without the written consent of

More information

GNX 20/21. Owner s Manual

GNX 20/21. Owner s Manual GNX 20/21 Owner s Manual March 2016 190-01659-00_0C All rights reserved. Under the copyright laws, this manual may not be copied, in whole or in part, without the written consent of Garmin. Garmin reserves

More information

GNX 120/130. Owner s Manual

GNX 120/130. Owner s Manual GNX 120/130 Owner s Manual March 2016 190-01846-00_0B All rights reserved. Under the copyright laws, this manual may not be copied, in whole or in part, without the written consent of Garmin. Garmin reserves

More information

Actual Size. WX Series Ultrasonic WeatherStation Instruments

Actual Size. WX Series Ultrasonic WeatherStation Instruments fpo www.busse-yachtshop.de info@busse-yachtshop.de Actual Size WX Series Ultrasonic WeatherStation Instruments AIRMAR s best-in-class, all-in-one solution for real-time, site-specific weather information

More information

SmartPilot Series. Commissioning Guide. Document reference: Date: Sept 2006

SmartPilot Series. Commissioning Guide. Document reference: Date: Sept 2006 SmartPilot Series S1WheelPilot S1 TillerPilot Commissioning Guide Document reference: 81282-1 Date: Sept 2006 Autohelm, HSB (High Speed Bus), SailPilot, SeaTalk and SportPilot are registered trademarks

More information

Navico. Software Release Notes H5000 RTM 2018 SOFTWARE RELEASE JULY Photo: Rich Edwards/Volvo Ocean Race H5000 INSTRUMENTS AUTOPILOT

Navico. Software Release Notes H5000 RTM 2018 SOFTWARE RELEASE JULY Photo: Rich Edwards/Volvo Ocean Race H5000 INSTRUMENTS AUTOPILOT Software Release Notes H5000 RTM 2018 SOFTWARE RELEASE JULY 2018 Photo: Rich Edwards/Volvo Ocean Race H5000 INSTRUMENTS AUTOPILOT Overview The latest H5000 developments provide a system-wide package of

More information

WeatherStation Monitoring for Industrial marine Applications

WeatherStation Monitoring for Industrial marine Applications WeatherStation Monitoring for Industrial marine Applications PB200 WeatherStation Instrument Applications: Industrial marine weather monitoring Features: True and Apparent Wind Speed and Direction Barometric

More information

Doppler current meter

Doppler current meter JLN-652 Doppler current meter JRC's new 240 khz Doppler current meter: the smartest way to increase your catch Unique 3D twist mode presentation Measuring up and down current 50 independent measuring layers

More information

PART 5 - OPTIONS CONTENTS 5.1 SYSTEM EXPANSION 5-3

PART 5 - OPTIONS CONTENTS 5.1 SYSTEM EXPANSION 5-3 PART 5 - OPTIONS CONTENTS Para Page 5.1 SYSTEM EXPANSION 5-3 5.2 SENSORS 5-3 5.2.1 Trim Angle Sensor 5-3 5.2.2 Mast Rotation Sensor 5-3 5.2.3 Heel Angle Sensor 5-3 5.2.4 Barometric Pressure Sensor 5-3

More information

frequently asked questions

frequently asked questions Hydra Pilot Fault Codes What do the fault codes for the Hydra Pilot mean? Fault Cause FAULT 100 FAULT 101 FAULT 102 FAULT 103 FAULT 104 FAULT 105 FAULT 106 FAULT 108 FAULT 109 FAULT 110 FAULT 111 FAULT

More information

Operating Manual /2013

Operating Manual /2013 Operating Manual 1.2-01/2013 INDICE Introduction page 3 Functions esa: main screens page 6 Initial pages page 8 Main screens: navigation data, target, tgt polar, wind history page 10 Main screens: starting

More information

INTRODUCTION TO NETWORK WIND 3 MOUNTING THE UNIT 14 SELECTING THE DISPLAY MODE 5 ABBREVIATIONS AND DEFINITIONS 17

INTRODUCTION TO NETWORK WIND 3 MOUNTING THE UNIT 14 SELECTING THE DISPLAY MODE 5 ABBREVIATIONS AND DEFINITIONS 17 CONTENTS CONTENTS 1 INSTALLATION 14 GENERAL INTRODUCTION TO B&G NETWORK 2 SITING THE UNIT 14 INTRODUCTION TO NETWORK WIND 3 MOUNTING THE UNIT 14 EXAMPLE SYSTEMS USING NETWORK WIND 4 SPECIFICATION 16 SELECTING

More information

iregatta User Manual

iregatta User Manual iregatta User Manual iregatta User Manual This manual may not always be up to date with the latest version of iregatta available in Apples App Store, as minor additions or bug fixes may be published without

More information

Navigation Exercises for Practice Underway

Navigation Exercises for Practice Underway Workforms and Plotting Sheets for use with Navigation Exercises for Practice Underway www.starpath.com/kindle David Burch STARPATH Seattle, WA Copyright 2009, 2012 David Burch All rights reserved. No part

More information

SAMPLE COASTAL SKIPPER CHARTWORK QUESTIONS Updated 17 October 2008

SAMPLE COASTAL SKIPPER CHARTWORK QUESTIONS Updated 17 October 2008 SAMPLE COASTAL SKIPPER CHARTWORK QUESTIONS Updated 17 October 2008 Unless otherwise specified, all chartwork questions relate to chart SAN 3002. Some questions may ask you to use deviation card No1 for

More information

Triton2. Operator Manual. ENGLISH

Triton2. Operator Manual.  ENGLISH Triton2 Operator Manual ENGLISH www.bandg.com Preface Disclaimer As Navico is continuously improving this product, we retain the right to make changes to the product at any time which may not be reflected

More information

Figure 2. Auxiliary table

Figure 2. Auxiliary table Voyage Recorder is an affordable, miniature black box for a yacht. A Digital Voyage data recorder (VDR) connected to the NMEA 2000 network on your boat serves to record and store boat data. It collects

More information

Supplement to. Navigation Workbook for Practice Underway.

Supplement to. Navigation Workbook for Practice Underway. Supplement to Navigation Workbook for Practice Underway. This file contains duplicate printable workrooms, plotting sheets, and logbook pages to use with the workbook as needed. They are the blank forms

More information

Avia Sail User Guide

Avia Sail User Guide Avia Sail User Guide Avia Sail Table of Contents About Avia Sail...4 System requirements and recommendations...4 Software Installation...5 Software Activation...6 Using Avia Sail in Demo Mode...7 Dashboard

More information

CONTENTS STEER TO VANE MODE...

CONTENTS STEER TO VANE MODE... CONTENTS GENERAL INTRODUCTION TO B&G NETWORK... 2 INTRODUCTION TO NETWORK PILOT... 3 SWITCHING THE NETWORK PILOT ON... 3 NETWORK PILOT DISPLAY UNIT... 4 NETWORK PILOT HAND-HELD CONTROLLER... 5 JOYSTICK

More information

Basic Chartwork. Necessary Tools. Navigation is the one science in which no margin whatever is left for the faker. - Felix Riesenberg

Basic Chartwork. Necessary Tools. Navigation is the one science in which no margin whatever is left for the faker. - Felix Riesenberg Page 1 of 14 www.bananawind.us Navigation is the one science in which no margin whatever is left for the faker. - Felix Riesenberg Basic Chartwork You wouldn't want to attempt open ocean sailing using

More information

Instruction Manual. BZ7002 Calibration Software BE

Instruction Manual. BZ7002 Calibration Software BE Instruction Manual BZ7002 Calibration Software BE6034-12 Index _ Index Index... 2 Chapter 1 BZ7002 Calibration Software... 4 1. Introduction... 5 Chapter 2 Installation of the BZ7002... 6 2. Installation

More information

Multi Control - Instrument -

Multi Control - Instrument - Multi Control - Instrument - Installation and Operation Manual English English 1 Navigation terms 2 This manual is written for NX2 Multi Control version 3.1 5.0 Edition: March 2007 3 1 Part specification...

More information

How to set up and use DeWiggler Analyst

How to set up and use DeWiggler Analyst The most important mission of an instrument system is correctly reporting wind direction (see http://www.ockam.com/functrue.html). DeWiggler Analyst is an application for determining wind direction change

More information

Math Section 4.1 Special Triangles

Math Section 4.1 Special Triangles Math 1330 - Section 4.1 Special Triangles In this section, we ll work with some special triangles before moving on to defining the six trigonometric functions. Two special triangles are 30 60 90 triangles

More information

RACE BOX. Installation and Operation Manual English

RACE BOX. Installation and Operation Manual English RACE BOX Installation and Operation Manual RaceBox 1 RaceBox Edition: Mar 2012 This manual is written for Nexus RaceBox 1.00 2 RaceBox 1 Part specification... 5 2 Overview... 6 2.1 Calculated Data... 7

More information

SmartPilot X-Series. Commissioning & Setup Guide (SeaTalk) for SPX-10, SPX-30, SPX-SOL & SPX-CAN Systems

SmartPilot X-Series. Commissioning & Setup Guide (SeaTalk) for SPX-10, SPX-30, SPX-SOL & SPX-CAN Systems SmartPilot X-Series Commissioning & Setup Guide (SeaTalk) for SPX-10, SPX-30, SPX-SOL & SPX-CAN Systems Document reference: 81307-1 Date: December 2007 SeaTalk is a registered trademark of Raymarine Ltd.

More information

WMB-160F Multi-beam Fishing System

WMB-160F Multi-beam Fishing System WMB-160F Multi-beam Fishing System Take away the guess work and see what s REALLY below your boat! Seven Systems in One 2 WMB-160F WMB-160F Screen Shots The WMB-160F is a multi-beam sonar that has been

More information

- Instrument and Server - Installation and Operation Manual

- Instrument and Server - Installation and Operation Manual - Instrument and Server - Installation and Operation Manual 0 Navigation terms BOD: Bearing origin destination BTW: Bearing to Waypoint CMG: Course made good COG. Course over ground CTS: Course to steer

More information

I can add vectors together. IMPORTANT VOCABULARY

I can add vectors together. IMPORTANT VOCABULARY Pre-AP Geometry Chapter 9 Test Review Standards/Goals: G.SRT.7./ H.1.b.: I can find the sine, cosine and tangent ratios of acute angles given the side lengths of right triangles. G.SRT.8/ H.1.c.: I can

More information

Part specifications...6 Installation...8 Installing the instrument...9 First start (only in a Nexus Network)...13 Operation...14 Calibration...

Part specifications...6 Installation...8 Installing the instrument...9 First start (only in a Nexus Network)...13 Operation...14 Calibration... 0 1 2 Introduction Thank you for choosing FI-30 Wind Data instrument. We are convinced that you will appreciate all the valuable information either you are a cruiser or a racer. It is important that you

More information

NALSA REGULATIONS FOR RECORD ATTEMPTS

NALSA REGULATIONS FOR RECORD ATTEMPTS NALSA REGULATIONS FOR RECORD ATTEMPTS Revision 3 July 2010 Overview: These regulations have been updated for top speed attempts for landyachts, iceboats and other hard surface, wind powered craft including

More information

Weems & Plath Expanding Square SAR Course Identifier #113

Weems & Plath Expanding Square SAR Course Identifier #113 Weems & Plath Expanding Square SAR Course Identifier #113 A common search pattern used in search and rescue (SAR) operations is called the expanding square pattern, which is just what it says it is. You

More information

LX Compass module 3 Electronic compass device User manual

LX Compass module 3 Electronic compass device User manual LX Compass module 3 Electronic compass device User manual LX navigation d.o.o., Tkalska 10 SLO 3000 Celje, tel: + 386 3 490 46 70, fax: + 386 3 490 46 71 info@lxnavigation.si, http://www.lxnavigation.com

More information

LECTURE 11 : EXCEL FORMULAS AND FUNCTIONS MESSAGES

LECTURE 11 : EXCEL FORMULAS AND FUNCTIONS MESSAGES LECTURE 11 : EXCEL FORMULAS AND FUNCTIONS If people do not believe that mathematics is simple, it is only because they do not realize how complicated life is. John Louis von Neumann S.M. Sitompul (2016

More information

Math 4. Unit 1: Conic Sections Lesson 1.1: What Is a Conic Section?

Math 4. Unit 1: Conic Sections Lesson 1.1: What Is a Conic Section? Unit 1: Conic Sections Lesson 1.1: What Is a Conic Section? 1.1.1: Study - What is a Conic Section? Duration: 50 min 1.1.2: Quiz - What is a Conic Section? Duration: 25 min / 18 Lesson 1.2: Geometry of

More information

2. USER INSTRUCTION. Table of contents: Pg.1/14 N:\FAP-2000: LWP

2. USER INSTRUCTION. Table of contents: Pg.1/14 N:\FAP-2000: LWP Pg.1/14 2. USER INSTRUCTION. Table of contents: 2.1 SHORT PANEL DESCRIPTION...... Pg.2 2.2 AUTOPILOT TAKE-OVER & MODE SELECTION....... Pg.3 2.3 AUTOPILOT FUNCTIONS....... Pg.3 2.4 THE SPECIAL FUNCTION

More information

Race Master System User Guide

Race Master System User Guide User Guide EMC Conformance All Tacktick equipment is designed to the best industry standards for use in the recreational marine environment. The design and manufacture of Tacktick equipment conforms to

More information

Explorer AP380 Autopilot Installation and Operation Manual

Explorer AP380 Autopilot Installation and Operation Manual Explorer AP380 Autopilot Installation and Operation Manual www.northstarnav.com IMPORTANT SAFETY INFORMATION Please read carefully before installation and use. DANGER! WARNING! CAUTION CAUTION This is

More information

Lab 1. Adiabatic and reversible compression of a gas

Lab 1. Adiabatic and reversible compression of a gas Lab 1. Adiabatic and reversible compression of a gas Introduction The initial and final states of an adiabatic and reversible volume change of an ideal gas can be determined by the First Law of Thermodynamics

More information

OPERATION AND INSTALLATION MANUAL

OPERATION AND INSTALLATION MANUAL AP46 Autopilot OPERATION AND INSTALLATION MANUAL www.tmq.com.au TMQ AP46 Autopilot Page 1 of 34 Ver1.0 07/03/2007 This page is Blank TMQ AP46 Autopilot Page 2 of 34 Ver1.0 07/03/2007 WARNING!...4 INTRODUCTION...5

More information

WIND. - Instrument - Installation and Operation Manual English

WIND. - Instrument - Installation and Operation Manual English - Instrument - Installation and Operation Manual 1 Introduction Thank you for choosing Star Wind instrument. We are convinced that you will appreciate all the valuable information either you are a cruiser

More information

SOP-003 GYRO CALIBRATION AND VERIFICATION PROCEDURE

SOP-003 GYRO CALIBRATION AND VERIFICATION PROCEDURE Rev No. Issue Description Prepared Reviewed Approved Date 5 Re-issued for use RGM SS RB 17 Aug 15 4 Changes made to procedure AFI JAL JAL 12 Sep 11 3 Re-issued for use RGM RAM MAJ 19 May 11 2 Re-issued

More information

How to set up and use DeWiggler Analyst

How to set up and use DeWiggler Analyst How to set up and use DeWiggler Analyst The most important mission of an instrument system is correctly reporting wind direction (see http://www.ockam.com/functrue.html). DeWiggler Analyst is an application

More information

Evaluating chaff fire pattern algorithms in a simulation environment. JP du Plessis Institute for Maritime Technology South Africa

Evaluating chaff fire pattern algorithms in a simulation environment. JP du Plessis Institute for Maritime Technology South Africa Evaluating chaff fire pattern algorithms in a simulation environment JP du Plessis (jdp@imt.co.za) Institute for Maritime Technology South Africa Overview What is seduction chaff? Chaff solution algorithm

More information

Introduction to Matlab for Engineers

Introduction to Matlab for Engineers Introduction to Matlab for Engineers Instructor: Anh Thai Nhan Math 111, Ohlone Introduction to Matlab for Engineers Ohlone, Fremont 1/23 Reading materials Chapters 1, 2, and 3, Moore s textbook Introduction

More information

Chartwork Learn the basics for position fixing using a number of techniques and a simple equation for speed, distance and time.

Chartwork Learn the basics for position fixing using a number of techniques and a simple equation for speed, distance and time. Chartwork Learn the basics for position fixing using a number of techniques and a simple equation for speed, distance and time. Chartwork Chartwork Tools Accurate chart work is the basis for good navigation.

More information

performance by NEXUS NETWORK WIND Data - Instrument - Installation and Operation Manual English

performance by NEXUS NETWORK WIND Data - Instrument - Installation and Operation Manual English performance by NEXUS NETWORK WIND Data - Instrument - Installation and Operation Manual English 4-1 Introduction Thank you for choosing NX2 Wind Data instrument. We are convinced that you will appreciate

More information

IS42. Operator Manual. ENGLISH

IS42. Operator Manual.  ENGLISH IS42 Operator Manual ENGLISH www.simrad-yachting.com Preface Disclaimer As Navico is continuously improving this product, we retain the right to make changes to the product at any time which may not be

More information

Title: Direction and Displacement

Title: Direction and Displacement Title: Direction and Displacement Subject: Mathematics Grade Level: 10 th 12 th Rational or Purpose: This activity will explore students knowledge on directionality and displacement. With the use angle

More information

SP-110 Autopilot OPERATION

SP-110 Autopilot OPERATION SP-110 Autopilot OPERATION www.si-tex.com Warning! WHEN USING THE AUTOPILOT AN ADEQUATE WATCH SHOULD BE MAINTAINED AT ALL TIMES. THE AUTOPILOT MUST BE PLACED IN MANUAL MODE WHEN EVER THE VESSEL IS STATIONARY

More information

EMC Conformance. Important

EMC Conformance. Important Digital Display mn100 Digital Display EMC Conformance All Raymarine equipment is designed to the best industry standards for use in the recreational marine environment. The design and manufacture of Raymarine

More information

AP48. Operator Manual. ENGLISH

AP48. Operator Manual.  ENGLISH AP48 Operator Manual ENGLISH www.simrad-yachting.com Preface Disclaimer As Navico is continuously improving this product, we retain the right to make changes to the product at any time which may not be

More information

Sontek RiverSurveyor Test Plan Prepared by David S. Mueller, OSW February 20, 2004

Sontek RiverSurveyor Test Plan Prepared by David S. Mueller, OSW February 20, 2004 Sontek RiverSurveyor Test Plan Prepared by David S. Mueller, OSW February 20, 2004 INTRODUCTION Sontek/YSI has introduced new firmware and software for their RiverSurveyor product line. Firmware changes

More information

h1000 system user manual

h1000 system user manual h1000 system user manual HB-1000D Issue: 0001 h1000 introduction overview Congratulations on your purchase of the h1000 System from B&G. The h1000 navigation system combines clever thinking with incredibly

More information

Port Jefferson-Bridgeport Ferry Project: Wind Correction

Port Jefferson-Bridgeport Ferry Project: Wind Correction Port Jefferson-Bridgeport Ferry Project: Wind Correction Background Joseph Giannotti SUNY-Stony Brook Dr. Duane Waliser Marine Sciences Research Center SUNY-Stony Brook Jeffrey Tongue National Weather

More information

FIG: 27.1 Tool String

FIG: 27.1 Tool String Bring up Radioactive Tracer service. Click Acquisition Box - Edit - Tool String Edit the tool string as necessary to reflect the tool string being run. This is important to insure proper offsets, filters,

More information

Quintic Automatic Putting Report

Quintic Automatic Putting Report Quintic Automatic Putting Report Tutorial www.quintic.com Introduction The Quintic Automatic Putting Report is designed to work as an add on to our premier Quintic Biomechanics analysis software. Auto

More information

Completion of Hydrometric Survey Notes (HSN)

Completion of Hydrometric Survey Notes (HSN) Completion of Hydrometric Survey Notes (HSN) Hydrometric Survey Notes provide a place to record results and applied proper procedures for tasks undertaken in the field, such as levelling, measurements,

More information

BASICS OF TRIGONOMETRY

BASICS OF TRIGONOMETRY Mathematics Revision Guides Basics of Trigonometry Page 1 of 9 M.K. HOME TUITION Mathematics Revision Guides Level: GCSE Foundation Tier BASICS OF TRIGONOMETRY Version: 1. Date: 09-10-015 Mathematics Revision

More information

USER MANUAL. Premier Way, Abbey Park Romsey Hampshire, SO51 9DH, UK. Tel: (+44) Fax: (+44)

USER MANUAL. Premier Way, Abbey Park Romsey Hampshire, SO51 9DH, UK. Tel: (+44) Fax: (+44) USER MANUAL Premier Way, Abbey Park Romsey Hampshire, SO51 9DH, UK Tel: (+44) 01590 689699 Fax: (+44) 01590 610072 www.bandgservice.co.uk Brookes and Gatehouse Ltd. 2000 The copyright of this Manual is

More information

Specifications and information are subject to change without notice. Up-to-date address information is available on our website.

Specifications and information are subject to change without notice. Up-to-date address information is available on our website. www.smar.com Specifications and information are subject to change without notice. Up-to-date address information is available on our website. web: www.smar.com/contactus.asp LD302 - AssetView HMI LD302

More information

AUTOPILOT. NAVpilot-500

AUTOPILOT. NAVpilot-500 AUTOPILOT NAVpilot-500 Your Local Agent/Dealer 9-52 Ashihara-cho, Nishinomiya, Japan Telephone : 0798-65-2111 fax : 0798-65-4200 ( HIMA All rights reserved. PUB.No. OME-72500 ) NAVPILOT-500 Printed in

More information

ACI_Release_Notes.txt VERSION Fixed Tank info for ELITE in Dive section 2. Fixed USB port initializing for old DC VERSION

ACI_Release_Notes.txt VERSION Fixed Tank info for ELITE in Dive section 2. Fixed USB port initializing for old DC VERSION VERSION 2.4.0 1. Fixed Tank info for ELITE in Dive section 2. Fixed USB port initializing for old DC VERSION 2.3.9 1. Fixed Dive Computer configuration section error 2. Fixed message for download/upload

More information

Sprayer Station PRODUCT MANUAL

Sprayer Station PRODUCT MANUAL Sprayer Station PRODUCT MANUAL Item # 3349SSH Contents Introduction 3 Components 3 Installing the Station 4 Replacing the Humidity Sensor 12 Installing SpecWare Mobile Software 13 Configuring the WatchDog

More information

ST70 Autopilot Controller User Reference Guide

ST70 Autopilot Controller User Reference Guide ST70 Autopilot Controller User Reference Guide Document reference: 81288-2 Date: May 2010 ii iii Contents Preface Warnings and cautions WARNING: Product installation & operation This equipment must be

More information

Project 1 Those amazing Red Sox!

Project 1 Those amazing Red Sox! MASSACHVSETTS INSTITVTE OF TECHNOLOGY Department of Electrical Engineering and Computer Science 6.001 Structure and Interpretation of Computer Programs Spring Semester, 2005 Project 1 Those amazing Red

More information

The ICC Duckworth-Lewis Calculator. Professional Edition 2008

The ICC Duckworth-Lewis Calculator. Professional Edition 2008 The ICC Duckworth-Lewis Calculator Professional Edition 2008 (Version 1.1) Installation and operating instructions Any queries about operating the program should be sent to steven.stern@anu.edu.au 2008

More information

Tactical Compass Overview

Tactical Compass Overview Tactical Compass Overview Clay Babcock Mar 8 th, 2018 3/9/18 1 Overview WYC Philosophy Compass Background Types of Compasses The Art of Going Upwind Well Other Device Functions Tactical Compasses Reviewed

More information

Stars and Compass Trophy and Novice Paper 2014!

Stars and Compass Trophy and Novice Paper 2014! Stars and Compass Trophy and Novice Paper 2014 The Stars and Compass Trophy was established to promote the use and development of traditional navigation skills. This year, in a bid to encourage novice

More information

NIGERIAN NOTICES TO MARINERS November 2017 EDITION PUBLISHED BY THE HYDROGRAPHIC OFFICE LAGOS. Notice 01 November 2017 Supplied Gratis

NIGERIAN NOTICES TO MARINERS November 2017 EDITION PUBLISHED BY THE HYDROGRAPHIC OFFICE LAGOS. Notice 01 November 2017 Supplied Gratis NIGERIAN NOTICES TO MARINERS November 2017 EDITION PUBLISHED BY THE HYDROGRAPHIC OFFICE LAGOS Notice 01 November 2017 Supplied Gratis November 2017 CONTENTS I II Explanatory Notes and Index Nigerian Navy

More information

DESIGN #446 First 36.7-Racing Keel for Chantiers BeneteauS.A.

DESIGN #446 First 36.7-Racing Keel for Chantiers BeneteauS.A. DESIGN #446 First 36.7-Racing Keel for Chantiers BeneteauS.A. Farr Yacht Design, Ltd. Copyright March 12, 2001 P.O. Box 4964, Annapolis, MD 21403 USA Tel: (410) 267-0780 Fax: (410) 268-0553 E-mail: info@farrdesign.com

More information

AP44. Operator Manual. ENGLISH

AP44. Operator Manual.  ENGLISH AP44 Operator Manual ENGLISH www.simrad-yachting.com Preface Disclaimer As Navico is continuously improving this product, we retain the right to make changes to the product at any time which may not be

More information

Module 13 Trigonometry (Today you need your notes)

Module 13 Trigonometry (Today you need your notes) Module 13 Trigonometry (Today you need your notes) Question to ponder: If you are flying a kite, you know the length of the string, and you know the angle that the string is making with the ground, can

More information

Lab 1c Isentropic Blow-down Process and Discharge Coefficient

Lab 1c Isentropic Blow-down Process and Discharge Coefficient 058:080 Experimental Engineering Lab 1c Isentropic Blow-down Process and Discharge Coefficient OBJECTIVES - To study the transient discharge of a rigid pressurized tank; To determine the discharge coefficients

More information

8-1. The Pythagorean Theorem and Its Converse. Vocabulary. Review. Vocabulary Builder. Use Your Vocabulary

8-1. The Pythagorean Theorem and Its Converse. Vocabulary. Review. Vocabulary Builder. Use Your Vocabulary 8-1 he Pythagorean heorem and Its Converse Vocabulary Review 1. Write the square and the positive square root of each number. Number Square Positive Square Root 9 81 3 1 4 1 16 1 2 Vocabulary Builder leg

More information

The ICC Duckworth-Lewis-Stern calculator. DLS Edition 2016

The ICC Duckworth-Lewis-Stern calculator. DLS Edition 2016 The ICC Duckworth-Lewis-Stern calculator DLS Edition 2016 (DLS2-2016) Installation and operating instructions Queries about program operation should be sent to: Steven.Stern@qut.edu.au 2016 International

More information

AUTOPILOT. NAVpilot-511/520

AUTOPILOT. NAVpilot-511/520 AUTOPILOT NAVpilot-511/520 Your Local Agent/Dealer 9-52 Ashihara-cho, Nishinomiya 662-8580, JAPAN Telephone : 0798-65-2111 Fax : 0798-65-4200 ( HIMA All rights reserved. Pub. No. OME-72501 ) NAVPILOT-511/520

More information

Contents. Chapter 1 Important information Chapter 4 Pilot views Chapter 5 Pilot modes Chapter 2 Handbook information...

Contents. Chapter 1 Important information Chapter 4 Pilot views Chapter 5 Pilot modes Chapter 2 Handbook information... Contents Chapter 1 Important information... 7 Safety notices... 7 TFT LCD Displays... 8 Water ingress... 8 Disclaimers... 8 EMC conformance... 8 Suppression ferrites... 9 Connections to other equipment...

More information

Autopilot setup. VRF (Virtual Rudder Feedback) calibration. Software setup NSS evo2 Installation Manual

Autopilot setup. VRF (Virtual Rudder Feedback) calibration. Software setup NSS evo2 Installation Manual Autopilot setup Verifying the autopilot connection When an AC12N, AC42N, or SG05 is connected to the NSS evo2 system, the NSS evo2 will automatically detect the autopilot and an Autopilot menu icon will

More information

DESIGN #446 First 36.7-Cruising Keel for Chantiers Beneteau S.A.

DESIGN #446 First 36.7-Cruising Keel for Chantiers Beneteau S.A. DESIGN #446 First 36.7-Cruising Keel for Chantiers Beneteau S.A. Farr Yacht Design, Ltd. Copyright March 12, 2001 P.O. Box 4964, Annapolis, MD 21403 USA Tel: (410) 267-0780 Fax: (410) 268-0553 E-mail:

More information

BathySurvey A Trimble Access hydrographic survey module

BathySurvey A Trimble Access hydrographic survey module BathySurvey A Trimble Access hydrographic survey module Contents 1. Introduction... 3 2. Installation... 4 3. Main Screen... 5 4. Device... 6 5. Jobs... 7 6. Settings Odom Echotrac... 8 7. Settings Ohmex

More information

Learning Goal: I can explain when to use the Sine, Cosine and Tangent ratios and use the functions to determine the missing side or angle.

Learning Goal: I can explain when to use the Sine, Cosine and Tangent ratios and use the functions to determine the missing side or angle. MFM2P Trigonometry Checklist 1 Goals for this unit: I can solve problems involving right triangles using the primary trig ratios and the Pythagorean Theorem. U1L4 The Pythagorean Theorem Learning Goal:

More information

DeWiggler. Get your calibrations under control

DeWiggler. Get your calibrations under control DeWiggler Get your calibrations under control DeWiggler Pro DeWiggler Pro comes aboard with a calibration professional. Calibrations are determined and set in real-time. When the calibrator leaves, Pro

More information

3D Inversion in GM-SYS 3D Modelling

3D Inversion in GM-SYS 3D Modelling 3D Inversion in GM-SYS 3D Modelling GM-SYS 3D provides a wide range of inversion options including inversion for both layer structure and physical properties for gravity and magnetic data. There is an

More information

Table of Contents. 1 Command Summary...1

Table of Contents. 1 Command Summary...1 Table of Contents 1 Command Summary....1 1.1 General Commands.... 1 1.1.1 Operating Modes.... 1 1.1.2 In a Menu or List.... 2 1.1.3 Options Available at Any Point.... 2 1.1.4 Switch Programs.... 4 1.1.5

More information

GNX Wind. Owner s Manual

GNX Wind. Owner s Manual GNX Wind Owner s Manual February 2016 190-02003-00_0A All rights reserved. Under the copyright laws, this manual may not be copied, in whole or in part, without the written consent of Garmin. Garmin reserves

More information