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

Uploaded Python 3

File details

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

File metadata

  • Download URL: spherapy-0.3.1.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.1.tar.gz
Algorithm Hash digest
SHA256 1f8c5501f7626ecafd2ff38a6c4a3c08eae0dc2c78a6b359ecdc88232b32b576
MD5 f0335b2d71eb694bc974737e0a2ade93
BLAKE2b-256 21a34435a659b818e1afe9eb99fa9a1e303df2e22b1954d39abac85c518b3514

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spherapy-0.3.1-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.1-py3-none-any.whl
Algorithm Hash digest
SHA256 48da5a0a7c18807aca63473c790f03a241e16737ac35193d7cfb02b2797c84ee
MD5 fc484e895ca3f80f4fc899e4040de69d
BLAKE2b-256 674817ef415b1fe139564107d3377e6e2eace04dc072da6fccc6524eaf59c80d

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