Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomaszmrugalski/perylune
Tools useful for orbital mechanics and related topics.
https://github.com/tomaszmrugalski/perylune
calculations cesium orbital-mechanics poliastro python python3
Last synced: 22 days ago
JSON representation
Tools useful for orbital mechanics and related topics.
- Host: GitHub
- URL: https://github.com/tomaszmrugalski/perylune
- Owner: tomaszmrugalski
- License: mit
- Created: 2019-03-16T15:00:03.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-01-12T10:57:10.000Z (12 months ago)
- Last Synced: 2024-07-24T21:51:00.265Z (5 months ago)
- Topics: calculations, cesium, orbital-mechanics, poliastro, python, python3
- Language: Jupyter Notebook
- Homepage:
- Size: 9.48 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# Perylune
[![No Maintenance Intended](http://unmaintained.tech/badge.svg)](http://unmaintained.tech/)
[![Build Status](https://travis-ci.com/tomaszmrugalski/perylune.svg?branch=master)](https://travis-ci.com/tomaszmrugalski/perylune)## Project status
Since the major library Perylune depended on - polistro - has reached its End-Of-Line, there is no viable way forward to carry on with Perylune development. As such, I'm concluding this project.
No future updates are anticipated. The bug tracker remains open.## Overview
Perylune - a [periapsis](https://en.wikipedia.org/wiki/Apsis) (a lowest point in orbit) around Luna (better known as the Moon). Also a library of tools intended to aid various calculations related to Keplerian orbits and orbital mechanics in general. The software uses great [poliastro](https://github.com/poliastro/poliastro) for most of its calculations. Currently available functionality:
- load, process and use Yuma, MPCORB (Minor Planets Center) almanacs.
- import ephemerides from NASA HORIZONS database
- import TLE data from CELESTRAK database
- calculate orbital burns, including Hohmann, prograde burns, pure inclination change
- DOP parameters calculation for GPS precision
- transfer windows (generate charts of body distances, such as Earth-Mars, Earth-Venus and others, porkchop plots)
- detailed Orbit prints (with more details than the standard Poliastro code)
- some basic time calculationsThe long term goal is to be useful for the following areas:
- load, process and use various formats: SEM, 3LE
- convert coordinates between ECEF, LLA, ENU and other systems
- calculate satelite/object visibility (including rising and setting times)
- calculate ground track (single pass, design coverage for certain area, revisit times, etc.)## Code maturity
Meh. This is my master thesis playground. Everything is unstable. Nothing works out of the box. I think the long term goal will be to mature more useful parts of the code and attempt to contribute it back to poliastro.
## Installation
```
python3 -m virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
```Alternatively, there's a make script for that:
```
make setup
```## Additional docs
See [jupyter howto](doc/jupyter.md) for details on how to view Jupyter notebooks.
See [cesium howto](doc/cesium.md) for details on how to run Cesium (a web interface useful for visualising orbits)
See [snippets](doc/snippets.md) for a random chunks of python code that does various things.
## Developer's guide
See [tests](doc/tests.md) for details on running tests.
See [developer's guide](doc/devel.md) for developer oriented notes.