Skip to main content Link Menu Expand (external link) Document Search Copy Copied

Device GNSS

The on board GNSS module has connectivity with the following satellite systems: QZSS, Galileo, Beidou, SBAS, GLONASS, GPS

Streaming data

Each data frame is an NMEA 0183 sentence

Here’s an example using the pre installed SDK to stream gnss data.

from anx_interface import Anx

def gnss_cb(data):
    print(data)
    
anx = Anx()
anx.start_device_gnss(cb=gnss_cb)
anx.wait()