{ "info": { "author": "Markus Juenemann", "author_email": "markus@juenemann.net", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Libraries", "Topic :: System :: Hardware" ], "description": ".. image:: https://img.shields.io/pypi/v/tsip.svg?style=flat-square\n :target: https://pypi.python.org/pypi/tsip\n :alt: Version\n\n.. image:: https://img.shields.io/github/license/mjuenema/python-TSIP.svg?style=flat-square\n :target: https://opensource.org/licenses/BSD-2-Clause\n :alt: License\n\n.. image:: https://img.shields.io/github/issues/mjuenema/python-TSIP.svg?style=flat-square\n :target: https://github.com/mjuenema/python-TSIP/issues\n :alt: Issues\n\n.. image:: https://img.shields.io/travis/mjuenema/python-TSIP/master.svg?style=flat-square\n :target: https://www.travis-ci.org/mjuenema/python-TSIP/builds\n :alt: Travis-CI\n\n\nAbout Python-TSIP\n=================\n\nPython-TSIP is a Python package for parsing and creating TSIP packets. The Trimble Standard \nInterface Protocol (TSIP) is the binary protocol spoken by the GPS receivers sold by Trimble Navigation Ltd. \n(http://www.trimble.com).\n\nPython-TSIP is available under the \"BSD 2-Clause Simplified License\".\n\nStatus\n======\n\nAlmost the full set of TSIP command and report packets understood by the Copernicus II receiver has been implemented but \nso far only some of them have been tested against the actual GPS. Implementing a complete set of tests against an actual\nCopernicus II receiver is currently work in progress. Presumably Trimble Thunderbolt and Thunderbolt-E are also \nsupported as they appear to implement a subset of the commands/reports of the (newer) Copernicus II receiver. \nI don't have access to any other Trimble products.\n\nPython-TSIP is automatically tested against the following Python versions.\n\n* Python 2.6\n* Python 2.7\n* Python 3.3\n* Python 3.4\n* Python 3.5\n* pypy\n* pypy3\n\nThe tests currently fail on the following Python versions. \n\n* Python 3.2 (syntax error in the coverage module, it may work otherwise)\n* Jython (can't get Tox to work with jython)\n\nThe master branch equals the latest release. The develop branch represents the\nlatest development but may not always pass all tests.\n\n\nExample\n=======\n\nThe following code shows how to receive the current GPS time from the receiver.\n\n* Command packet 0x21 requests the current GPS time.\n* Report packet 0x41 contains the current GPS time. Its fields are accessible by index.\n\n.. code-block:: python\n\n import tsip\n import serial\n\n # Open serial connection to Copernicus II receiver\n serial_conn = serial.Serial('/dev/ttyS0', 38400)\n gps_conn = tsip.GPS(serial_conn)\n\n # Prepare and send command packet 0x21\n command = tsip.Packet(0x21)\n gps_conn.write(command)\n\n while True: # should implement timeout here!!!\n report = gps_conn.read()\n if report[0] == 0x41:\n print 'GPS time of week .......: %f' % (report[1])\n print 'Extended GPS week number: %d' % (report[2])\n print 'GPS UTC offset .........: %f' % (report[3])\n break\n\nMore examples can be found in the `docs/examples/` folder.\n\n\n\n\nHistory\n=======\n\n0.3.2 (28-Oct-2017)\n-------------------\n\n* Added Report Packet 0x58: GPS System Data from the Receiver.\n* Fixed Report Packet 0x47: Signals Levels for Tracked Satellites.\n* Fixed Report Packet 0x6D: Satellite Selection List.x \n* Added `docs/examples/example2.py` wich provides a more comprehensive\n template program than the example in the README.\n\n0.3.1 (26-Sep-2017)\n-------------------\n\n* Fixed README.rst so it renders properly on PyPi.\n\n0.3.0 (26-Sep-2017)\n-------------------\n\n* Argument to ``tsip.Packet()`` can now also be a tuple or list \n (inspired by Criss Swaim).\n* Changed development status from alpha to beta.\n* Cleaned up lots of code to satisfy flake8.\n\n0.2.0 (03-Dec-2015)\n-------------------\n\n* Rewritten from scratch.\n* Implements almost complete set of TSIP commands supported by\n Trimble Copernicus II and Thunderbolt/Thunderbolt-E GPS\n receivers.\n\n0.1.0 (20-Jun-2015)\n---------------------\n\n* First release on PyPI.\n\n\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/mjuenema/python-TSIP", "keywords": "TSIP,Trimble,GPS", "license": "BSD License", "maintainer": "", "maintainer_email": "", "name": "tsip", "package_url": "https://pypi.org/project/tsip/", "platform": "", "project_url": "https://pypi.org/project/tsip/", "project_urls": { "Homepage": "https://github.com/mjuenema/python-TSIP" }, "release_url": "https://pypi.org/project/tsip/0.3.2/", "requires_dist": null, "requires_python": "", "summary": "Python package for parsing and creating TSIP packets", "version": "0.3.2" }, "last_serial": 3286067, "releases": { "0.2.0": [ { "comment_text": "", "digests": { "md5": "822e00d32dcbdafcd5a0cbf26cbae4d4", "sha256": "c738d842ab6c8ff977367ee39da77ad9911369bbe8dc5905b6e552587fb38a73" }, "downloads": -1, "filename": "tsip-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "822e00d32dcbdafcd5a0cbf26cbae4d4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13694, "upload_time": "2015-12-03T06:05:03", "url": "https://files.pythonhosted.org/packages/a0/d1/6762d9d1b617943abef7f492c4370e23ddd59b3f3ad8228e2910a4dc418c/tsip-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e9e449cf2175baba3c6a129393fe5e50", "sha256": "d8bf300d30f830b753f545375b9725b9f635b3f4f9b6df1ce85fd8166bd2aada" }, "downloads": -1, "filename": "tsip-0.2.0.tar.gz", "has_sig": false, "md5_digest": "e9e449cf2175baba3c6a129393fe5e50", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46264, "upload_time": "2015-12-03T06:07:10", "url": "https://files.pythonhosted.org/packages/ae/7a/6ee5e6d3ab81b682502ed1493e66f8dc2eecdc282696605c16c838e6e058/tsip-0.2.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "d1356d78d68eafa11e712ca3dab9a774", "sha256": "d4560f1bf5cfb8368bf2017a33cc5d3d6283cdae80ccd85d9e2f8fe6f9a8a130" }, "downloads": -1, "filename": "tsip-0.3.1.tar.gz", "has_sig": false, "md5_digest": "d1356d78d68eafa11e712ca3dab9a774", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46168, "upload_time": "2017-09-25T23:40:03", "url": "https://files.pythonhosted.org/packages/d4/e4/7a3c40c166e9d2797bca00e7fcd745937ba369f5176179409b59ac7f120d/tsip-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "df93406ca9c784e676764dcd95faff82", "sha256": "65ca91c697300f146db3123cc78a1930850f964bf28cf9411ee6eab0c2aa8d79" }, "downloads": -1, "filename": "tsip-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "df93406ca9c784e676764dcd95faff82", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14039, "upload_time": "2017-10-28T10:59:15", "url": "https://files.pythonhosted.org/packages/74/53/24c9d14ab50ca1fe7bc716ac6d95a5900e1459fb7637a2abe79e5a4ad7c8/tsip-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d42709937c82656073e64abcb07410f6", "sha256": "962a39e5ba0c866ea5daba2476de94ad60bf58ebdeab72fd440ffb39445b5d12" }, "downloads": -1, "filename": "tsip-0.3.2-py3.5.egg", "has_sig": false, "md5_digest": "d42709937c82656073e64abcb07410f6", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 21618, "upload_time": "2017-10-28T10:59:17", "url": "https://files.pythonhosted.org/packages/53/57/f72eb5a7c9b478c995dc270e10b20f563142034e12ff488cd578262d0df7/tsip-0.3.2-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "2b4864719364500e02e32f553445fadd", "sha256": "2e993e0662180f220160106812f4a528117feb8ce91856096375d40560a38143" }, "downloads": -1, "filename": "tsip-0.3.2.tar.gz", "has_sig": false, "md5_digest": "2b4864719364500e02e32f553445fadd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46708, "upload_time": "2017-10-28T10:59:19", "url": "https://files.pythonhosted.org/packages/28/ac/15db4d96131c6865aa5bf2b977fbeb848a869559b9ed69551e73731b8463/tsip-0.3.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "df93406ca9c784e676764dcd95faff82", "sha256": "65ca91c697300f146db3123cc78a1930850f964bf28cf9411ee6eab0c2aa8d79" }, "downloads": -1, "filename": "tsip-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "df93406ca9c784e676764dcd95faff82", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14039, "upload_time": "2017-10-28T10:59:15", "url": "https://files.pythonhosted.org/packages/74/53/24c9d14ab50ca1fe7bc716ac6d95a5900e1459fb7637a2abe79e5a4ad7c8/tsip-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d42709937c82656073e64abcb07410f6", "sha256": "962a39e5ba0c866ea5daba2476de94ad60bf58ebdeab72fd440ffb39445b5d12" }, "downloads": -1, "filename": "tsip-0.3.2-py3.5.egg", "has_sig": false, "md5_digest": "d42709937c82656073e64abcb07410f6", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 21618, "upload_time": "2017-10-28T10:59:17", "url": "https://files.pythonhosted.org/packages/53/57/f72eb5a7c9b478c995dc270e10b20f563142034e12ff488cd578262d0df7/tsip-0.3.2-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "2b4864719364500e02e32f553445fadd", "sha256": "2e993e0662180f220160106812f4a528117feb8ce91856096375d40560a38143" }, "downloads": -1, "filename": "tsip-0.3.2.tar.gz", "has_sig": false, "md5_digest": "2b4864719364500e02e32f553445fadd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46708, "upload_time": "2017-10-28T10:59:19", "url": "https://files.pythonhosted.org/packages/28/ac/15db4d96131c6865aa5bf2b977fbeb848a869559b9ed69551e73731b8463/tsip-0.3.2.tar.gz" } ] }