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

Update Data Model.md #135

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions extras/doc/Data Model.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,12 @@ There is additional information that is not related to a fix. Instead, it conta
* `gps.UTCus()`, the number of microseconds since the last received UTC time, calculated from `micros()` and `gps.UTCsecondStart`.
* `gps.nmeaMessage`, the latest received message type. This is an ephemeral value, because multiple sentences are merged into one `fix` structure. If you only check this after a complete fix is received, you will only see the LAST_SENTENCE_IN_INTERVAL.
* enum values NMEA_GLL, NMEA_GSA, NMEA_GST, NMEA_GSV, NMEA_RMC, NMEA_VTG or NMEA_ZDA
* `gps.satellies[]`, an array of satellite-specific information, where each element contains
* `gps.satellies[i].id`, satellite ID
* `gps.satellies[i].elevation`, satellite elevation in 0-90 integer degrees
* `gps.satellies[i].azimuth`, satellite azimuth in 0-359 integer degrees
* `gps.satellies[i].snr`, satellite signal-to-noise ratio in 0-99 integer dBHz
* `gps.satellies[i].tracked`, satellite being tracked flag, a boolean
* `gps.satellites[]`, an array of satellite-specific information, where each element contains
* `gps.satellites[i].id`, satellite ID
* `gps.satellites[i].elevation`, satellite elevation in 0-90 integer degrees
* `gps.satellites[i].azimuth`, satellite azimuth in 0-359 integer degrees
* `gps.satellites[i].snr`, satellite signal-to-noise ratio in 0-99 integer dBHz
* `gps.satellites[i].tracked`, satellite being tracked flag, a boolean
* `gps.sat_count`, the number of elements in the `gps.satellites[]` array
* `gps.talker_id[]`, talker ID, a two-character array (not NUL-terminated)
* `gps.mfr_id[]`, manufacturer ID, a three-character array (not NUL-terminated)
Expand Down