An implementation of the telemetry and telecommand packet utilization standard (PUS).
Project description
Puslib
Puslib is a Python implementation of the telemetry and telecommand packet utilization standard (PUS). It is a standard widely used in the space industry for the purposes of remote monitoring and control of spacecraft subsystems and payloads.
This package is mainly intended for ground segment tools, e.g.:
- data extraction and post-processing of telemetry.
- simulators.
- EGSE SW, and thus enabling the use of mission control systems for controling and monitoring of EGSE equipment.
- enable Python based commanding for mission control systems and other PUS based systems.
- mission-specific tools.
- student projects.
Install
pip install puslib
Python 3.7 or later is required.
Basic Example
from datetime import datetime
from functools import partial
from puslib import packet
from puslib import time
MyTmPacket = partial(packet.PusTmPacket.deserialize,
has_type_counter_field=False,
has_destination_field=False)
MyCucTime = partial(time.CucTime, 4, 2, has_preamble=False)
with open('telemetry.dump', 'rb') as f:
content = f.read()
data = memoryview(content)
offset = 0
cuc_time = MyCucTime()
while offset < len(data):
packet_length, packet = MyTmPacket(data[offset:],
cuc_time,
validate_fields=False,
validate_pec=False)
offset += packet_length
if packet.service == 3 and packet.subservice == 25:
print(packet)
Supported Features
- CCSDS packet handling (telecommands and telemetry packets)
- CCSDS Unsegmented Time Code (CUC) support
- Policy handling of mission specific or implementation specific configurations
- Simple abstraction of application processes
- Streams for telemetry and telecommand I/O access
- PUS Services:
- PUS 1: Request Verification
- PUS 3: Housekeeping (partial support)
- PUS 5: Event Reporting
- PUS 8: Function Management
- PUS 17: Test (partial support)
- PUS 20: On-board Parameter Management (partial support)
Links
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
puslib-0.2.3.tar.gz
(20.5 kB
view details)
Built Distribution
puslib-0.2.3-py3-none-any.whl
(25.7 kB
view details)
File details
Details for the file puslib-0.2.3.tar.gz
.
File metadata
- Download URL: puslib-0.2.3.tar.gz
- Upload date:
- Size: 20.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05c287fc114766b923515a65a3c5aac342533932594b7f7d1ba06ccad9911fa1 |
|
MD5 | a7ca776e4202cbbd9afd6915cbd3602f |
|
BLAKE2b-256 | 6d9e04367a41d43dac389cc5bdfa5dcefc1f4b3db7919e631395a5cc95839e0e |
File details
Details for the file puslib-0.2.3-py3-none-any.whl
.
File metadata
- Download URL: puslib-0.2.3-py3-none-any.whl
- Upload date:
- Size: 25.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a2c5b5e877402365127a00a22e9e86cae67fa9e0e4a8107e49cc1c0d46a7e673 |
|
MD5 | baf5c16a154b78103653cdfb61174c7c |
|
BLAKE2b-256 | 7886317248e63cf5cc44f9cd60735f94861a8320eac835820a23e33bec60a197 |