File: control

package info (click to toggle)
sgp4 2.22-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 676 kB
  • sloc: python: 2,463; cpp: 2,416; makefile: 6; xml: 5
file content (30 lines) | stat: -rw-r--r-- 1,242 bytes parent folder | download | duplicates (2)
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
Source: sgp4
Section: python
Priority: optional
Maintainer: Ulises Vitulli <dererk@debian.org>
Homepage: https://github.com/brandon-rhodes/python-sgp4
Build-Depends: debhelper-compat (= 13),
 dh-python,
 python3-all,
 python3-setuptools
Standards-Version: 4.5.1
Vcs-Git: https://salsa.debian.org/debian/sgp4.git
Vcs-Browser: https://salsa.debian.org/debian/sgp4
Rules-Requires-Root: no

Package: python3-sgp4
Architecture: any
Depends: ${python3:Depends}, ${shlibs:Depends}, ${misc:Depends},
Description: Track earth satellite TLE orbits using up-to-date 2010 version of sgp4
 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 of the predictions of the standard C++ implementation 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.
 .
 The C++ function names have been retained, since users may already be familiar
 with this library in other languages