Metadata-Version: 2.4
Name: lidia
Version: 0.14.0
Summary: serve an aircraft instruments panel as a web page
Home-page: https://codeberg.org/Maarrk/lidia
Author: Marek S. Lukasiewicz
Author-email: marek@lukasiewicz.tech
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: eventlet~=0.36
Requires-Dist: msgpack~=1.0
Requires-Dist: pydantic~=1.10
Requires-Dist: pymavlink~=2.4
Requires-Dist: python-socketio~=5.6
Requires-Dist: PyYAML~=6.0
Requires-Dist: tomli~=2.0
Dynamic: license-file

# Lidia

![lidia](https://img.shields.io/pypi/v/lidia)

_Lightweight Instrument Display Interface for Aircraft_

lidia is a Python package for serving an aircraft instruments panel as a web page.

![screenshot of top part of primary flight display page](https://codeberg.org/Maarrk/lidia/raw/branch/main/readme-pfd.png)

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install [lidia](https://pypi.org/project/lidia/).

```bash
pip install lidia
```

### Argument completion

Lidia uses [argcomplete](https://pypi.org/project/argcomplete/) to provide shell completions for `bash` and `zsh`, which can be enabled like this:

```bash
pip install argcomplete
activate-global-python-argcomplete
```

## Usage

```bash
lidia demo

# if your Scripts folder isn't in Path:
python3 -m lidia demo

# use other source
lidia rpctask

# show general help
lidia --help

# show help for a specific source
lidia demo --help

# pass the main server arguments before the source name
lidia -P 5556 demo
```

Then open the served page in a browser, by default [localhost:5555](http://localhost:5555).
The controls for showing and hiding elements of the GUI are shown when hovering the mouse in the bottom left region of the page.

## Support

Report problems in [Codeberg Issues](https://codeberg.org/Maarrk/lidia/issues)

## Roadmap

- Set target state for `marsh` source using `ATTITUDE_TARGET` and `POSITION_TARGET_GLOBAL_INT`
- Additional PFD indicators: ILS, VOR on HSI
- CAS (Crew Alerting System) screen

## Contributing

- Contributions should be made to the [Codeberg repository](https://codeberg.org/Maarrk/lidia)
- Python code should be formatted with autopep8
- Other source files should be formatted with Prettier
- Install packages for development with `pip install -r requirements.txt`
- To properly run as a module without building and installing, **cd into `src/`** and run `python3 -m lidia`
- APIs deprecated in previous versions, waiting to be changed in next major release are marked with `@deprecated` comment

## Acknowledgements

This software was developed in [Department of Aerospace Science and Technology](https://www.aero.polimi.it/) of Politecnico di Milano.

Instrument graphics designed by Davide Marchesoli and Qiuyang Xia.

## License

[MIT](https://choosealicense.com/licenses/mit/)
