astro/earth/earth.go

15 lines
274 B
Go
Raw Normal View History

2019-10-24 10:44:21 +08:00
package earth
import (
2020-07-14 15:38:51 +08:00
"time"
2019-10-24 10:44:21 +08:00
"b612.me/astro/basic"
)
2020-07-14 15:38:51 +08:00
// EarthEccentricity 地球偏心率
// 返回date对应UTC时间的地球偏心率
func EarthEccentricity(date time.Time) float64 {
jde := basic.Date2JDE(date.UTC())
2019-10-24 10:44:21 +08:00
return basic.Earthe(basic.TD2UT(jde, true))
}