ccsdspy


Nameccsdspy JSON
Version 1.2.1 PyPI version JSON
download
home_page
SummaryIO Interface for Reading CCSDS Data in Python.
upload_time2023-11-26 10:26:17
maintainer
docs_urlNone
author
requires_python>=3.6
licenseCopyright (c) 2018, Daniel da Silva All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the ccsdspy project nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
keywords python nasa ccsds space packet protocol
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            CCSDSPy - IO Interface for Reading CCSDS Data in Python.
========================================================

.. image:: https://github.com/ccsdspy/ccsdspy/actions/workflows/ccsdspy-ci.yml/badge.svg
    :target: https://github.com/ccsdspy/ccsdspy/actions
    :alt: CI Status


.. image:: https://codecov.io/gh/ccsdspy/ccsdspy/branch/main/graph/badge.svg?token=Ia45f4cW8f
    :target: https://codecov.io/gh/ccsdspy/ccsdspy
    :alt: Code Coverage	  
    

.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.7819991.svg
    :target: https://doi.org/10.5281/zenodo.7819991
    :alt: Zenodo DOI
	  
This community-developed package provides a Python interface for reading tightly packed bits in the `Consultative Committee for Space Data Systems (CCSDS) <https://public.ccsds.org/default.aspx>`__ format used by many NASA and ESA missions. The library is developed with requirements sourced from the community and extensive automated testing.

Used By
-------
.. image:: https://raw.githubusercontent.com/ccsdspy/ccsdspy/main/docs/_static/used-by/small/goes-r.png
    :target: https://www.goes-r.gov/
.. image:: https://raw.githubusercontent.com/ccsdspy/ccsdspy/main/docs/_static/used-by/small/hermes.png
    :target: https://science.nasa.gov/missions/hermes
.. image:: https://raw.githubusercontent.com/ccsdspy/ccsdspy/main/docs/_static/used-by/small/punch.png
    :target: https://punch.space.swri.edu/
.. image:: https://raw.githubusercontent.com/ccsdspy/ccsdspy/main/docs/_static/used-by/small/mms.jpg
    :target: https://mms.gsfc.nasa.gov/
.. image:: https://raw.githubusercontent.com/ccsdspy/ccsdspy/main/docs/_static/used-by/small/spherex.png
    :target: https://www.jpl.nasa.gov/missions/spherex
.. image:: https://raw.githubusercontent.com/ccsdspy/ccsdspy/main/docs/_static/used-by/small/elfin.jpg
    :target: https://elfin.igpp.ucla.edu/
.. image:: https://raw.githubusercontent.com/ccsdspy/ccsdspy/main/docs/_static/used-by/small/padre.png
    :target: https://padre.ssl.berkeley.edu

Do you know of other missions that use CCSDSPy? Let us know `through a github issue`_!

.. _through a github issue: https://github.com/ccsdspy/ccsdspy/issues/new

Installation
============
To install ccsdspy

.. code::

   pip install ccsdspy

Usage Example
=============
The following example shows how simple it is to read in fixed length CCSDS packets.

.. code-block:: python
                
   import ccsdspy
   from ccsdspy import PacketField, PacketArray
   
   pkt = ccsdspy.FixedLength([
        PacketField(name='SHCOARSE', data_type='uint', bit_length=32),
        PacketField(name='SHFINE',   data_type='uint', bit_length=20),
        PacketField(name='OPMODE',   data_type='uint', bit_length=3),
        PacketField(name='SPACER',   data_type='fill', bit_length=1),
        PacketField(name='VOLTAGE',  data_type='int',  bit_length=8),
	PacketArray(
            name='SENSOR_GRID',
            data_type='uint',
            bit_length=16,
            array_shape=(32, 32),
            array_order='C'
	),
   ])
   
   result = pkt.load('mypackets.bin')

Documentation
=============
Our documentation is hosted on readthedocs and can be found `here <https://ccsdspy.readthedocs.io/en/latest/>`__.

Getting Help
============
For more information or to ask questions about the library or CCSDS data in general, check out the `CCSDSPy Discussion Board <https://github.com/ccsdspy/ccsdspy/discussions>`__ hosted through GitHub.

Acknowledging or Citing ccsdspy
===============================
If you use ccsdspy, it would be appreciated if you let us know and mention it in your publications. The code can be cited using the `DOI provided by Zenodo <https://zenodo.org/record/7819991>`__. The continued growth and development of this package is dependent on the community being aware of it.

