Debian packaging for jplephem
Go to file
Brandon Rhodes 3f3a762baf Lock down NumPy version on Travis CI, to fix #35
This should stop jplephem from accidentally using features too modern
for users on several-year-old systems.
2019-12-16 09:17:01 -05:00
bin Prevent myself from running with old Python 2019-01-03 23:31:26 -05:00
ci Add ephemeris, docs for rotation; but, untested? 2019-12-11 14:21:43 -05:00
jplephem Release 2.12 that stops using new NumPy flip() 2019-12-13 16:05:11 -05:00
legacy Fix JPL report links in old ephemeris READMEs 2016-03-31 08:04:04 -04:00
.gitignore Check in ephemerides necessary for CI testing 2019-09-19 16:05:24 -04:00
.travis.yml Lock down NumPy version on Travis CI, to fix #35 2019-12-16 09:17:01 -05:00
LICENSE.txt Add license file and include it in sdists (#27) 2018-12-29 12:52:51 -05:00
MANIFEST.in Add license file and include it in sdists (#27) 2018-12-29 12:52:51 -05:00
README.md Make README test instructions more complete 2018-02-03 12:27:53 -05:00
setup.py Release 2.12 that stops using new NumPy flip() 2019-12-13 16:05:11 -05:00
test.sh Add simple shell script for testing locally 2019-12-11 14:48:51 -05:00

README.md

Welcome to the repository for the jplephem Python library!

The package is a Python implementation of the math that standard JPL ephemerides use to predict raw (x,y,z) planetary positions. It is one of the foundations of the Skyfield astronomy library for Python:

http://rhodesmill.org/skyfield/

But you can also use jplephem standalone to generate raw vectors. If that is your use case, then simply head over to its documentation and download link on the Python Package Index:

https://pypi.python.org/pypi/jplephem

If you want to install it with conda, there is a recipe at:

https://github.com/conda-forge/jplephem-feedstock

This repository is where jplephem is maintained. You will find its source code beneath the jplephem directory that sits alongside the setup.py file. You can run its tests with:

wget https://naif.jpl.nasa.gov/pub/naif/generic_kernels/spk/planets/a_old_versions/de405.bsp
wget https://naif.jpl.nasa.gov/pub/naif/generic_kernels/spk/planets/a_old_versions/de421.bsp
pip install de421
python -m unittest discover jplephem

Enjoy!