Skip to content

Commit

Permalink
just added the GBS class to the talker in order to read messages stre…
Browse files Browse the repository at this point in the history
…amed from receiver NV08C-CSM
  • Loading branch information
dacostaortiz authored and Knio committed Dec 31, 2016
1 parent 937b0e3 commit 0cd86c9
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions pynmea2/types/talker.py
Original file line number Diff line number Diff line change
Expand Up @@ -942,3 +942,19 @@ class DPT(TalkerSentence):
('Offset from the trasducer, in meters', 'offset', Decimal),
('Maximum range scale in use', 'range', Decimal),
)

#GBS - GPS Satellite Fault Detection
#used by devices such as [MX521] [NV08C-CSM]
#description retreived from: "https://www.xj3.nl/download/99/NMEA.txt"
class GBS(TalkerSentence):
fields = (
('Timestamp','timestamp', timestamp),
('Expected error in latitude', 'lat_err'),
('Expected error in longitude', 'lon_err'),
('Expected error in altitude', 'alt_err'),
('PRN of most likely failed satellite','sat_prn_num_f'),
('Probability of missed detection for most likely failed satellite','pro_miss', Decimal),
('Estimate of bias in meters on most likely failed satellite','est_bias'),
('Standard deviation of bias estimate','est_bias_dev'),
)

0 comments on commit 0cd86c9

Please # to comment.