File: index.rst

package info (click to toggle)
pyephem 4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,380 kB
  • sloc: ansic: 77,574; python: 2,529; makefile: 74
file content (188 lines) | stat: -rw-r--r-- 5,742 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188

.. raw:: html

   <table class="triad" cellspacing="0"> <!-- for IE -->

   <tr class="cap">
   <td><img class="corner2" src="_static/corner2.png"/></td>
   <td><img class="corner2" src="_static/corner2.png"/></td>
   <td><img class="corner2" src="_static/corner2.png"/></td>
   </tr>

   <tr class="sites"><td>

   <p>Welcome to the</p>
   <img src="_static/pyephem-logo-short.png"/>
   <p>Home Page!<br>Documentation:</p>
   <p>
     <a href="toc.html">Table of Contents</a><br>
     <a href="quick.html">Quick Reference</a><br>
     <a href="CHANGELOG.html">Changelog</a>
   </p>
   </td>
   <td>

   <p>Download PyEphem for Windows, Linux, or as source code,
   directly from the <b>Python Package Index</b>.</p>
   <img src="_static/python.png"/>
   <p>
     <a href="https://pypi.org/project/ephem/"
      >PyPI PyEphem page</a>
     <br/>
     Includes Windows installers!
   </p>
   </td>
   <td>

   <p>
     The project source code and issue tracker are hosted on <b>GitHub</b>.
   </p>
   <img src="_static/github.png"/>
   <p>
     <a href="https://github.com/brandon-rhodes/pyephem"
        >Code Repository</a><br/>
     <a href="https://github.com/brandon-rhodes/pyephem/issues"
        >Issue Tracker</a><br/>
   </p>
   </td></tr>

   <tr class="toe">
   <td></td>
   <td><img class="corner3" src="_static/corner3.png"/></td>
   <td><img class="corner3" src="_static/corner3.png"/></td>
   </tr>

   <tr class="mount">
   <td></td>
   </tr>

   <tr class="base">
   <td colspan=3>

===================
 PyEphem Home Page
===================

Welcome to the home page of the **PyEphem astronomy library** for Python!

>>> import ephem
>>> mars = ephem.Mars()
>>> mars.compute('2007/10/02 00:50:22')
>>> print mars.ra, mars.dec
6:05:56.34 23:23:40.0
>>> ephem.constellation(mars)
('Gem', 'Gemini')

Since its first release in 1998,
PyEphem has given Python programmers
the ability to compute
**planet, comet, asteroid, and Earth satellite positions**.
It wraps the “libastro” C library
that powers the XEphem_ astronomy application for UNIX —
whose author Elwood Downey generously gave permission
for PyEphem to use his library with Python.
PyEphem can also
compute the angular separation between two objects in the sky,
determine the constellation in which an object lies,
and find the times an object rises, transits, and sets.

PyEphem will continue to receive critical bugfixes
and be ported to each new version of Python.
But be warned that it has some rough edges!

* The `Skyfield astronomy library <https://rhodesmill.org/skyfield/>`_
  should be preferred over PyEphem for new projects.
  Its modern design encourages better Python code,
  and uses NumPy to accelerate its calculations.

* Because PyEphem includes a C library,
  installation issues often frustrate users.
  If the Package Index lacks a wheel for your system,
  you will need a C compiler and Python development environment
  to get PyEphem installed.

* Instead of making angular units explicit in your code,
  PyEphem tried to be clever
  but only wound up being obscure.
  An input string ``'1.23'`` is parsed as degrees of declination
  (or hours, when setting right ascension)
  but a float ``1.23`` is assumed to be in radians.
  Angles returned by PyEphem are even more confusing:
  print them, and they display degrees;
  but do math with them, and you will find they are radians.
  This causes substantial confusion and makes code much more difficult to read,
  but can never be fixed without breaking programs that already use PyEphem.

* The PyEphem ``compute()`` method mutates its object in-place
  instead of returning results.
  While this reflects how the underlying C library works,
  it makes it hard to use ``compute()`` inside a list comprehension —
  you get a list of ``None`` objects.

* PyEphem generates positions using the 1980s techniques
  popularized in Jean Meeus’s *Astronomical Algorithms*,
  like the IAU 1980 model of Earth nutation
  and VSOP87 planetary theory.
  These make PyEphem faster and more compact
  than modern astronomy libraries,
  but limit its accuracy to around 1 arcsecond.
  This is often sufficient for most amateur astronomy,
  but users needing higher precision should investigate
  a more modern Python astronomy library like Skyfield or AstroPy.

.. _XEphem: https://xephem.github.io/XEphem/Site/xephem

Here’s more example code to illustrate how PyEphem works:

>>> boston = ephem.Observer()
>>> boston.lat = '42.37'
>>> boston.lon = '-71.03'
>>> boston.date = '2007/10/02 00:50:22'
>>> mars.compute(boston)
>>> print mars.az, mars.alt
37:55:48.9 -14:23:11.8

>>> print(boston.next_rising(mars))
2007/10/2 02:31:51
>>> print mars.az         # degrees when printed
56:52:52.1
>>> print mars.az + 0.0   # radians in math
0.992763221264

>>> print(boston.next_transit(mars))
2007/10/2 10:07:47
>>> print mars.alt        # degrees when printed
71:02:16.3
>>> print mars.alt + 0.0  # radians in math
1.23984456062

Installing PyEphem
==================

You can try installing PyEphem with:

.. _pip: http://pypi.python.org/pypi/pip
.. code-block:: bash

   $ pip install pyephem

Better yet,
you can use virtualenv_ to create a virtual environment,
and then run its ``pip`` instead of your system-wide one.
Then you will avoid having to gain administrator rights on your machine
before performing the installation.

If instead you want to download the Windows installer
or even the raw PyEphem source code,
you should visit the `PyEphem entry`_
at the Python Package Index,
or use the links at the top of this page.

.. _PyEphem entry: http://pypi.python.org/pypi/pyephem/
.. _virtualenv: http://pypi.python.org/pypi/virtualenv

.. raw:: html

   </td></tr>

   </table>