This commit is contained in:
2019-10-24 10:44:21 +08:00
commit 9d047c848a
34 changed files with 6573 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
package earth
import (
"b612.me/astro/basic"
)
/*
地球偏心率
jde, utc世界时
*/
func EarthEccentricity(jde float64) float64 {
return basic.Earthe(basic.TD2UT(jde, true))
}