You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For azimuth in getRangeCircle() under class SatPos
This line val rads = azimuth * DEG2RAD converts it to RAD while everything in SatPos in already in radians.
A hint should be added to the class, or a rename of variables to indicate that everything here is in radians. This also applies to devel branch where the class is now renamed to OrbitalPos
The text was updated successfully, but these errors were encountered:
Hey there! Thanks so much for this suggestion. The actual position calculation code was taken as is from predict4java only converted from java into kotlin. Currently I don't have time to keep on working on this project as I've recently became a daddy. Once things stabilize, my daughter grows up a bit and I finally get some sleep which I assume will happen in a few months I'll get back to the project with the intention to finish the miration to Compose UI. A lot of code has been refactored in devel branch and I do have plans to continue cleaning things up.
For azimuth in getRangeCircle() under class SatPos
This line
val rads = azimuth * DEG2RAD
converts it to RAD while everything in SatPos in already in radians.A hint should be added to the class, or a rename of variables to indicate that everything here is in radians. This also applies to devel branch where the class is now renamed to OrbitalPos
The text was updated successfully, but these errors were encountered: