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 load
planets = load('de421.bsp')
earth, mars = planets['earth'], planets['mars']
ts = load.timescale()
t = ts.now()
position = earth.at(t).observe(mars)
ra, dec, distance = position.radec()
print(ra)
print(dec)
print(distance)
The result:
10h 47m 56.24s +09deg 03' 23.1" 2.33251 au
Skyfield’s only binary dependency is NumPy. Once that is available, Skyfield can usually be installed with:
pip install skyfield
Here are the essential project links:
Skyfield package on the Python Package Index.
Issue tracker on GitHub.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
skyfield-0.9.tar.gz
(123.3 kB
view details)
File details
Details for the file skyfield-0.9.tar.gz.
File metadata
- Download URL: skyfield-0.9.tar.gz
- Upload date:
- Size: 123.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f944793cfe63c897252c589ce29e4cc71dbafce1056d657517c02bfeb8e8a72
|
|
| MD5 |
440c97b91cea6e56cf344642c883c1db
|
|
| BLAKE2b-256 |
0afe38a8791237de165125768dc43be726a14bf02c6a24b0098ccee3a40f4ae3
|