-
Notifications
You must be signed in to change notification settings - Fork 79
/
prdid.go
31 lines (28 loc) · 855 Bytes
/
prdid.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package nmea
const (
// TypePRDID type of PRDID sentence for vessel pitch, roll and heading
TypePRDID = "RDID"
)
// PRDID is proprietary sentence for vessel pitch, roll and heading.
// https://www.xsens.com/hubfs/Downloads/Manuals/MT_Low-Level_Documentation.pdf (page 37)
//
// Format: $PRDID,aPPP.PP,bRRR.RR,HHH.HH*hh<CR><LF>
// Example: $PRDID,-10.37,2.34,230.34*AA
type PRDID struct {
BaseSentence
Pitch float64 // Pitch in degrees (positive bow up)
Roll float64 // Roll in degrees (positive port up)
Heading float64 // True heading in degrees
}
// newPRDID constructor
func newPRDID(s BaseSentence) (Sentence, error) {
p := NewParser(s)
p.AssertType(TypePRDID)
m := PRDID{
BaseSentence: s,
Pitch: p.Float64(0, "pitch"),
Roll: p.Float64(1, "roll"),
Heading: p.Float64(2, "heading"),
}
return m, p.Err()
}