We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems to affect nothing but perhaps it will be better to replace this line
python-sgp4/sgp4/propagation.py
Line 1802 in fac882a
temp_mm = xlm - argpm - nodem mm = temp_mm % twopi if temp_mm >= 0.0 else -(-temp_mm % twopi)
like it's done for nodem few lines above. Because (xlm - argpm - nodem) could be negative. Test TLE:
nodem
(xlm - argpm - nodem)
line1 = '1 41465U 16026B 16119.28938119 -.00000073 00000-0 00000+0 0 9994' line2 = '2 41465 97.2725 25.4306 0011130 259.3700 198.8486 15.29059623 13'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It seems to affect nothing but perhaps it will be better to replace this line
python-sgp4/sgp4/propagation.py
Line 1802 in fac882a
with
like it's done for
nodem
few lines above. Because(xlm - argpm - nodem)
could be negative.Test TLE:
The text was updated successfully, but these errors were encountered: