I am currently trying to do (yet another) Rust implementation of the formulas in Jean Meeus' fantastic book "Astronomical Algorithms" (2nd ed. 1998).<p>I am fighting two issues:<p>1. While it is possible to code the algorithms as a non-astronomer with the information provided in the book, I would definitely want to understand much better what it is all about.<p>2. I am afraid, that the book is a little bit outdated by now. Many of the tables provided with astronomical data only run until 2025. Some important standards like WGS84 are not mentioned (actually I cannot determine what elipsoid the calculations are referring to). The sign of geographical longitudes for the Earth is turned around in the book (positive for West and negative for East), for reasons, which makes some algorithms IMO really dangerous to use in a real-world context.<p>Can you recommend any good astronomy "familiarization manual", that is feasible for absolute beginners, but goes deep enough with serious number crunching? In English or German language...
The topic of the currency of Meeus's book came up on stack exchange [1]. The consensus seems to be that there's no replacement yet, but that there are some better ephemerides available - but figuring out how to use those rather than the ones in the book is difficult for someone not familiar with this stuff (like me).<p>[1] <a href="https://astronomy.stackexchange.com/questions/53967/modern-equivalent-of-astronomical-algorithms-by-jean-meeus" rel="nofollow">https://astronomy.stackexchange.com/questions/53967/modern-e...</a>
I have the same Meeus book. It's been a while since I read it, but my impression was the signs of longitudes being turned around was not unique to his book, but was rather a convention throughout astronomy, so you could expect to find whatever other books you're recommended would have the same convention.<p>When I was contemplating my own implementation from that book my sketchy API design just included a mandatory extra parameter to accompany such numbers, which would explicitly indicate whether the astronomical or other sign convention was to be used.
Thanks for the hints. I ordered two promising books in German language:<p>"Astronomie" by Pearson and "Astronomie in Theorie und Praxis" (3 volumes) by Erik Wischnewski. Thats some 2000 pages of stuff to read, so let's see where this takes me.