Home
last modified time | relevance | path

Searched refs:ds70 (Results 1 – 6 of 6) sorted by relevance

/dports/astro/libgal/libgal-0.5.0/sgp4/
H A Dgal_initsgp4p.c108 double ts70, ds70, tfrac, c1, thgr70, fk5r, c1p2p ; in gal_initsgp4p() local
165 ds70 = ids70 ; in gal_initsgp4p()
166 tfrac = ts70 - ds70 ; in gal_initsgp4p()
171 *gsto = fmod ( thgr70 + c1 * ds70 + c1p2p * tfrac + ts70 * ts70 * fk5r, GAL_2PI ) ; in gal_initsgp4p()
/dports/astro/kstars/kstars-3.5.6/kstars/skyobjects/
H A Dsatellite.cpp109 del, adel, po, ds70, ts70, tfrac, c1, thgr70, fk5r, c1p2p; in init() local
232 ds70 = floor(ts70 + 1.0e-8); in init()
233 tfrac = ts70 - ds70; in init()
239 gsto = fmod(thgr70 + c1 * ds70 + c1p2p * tfrac + ts70 * ts70 * fk5r, TWOPI); in init()
/dports/astro/marble/marble-21.12.3/src/3rdparty/sgp4/
H A Dsgp4unit.cpp1196 double ds70; in initl() local
1237 ds70 = floor(ts70 + 1.0e-8); in initl()
1238 tfrac = ts70 - ds70; in initl()
1244 gsto = fmod( thgr70 + c1*ds70 + c1p2p*tfrac + ts70*ts70*fk5r, twopi); in initl()
/dports/astro/stellarium/stellarium-0.21.3/plugins/Satellites/src/gsatellite/
H A Dsgp4unit.cpp1168 double ds70; in initl() local
1208 ds70 = std::floor(ts70 + 1.0e-8); in initl()
1209 tfrac = ts70 - ds70; in initl()
1215 gsto = std::fmod( thgr70 + c1*ds70 + c1p2p*tfrac + ts70*ts70*fk5r, twopi); in initl()
/dports/astro/py-sgp4/python-sgp4-2.20/sgp4/
H A Dpropagation.py1182 ds70 = (ts70 + 1.0e-8) // 1.0;
1183 tfrac = ts70 - ds70;
1189 gsto = (thgr70 + c1*ds70 + c1p2p*tfrac + ts70*ts70*fk5r) % twopi
/dports/astro/py-sgp4/python-sgp4-2.20/extension/
H A DSGP4.cpp1219 double ds70; in initl() local
1261 ds70 = floor(ts70 + 1.0e-8); in initl()
1262 tfrac = ts70 - ds70; in initl()
1268 double gsto1 = fmod(thgr70 + c1*ds70 + c1p2p*tfrac + ts70*ts70*fk5r, twopi); in initl()