Debian packaging for skyfield
Go to file
ozialien 997c3663d6 updated 2015-04-19 18:16:59 -07:00
builders Updates the docstring, fixes data file path. 2015-04-14 18:35:38 -04:00
doc/svg Added svg diagram 2015-04-19 18:01:45 -07:00
media Remove "logo.py" from the Skyfield distribution 2014-06-15 18:22:23 -04:00
skyfield Fix repr and str of Angle instances that are vectors 2015-04-15 12:11:22 -04:00
.agignore Add a simple .agignore file 2014-06-15 20:28:40 -04:00
.coveragerc Make coverage start paying attention to Skyfield 2014-06-20 19:39:30 -04:00
.gitignore Ignore .bsp SPK kernel files 2015-03-09 23:03:05 -04:00
.travis.yml Have Travis-CI run "requirements.sh" 2015-04-15 16:41:27 -04:00
Contrib.rst updated 2015-04-19 18:16:59 -07:00
HACKING.rst Update HACKING.rst 2013-10-14 13:02:41 +01:00
LICENSE Add the words "MIT license" to the LICENSE file 2013-04-07 12:09:25 -04:00
MANIFEST.in Include documentation in source distribution 2014-06-15 18:09:11 -04:00
README.rst Contributing to Skyfield 2015-04-16 21:10:05 -04:00
TODO.rst Remove TODO item - thanks, @aarose! 2015-04-14 09:54:04 -04:00
earth-satellites.ipynb Repair code in earth-satellite notebook 2014-08-07 18:23:06 -04:00
requirements.sh Add "assay" to requirements.sh file 2015-04-15 14:23:36 -04:00
setup.py Switch to urlopen() from the Standard Library 2014-11-20 17:16:25 -05:00

README.rst

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

====================================
 Welcome to the Skyfield Repository
====================================

Skyfield is a pure-Python astronomy package
that is compatible with both Python 2 and 3
and makes it easy to generate high precision research-grade
positions for planets and Earth satellites.

::

    from skyfield.api import earth, mars, now
    ra, dec, distance = earth(now()).observe(mars).radec()

    print(ra)
    print(dec)
    print(distance)

::

    09h 14m 50.35s
    +17deg 13' 02.6"
    2.18572863461 AU

Its only binary dependency is NumPy.
Skyfield can usually be installed with::

    pip install skyfield

Here are the essential project links:

* `Home page and documentation
  <http://rhodesmill.org/skyfield>`_.

* `Contributing to Skyfield
  <https://github.com/skyfielders/python-skyfield/blob/master/Contrib.rst>`_.

* `Skyfield package <https://pypi.python.org/pypi/skyfield>`_
  on the Python Package Index.

* `Skyfield package <https://pypi.python.org/pypi/skyfield>`_
  on the Python Package Index.

* `Issue tracker
  <https://github.com/brandon-rhodes/python-skyfield/issues>`_
  on GitHub.