-
Notifications
You must be signed in to change notification settings - Fork 39
Part 2. Python Application
Rachel edited this page Sep 20, 2017
·
1 revision
We'll work through utilizing two python libraries to achieve our goal: pynmea2 and ISStreamer
Create or navigate to a directory to store your code:
$ mkdir pi-tracker
$ cd pi-tracker
$ nano app.py
Inside app.py we'll start with the following most basic python:
import serial
import pynmea2
serialStream = serial.Serial("/dev/ttyAMA0", 9600, timeout=0.5)
while True:
sentence = serialStream.readline()
if sentence.find('GGA') > 0:
data = pynmea2.parse(sentence)
print "{time}: {lat},{lon}".format(time=data.timestamp,lat=data.latitude,lon=data.longitude)Importing the serial and pynmea2 modules
import serial
import pynmea2Creating a serial stream on UART at /dev/ttyAMA0 at 9600 baudrate with a timeout of 0.5 seconds.
serialStream = serial.Serial("/dev/ttyAMA0", 9600, timeout=0.5)Read the NMEA sentence from serial, parse and check to see if it's a GPGGA sentence (which means it will have coordinate data in it), and print the data to the screen.
while True:
sentence = serialStream.readline()
if sentence.find('GGA') > 0:
data = pynmea2.parse(sentence)
print "{time}: {lat},{lon}".format(time=data.timestamp,lat=data.latitude,lon=data.longitude)<< Part 2. Application Development - Part 2. Data Streaming >>