1

这是一个示例脚本,它使用 PyEphem 和 Skyfield 计算 2016/7/23 格林威治标准时间 00:00:00 的太阳偏角:

import ephem

sun1 = ephem.Sun('2016/7/23 00:00:00')
dec1 = sun1.dec

print 'PyEphem Declination:', dec1

#-------------------------------------
from skyfield.api import load

planets = load('de421.bsp')

earth = planets['earth']
sun2 = planets['sun']

ts = load.timescale()
time2 = ts.utc(2016, 7, 23)

dec2 = earth.at(time2).observe(sun2).apparent().radec()[1]

print 'Skyfield Declination:', dec2

当我运行它时,我得到:

PyEphem Declination: 20:01:24.0
Skyfield Declination: +20deg 04' 30.0"

航海历书当时给出 20 度 01.4 英尺。我不确定我做错了什么导致这种差异。谢谢!

PS 我使用的是 Python 2.7 和 Skyfield 0.8。

4

1 回答 1

1

PyEphem 给你的答案与历书完全一致,但用传统的小时-分钟-秒表示,而不是小时和十进制分钟。.4如果以弧秒表示,则作为弧分量一部分的分数1.4变为 60 × 0.4 = 24 弧秒。所以:

20°1.4′ = 20°1′24″</p>

Skyfield 默认为您提供永久 GCRS 坐标系中的坐标,该坐标系是 J2000 的更新替代品。但是年历没有使用 2000 年的赤道和春分坐标系,而是使用它报告的每个数据的当年——实际上是确切的时刻——的坐标系。要让 Skyfield 以 2016 年坐标表示偏角,请为其epoch赋值"date"

from skyfield.api import load

ts = load.timescale()
planets = load('de421.bsp')

earth = planets['earth']
sun = planets['sun']

t = ts.utc(2016, 7, 23)
ra, dec, distance = earth.at(t).observe(sun).apparent().radec(epoch='date')
print(dec)

结果:

+20deg 01' 24.0"
于 2016-07-26T11:37:12.837 回答