A pure Python library for encoding, decoding and compressing Asterix CAT240 messages.
Project description
Pycatzao
Pycatzao is a pure Python library for encoding, decoding and compressing Asterix CAT240 messages.
Usage & Documentation
Pycatzao releases are available as wheel packages for macOS, Windows and Linux on PyPI. Install it using pip:
$ pip install pycatzao
If you prefer installing this library from source, run:
# optional
$ pip install -r requirements.txt
$ pip install -e .
After installing, simply import pycatzao and start fooling around with its API:
import pycatzao
print("Version:", pycatzao.__version__)
for block in pycatzao.decode_file("my-cat240-data.bin"):
process_cat240_block(
range=block["r"],
azimuth=block["az"],
amplitude=block["amp"],
...
) # do something meaningful with the data
See examples/cat240toHDF5.py for a more elaborated example or our documentation for a full list of available functions. Note, however, that you won't find an introduction into Asterix CAT240 here since we assume that you know the basics of the standard. If you need such an introduction though, simply search for Asterix CAT240 with a search engine of your choice or directly consult https://www.eurocontrol.int/asterix.
Contributing
Contributions are welcome! If you find any issues or have suggestions for improvements, please feel free to submit a pull request.
Development Setup
To set up your development environment, follow these steps:
-
Clone the repository:
$ git clone git@github.com:DLR-KN/pycatzao.git
-
Change to the project directory:
$ cd pycatzao
-
Install the development dependencies using
pip:$ pip install -e .[dev]
Pre-Commit-Hooks
To maintain code quality and avoid pushing invalid commits, we recommend using pre-commit hooks. These hooks perform automated checks before commits are made. To set up pre-commit hooks, follow these steps:
-
Install the pre-commit package (if not already installed):
$ pip install pre-commit
-
Install the hooks:
$ pre-commit install
Now, each time you commit changes, the pre-commit hooks will run checks such as formatting, linting, and more. If any issues are found, they will be flagged before the commit is made.
Running Tests
You can run tests using the following command:
$ pytest --cov=pycatzao
Make sure to run tests before submitting a pull request to ensure that everything is functioning as expected.
Generate documentation (optional)
If you like, you can generate the documentation locally by navigating to the docs/ folder and running:
$ cd docs && make html
[...]
The HTML pages are in build/html.
This will generate an HTML documentation under docs/build/html/. Open the generated index.html with a browser and start reading🤓
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pycatzao-1.1.0.tar.gz.
File metadata
- Download URL: pycatzao-1.1.0.tar.gz
- Upload date:
- Size: 35.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ad92d6c5d05e16092204d2619f8ee1c77525a6cc8277437a7d6b5d497108546
|
|
| MD5 |
d9ed0d1eeb3e37d437e640da38ddceae
|
|
| BLAKE2b-256 |
dcfe4718ac87be48d811d525679ff56f719bf57135475b6b430e6acde8714113
|
File details
Details for the file pycatzao-1.1.0-py3-none-any.whl.
File metadata
- Download URL: pycatzao-1.1.0-py3-none-any.whl
- Upload date:
- Size: 17.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
962f0ecb7e92627917b08214dfbde1b7fc495e3dc8a1edf635ab5377c69696de
|
|
| MD5 |
c592f023d2975b8e648fa9d98d302a6a
|
|
| BLAKE2b-256 |
989cb53eb73c381f809738487d2309cddf529bf5e5bfc974f0afe3334bb3320c
|