| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
solarsystem is a lightweight, dependency-free Python library for computing Solar System positions, Solar-Lunar events, and coordinate transformations.
It is designed for education, visualization, and lightweight astronomical computation, without requiring external ephemeris datasets or heavy scientific dependencies.
The library provides tools for:
Install directly from PyPI:
pip install solarsystemOr install from GitHub:
pip install git+https://github.com/IoannisNasios/solarsystemimport solarsystemInitialize Heliocentric class
H = solarsystem.Heliocentric(year=2020, month=1, day=1, hour=12, minute=0, precession=True)Compute position of planets around sun
planets_dict=H.planets()
print('Planet',' \t','Longitude',' \t','Latitude',' \t','Distance in AU')
for planet in planets_dict:
pos=planets_dict[planet]
print(planet,' \t',round(pos[0],2),' \t',round(pos[1],2),' \t',round(pos[2],2))# Planet Longitude Latitude Distance in AU
# Mercury 263.55 -4.06 0.47
# Venus 4.95 -3.22 0.73
# Earth 100.25 0.0 0.98
# Mars 214.1 0.49 1.59
# Jupiter 275.83 0.1 5.23
# Saturn 292.23 0.05 10.05
# Uranus 35.07 -0.48 19.81
# Neptune 347.74 -1.04 29.91
# Pluto 292.47 -0.67 33.88
# Ceres 290.44 -5.4 2.92
# Chiron 3.86 2.94 18.81
# Eris 23.08 -11.74 96.0The repository includes Jupyter notebooks:
Solar System Live
Real-time planetary visualization and animation
https://github.com/IoannisNasios/solarsystem/blob/master/examples/Solar_System_Live.ipynb
RiseSet Calendar
https://github.com/IoannisNasios/solarsystem/blob/master/examples/RiseSet_Calendar.ipynb
Yearly calendar of:
Starting from version 0.1.6, the library includes an optional precession of the equinoxes correction.
To evaluate numerical performance, the library was compared against JPL DE440 ephemerides.
Full results and figures are included in the accompanying research paper.
Validation Notebooks used can be found in https://github.com/IoannisNasios/solarsystem/blob/master/performance/
These results indicate that solarsystem achieves adequate calculations for various use cases, while maintaining a lightweight computational design.
Full documentation is available at:
https://solarsystem.readthedocs.io
pip install sphinx
cd docs
make htmlOpen _build/html/index.html in browser.
Core package:
No external dependencies
Optional:
matplotlib → for visualization notebooks
pytest, numpy → for running tests
matplotlib, skyfield, numpy → for performance evaluation notebooks
Tested on:
Python 3.4+
Python 2.7 (legacy support)
Newer Python versions are recommended for best performance and compatibility.
Preprint can be found on Arxiv
If you use this library in your work, please cite:
@misc{nasios2026solarsystemvalidatedlightweightpython,
title={Solarsystem: A Validated Lightweight Python Package for Planetary Positions and Solar-Lunar Event Calculations},
author={Ioannis Nasios},
year={2026},
eprint={2606.27055},
archivePrefix={arXiv},
primaryClass={astro-ph.EP},
url={https://arxiv.org/abs/2606.27055},
}
MIT License ©
| Back | FazBrowse Home | New Git URL |