astro/earth/earth.go

15 lines
184 B
Go
Raw Normal View History

2019-10-24 10:44:21 +08:00
package earth
import (
"b612.me/astro/basic"
)
/*
地球偏心率
jde, utc世界时
*/
func EarthEccentricity(jde float64) float64 {
return basic.Earthe(basic.TD2UT(jde, true))
}