Skip to content

mgiuca/orbital

 
 

Repository files navigation

Orbital

PyPI MIT License Python Versions GitHub Actions Status Documentation

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()

Example plot

Documentation

For more information, view the documentation online.

About

High level orbital mechanics package.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%