From 2f4e6094bd554b9c514af87d315d32fe6d51f464 Mon Sep 17 00:00:00 2001 From: karfam Date: Sun, 16 Feb 2020 09:45:56 +0200 Subject: [PATCH] Update Data Model.md Lines 111-116 fixed a typo (missing an t from satellite) --- extras/doc/Data Model.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/extras/doc/Data Model.md b/extras/doc/Data Model.md index 2976e00..1f02b45 100644 --- a/extras/doc/Data Model.md +++ b/extras/doc/Data Model.md @@ -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)