我很难找到天空中星星的当前坐标(RA,DEC)。在网上我发现只有这一个教程,如何使用 ephem 库:http ://asimpleweblog.wordpress.com/2010/07/04/astrometry-in-python-with-pyephem/
据我了解,我需要:
- 创建观察者
telescope = ephem.Observer() telescope.long = ephem.degrees('10') telescope.lat = ephem.degrees('60') telescope.elevation = 200
在这里创建一个主体对象星很麻烦,我只有(RA,DEC)星坐标
通过 .calculate(now()) 计算位置
通过新坐标找到高度
关于这个库的准确性的另一个问题,它有多准确?我比较了这个程序和 kstars 之间的 juliandate 和 sidestreal time,看起来非常相似。
这个http://www.jgiesen.de/astro/astroJS/siderealClock/
PS!或者可能有人可以为此目的推荐更好的库。