High level orbital mechanics package.
Project description
Orbital is a high level orbital mechanics package for Python.
Installation
$ pip install orbitalpy
Example
from orbital import earth, KeplerianElements, Maneuver, plot
from scipy.constants import kilo
import matplotlib.pyplot as plt
orbit = KeplerianElements.with_altitude(1000 * kilo, body=earth)
man = Maneuver.hohmann_transfer_to_altitude(10000 * kilo)
plot(orbit, title='Maneuver 1', maneuver=man)
plt.show()
Documentation
For more information, view the documentation online.
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
OrbitalPy-0.7.0.tar.gz
(17.1 kB
view hashes)