Code of Conduct
===============
When interacting with this package please behave consistent with the following `Code of Conduct <https://www.contributor-covenant.org/version/2/1/code_of_conduct/>`__.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "ccsdspy",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "python,nasa,ccsds,space packet protocol",
    "author": "",
    "author_email": "Daniel da Silva <mail@danieldasilva.org>, Steven Christe <steven.d.christe@nasa.gov>",
    "download_url": "https://files.pythonhosted.org/packages/ea/b0/afa30f2c8b5bad3d78d9a7cbfa10b5081fd114f488292a4f5dd81ce8fdb0/ccsdspy-1.2.1.tar.gz",
    "platform": null,
    "description": "CCSDSPy - IO Interface for Reading CCSDS Data in Python.\n========================================================\n\n.. image:: https://github.com/ccsdspy/ccsdspy/actions/workflows/ccsdspy-ci.yml/badge.svg\n    :target: https://github.com/ccsdspy/ccsdspy/actions\n    :alt: CI Status\n\n\n.. image:: https://codecov.io/gh/ccsdspy/ccsdspy/branch/main/graph/badge.svg?token=Ia45f4cW8f\n    :target: https://codecov.io/gh/ccsdspy/ccsdspy\n    :alt: Code Coverage\t  \n    \n\n.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.7819991.svg\n    :target: https://doi.org/10.5281/zenodo.7819991\n    :alt: Zenodo DOI\n\t  \nThis community-developed package provides a Python interface for reading tightly packed bits in the `Consultative Committee for Space Data Systems (CCSDS) <https://public.ccsds.org/default.aspx>`__ format used by many NASA and ESA missions. The library is developed with requirements sourced from the community and extensive automated testing.\n\nUsed By\n-------\n.. image:: https://raw.githubusercontent.com/ccsdspy/ccsdspy/main/docs/_static/used-by/small/goes-r.png\n    :target: https://www.goes-r.gov/\n.. image:: https://raw.githubusercontent.com/ccsdspy/ccsdspy/main/docs/_static/used-by/small/hermes.png\n    :target: https://science.nasa.gov/missions/hermes\n.. image:: https://raw.githubusercontent.com/ccsdspy/ccsdspy/main/docs/_static/used-by/small/punch.png\n    :target: https://punch.space.swri.edu/\n.. image:: https://raw.githubusercontent.com/ccsdspy/ccsdspy/main/docs/_static/used-by/small/mms.jpg\n    :target: https://mms.gsfc.nasa.gov/\n.. image:: https://raw.githubusercontent.com/ccsdspy/ccsdspy/main/docs/_static/used-by/small/spherex.png\n    :target: https://www.jpl.nasa.gov/missions/spherex\n.. image:: https://raw.githubusercontent.com/ccsdspy/ccsdspy/main/docs/_static/used-by/small/elfin.jpg\n    :target: https://elfin.igpp.ucla.edu/\n.. image:: https://raw.githubusercontent.com/ccsdspy/ccsdspy/main/docs/_static/used-by/small/padre.png\n    :target: https://padre.ssl.berkeley.edu\n\nDo you know of other missions that use CCSDSPy? Let us know `through a github issue`_!\n\n.. _through a github issue: https://github.com/ccsdspy/ccsdspy/issues/new\n\nInstallation\n============\nTo install ccsdspy\n\n.. code::\n\n   pip install ccsdspy\n\nUsage Example\n=============\nThe following example shows how simple it is to read in fixed length CCSDS packets.\n\n.. code-block:: python\n                \n   import ccsdspy\n   from ccsdspy import PacketField, PacketArray\n   \n   pkt = ccsdspy.FixedLength([\n        PacketField(name='SHCOARSE', data_type='uint', bit_length=32),\n        PacketField(name='SHFINE',   data_type='uint', bit_length=20),\n        PacketField(name='OPMODE',   data_type='uint', bit_length=3),\n        PacketField(name='SPACER',   data_type='fill', bit_length=1),\n        PacketField(name='VOLTAGE',  data_type='int',  bit_length=8),\n\tPacketArray(\n            name='SENSOR_GRID',\n            data_type='uint',\n            bit_length=16,\n            array_shape=(32, 32),\n            array_order='C'\n\t),\n   ])\n   \n   result = pkt.load('mypackets.bin')\n\nDocumentation\n=============\nOur documentation is hosted on readthedocs and can be found `here <https://ccsdspy.readthedocs.io/en/latest/>`__.\n\nGetting Help\n============\nFor more information or to ask questions about the library or CCSDS data in general, check out the `CCSDSPy Discussion Board <https://github.com/ccsdspy/ccsdspy/discussions>`__ hosted through GitHub.\n\nAcknowledging or Citing ccsdspy\n===============================\nIf you use ccsdspy, it would be appreciated if you let us know and mention it in your publications. The code can be cited using the `DOI provided by Zenodo <https://zenodo.org/record/7819991>`__. The continued growth and development of this package is dependent on the community being aware of it.\n\nCode of Conduct\n===============\nWhen interacting with this package please behave consistent with the following `Code of Conduct <https://www.contributor-covenant.org/version/2/1/code_of_conduct/>`__.\n",
    "bugtrack_url": null,
    "license": "Copyright (c) 2018, Daniel da Silva All rights reserved.  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:  * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the ccsdspy project nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ",
    "summary": "IO Interface for Reading CCSDS Data in Python.",
    "version": "1.2.1",
    "project_urls": null,
    "split_keywords": [
        "python",
        "nasa",
        "ccsds",
        "space packet protocol"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eab0afa30f2c8b5bad3d78d9a7cbfa10b5081fd114f488292a4f5dd81ce8fdb0",
                "md5": "f9376b8de6274087e4db2f22d6d179a8",
                "sha256": "6eb9721ab8429b041621916f793c5dd5e29327018ec8993dcf60e5a07392cf48"
            },
            "downloads": -1,
            "filename": "ccsdspy-1.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "f9376b8de6274087e4db2f22d6d179a8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 5827332,
            "upload_time": "2023-11-26T10:26:17",
            "upload_time_iso_8601": "2023-11-26T10:26:17.240556Z",
            "url": "https://files.pythonhosted.org/packages/ea/b0/afa30f2c8b5bad3d78d9a7cbfa10b5081fd114f488292a4f5dd81ce8fdb0/ccsdspy-1.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-26 10:26:17",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "ccsdspy"
}
        
Elapsed time: 0.51348s