我正在寻找在特定时间从 Mauna Kea 确定给定 RA/Dec 的(不知名的)恒星的 alt/az。我正在尝试使用 pyephem 计算这些参数,但生成的 alt/az 与其他来源不一致。这是 Keck 对 HAT-P-32 的计算:
import ephem
telescope = ephem.Observer()
telescope.lat = '19.8210'
telescope.long = '-155.4683'
telescope.elevation = 4154
telescope.date = '2013/1/18 10:04:14'
star = ephem.FixedBody()
star._ra = ephem.degrees('02:04:10.278')
star._dec = ephem.degrees('+46:41:16.21')
star.compute(telescope)
print star.alt, star.az
它返回-28:43:54.0 73:22:55.3
,但根据 Stellarium,正确的 alt/az 应该是:62:26:03 349:15:13
。我究竟做错了什么?
编辑:更正了以前颠倒的纬度和经度。