Qwiic_Ublox_Gps_Py¶
This is a Python module for the SparkFun GPS products based on u-blox GPS modules.
This package is included in the overall SparkFun qwiic Python Package. While the module itself does not use I2C, it may none the less join the ranks when the Raspberry Pi has better support for clock stretching. None the less, a Qwiic connector has been included onboard so the GPS module can be used with our along side SparkFun’s Qwiic products.
Supported Platforms¶
The u-blox gps Python package currently supports the following platforms:
- Raspberry Pi <!– Platforms to be tested
- NVidia Jetson Nano
- Google Coral Development Board –>
Documentation¶
The SparkFun u-blox gps module documentation is hosted at ReadTheDocs
Installation¶
PyPi Installation¶
This repository is hosted on PyPi as the sparkfun-ublox_gps package. On systems that support PyPi installation via pip, this library is installed using the following commands
For all users (note: the user must have sudo privileges):
sudo pip install sparkfun-ublox-gps
For the current user:
sudo pip install sparkfun-ublox-gps
Local Installation¶
To install, make sure the setuptools package is installed on the system.
Direct installation at the command line:
python setup.py install
To build a package for use with pip:
python setup.py sdist
A package file is built and placed in a subdirectory called dist. This package file can be installed using pip.
cd dist
pip install sparkfun_ublox_gps-<version>.tar.gz
Example Use¶
from ublox_gps import UbloxGps
import serial
# Can also use SPI here - import spidev
# I2C is not supported
port = serial.Serial('/dev/serial0', baudrate=38400, timeout=1)
gps = UbloxGps(port)
def run():
try:
print("Listenting for UBX Messages.")
while True:
try:
coords = gps.geo_coords()
print(coords.lon, coords.lat)
except (ValueError, IOError) as err:
print(err)
finally:
port.close()
if __name__ == '__main__':
run()
Examples Directory¶
- geo_coords_ex1.py
- Simple example showing how to get and print out latitude, longitude, and
- heading.
- gps_time_ex2.py
- Simple example showing how to UTC time and how to check its’ validity.
- dead_reckoning_ex3.py
- Simple example showing how to use dead reckoning on dead reckoning modules.
- Make sure to take a look at our hookup guide for a detailed explanation on where to attach the module and how to calibrate it.
- stream_nmea_gps_ex4.py
- Simple example showing how to stream NMEA data from Ublox Modules.
- modifying_configuration_settings_ex5.py
- Simple example showing how change the configuration settings for the Ublox
- Module.
- using_spi_ex6.py
- Simple example showing how to use SPI.
- Module.
Attribution¶
This code is dependent on the work by daylomople and the awesome parsing capabilities of ubxtranslator.
To Do¶
- [ ] Some bugs associated with SPI writes.
- [ ] Add more Classes and Messages to
sparkfun_predefines.py
so that a - greater variety of messages can be parsed.
- [ ] Add more Classes and Messages to
- [ ] Fix bug when getting configuration settings.
Table of Contents¶
API Reference¶
Get latitude and longitude¶
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | #!/usr/bin/env python3 #----------------------------------------------------------------------------- # geo_coords_ex1.py # # Simple Example for SparkFun ublox GPS products #------------------------------------------------------------------------ # # Written by SparkFun Electronics, July 2020 # # Do you like this library? Help support SparkFun. Buy a board! # https://sparkfun.com #================================================================================== # GNU GPL License 3.0 # Copyright (c) 2020 SparkFun Electronics # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. #================================================================================== # Example 1 # This example sets up the serial port and then passes it to the UbloxGPs # library. From here we call geo_coords() and to get longitude and latitude. I've # also included heading of motion here as well. import serial from ublox_gps import UbloxGps port = serial.Serial('/dev/serial0', baudrate=38400, timeout=1) gps = UbloxGps(port) def run(): try: print("Listening for UBX Messages") while True: try: geo = gps.geo_coords() print("Longitude: ", geo.lon) print("Latitude: ", geo.lat) print("Heading of Motion: ", geo.headMot) except (ValueError, IOError) as err: print(err) finally: port.close() if __name__ == '__main__': run() |
Get GPS time¶
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | #!/usr/bin/env python3 #----------------------------------------------------------------------------- # gps_time_ex2.py # # Simple Example for SparkFun ublox GPS products #------------------------------------------------------------------------ # # Written by SparkFun Electronics, July 2020 # # Do you like this library? Help support SparkFun. Buy a board! # https://sparkfun.com #================================================================================== # GNU GPL License 3.0 # Copyright (c) 2020 SparkFun Electronics # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. #================================================================================== # Example 2 # This example sets up the serial port and then passes it to the UbloxGPs # library. From here we call date_time() and to get gps time and check whether # the data received is "valid" which indicates that the probability of the time # to be correct is very high. import serial from ublox_gps import UbloxGps port = serial.Serial('/dev/serial0', baudrate=38400, timeout=1) gps = UbloxGps(port) def run(): try: print("Listening for UBX Messages") while True: try: gps_time = gps.date_time() print("{}/{}/{}".format(gps_time.day, gps_time.month, gps_time.year)) print("UTC Time {}:{}:{}".format(gps_time.hour, gps_time.min, gps_time.sec)) print("Valid date:{}\nValid Time:{}".format(gps_time.valid.validDate, gps_time.valid.validTime)) except (ValueError, IOError) as err: print(err) finally: port.close() if __name__ == '__main__': run() |
Dead Reckoning¶
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | #!/usr/bin/env python3 #----------------------------------------------------------------------------- # dead_reckoning_ex3.py # # Simple Example for SparkFun ublox GPS products #------------------------------------------------------------------------ # # Written by SparkFun Electronics, July 2020 # # Do you like this library? Help support SparkFun. Buy a board! # https://sparkfun.com #================================================================================== # GNU GPL License 3.0 # Copyright (c) 2020 SparkFun Electronics # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. # #================================================================================== # Example 3 # This example sets up the serial port and then passes it to the UbloxGPs # library. From here we call veh_attitude() to get the # the data received is "valid" which indicates that the probability of the time # to be correct is very high. import serial from ublox_gps import UbloxGps port = serial.Serial('/dev/serial0', baudrate=38400, timeout=1) gps = UbloxGps(port) def run(): try: print("Listening for UBX Messages") while True: try: veh = gps.veh_attitude() print("Roll: ", veh.roll) print("Pitch: ", veh.pitch) print("Heading: ", veh.heading) print("Roll Acceleration: ", veh.accRoll) print("Pitch Acceleration: ", veh.accPitch) print("Heading Acceleration: ", veh.accHeading) except (ValueError, IOError) as err: print(err) finally: port.close() if __name__ == '__main__': run() |
Stream NMEA data¶
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | #!/usr/bin/env python3 #----------------------------------------------------------------------------- # stream_nmea_gps_ex4.py # # Simple Example for SparkFun ublox GPS products #------------------------------------------------------------------------ # # Written by SparkFun Electronics, July 2020 # # Do you like this library? Help support SparkFun. Buy a board! # https://sparkfun.com #================================================================================== # GNU GPL License 3.0 # Copyright (c) 2020 SparkFun Electronics # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. #================================================================================== # Example 4 # This example sets up the serial port and then passes it to the UbloxGPs # library. Now it's as simple as calling stream_nmea(). The function # stream_nmea() returns the full NMEA sentence which could be passed to an NMEA # parser. import serial from ublox_gps import UbloxGps port = serial.Serial('/dev/serial0', baudrate=38400, timeout=1) gps = UbloxGps(port) def run(): try: print("Listening for UBX Messages") while True: try: print(gps.stream_nmea()) except (ValueError, IOError) as err: print(err) finally: port.close() if __name__ == '__main__': run() |
Modifying Configuration Settings¶
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | #!/usr/bin/env python3 #----------------------------------------------------------------------------- # modifying_configuration_settings_ex5.py # # Simple Example for SparkFun ublox GPS products #------------------------------------------------------------------------ # # Written by SparkFun Electronics, July 2020 # # Do you like this library? Help support SparkFun. Buy a board! # https://sparkfun.com #================================================================================== # GNU GPL License 3.0 # Copyright (c) 2020 SparkFun Electronics # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. #================================================================================== # Example 5 # Ublox has changed their method for changing your module's settings. The new # method requires passing the module the "key id" of the configuration you want # to modify followed by the value you want to set. If you're requesting # information then you'd pass the key id without a value. In both cases the # response will be the configuration data that was set upon success and a NAK # on a failure. Check the interface description datasheet for more information. import serial from ublox_gps import UbloxGps port = serial.Serial('/dev/serial0', baudrate=38400, timeout=1) gps = UbloxGps(port) def run(): try: print("Listening for UBX Messages") while True: try: # Get NMEA Protocol Version get_set = gps.ubx_get_set_del(0x20930001) print(get_set) except (ValueError, IOError) as err: print(err) finally: port.close() if __name__ == '__main__': run() |
SPI and Ublox Modules¶
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | #!/usr/bin/env python3 #----------------------------------------------------------------------------- # using_spi_ex6.py # # Simple Example for SparkFun ublox GPS products #------------------------------------------------------------------------ # # Written by SparkFun Electronics, July 2020 # # Do you like this library? Help support SparkFun. Buy a board! # https://sparkfun.com #================================================================================== # GNU GPL License 3.0 # Copyright (c) 2020 SparkFun Electronics # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. #================================================================================== # Example 6 # To set up SPI is as simple as calling spidev and passing the port to the # UbloxGps library. Other than this the library functions the same. There's no # need to adjust the SPI settings because they are set behind the scenes # according to the settings specified in the datasheet. # # Note as of 7/18 the SPI implementation still needs a little work. import spidev from ublox_gps import UbloxGps port = spidev.SpiDev() gps = UbloxGps(port) def run(): try: print("Listening for UBX Messages") while True: try: geo = gps.geo_coords() print("Longitude: ", geo.lon) print("Latitude: ", geo.lat) print("Heading of Motion: ", geo.headMot) except (ValueError, IOError) as err: print(err) finally: port.close() if __name__ == '__main__': run() |