Skip to main content

Track earth satellite TLE orbits using up-to-date 2010 version of SGP4

Project description

This Python package computes the position and velocity of an earth-orbiting satellite, given the satellite’s TLE orbital elements from a source like Celestrak. It implements the most recent version of SGP4, and is regularly run against the SGP4 test suite to make sure that its satellite position predictions agree to within 0.1 mm with the predictions of the standard distribution of the algorithm. This error is far less than the 1–3 km/day by which satellites themselves deviate from the ideal orbits described in TLE files.

  • If your platform supports it, this package compiles the verbatim source code from the official C++ version of SGP4. You can call the routine directly, or through an array API that loops over arrays of satellites and arrays of times with machine code instead of Python.

  • Otherwise, a slower but reliable Python implementation of SGP4 is used instead.

Note that this package produces raw Earth-centered Earth-fixed coordinates. It does not implement all the steps necessary to convert satellite positions into geographic coordinates. For that, look for a comprehensive astronomy library that is built atop this one, like the Skyfield library:

http://rhodesmill.org/skyfield/earth-satellites.html

To run the test suite for this module, clone its repository from GitHub:

https://github.com/brandon-rhodes/python-sgp4

Then invoke the tests using the Python Standard Library:

python -m unittest discover sgp4

The C++ function names have been retained, since users may already be familiar with this library in other languages. Here is how to compute the x,y,z position and velocity for Vanguard 1 at 12:50:19 on 29 June 2000:

>>> from sgp4.api import Satrec
>>>
>>> s = '1 25544U 98067A   19343.69339541  .00001764  00000-0  38792-4 0  9991'
>>> t = '2 25544  51.6439 211.2001 0007417  17.6667  85.6398 15.50103472202482'
>>> satellite = Satrec.twoline2rv(s, t)
>>>
>>> jd, fr = 2458827, 0.362605
>>> e, r, v = satellite.sgp4(jd, fr)
>>> e
0
>>> print(r)
(-6102.44..., -986.33..., -2820.31...)
>>> print(v)
(-1.45..., -5.52..., 5.10...)

Here is how to intrepret the results:

  • e will be a non-zero error code if the satellite position could not be computed for the given date. You can from sgp4.api import SGP4_ERRORS to access a dictionary mapping error codes to error messages explaining what each code means.

  • r measures the satellite position in kilometers from the center of the earth in the idiosyncratic True Equator Mean Equinox coordinate frame used by SGP4.

  • v velocity is the rate at which the position is changing, expressed in kilometers per second.

If your application does not natively handle Julian dates, you can compute jd and fr from calendar dates using jday().

>>> from sgp4.api import jday
>>> jd, fr = jday(2019, 12, 9, 12, 0, 0)
>>> jd
2458826.5
>>> fr
0.5

To avoid the expense of Python loops when you have many dates, you can pass them as arrays to another method that understands NumPy:

>>> import numpy as np
>>> np.set_printoptions(precision=2)
>>> jd = np.array((2458826, 2458826, 2458826, 2458826))
>>> fr = np.array((0.0001, 0.0002, 0.0003, 0.0004))
>>> e, r, v = satellite.sgp4_array(jd, fr)
>>> print(e)
[0 0 0 0]
>>> print(r)
[[-3431.31  2620.15 -5252.97]
 [-3478.86  2575.14 -5243.87]
 [-3526.09  2529.89 -5234.28]
 [-3572.98  2484.41 -5224.19]]
>>> print(v)
[[-5.52 -5.19  1.02]
 [-5.49 -5.22  1.08]
 [-5.45 -5.25  1.14]
 [-5.41 -5.28  1.2 ]]

To avoid the expense of Python loops when you have many satellites and dates, build a SatrecArray from several individual satellites. Its sgp4() method will expect both jd and fr to be NumPy arrays, so if you only have one date, be sure to provide NumPy arrays of length one. Here is a sample computation for 2 satellites and 4 dates:

>>> s = '1 20580U 90037B   19342.88042116  .00000361  00000-0  11007-4 0  9996'
>>> t = '2 20580  28.4682 146.6676 0002639 185.9222 322.7238 15.09309432427086'
>>> satellite2 = Satrec.twoline2rv(s, t)
>>> from sgp4.api import SatrecArray
>>> a = SatrecArray([satellite, satellite2])
>>> e, r, v = a.sgp4(jd, fr)
>>> np.set_printoptions(precision=2)
>>> print(e)
[[0 0 0 0]
 [0 0 0 0]]
>>> print(r)
[[[-3431.31  2620.15 -5252.97]
  [-3478.86  2575.14 -5243.87]
  [-3526.09  2529.89 -5234.28]
  [-3572.98  2484.41 -5224.19]]
<BLANKLINE>
 [[ 5781.85  2564.   -2798.22]
  [ 5749.36  2618.59 -2814.63]
  [ 5716.35  2672.94 -2830.78]
  [ 5682.83  2727.05 -2846.68]]]
>>> print(v)
[[[-5.52 -5.19  1.02]
  [-5.49 -5.22  1.08]
  [-5.45 -5.25  1.14]
  [-5.41 -5.28  1.2 ]]
<BLANKLINE>
 [[-3.73  6.33 -1.91]
  [-3.79  6.3  -1.88]
  [-3.85  6.28 -1.85]
  [-3.91  6.25 -1.83]]]

The attributes of a Satrec object carry the data loaded from the TLE entry. Most of this class’s hundred-plus attributes are intermediate values of interest only to the propagation algorithm itself. Here are the attributes set by sgp4.io.twoline2rv() in which users are likely to be interested:

