Position of bright stars from 2025 astronomical almanac #1034
-
I don't seem to be able to reproduce the RA and Dec values for Bright Stars Section H of the Astronomical Almanac. |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 4 replies
-
Could you give an example of a star you are trying to locate, and the coordinates that you would expect to see as output? |
Beta Was this translation helpful? Give feedback.
-
Thank you for the very prompt reply. At page H2 of the 2025 AA, alpha And shows RA 00h 09m 42.7s and Dec +29d 13s 52s. I have been using NOVAS FORTRAN for some years, but the list of its errors listed in the superNOVAS fork introduction has me worried. I am teaching myself python and have written a version of the USNO Celestial Navigation Data for Assumed... using your wonderful Skyfield (for which I thank you). Regards, |
Beta Was this translation helpful? Give feedback.
-
I've got the star using your example as a go by. I think my problem is in setting the epoch as the AA describes. ....... xvenus = bodylist[i]
#AA Bright star print (star32)
...... |
Beta Was this translation helpful? Give feedback.
-
AstAlmBrightStar.txt |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Ahh.. P is the precession matrix. |
Beta Was this translation helpful? Give feedback.
Well! This is a bit of a surprise for me. It turns out that Skyfield (unless I'm missing something!) doesn't provide a simple way to ask for coordinates relative to the mean equator and mean equinox of Earth. Skyfield is so focused on observational astronomy, where you always want both precession and nutation accounted for, that it doesn't provide a built-in way to turn precession "on" and nutation "off" so that mean coordinates, instead of true coordinates, are returned.
Try this.