Skip to main content

Python package for parsing and creating TSIP packets

Project description

pypiversions pypistatus pythontsiplicense

About Python-TSIP

Python-TSIP is a Python package for parsing and creating TSIP packets. The Trimble Standard Interface Protocol (TSIP) is the binary protocol spoken by the GPS receivers sold by Trimble Navigation Ltd. (http://www.trimble.com).

Python-TSIP is available under the “BSD 2-Clause Simplified License”.

Status

Almost the full set of TSIP command and report packets understood by the Copernicus II receiver has been implemented but so far only some of them have been tested against the actual GPS. Implementing a complete set of tests against an actual Copernicus II receiver is currently work in progress. Presumably Trimble Thunderbolt and Thunderbolt-E are also supported as they appear to implement a subset of the commands/reports of the (newer) Copernicus II receiver. I don’t have access to any other Trimble products.

Documentation is way behind and largely reflects an obsolete implementation of this project.

Python-TSIP is automatically tested against the following Python versions.

  • Python 2.6

  • Python 2.7

  • Python 3.3

  • Python 3.4

  • Python 3.5

  • pypy

  • pypy3

The tests currently fail on the following Python versions.

  • Python 3.2 (syntax error in the coverage module, it may work otherwise)

  • Jython (can’t get Tox to work with jython)

Branch

Travis-CI

Codacy

Codecov

master

travismaster

codacymaster

codecovmaster

develop

travisdevelop

codecovdevelop

The master branch equals the latest release. The develop branch represents the latest development but may not always pass all tests. I use the gitflow plugin to follow this Git branching model.

Example

The following code shows how to receive the current GPS time from the receiver.

  • Command packet 0x21 requests the current GPS time.

  • Report packet 0x41 contains the current GPS time. Its fields are accessible by index.

import tsip
import serial

# Open serial connection to Copernicus II receiver
serial_conn = serial.Serial('/dev/ttyS0', 38400)
gps_conn = tsip.GPS(serial_conn)

# Prepare and send command packet 0x21
command = tsip.Packet(0x21)
gps_conn.write(command)

while True:      # should implement timeout here!!!
    report = gps.read()
    if report[0] == 0x41:
        print 'GPS time of week .......: %f' % (report[1])
        print 'Extended GPS week number: %d' % (report[2])
        print 'GPS UTC offset .........: %f' % (report[3])
        break

History

0.2.0 (03-Dec-2015)

  • Rewritten from scratch.

  • Implements almost complete set of TSIP commands supported by Trimble Copernicus II and Thunderbolt/Thunderbolt-E GPS receivers.

0.1.0 (20-Jun-2015)

  • First release on PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tsip-0.2.0.tar.gz (46.3 kB view hashes)

Uploaded Source

Built Distribution

tsip-0.2.0-py2.py3-none-any.whl (13.7 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page