Metadata-Version: 2.1
Name: pa1010d
Version: 0.0.2
Summary: Python library for the PA1010D i2c GPS module
Home-page: https://www.pimoroni.com
Author: Philip Howard
Author-email: phil@pimoroni.com
License: MIT
Project-URL: GitHub, https://www.github.com/pimoroni/pa1010d-python
Keywords: Raspberry Pi
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: POSIX :: Linux
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: System :: Hardware
Requires-Python: >=3.4
Description-Content-Type: text/markdown
Requires-Dist: pynmea2

# Pimoroni PA1010D GPS Breakout

[![Build Status](https://travis-ci.com/pimoroni/pa1010d-python.svg?branch=master)](https://travis-ci.com/pimoroni/pa1010d-python)
[![Coverage Status](https://coveralls.io/repos/github/pimoroni/pa1010d-python/badge.svg?branch=master)](https://coveralls.io/github/pimoroni/pa1010d-python?branch=master)
[![PyPi Package](https://img.shields.io/pypi/v/pa1010d.svg)](https://pypi.python.org/pypi/pa1010d)
[![Python Versions](https://img.shields.io/pypi/pyversions/pa1010d.svg)](https://pypi.python.org/pypi/pa1010d)

# Pre-requisites

You must enable:

* i2c: `sudo raspi-config nonint do_i2c 0`

You can optionally run `sudo raspi-config` or the graphical Raspberry Pi Configuration UI to enable interfaces.

# Installing

Stable library and dependencies from GitHub:

* `git clone https://github.com/pimoroni/pa1010d-python`
* `cd pa1010d-python`
* `sudo ./install.sh`

Latest/development library and dependencies from GitHub:

* `git clone https://github.com/pimoroni/pa1010d-python`
* `cd pa1010d-python`
* `sudo ./install.sh --unstable`

Stable (library only) from PyPi:

* Just run `sudo pip3 install pa1010d`

# Changelog
0.0.2
-----

* Add support for disabling PPS LED
* Handle spurious newlines in sentences
* Add PDOP, VDOP and HDOP output
* Handle GLL messages

0.0.1
-----

* Initial Release


