9ee2163cc7
- 新增月掩恒星和行星:支持搜索、掩甚点、全球掩带及固定地点轨迹计算 - 支持恒星星表坐标转换、有限盘面行星接触事件和月掩 SVG 输出 - 新增日月食及月掩全球投影图、时间标记和 GeoJSON 地理数据接口 - 扩展日食中心线、南北界及偏食足迹采样,支持极区投影 - 修正站心时角、月出月落、月球视半径、折射和恒星自行计算 - 优化内外行星事件搜索、边界选择、极端输入处理和计算稳定性
152 lines
5.5 KiB
Go
152 lines
5.5 KiB
Go
package moon
|
|
|
|
import (
|
|
"errors"
|
|
"math"
|
|
"time"
|
|
|
|
"b612.me/astro/basic"
|
|
lite "b612.me/astro/lite/internal"
|
|
. "b612.me/astro/tools"
|
|
)
|
|
|
|
var (
|
|
ERR_MOON_NEVER_RISE = errors.New("ERROR:极夜,月亮在今日永远在地平线下!")
|
|
ERR_MOON_NEVER_SET = errors.New("ERROR:极昼,月亮在今日永远在地平线上!")
|
|
ERR_NOT_TODAY = errors.New("ERROR:月亮已在(昨日/明日)(升起/降下)")
|
|
)
|
|
|
|
// TrueLo 轻量真黄经 / lightweight true ecliptic longitude.
|
|
func TrueLo(date time.Time) float64 {
|
|
return lite.MoonGeocentric(basic.Date2JDE(date.UTC())).Longitude
|
|
}
|
|
|
|
// TrueBo 轻量真黄纬 / lightweight true ecliptic latitude.
|
|
func TrueBo(date time.Time) float64 {
|
|
return lite.MoonGeocentric(basic.Date2JDE(date.UTC())).Latitude
|
|
}
|
|
|
|
// TrueRa 轻量真赤经 / lightweight true right ascension.
|
|
func TrueRa(date time.Time) float64 {
|
|
return lite.MoonGeocentric(basic.Date2JDE(date.UTC())).RightAscension
|
|
}
|
|
|
|
// TrueDec 轻量真赤纬 / lightweight true declination.
|
|
func TrueDec(date time.Time) float64 {
|
|
return lite.MoonGeocentric(basic.Date2JDE(date.UTC())).Declination
|
|
}
|
|
|
|
// TrueRaDec 轻量真赤经、真赤纬 / lightweight true right ascension and declination.
|
|
func TrueRaDec(date time.Time) (float64, float64) {
|
|
state := lite.MoonGeocentric(basic.Date2JDE(date.UTC()))
|
|
return state.RightAscension, state.Declination
|
|
}
|
|
|
|
// ApparentRa 轻量站心视赤经 / lightweight topocentric apparent right ascension.
|
|
func ApparentRa(date time.Time, lon, lat float64) float64 {
|
|
state := lite.MoonTopocentric(basic.Date2JDE(date.UTC()), lon, lat, 0)
|
|
return state.RightAscension
|
|
}
|
|
|
|
// ApparentDec 轻量站心视赤纬 / lightweight topocentric apparent declination.
|
|
func ApparentDec(date time.Time, lon, lat float64) float64 {
|
|
state := lite.MoonTopocentric(basic.Date2JDE(date.UTC()), lon, lat, 0)
|
|
return state.Declination
|
|
}
|
|
|
|
// ApparentRaDec 轻量站心视赤经、视赤纬 / lightweight topocentric apparent right ascension and declination.
|
|
func ApparentRaDec(date time.Time, lon, lat float64) (float64, float64) {
|
|
state := lite.MoonTopocentric(basic.Date2JDE(date.UTC()), lon, lat, 0)
|
|
return state.RightAscension, state.Declination
|
|
}
|
|
|
|
// HourAngle 轻量时角 / lightweight hour angle.
|
|
func HourAngle(date time.Time, lon, lat float64) float64 {
|
|
_, _, hourAngle := lite.HorizontalCoordinates(ApparentRa(date, lon, lat), ApparentDec(date, lon, lat), basic.Date2JDE(date.UTC()), lon, lat)
|
|
return hourAngle
|
|
}
|
|
|
|
// Azimuth 轻量方位角 / lightweight azimuth.
|
|
func Azimuth(date time.Time, lon, lat float64) float64 {
|
|
_, azimuth, _ := lite.HorizontalCoordinates(ApparentRa(date, lon, lat), ApparentDec(date, lon, lat), basic.Date2JDE(date.UTC()), lon, lat)
|
|
return azimuth
|
|
}
|
|
|
|
// Altitude 轻量高度角 / lightweight altitude.
|
|
func Altitude(date time.Time, lon, lat float64) float64 {
|
|
altitude, _, _ := lite.HorizontalCoordinates(ApparentRa(date, lon, lat), ApparentDec(date, lon, lat), basic.Date2JDE(date.UTC()), lon, lat)
|
|
return altitude
|
|
}
|
|
|
|
// Zenith 轻量天顶距 / lightweight zenith distance.
|
|
func Zenith(date time.Time, lon, lat float64) float64 {
|
|
return 90 - Altitude(date, lon, lat)
|
|
}
|
|
|
|
// SunMoonLoDiff 轻量日月黄经差 / lightweight Moon-Sun ecliptic-longitude difference.
|
|
func SunMoonLoDiff(date time.Time) float64 {
|
|
jd := basic.Date2JDE(date.UTC())
|
|
return Limit360(lite.MoonGeocentric(jd).Longitude - lite.SunApparentLo(jd))
|
|
}
|
|
|
|
// PhaseAge 轻量月龄 / lightweight lunar age in days.
|
|
func PhaseAge(date time.Time) float64 {
|
|
return lite.SynodicMonthDays * SunMoonLoDiff(date) / 360.0
|
|
}
|
|
|
|
// Phase 轻量受照比例 / lightweight illuminated fraction.
|
|
func Phase(date time.Time) float64 {
|
|
return 0.5 * (1 - Cos(SunMoonLoDiff(date)))
|
|
}
|
|
|
|
// RiseTime 轻量月出时刻 / lightweight moonrise time.
|
|
func RiseTime(date time.Time, lon, lat, height float64, aero bool) (time.Time, error) {
|
|
return riseSetTime(date, lon, lat, height, aero, true)
|
|
}
|
|
|
|
// SetTime 轻量月落时刻 / lightweight moonset time.
|
|
func SetTime(date time.Time, lon, lat, height float64, aero bool) (time.Time, error) {
|
|
return riseSetTime(date, lon, lat, height, aero, false)
|
|
}
|
|
|
|
func riseSetTime(date time.Time, lon, lat, height float64, aero, isRise bool) (time.Time, error) {
|
|
localMidnight := time.Date(date.Year(), date.Month(), date.Day(), 0, 0, 0, 0, date.Location())
|
|
localJD := basic.Date2JDE(localMidnight)
|
|
_, offset := localMidnight.Zone()
|
|
timezone := float64(offset) / 3600.0
|
|
|
|
horizonDip := basic.HeightDegreeByLat(height, lat)
|
|
|
|
altitudeFn := func(localJD float64) float64 {
|
|
utJD := localJD - timezone/24.0
|
|
state := lite.MoonTopocentric(utJD, lon, lat, height)
|
|
altitude, _, _ := lite.HorizontalCoordinates(state.RightAscension, state.Declination, utJD, lon, lat)
|
|
residual := altitude + horizonDip
|
|
if aero {
|
|
residual += basic.RefractionFromTrueAltitude(altitude, 1010, 10)
|
|
residual += liteMoonSemidiameterDegrees(state.DistanceEarthRadii)
|
|
}
|
|
return residual
|
|
}
|
|
|
|
eventJD, err := lite.SearchRiseSet(localJD, 0, 15, isRise, altitudeFn)
|
|
if err != nil {
|
|
switch {
|
|
case errors.Is(err, lite.ErrNeverRise):
|
|
return time.Time{}, ERR_MOON_NEVER_RISE
|
|
case errors.Is(err, lite.ErrNeverSet):
|
|
return time.Time{}, ERR_MOON_NEVER_SET
|
|
case errors.Is(err, lite.ErrNotOnThisDate):
|
|
return time.Time{}, ERR_NOT_TODAY
|
|
default:
|
|
return time.Time{}, err
|
|
}
|
|
}
|
|
return basic.JDE2DateByZone(eventJD, date.Location(), true), nil
|
|
}
|
|
|
|
func liteMoonSemidiameterDegrees(distanceEarthRadii float64) float64 {
|
|
const moonRadiusEarthRadii = 1737.4 / 6378.137
|
|
return math.Asin(moonRadiusEarthRadii/distanceEarthRadii) * 180 / math.Pi
|
|
}
|