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

Uploaded Python 3

File details

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

File metadata

  • Download URL: spherapy-0.2.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.11

File hashes

Hashes for spherapy-0.2.0.tar.gz
Algorithm Hash digest
SHA256 098bd33ec1a07cd15f5f7b983b5ec7ea547a10671b5959f18c462b2f89b7702e
MD5 87eedd5ba78dffe9c432a278d73ea21a
BLAKE2b-256 7973eaf5a1c50ac9143bafc0c6c9a542d435007ee0b95bb38daaf94833c6f9b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spherapy-0.2.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.11

File hashes

Hashes for spherapy-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8e6e4a6b20d9d33a98e6efb8a2134a626bddedb60402629d66d985ae19d5158a
MD5 10503e27f4f1050b049c4aa850e2114c
BLAKE2b-256 9162b827e4759febc51fd5307974873b6d97f04b1a4654e7e0c75f6fbfc5e137

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