Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NMEA-0183 --MWV sentences #29

Open
amotl opened this issue Feb 25, 2023 · 2 comments
Open

NMEA-0183 --MWV sentences #29

amotl opened this issue Feb 25, 2023 · 2 comments

Comments

@amotl
Copy link
Contributor

amotl commented Feb 25, 2023

We discovered another software 1 for the OpenWind devices that emits NMEA-0183 sentences using the $WIMWV identifier. Does it make sense to support it?

Example sentence:

$WIMWV,214.8,R,0.1,K
type iNMEAMWV struct {
  MWVId	string // $WIMWV
  WindAngle	string // 214.8 - 0 - 359
  TypeAngle	string // Relative - R True - T
  WindSpeed string //0.1
  Units	string // N - knots  - Kilometers/Metres/N Knots
  Status string // A = valid V = invalid
  Termination string // CR LF - 0x0D 0x0A
}
MWV - Wind Speed and Angle

        1   2 3   4 5 
        |   | |   | | 
 $--MWV,x.x,a,x.x,a*hh<CR><LF>

 Field Number:  
  1) Wind Angle, 0 to 360 degrees 
  2) Reference, R = Relative, T = True 
  3) Wind Speed 
  4) Wind Speed Units, K/M/N 
  5) Status, A = Data Valid 
  6) Checksum

-- http://www.nmea.de/nmea0183datensaetze.html#mwv

Footnotes

  1. https://www.openwind.de/wp-content/uploads/2021/03/RaspberryPi.zip

@amotl
Copy link
Contributor Author

amotl commented Feb 25, 2023

We are currently using VWR, which explicitly encodes "relative" wind data. /cc @UserMacUseface

-- http://www.nmea.de/nmea0183datensaetze.html#vwr

@amotl
Copy link
Contributor Author

amotl commented Mar 17, 2023

@UserMacUseface just shared those insights on this topic. Thanks!

VWR - Relative (Apparent) Wind Speed and Angle NMEA 0183 Sentences Not Recommended for New Designs Approved by the NMEA 0183 Standard Committee as of October 1, 2008 Wind angle in relation to the vessel's heading and wind speed measured relative to the moving vessel. The use of $--MWV is recommended.

-- https://web.archive.org/web/20220617080452/https://www.nmea.org/Assets/100108_nmea_0183_sentences_not_recommended_for_new_designs.pdf

In this respect, we think the NMEA broadcast message should be changed to use the MWV sentence identifier.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant