Crate satellite

Source
Expand description

§Satellite

Modular set of functions for SGP4 and SDP4 propagation of TLEs.

Modules§

constants

Structs§

EcfVec3
EciVec3
GeodeticLocation
LookAngles
RangeErr
SatRec
Satellite record containing description of orbit.
Sgp4Result
Topocentric

Enums§

DpperInit
DpperOpsMode
Sgp4Error

Functions§

degrees_lat
degrees_long
degrees_to_radians
doppler_factor
ecf_to_eci
ecf_to_look_angles
eci_to_ecf
eci_to_geodetic
geodetic_to_ecf
get_constants
gstime
jday
jday_date
propagate
propagate_date
radians_lat
radians_long
radians_to_degrees
sgp4
twoline2satrec
Return a Satellite imported from two lines of TLE data.Provide the two TLE lines as strings longstr1 and longstr2,and select which standard set of gravitational constants you wantby providing gravity_constants:sgp4.propagation.wgs72 - Standard WGS 72 modelsgp4.propagation.wgs84 - More recent WGS 84 modelsgp4.propagation.wgs72old - Legacy support for old SGP4 behaviorNormally, computations are made using letious recent improvementsto the algorithm. If you want to turn some of these off and goback into “afspc” mode, then set afspc_mode to True.