Commit 9788ed1a authored by Romolo Politi's avatar Romolo Politi
Browse files

publishing

parent 372d04d9
Loading
Loading
Loading
Loading

CCSDSpy.egg-info/SOURCES.txt

deleted100644 → 0
+0 −10
Original line number Diff line number Diff line
LICENSE
README.md
pyproject.toml
CCSDS/__init__.py
CCSDS/ccsds.py
CCSDSpy.egg-info/PKG-INFO
CCSDSpy.egg-info/SOURCES.txt
CCSDSpy.egg-info/dependency_links.txt
CCSDSpy.egg-info/requires.txt
CCSDSpy.egg-info/top_level.txt
 No newline at end of file

CCSDSpy.egg-info/top_level.txt

deleted100644 → 0
+0 −1
Original line number Diff line number Diff line
CCSDS
+7 −4
Original line number Diff line number Diff line
# CCSDSpy
# PyCCSDS

---

CCSDSpy is a library to read a data packet coming from a space mission that follows the Consultative Committee for Space Data Systems (CCSDS) standard
PyCCSDS is a library to read a data packet coming from a space mission that follows the Consultative Committee for Space Data Systems (CCSDS) standard

Current version **0.1.0**

[[_TOC_]]

## Installation
```shell
python3 -m pip install Python-CCSDS
```
## Usage
```python
from CCSDS import CCSDS
from PyCCSDS.ccsds import CCSDS

dat = CCSDS('BepiColombo',packet)
```
+0 −0

File moved.

+2 −0
Original line number Diff line number Diff line
@@ -94,6 +94,8 @@ class CCSDS:
        if type(missionID) is str:
            if missionID.lower() == 'bepicolombo':
                missionID=-121
            elif missionID.lower() == 'juice':
                missionID=-29
            else:
                if t0 == None:
                    print("WARNING: the Mission name is not valid. time converte setted to 1970-01-01 00:00:00")
Loading