PyEphem - почему позиции планеты не совпадают? - PullRequest
0 голосов
/ 18 июня 2019

Вот мой простой код


from ephem import *
sun = Sun()
moo = Moon()
northwich = Observer()
northwich.lat = '53.15'
northwich.lon = '02.31'
northwich.elevation = 36
northwich.date = '2008/1/1'
sun.compute(northwich)
print('%s %s %s' % (sun.ra, sun.dec, sun.mag))
//outputs - 18:43:12.00 -23:04:05.0 -26.8
moo.compute(northwich)
print('%s %s %s' % (moo.ra, moo.dec, moo.mag))
//outputs - 13:01:37.97 -10:19:59.3 -11.64

Если я сравню вывод кода выше с Астрологический сайт Позиции / углы не будут совпадать - почему это так?

...