Layout for observing planetary system object positions using various sources data.
The second part is about representation these positions as [[zodiac|zodiacal position]].
- Skyfield
- 3D Solar System Viewer | TheSkyLive.com
- Real-Time, Real Data | NASA Solar System Exploration
- Solar System Scope - Online Model of Solar System and Night Sky
- ensure you have python3 installed
- clone the workspace
- work in a virtual environment
python -m venv planetary # init directory
source planetary/bin/activate # activate environment
pip-compile --upgrade --strip-extras requirements.in # regenerate dependencies
pip install -r requirements.txt # install dependencies
- run the code
# basic run (command line experience)
python observer
# alternatives
jupyter notebook # duplicated code with description
streamlit run observer/ui_streamlit.py # web application
python -m streamlit run observer/ui_streamlit.py