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.
26 lines
603 B
Go
26 lines
603 B
Go
4 years ago
|
package calendar
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"b612.me/astro/basic"
|
||
|
)
|
||
|
|
||
|
// NowJDE 获取当前时刻(本地时间)对应的儒略日时间
|
||
|
func NowJDE() float64 {
|
||
|
return basic.GetNowJDE()
|
||
|
}
|
||
|
|
||
|
// Date2JDE 日期转儒略日
|
||
|
func Date2JDE(date time.Time) float64 {
|
||
|
day := float64(date.Day()) + float64(date.Hour())/24.0 + float64(date.Minute())/24.0/60.0 + float64(date.Second())/24.0/3600.0 + float64(date.Nanosecond())/1000000000.0/3600.0/24.0
|
||
|
return basic.JDECalc(date.Year(), int(date.Month()), day)
|
||
|
}
|
||
|
|
||
|
// JDE2Date 儒略日转日期
|
||
|
func JDE2Date(jde float64) time.Time {
|
||
|
return basic.JDE2Date(jde)
|
||
|
}
|
||
|
|
||
|
|