Satellite network generation and analysis utilities from the Hypatia framework
Project description
satgenpy — Satellite Network Generation Utilities (from Hypatia)
satgenpy provides tools to generate and analyze Low-Earth-Orbit (LEO)
satellite networks. It produces all configuration and state files needed
to analyze or simulate dynamic satellite constellations, including
ground stations, inter-satellite links (ISLs), and dynamic forwarding
states.
Originally part of the Hypatia project by Stefan Kassing, this PyPI release is maintained by Lei Yuan for easier installation and reuse in research and engineering workflows.
Installation
Requires Python ≥ 3.8.
Install directly from PyPI:
pip install satgenpy
If cartopy fails to build, make sure the following geospatial system libraries are installed (on Ubuntu/Debian):
sudo apt-get install libproj-dev proj-data proj-bin libgeos-devpip
Example
import satgen
from satgen.dynamic_state import generate_dynamic_state
# Generate dynamic state for an example constellation
generate_dynamic_state(
output_dir="example_output/",
tles_path="data/tles.txt",
ground_stations_path="data/ground_stations.txt"
)
Running tests (optional)
The test suite includes plotting utilities that require gnuplot: The following five things need to be generated to analyze / simulate a LEO satellite network:
sudo apt-get install gnuplot
pytest
Overview
The following five things need to be generated to analyze / simulate a LEO satellite network:
ground_stations.txt: Describing the ground station properties and locationstles.txt: TLEs describing the orbit of all satellitesisls.txt: Topology of the inter-satellite linksgsl_interfaces_info.txt: Number of ground-to-satellite link (GSL) interfaces per each node (both satellites and ground stations)description.txt: Descriptive information (in particular, max. ISL / GSL length)dynamic_state/: Dynamic state which encompasses (a) forwarding state (fstate) and (b) gsl interface bandwidth (gsl_if_bandwidth)
This repository enables you to do so.
Dynamic state algorithms
There are currently three dynamic state algorithms implemented:
-
algorithm_free_one_only_over_isls: Only runs for scenarios where there are ISLs. It calculates the shortest paths from each ground station / satellite to every ground station. It only uses paths which are GS-(SAT)+-GS (in other words, no ground station relays). Ground stations and satellites have exactly one interface which does not change bandwidth. This interface can send to any other GSL interface ("free"). -
algorithm_free_one_only_gs_relays: Only runs for scenarios where there are no ISLs. It calculates the shortest paths from each ground station / satellite to every ground station. It only uses paths which are GS-SAT-(GS-SAT)+-GS (in other words, only ground station relays). Ground stations and satellites have exactly one interface which does not change bandwidth. This interface can send to any other GSL interface ("free"). -
algorithm_free_gs_one_sat_many_only_over_isls: Only runs for scenarios where there are ISLs. It calculates the shortest paths from each ground station / satellite to every ground station. It only uses paths which are GS-(SAT)+-GS (in other words, no ground station relays). Ground stations have exactly one GSL interface which does not change bandwidth, and satellites have# of ground stationsGSL interfaces. Importantly, if the satellite sends to a specific ground station, it sends from the specific interface on it allocated for that ground station. This means that if a satellite is used to reach two ground stations, they will not be bottlenecked by the satellite GSL interface. -
algorithm_paired_many_over_isls: Only runs for scenarios where there are ISLs. It calculates the shortest paths from each ground station / satellite to every ground station. It only uses paths which are GS-(SAT)+-GS (in other words, no ground station relays). Ground stations have one interface, satellites have# of ground stationsinterfaces. Each ground station interface is bound to the nearest satellite interface (at its index), and only sends there. Bandwidth is allocated on both sides based on the number of ground station the satellite connects to. (WARNING: THIS IS STILL IN EARLY DEVELOPMENT STAGE)
File formats
Ground stations
A comma-separated file describing the ground stations.
Line format for non-extended (without position): ground_stations.basic.txt
[id: int],[name: string],[latitude: float],[longitude: float],[elevation: float]
Example:
0,City: Tokyo; Country: Japan,35.6895,139.69171,0.0
1,City: Delhi; Country: India,28.66667,77.21667,0.0
Line format for extended (with position): ground_stations.txt
[id: int],[name: string],[latitude: float],[longitude: float],[elevation: float],[x cartesian: float],[y cartesian: float],[z cartesian: float]
Example:
0,Tokyo,Japan,37875.951,0.915,35.6895,139.69171,0.0,-3954844.87446858,3354936.24256892,3700264.78797276,0
Notes:
- ID needs to be incrementally increased by 1
- The node ids of the ground stations are assigned after the satellite, so if there are 625 satellites, the first ground station has node ID 625 (but of course ground station id of 0)
Satellite orbits: tles.txt
This file contains the positions of satellites.
Format:
-
The first line should contain the number of orbits and the number of satellites per orbit, separated by a space.
-
Subsequently, each satellite is described in four lines:
(1-3) The first three lines define its orbit using the Two-line Element Set Coordinate System:
https://spaceflight.nasa.gov/realdata/sightings/SSapplications/Post/JavaSSOP/SSOP_Help/tle_def.html
Example:
1 1
Starlink 0
1 00001U 19029BR 18161.59692852 .00001103 00000-0 33518-4 0 9994
2 00001 53.00000 0.7036 0003481 299.7327 0.3331 15.05527065 1773
Notes:
- Independent of the name, the satellite ids will be set according to the file's order, starting from 0
- All satellites should have the same epoch
Satellite topology: isls.txt
This file contains the inter-satellite links. These links remain in place for the entire simulation.
Format:
Each satellite is described in a line consisting of two int, the ids of the two satellites that share a link.
[from_1] [to_1]
[from_2] [to_2]
...
[from_n] [to_n]
Example:
0 1
0 2
1 2
GSL interfaces info: gsl_interfaces_info.txt
This file contains how many GSLs each node has, and the maximum aggregate bandwidth they can have.
Format:
[node id],[number of GSL interfaces],[max. aggregate bandwidth]
Example:
329,5,2.0
Translates to: node 329 has 5 interfaces which can have an aggregate bandwidth of at most 2.0
Description: description.txt
This file contains some handy description properties.
Format:
max_gsl_length_m=<float>
max_isl_length_m=<float>
Example:
max_gsl_length_m=1089686.0000000000
max_isl_length_m=1000000000.0000000000
Forwarding state: dynamic_state/
This directory contains all the dynamic state, which means state which changes over time
Forwarding state (fstate)
Format:
Each file is named as fstate_[time in nanoseconds].txt. Its format is as follows:
[current],[dest],[next-hop],[current-interface-id],[next-hop-interface-id]
[current],[dest],[next-hop],[current-interface-id],[next-hop-interface-id]
...
[current],[dest],[next-hop],[current-interface-id],[next-hop-interface-id]
Example:
301,992,340,3,5
Translates to: a packet at node 301 destined for 992 will be sent to 340. Node 301 will enqueue it in interface 3 and will send it to the interface 5 of node 340.
Notes:
- Only from satellites and ground station node ids as current to the ground stations is encoded in the forwarding state, because satellite are never the destination of a packet during the simulation.
GSL interface bandwidth (gsl_if_bandwidth)
Format:
Each file is named as gsl_if_bandwidth_[time in nanoseconds].txt. Its format is as follows:
[node],[interface-id],[bandwidth (unitless)]
[node],[interface-id],[bandwidth (unitless)]
...
[node],[interface-id],[bandwidth (unitless)]
Example:
145,1,0.4
Translates to: interface 1 on node 145 has a bandwidth of 0.4
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file satgenpy-0.4.0.tar.gz.
File metadata
- Download URL: satgenpy-0.4.0.tar.gz
- Upload date:
- Size: 30.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.4 CPython/3.12.3 Linux/6.6.87.2-microsoft-standard-WSL2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c4d5697a4bb962b40b02ec4125e86fe1ba2718dd22882358ad4ea5f0cdce3ff
|
|
| MD5 |
3e56fc31c2c4e9d0803f8c7c73bfe5f8
|
|
| BLAKE2b-256 |
9fe29ed8e809454d69acffb6ef54c237483f0a803d63af38ff69e75597c3bb4c
|
File details
Details for the file satgenpy-0.4.0-py3-none-any.whl.
File metadata
- Download URL: satgenpy-0.4.0-py3-none-any.whl
- Upload date:
- Size: 65.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.4 CPython/3.12.3 Linux/6.6.87.2-microsoft-standard-WSL2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69057aa7a5d9199e0264cb2bd23530de80ad3dbfe0bc6883b2c53ca013457ffa
|
|
| MD5 |
46c7ff8e39c426ced0adfc59aac857c2
|
|
| BLAKE2b-256 |
ca7257eb2b1a683f5b71f6024cf68a21c5595d0ee48f5150b2fd5bbd10edfb7d
|