Spaceman3D
Space man is a Package that parses satellite Two-Line Element (TLE) Data and creates 3D plots of the satellite's orbits.
Install / Use
/learn @Jaseibert/Spaceman3DREADME
Author: Jeremy Seibert<br/> License: MIT<br/>
Spaceman3D
Spaceman3D is a python package that accomplishes several unique tasks within the space of Astrodynamics (pun intended). The package gives users the ability to parse satellite Two-Line Element (TLE) Data into its Ballistic, Keplerian, and satellite identifying orbital elements. Beyond, this SpaceMan uses a Matplotlib 3D plotting toolkit to plot the orbit of the satellites.
Basic Plotting Functionality
The plotting functionality mentioned below is accessed through the Draw() module.
from spaceman3D.Draw import Draw
from spaceman3D.Orbit import satellites
#Create a class instance of Draw()
d = Draw()
#Call the draw Orbit function
d.draw_orbit(satellites.ISS, satellites.Dragon)
#or What would the Satellite look like around the Moon
d.draw_orbit(satellites.Dragon, object='Moon')
Using the code above will output an image that resembles this:

Along with this, by calling the draw_orbit(element ,print_info=True) you will print out the keplerian elements used to calculate the satellites trajectory.

Basic TLE Parser Functionality
from spaceman3D.Orbit import tle, satellites
#Create a class instance of tle()
t = tle()
#Call the satellite elements function
t.tle_satellite_elements(satellites.ISS, satellites.Dragon, print_info=True)
Orbital Mechanic's Resources
I know that I struggled to find resources explaining the mathematics used within Astrodynamics and orbital mechanics, so I have included the "PackageCalculations.txt" file that explains the mathematics behind the functions in Orbit.py and tle.py and the logic behind each function.
Related Skills
node-connect
339.5kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
83.9kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
339.5kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
83.9kCommit, push, and open a PR

