A package containing useful tools for aviation related code
Project description
AviPy
Overview
AviPy is a Python package specifically developed for the purposes of the Flight Operations Engineering (FOE) course at the HvA. For the purposes of the FOE assignments, many pieces of code can be shared between projects. That is what motivated the creation of a Python package, that can be used as a common repository for code snippets useful for the projects.
Table of Contents
Features
The AviPy package includes many classes and functions useful for FOE projects. These are the main features of AviPy:
- The qty module contains classes for every SI-Unit used in aviation-related calculations. One can declare a variable with a distance unit like this:
height = qty.Distance.Ft(5000)
, what the Distance class does under the hood, is that the value in ft is converted to a value in meters. When the user wants to retrieve the value in any unit, on can do thisheight.ft
, which will return the value in feet. - The geo module contains the Coord class, which is a wrapper for a pair of latitude and longitude values. The class comes with many useful functions related to coordinates.
- The constants module contains commonly used constants in the field of aviation.
- The atmosphere module contains many useful functions related to earth's atmosphere.
Where to get it
To obtain the code, so you can use it for yourself, clone the repository to your system:
git clone https://github.com/pcs03/AviPy.git
Installation
To install the package to your system, so you can import the module in your own project, AviPy can be installed using pip:
pip install path/to/avipy
This command will install the package to your local system. If you have a virtual environment activated while executing the command, the package will be installed to your virtual environment.
Documentation
License
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
File details
Details for the file AviPy-0.0.1.tar.gz
.
File metadata
- Download URL: AviPy-0.0.1.tar.gz
- Upload date:
- Size: 19.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8badac17a82eb7bc953d12bc7e528609795a79e7100be7af39c59a446e2347fc |
|
MD5 | 51b179838cfba0b9e1a4be85f012b32d |
|
BLAKE2b-256 | 1617d0a6cb115ea8d459c732b515dd825c9a56ea219f35a64795c1bdf3397841 |
File details
Details for the file AviPy-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: AviPy-0.0.1-py3-none-any.whl
- Upload date:
- Size: 19.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bece19ad78895f5f1d04f089da621c6d4caaf282f1ed6259d73701c76b0851be |
|
MD5 | a0c8f765c16dbc81a417ddf7e79c9e45 |
|
BLAKE2b-256 | fffc0d2f781e2b75d5a8287a9bca8d1ce14350fc6dddb0de75c4927c6e8e9c48 |