You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package earth
|
|
|
|
import (
|
|
"b612.me/astro/basic"
|
|
)
|
|
|
|
/*
|
|
地球偏心率
|
|
jde, utc世界时
|
|
*/
|
|
|
|
func EarthEccentricity(jde float64) float64 {
|
|
return basic.Earthe(basic.TD2UT(jde, true))
|
|
}
|