Flight tracking resources
Project description
Flight Control
Flight Control is a python package for storing, tracking, and analyzing flight data. Example:
import flightcontrol
import time
#Create a new instance of the AltitudeLogger class
al = flightcontrol.AltitudeLogger()
#Simulate altitude changing
al.LogAltitude(50)
time.sleep(0.5)
al.LogAltitude(45)
time.sleep(0.5)
al.LogAltitude(40)
time.sleep(0.5)
al.LogAltitude(35)
#Get rate of change
roc = al.RateOfChange_cm_per_second()
print(roc)
#Get seconds until impact
#This will only return a value if the altitude is dropping
sui = al.SecondsUntilImpact()
print(sui)
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
flightcontrol-0.2.0.tar.gz
(2.2 kB
view details)
File details
Details for the file flightcontrol-0.2.0.tar.gz.
File metadata
- Download URL: flightcontrol-0.2.0.tar.gz
- Upload date:
- Size: 2.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf0cee4702faa4f463e1b1b4f7cfe2f5f18e3107a50bf02eb9dddb0eff0eec1e
|
|
| MD5 |
e963cde71ca064bc9df4f54120e9b07c
|
|
| BLAKE2b-256 |
067f506e76634804b5285c5b617edd0ecfa5a376ce972336c4e464613ccd070d
|