{"library":"satkit","title":"SatKit","description":"SatKit is a satellite orbital dynamics toolkit for Python, providing tools for orbit propagation, coordinate transformations, TLE handling, and more. Current version is 0.16.2, with a relatively stable release cadence. It requires Python >=3.10.","language":"python","status":"active","last_verified":"Fri May 01","install":{"commands":["pip install satkit"],"cli":null},"imports":["from satkit import Satellite","from satkit import tle"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from satkit import Satellite, tle\n\n# Example: propagate a satellite from TLE\nline1 = '1 25544U 98067A   24001.00000000  .00000000  00000-0  00000-0 0  9999'\nline2 = '2 25544  51.6428  45.1234 0001234 100.0000 200.0000 15.50000000350000'\nsat = tle.TLE(line1, line2).to_satellite()\n# Propagate to a specific time (fractional day of year)\nstate = sat.propagate(245.0)\nprint(state.position, state.velocity)","lang":"python","description":"Creates a satellite from TLE and propagates to a time.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}