Skip to main content

An orbital propagator wrapper and TLE fetcher

Project description

About

Spherapy is a convenience wrapper around the fantastic libraries skyfield, spacetrack, and hapsira (a maintained poliastro fork). It provides a consistent and straightforward method to create/propagate orbits without worrying about the implementation details of each library:

  • historical TLEs for known satellites (skyfield)
  • propagated orbital parameters hypothetical satellites (skyfield)
  • analytical orbital parameters (hapsira)
  • list of positions

Addtionaly, it provides a straightforward interface for updating used TLEs via spacetrack

Created orbits contain commonly used state variables:

  • satellite positions in various frames
  • velocities
  • etc.

Installation

  1. install the package
pip install spherapy
  1. configure. see Configuration

Usage

  • ensure spherapy has been configured, see Configuration
  • import the spherapy package
import spherapy.updater
import spherapy.timespan
import spherapy.orbit
  • if using real world satellites; update the desired TLEs (you can also use the TLEs supplied with the package, but these will be out of date).
updated_TLEs = spherapy.updater.updateTLEs([25544]) 	#ISS
TLE_paths = spherapy.updater.getTLEFilePaths([25544], use_packaged=True) 	#ISS
  • set up a timespan
t = spherapy.timespan.TimeSpan(datetime.datetime(2024,10,15,0,0,1),'1S','90M')
  • construct an orbit
    • from a TLE (good practice to update the TLE with the most recent)
o = spherapy.orbit.Orbit.fromTLE(t, TLE_paths[0])
  • from orbital parameters
o = spherapy.orbit.Orbit.fromAnalyticalOrbitalParam(timespan, body='Earth',
					 a=6978,
					 ecc=0,
					 inc=0,
					 raan=0,
					 argp=0,
					 true_nu=0,
					 name='My Analytical Orbit',
					 astrobodies=True)

Full TLE example (for copy paste)

import datetime
import spherapy.updater
import spherapy.timespan
import spherapy.orbit
TLE_paths = spherapy.updater.getTLEFilePaths([25544], use_packaged=True) 	#ISS
t = spherapy.timespan.TimeSpan(datetime.datetime(2024,10,15,0,0,1),'1S','90M')
o = spherapy.orbit.Orbit.fromTLE(t, TLE_paths[0])

Full Analytical exmaple (for copy paste)

import datetime
import spherapy.timespan
import spherapy.orbit
t = spherapy.timespan.TimeSpan(datetime.datetime(2024,10,15,0,0,1),'1S','90M')
o = spherapy.orbit.Orbit.fromAnalyticalOrbitalParam(timespan, body='Earth',
					 a=6978,
					 ecc=0,
					 inc=0,
					 raan=0,
					 argp=0,
					 true_nu=0,
					 name='My Analytical Orbit',
					 astrobodies=True)

SpaceTrack Credentials

In order to calculate the position of a historical satellite at any given time, spherapy requires TLE information for each satellite which is accurate for the given time period (or 'epoch').
TLE data can be obtained from either Celestrak or Spacetrack. Celestrak holds only the most recent TLE data for each satellite, while Spacetrack will provide historical TLE data. spherapy will fall back to using Celestrak if it cannot authenticate access to Spacetrack.
In order to use Spacetrack, you must provide your Spacetrack credentials to spherapy.

Configuration

Configuration for spherapy can either use the default settings, or settings specified in a spherapy.conf file.

Default settings

If the default settings are used, spherapy will use the system user data directory and expect spacetrack credentials to be stored in the system keyring.
The default data directories are listed in Directories

Custom settings

Custom settings can be specified in a spherapy.conf file.
This file can be located either in the system user's config file (described in Directories) or at a location specified by the environment variable SPHERAPY_CONFIG_DIR.

The fields of spherapy.conf are described below

[credentials]
SpacetrackUser = None 		# the spacetrack user, if left as "None" will source from system keyring
SpacetrackPasswd = None 	# the spacetrack password, if left as "None" will source from system keyring

[paths]
# relative paths are assumed to be relative to the location of this file
# do not quote path
TLE_path = ./spherapy/data/TLEs 	# the location where TLE files will be saved, if left empty (""), will default to system user's directory.

Directories

If SPHERAPY_CONFIG_DIR is not set or TLE_path is left empty in spherapy.conf, the spherapy default directories will be used:

Linux

  • TLE data dir:
/home/{username}/.local/share/spherapy/TLEs
  • config dir:
/home/{username}/.config/spherapy/spherapy/{spherapy_version}/

OSX

  • TLE data dir:
/Users/{username}/Library/Application Support/spherapy/TLEs
  • config dir:
/Users/{username}/Library/Application Support/spherapy/{spherapy_version}/

Windows

  • TLE data dir:
'C:\\Users\\{username}\\AppData\\Local\\spherapy\\TLEs'
  • config dir:
'C:\\Users\\{username}\\AppData\\Local\\spherapy\\{spherapy_version}'

Passwords

By default spherapy will use the system keyring to store the Spacetrack username and credentials (see SpaceTrack Credentials)
If a config file is supplied, the credentials in the file will be used.

Credentials can be added to the keyring by running the command (in the terminal, not the python shell)

spherapy-create-credentials

Configration File Format

The configuration file spherapy.conf should have the following format:

[credentials]
SpacetrackUser = None
SpacetrackPasswd = None

[paths]
# relative paths are assumed to be relative to the location of this file
# do not quote path
TLE_path =

Data Storage

  • TLEs
    • TLEs will be stored in the data directory, with a single file for each satellite ID. {sat_id}.tle, containing all historical TLEs for that satellite.
    • If celestrak is used instead, the file will be saved as a temporary file {sat_id}.temptle, which will be overwritten on each fetch from celestrak.

Project details


Download files

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

Source Distribution

spherapy-0.3.2.tar.gz (2.0 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

spherapy-0.3.2-py3-none-any.whl (2.0 MB view details)

Uploaded Python 3

File details

Details for the file spherapy-0.3.2.tar.gz.

File metadata

  • Download URL: spherapy-0.3.2.tar.gz
  • Upload date:
  • Size: 2.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for spherapy-0.3.2.tar.gz
Algorithm Hash digest
SHA256 b0e7d23c5943637a61879990becd427f7f8f0255f53f3b6c25c58166a0d0fe6d
MD5 3414a27b631700deaa02070eebf248d4
BLAKE2b-256 326e9f1d1e90e64a2977810a0ba8a8083068ab9e20fcac831f0c62308a4ffbb0

See more details on using hashes here.

File details

Details for the file spherapy-0.3.2-py3-none-any.whl.

File metadata

  • Download URL: spherapy-0.3.2-py3-none-any.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for spherapy-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 fcd2853aea7d5bdf05e2d0f60e889ec9d94e40fa57502bf2fcf833f7a32e8611
MD5 00a50bf1b2419283bd126c2db6e4e72b
BLAKE2b-256 754c82726efd00295bbab2594f01eef90ee5b0b9edf200bece73be10eb6fde53

See more details on using hashes here.

Supported by

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