-
Notifications
You must be signed in to change notification settings - Fork 26
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
True Wind Data in NMEA #367
Comments
Thanks for digging into those details. |
For completeness the N2K PGNs for wind data. Wind Data is sent in PGN 130306 which contains an angle/direction and a speed. There the following WindReferences defined.
|
for the record In the manual of the Yacht Devices WiFi Gateway YDWG-02 and others they write (page 32)
IMHO this statement is totally wrong!
❤️ open source software where you can actually see how it is done in the code and even change it! |
I recently had some exchange with the guys from https://www.yachtd.com/ about the calculation of true wind from apparent wind and course data in one of their products.
Now I am wondering how to correctly read/write true wind data from/to NMEA0183.
It is less obvious than one might think at first glance.
Definitions
Sentences
NMEA sentences containing wind data
Let's have a look at these.
MWD contains wind direction (rel. to true/mag north) and wind speed.
But what wind, apparent or true or ground?
We may assume true wind, here but the docs are not clear.
MWV contains wind angle (rel. to heading) and wind speed.
But again what wind, apparent or true or ground?
We may assume apparent wind here, but the docs are not clear.
The docs on gpsd seem to be wrong about the reference flag, the write
But T actually stands for "theoretical" (compare to this). From the yachtd folks I got this description (source not known to me).
This means MWV data with the R flag = apparent wind, with T flag it could be true or ground wind, I cannot really tell from the description.
Furthermore there is VWT, which does contain true wind (rel. to water), but the use of this sentence is discouraged (why?). One should use MWV instead, which is not well defined. So, one may conclude that a T flagged MWV does contain true wind.
VWR contains apparent (relative) wind.
Summary
Despite the unclear definitions in the docs I would assume (as it is done in the current implementation)
So, nothing new, but I think it's good to keep this here for the the record.
The text was updated successfully, but these errors were encountered: