gpt4 book ai didi

python - PyEphem 中的 .parallctic_angle() 方法

转载 作者:行者123 更新时间:2023-12-01 04:39:19 24 4
gpt4 key购买 nike

PyEphem 版本 3.7.5.3(2014 年 5 月 29 日)的更新日志提到所有主体都已被赋予了 .parallctic_angle() 方法,但我在 quick references 中找不到它或教程。它需要什么参数?

最佳答案

# Compute parallactic angle using PyEphem.
city = ephem.city( ... )
moon = ephem.moon( city )
parallacticAngle = moon.parallactic_angle()

下面的代码摘自 indicator-lunar并计算视差角,用于进一步计算亮肢角。

# Compute the bright limb angle (relative to zenith) between the sun moon.
# Measured in degrees counter clockwise from a positive y axis.
# 'Astronomical Algorithms' Second Edition by Jean Meeus (chapters 14 and 48).
# 'Practical Astronomy with Your Calculator' by Peter Duffett-Smith (chapters 59 and 68).
city = ephem.city( ... )
moon = ephem.moon( city )
sun = ephem.Sun( city )

y = math.cos( sun.dec ) * math.sin( sun.ra - moon.ra )
x = math.cos( moon.dec ) * math.sin( sun.dec ) - math.sin( body.dec ) * math.cos( sun.dec ) * math.cos( sun.ra - moon.ra )
positionAngleOfBrightLimb = math.atan2( y, x )

hourAngle = city.sidereal_time() - moon.ra
y = math.sin( hourAngle )
x = math.tan( city.lat ) * math.cos( moon.dec ) - math.sin( moon.dec ) * math.cos( hourAngle )
parallacticAngle = math.atan2( y, x )
brightLimbAngle = math.degrees( ( positionAngleOfBrightLimb - parallacticAngle ) % ( 2.0 * math.pi ) )

将我的计算值与 PyEphem 的计算值进行比较,它们都匹配(一个是浮点弧度,另一个是十进制度数)。

关于python - PyEphem 中的 .parallctic_angle() 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31109366/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com