Skip to content

Commit

Permalink
Small bug fix to GGA column name in casting, fix to test data, small …
Browse files Browse the repository at this point in the history
…doc update
  • Loading branch information
nabelekt committed Jan 12, 2021
1 parent 087f547 commit e9ce012
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,12 @@ All done. Exiting.
## References Used in Development
https://github.com/Knio/pynmea2/blob/master/README.md

https://www.trimble.com/OEM_ReceiverHelp/V4.44/en/NMEA-0183messages_MessageOverview.html

https://www.u-blox.com/sites/default/files/products/documents/u-blox8-M8_ReceiverDescrProtSpec_%28UBX-13003221%29.pdf (section 31 'NMEA Protocol')

https://www.sparkfun.com/datasheets/GPS/NMEA%20Reference%20Manual1.pdf

https://www.trimble.com/OEM_ReceiverHelp/V4.44/en/NMEA-0183messages_MessageOverview.html

https://www.nmea.org/Assets/20190303%20nmea%200183%20talker%20identifier%20mnemonics.pdf

https://www.unavco.org/help/glossary/glossary.html
Expand Down
2 changes: 1 addition & 1 deletion column_casting.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
columns_to_cast['RMC', 'float32'] = ['timestamp', 'lat', 'lon', 'spd_over_grnd', 'true_course', 'mag_variation']

columns_to_cast['GGA', 'float32'] = ['timestamp', 'lat', 'lon', 'horizontal_dil', 'altitude', 'geo_sep']
columns_to_cast['GGA', 'Int16'] = ['gps_qial', 'num_sats']
columns_to_cast['GGA', 'Int16'] = ['gps_qual', 'num_sats']
# For GGA, unsure about 'age_gps_data' and 'ref_station_id'

columns_to_cast['GLL', 'float32'] = ['lat', 'lon']
Expand Down
2 changes: 1 addition & 1 deletion test_data/test_data_GNGSA.nmea
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$GNGSA,A,1,,,,,,,,,,,,,99.99,99.99,99.99*2Eƒ
$GNGSA,A,1,,,,,,,,,,,,,99.99,99.99,99.99*2E
$GNGSA,A,1,,,,,,,,,,,,,99.99,99.99,99.99*2E
$GNGSA,A,1,,,,,,,,,,,,,99.99,99.99,99.99*2E
$GNGSA,A,1,,,,,,,,,,,,,99.99,99.99,99.99*2E
Expand Down

0 comments on commit e9ce012

Please sign in to comment.