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.0.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.0-py3-none-any.whl (2.0 MB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: spherapy-0.3.0.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.0.tar.gz
Algorithm Hash digest
SHA256 fa0ab2d86bd3c06706463feb41bf12c49783e6ca0fa314f856169b580b4f77e8
MD5 da03d88575f67f34e59e30b4cba2bd53
BLAKE2b-256 ea03d184dca01cf51823bdace351b3e18d659c80ce4689141345a6db41277e1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spherapy-0.3.0-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.0-py3-none-any.whl
Algorithm Hash digest
SHA256 632159c1288d2e58c504d1f0805b38bce07f1e92f5a5af07c5c201f6bc8e5e32
MD5 72587b91c8935f9200bf98e84d856e30
BLAKE2b-256 5fd3c0daaac576493ae657c374730502cec914b5aceaf802d477fffd03ca43de

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