satnum

Unique satellite number given in the TLE file.

epochyr

Full four-digit year of this element set’s epoch moment.

epochdays

Fractional days into the year of the epoch moment.

jdsatepoch

Julian date of the epoch (computed from epochyr and epochdays).

ndot

First time derivative of the mean motion (ignored by SGP4).

nddot

Second time derivative of the mean motion (ignored by SGP4).

bstar

Ballistic drag coefficient B* in inverse earth radii.

inclo

Inclination in radians.

nodeo

Right ascension of ascending node in radians.

ecco

Eccentricity.

argpo

Argument of perigee in radians.

mo

Mean anomaly in radians.

no_kozai

Mean motion in radians per minute.

Look at the class’s documentation for details.

This implementation passes all of the automated tests in the August 2010 release of the reference implementation of SGP4 by Vallado et al., who originally published their revision of SGP4 in 2006:

Vallado, David A., Paul Crawford, Richard Hujsak, and T.S. Kelso, “Revisiting Spacetrack Report #3,” presented at the AIAA/AAS Astrodynamics Specialist Conference, Keystone, CO, 2006 August 21–24.

If you would like to review the paper, it is available online. You can always download the latest version of their code for comparison against this Python module (or other implementations) at AIAA-2006-6753.zip.

Legacy API

Before this library pivoted to wrapping Vallado’s official C++ code and was operating in pure Python only, it had a slightly quirkier API, which is still supported for compatibility with older clients. You can learn about it by reading the documentation from version 1.4 or earlier:

https://pypi.org/project/sgp4/1.4/

Changelog

2020-02-02 — 2.1 — Add vectorized array method to Satrec object; add .no attribute to new Satrec object to support old code that has not migrated to the new name .no_kozai; gave Python wrapper classes __slots__ to avoid the expense of a per-object attribute dictionary.
2020-01-30 — 2.0 — Rewrite API to use genuine Vallado C++ code on those systems where it can be compiled; add accelerated vectorized array interface; make gstime() a public function; clarify format error message.
2015-01-15 — 1.4 — Display detailed help when TLE input does not match format.
2014-06-26 — 1.3 — Return (NaN,NaN,NaN) vectors on error and set .error_message
2013-11-29 — 1.2 — Made epochyr 4 digits; add datetime for .epoch
2012-11-22 — 1.1 — Python 3 compatibility; more documentation
2012-08-27 — 1.0 — Initial release

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

sgp4-2.1-py2-none-any.whl (103.3 kB view hashes)

Uploaded Python 2

sgp4-2.1-cp38-cp38-win_amd64.whl (104.6 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

sgp4-2.1-cp38-cp38-win32.whl (104.6 kB view hashes)

Uploaded CPython 3.8 Windows x86

sgp4-2.1-cp38-cp38-manylinux2010_x86_64.whl (230.0 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

sgp4-2.1-cp38-cp38-manylinux2010_i686.whl (203.1 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

sgp4-2.1-cp38-cp38-manylinux1_x86_64.whl (230.0 kB view hashes)

Uploaded CPython 3.8

sgp4-2.1-cp38-cp38-manylinux1_i686.whl (203.1 kB view hashes)

Uploaded CPython 3.8

sgp4-2.1-cp37-cp37m-win_amd64.whl (104.6 kB view hashes)

Uploaded CPython 3.7m Windows x86-64

sgp4-2.1-cp37-cp37m-win32.whl (104.6 kB view hashes)

Uploaded CPython 3.7m Windows x86

sgp4-2.1-cp37-cp37m-manylinux2010_x86_64.whl (230.3 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

sgp4-2.1-cp37-cp37m-manylinux2010_i686.whl (203.7 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

sgp4-2.1-cp37-cp37m-manylinux1_x86_64.whl (230.3 kB view hashes)

Uploaded CPython 3.7m

sgp4-2.1-cp37-cp37m-manylinux1_i686.whl (203.7 kB view hashes)

Uploaded CPython 3.7m

sgp4-2.1-cp36-cp36m-win_amd64.whl (104.6 kB view hashes)

Uploaded CPython 3.6m Windows x86-64

sgp4-2.1-cp36-cp36m-win32.whl (104.6 kB view hashes)

Uploaded CPython 3.6m Windows x86

sgp4-2.1-cp36-cp36m-manylinux2010_x86_64.whl (229.5 kB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

sgp4-2.1-cp36-cp36m-manylinux2010_i686.whl (202.9 kB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

sgp4-2.1-cp36-cp36m-manylinux1_x86_64.whl (229.5 kB view hashes)

Uploaded CPython 3.6m

sgp4-2.1-cp36-cp36m-manylinux1_i686.whl (202.9 kB view hashes)

Uploaded CPython 3.6m

sgp4-2.1-cp35-cp35m-win_amd64.whl (104.6 kB view hashes)

Uploaded CPython 3.5m Windows x86-64

sgp4-2.1-cp35-cp35m-win32.whl (104.6 kB view hashes)

Uploaded CPython 3.5m Windows x86

sgp4-2.1-cp35-cp35m-manylinux2010_x86_64.whl (229.2 kB view hashes)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

sgp4-2.1-cp35-cp35m-manylinux2010_i686.whl (202.6 kB view hashes)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

sgp4-2.1-cp35-cp35m-manylinux1_x86_64.whl (229.2 kB view hashes)

Uploaded CPython 3.5m

sgp4-2.1-cp35-cp35m-manylinux1_i686.whl (202.6 kB view hashes)

Uploaded CPython 3.5m

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page