From 19f157e71ce773a7a2cfb866c751dac5b7409c8c Mon Sep 17 00:00:00 2001 From: Don Cross Date: Sun, 14 Nov 2021 11:54:57 -0500 Subject: [PATCH] Full support for geocentric and barycentric EMB. Now the Python version of Astronomy Engine supports calculating the Earth/Moon Barycenter (EMB) state vector (position and velocity) relative to the Earth's center (geocentric) or relative to the Solar System Barycenter (SSB). This completes support for this feature across C, C#, JavaScript, and Python. --- demo/browser/astronomy.browser.js | 2 +- demo/nodejs/astronomy.js | 2 +- demo/nodejs/calendar/astronomy.ts | 2 +- demo/python/astronomy.py | 82 +- generate/ctest.c | 2 +- generate/dotnet/csharp_test/csharp_test.cs | 2 +- generate/template/astronomy.c | 2 +- generate/template/astronomy.cs | 2 +- generate/template/astronomy.py | 82 +- generate/template/astronomy.ts | 2 +- generate/test.js | 2 +- generate/test.py | 37 +- source/c/README.md | 2 +- source/c/astronomy.c | 2 +- source/csharp/README.md | 2 +- source/csharp/astronomy.cs | 2 +- source/js/README.md | 2 +- source/js/astronomy.browser.js | 2 +- source/js/astronomy.d.ts | 2 +- source/js/astronomy.js | 2 +- source/js/astronomy.ts | 2 +- source/js/esm/astronomy.js | 2 +- source/python/README.md | 40 + source/python/astronomy.py | 82 +- website/src/assets/documentation.json | 5046 ++++++++++---------- 25 files changed, 2836 insertions(+), 2571 deletions(-) diff --git a/demo/browser/astronomy.browser.js b/demo/browser/astronomy.browser.js index 5d07f8ef..2f0d1b0e 100644 --- a/demo/browser/astronomy.browser.js +++ b/demo/browser/astronomy.browser.js @@ -2643,7 +2643,7 @@ exports.GeoMoon = GeoMoon; * The position and velocity are of the Moon's center relative to the Earth's center. * The position (x, y, z) components are expressed in AU (astronomical units). * The velocity (vx, vy, vz) components are expressed in AU/day. - * If you only need the Moon's geocentric position, and not its geocentric velocity, + * If you need the Moon's position only, and not its velocity, * it is much more efficient to use {@link GeoMoon} instead. * * @param {FlexibleDateTime} date diff --git a/demo/nodejs/astronomy.js b/demo/nodejs/astronomy.js index fd2b0ab8..c9e1b582 100644 --- a/demo/nodejs/astronomy.js +++ b/demo/nodejs/astronomy.js @@ -2642,7 +2642,7 @@ exports.GeoMoon = GeoMoon; * The position and velocity are of the Moon's center relative to the Earth's center. * The position (x, y, z) components are expressed in AU (astronomical units). * The velocity (vx, vy, vz) components are expressed in AU/day. - * If you only need the Moon's geocentric position, and not its geocentric velocity, + * If you need the Moon's position only, and not its velocity, * it is much more efficient to use {@link GeoMoon} instead. * * @param {FlexibleDateTime} date diff --git a/demo/nodejs/calendar/astronomy.ts b/demo/nodejs/calendar/astronomy.ts index 9939578a..83157594 100644 --- a/demo/nodejs/calendar/astronomy.ts +++ b/demo/nodejs/calendar/astronomy.ts @@ -2851,7 +2851,7 @@ export function GeoMoon(date: FlexibleDateTime): Vector { * The position and velocity are of the Moon's center relative to the Earth's center. * The position (x, y, z) components are expressed in AU (astronomical units). * The velocity (vx, vy, vz) components are expressed in AU/day. - * If you only need the Moon's geocentric position, and not its geocentric velocity, + * If you need the Moon's position only, and not its velocity, * it is much more efficient to use {@link GeoMoon} instead. * * @param {FlexibleDateTime} date diff --git a/demo/python/astronomy.py b/demo/python/astronomy.py index ec27d86c..e84da9ea 100644 --- a/demo/python/astronomy.py +++ b/demo/python/astronomy.py @@ -2487,7 +2487,6 @@ def GeoMoon(time): ------- Vector The Moon's position as a vector in J2000 Cartesian equatorial coordinates. - """ m = _CalcMoon(time) @@ -2506,6 +2505,69 @@ def GeoMoon(time): mpos2 = _precession(mpos1, time, _PrecessDir.Into2000) return Vector(mpos2[0], mpos2[1], mpos2[2], time) + +def GeoMoonState(time): + """Calculates the geocentric position and velocity of the Moon at a given time. + + Given a time of observation, calculates the Moon's position and velocity vectors. + The position and velocity are of the Moon's center relative to the Earth's center. + The position (x, y, z) components are expressed in AU (astronomical units). + The velocity (vx, vy, vz) components are expressed in AU/day. + If you need the Moon's position only, and not its velocity, + it is much more efficient to use #GeoMoon instead. + + Parameters + ---------- + time : Time + The date and time for which to calculate the Moon's position and velocity. + + Returns + ------- + StateVector + The Moon's position and velocity vectors in J2000 equatorial coordinates. + """ + # This is a hack, because trying to figure out how to derive a time + # derivative for CalcMoon() would be extremely painful! + # Calculate just before and just after the given time. + # Average to find position, subtract to find velocity. + dt = 1.0e-5 # 0.864 seconds + t1 = time.AddDays(-dt) + t2 = time.AddDays(+dt) + r1 = GeoMoon(t1) + r2 = GeoMoon(t2) + return StateVector( + (r1.x + r2.x) / 2, + (r1.y + r2.y) / 2, + (r1.z + r2.z) / 2, + (r2.x - r1.x) / (2 * dt), + (r2.y - r1.y) / (2 * dt), + (r2.z - r1.z) / (2 * dt), + time + ) + + +def GeoEmbState(time): + """Calculates the geocentric position and velocity of the Earth/Moon barycenter. + + Given a time of observation, calculates the geocentric position and velocity vectors + of the Earth/Moon barycenter (EMB). + The position (x, y, z) components are expressed in AU (astronomical units). + The velocity (vx, vy, vz) components are expressed in AU/day. + + Parameters + ---------- + time : Time + The date and time for which to calculate the EMB's geocentric state. + + Returns + ------- + StateVector + The EMB's position and velocity vectors in J2000 equatorial coordinates. + """ + s = GeoMoonState(time) + d = 1.0 + _EARTH_MOON_MASS_RATIO + return StateVector(s.x/d, s.y/d, s.z/d, s.vx/d, s.vy/d, s.vz/d, time) + # END CalcMoon #---------------------------------------------------------------------------- # BEGIN VSOP @@ -4292,12 +4354,21 @@ def BaryState(body, time): if body == Body.Neptune: return _ExportState(bary.Neptune, time) + if body in [Body.Moon, Body.EMB]: + earth = _CalcVsopPosVel(_vsop[Body.Earth.value], time.tt) + state = GeoMoonState(time) if body == Body.Moon else GeoEmbState(time) + return StateVector( + state.x + bary.Sun.r.x + earth.r.x, + state.y + bary.Sun.r.y + earth.r.y, + state.z + bary.Sun.r.z + earth.r.z, + state.vx + bary.Sun.v.x + earth.v.x, + state.vy + bary.Sun.v.y + earth.v.y, + state.vz + bary.Sun.v.z + earth.v.z, + time + ) + if 0 <= body.value < len(_vsop): # Handle the remaining VSOP bodies: Mercury, Venus, Earth, Mars. - # Calculate the heliocentric state of the given body - # and add the Sun's heliocentric state to obtain the - # body's barycentric state. - # BarySun + HelioBody = BaryBody planet = _CalcVsopPosVel(_vsop[body.value], time.tt) return StateVector( bary.Sun.r.x + planet.r.x, @@ -4309,7 +4380,6 @@ def BaryState(body, time): time ) - # FIXFIXFIX: later, we can add support for Moon, EMB, etc. raise InvalidBodyError() diff --git a/generate/ctest.c b/generate/ctest.c index 8e87e7b4..6b7fd91f 100644 --- a/generate/ctest.c +++ b/generate/ctest.c @@ -4415,7 +4415,7 @@ static double StateVectorDiff(const double vec[3], double x, double y, double z) } -/* This is a hack for use inside unit tests only; it doesn't make sense for public consumption. */ +/* Constants for use inside unit tests only; they doesn't make sense for public consumption. */ #define BODY_GEOMOON ((astro_body_t)(-100)) #define BODY_GEO_EMB ((astro_body_t)(-101)) diff --git a/generate/dotnet/csharp_test/csharp_test.cs b/generate/dotnet/csharp_test/csharp_test.cs index b6f87c0d..eb8bb07d 100644 --- a/generate/dotnet/csharp_test/csharp_test.cs +++ b/generate/dotnet/csharp_test/csharp_test.cs @@ -2714,7 +2714,7 @@ namespace csharp_test return ds; } - // Hacks for use inside unit tests only; they doesn't make sense for public consumption. + // Constants for use inside unit tests only; they doesn't make sense for public consumption. const Body Body_GeoMoon = (Body)(-100); const Body Body_Geo_EMB = (Body)(-101); diff --git a/generate/template/astronomy.c b/generate/template/astronomy.c index ea7fd85b..b2bc1864 100644 --- a/generate/template/astronomy.c +++ b/generate/template/astronomy.c @@ -1873,7 +1873,7 @@ astro_vector_t Astronomy_GeoMoon(astro_time_t time) * The position (x, y, z) components are expressed in AU (astronomical units). * The velocity (vx, vy, vz) components are expressed in AU/day. * - * If you only need the Moon's geocentric position, and not its geocentric velocity, + * If you need the Moon's position only, and not its velocity, * it is much more efficient to use #Astronomy_GeoMoon instead. * * @param time The date and time for which to calculate the Moon's position and velocity. diff --git a/generate/template/astronomy.cs b/generate/template/astronomy.cs index c00e3725..802aea16 100644 --- a/generate/template/astronomy.cs +++ b/generate/template/astronomy.cs @@ -3386,7 +3386,7 @@ $ASTRO_IAU_DATA() /// The position and velocity are of the Moon's center relative to the Earth's center. /// The position (x, y, z) components are expressed in AU (astronomical units). /// The velocity (vx, vy, vz) components are expressed in AU/day. - /// If you only need the Moon's geocentric position, and not its geocentric velocity, + /// If you need the Moon's position only, and not its velocity, /// it is much more efficient to use #Astronomy.GeoVector instead. /// /// The date and time for which to calculate the Moon's position and velocity. diff --git a/generate/template/astronomy.py b/generate/template/astronomy.py index e21fe2ac..d6746165 100644 --- a/generate/template/astronomy.py +++ b/generate/template/astronomy.py @@ -1264,7 +1264,6 @@ def GeoMoon(time): ------- Vector The Moon's position as a vector in J2000 Cartesian equatorial coordinates. - """ m = _CalcMoon(time) @@ -1283,6 +1282,69 @@ def GeoMoon(time): mpos2 = _precession(mpos1, time, _PrecessDir.Into2000) return Vector(mpos2[0], mpos2[1], mpos2[2], time) + +def GeoMoonState(time): + """Calculates the geocentric position and velocity of the Moon at a given time. + + Given a time of observation, calculates the Moon's position and velocity vectors. + The position and velocity are of the Moon's center relative to the Earth's center. + The position (x, y, z) components are expressed in AU (astronomical units). + The velocity (vx, vy, vz) components are expressed in AU/day. + If you need the Moon's position only, and not its velocity, + it is much more efficient to use #GeoMoon instead. + + Parameters + ---------- + time : Time + The date and time for which to calculate the Moon's position and velocity. + + Returns + ------- + StateVector + The Moon's position and velocity vectors in J2000 equatorial coordinates. + """ + # This is a hack, because trying to figure out how to derive a time + # derivative for CalcMoon() would be extremely painful! + # Calculate just before and just after the given time. + # Average to find position, subtract to find velocity. + dt = 1.0e-5 # 0.864 seconds + t1 = time.AddDays(-dt) + t2 = time.AddDays(+dt) + r1 = GeoMoon(t1) + r2 = GeoMoon(t2) + return StateVector( + (r1.x + r2.x) / 2, + (r1.y + r2.y) / 2, + (r1.z + r2.z) / 2, + (r2.x - r1.x) / (2 * dt), + (r2.y - r1.y) / (2 * dt), + (r2.z - r1.z) / (2 * dt), + time + ) + + +def GeoEmbState(time): + """Calculates the geocentric position and velocity of the Earth/Moon barycenter. + + Given a time of observation, calculates the geocentric position and velocity vectors + of the Earth/Moon barycenter (EMB). + The position (x, y, z) components are expressed in AU (astronomical units). + The velocity (vx, vy, vz) components are expressed in AU/day. + + Parameters + ---------- + time : Time + The date and time for which to calculate the EMB's geocentric state. + + Returns + ------- + StateVector + The EMB's position and velocity vectors in J2000 equatorial coordinates. + """ + s = GeoMoonState(time) + d = 1.0 + _EARTH_MOON_MASS_RATIO + return StateVector(s.x/d, s.y/d, s.z/d, s.vx/d, s.vy/d, s.vz/d, time) + # END CalcMoon #---------------------------------------------------------------------------- # BEGIN VSOP @@ -2250,12 +2312,21 @@ def BaryState(body, time): if body == Body.Neptune: return _ExportState(bary.Neptune, time) + if body in [Body.Moon, Body.EMB]: + earth = _CalcVsopPosVel(_vsop[Body.Earth.value], time.tt) + state = GeoMoonState(time) if body == Body.Moon else GeoEmbState(time) + return StateVector( + state.x + bary.Sun.r.x + earth.r.x, + state.y + bary.Sun.r.y + earth.r.y, + state.z + bary.Sun.r.z + earth.r.z, + state.vx + bary.Sun.v.x + earth.v.x, + state.vy + bary.Sun.v.y + earth.v.y, + state.vz + bary.Sun.v.z + earth.v.z, + time + ) + if 0 <= body.value < len(_vsop): # Handle the remaining VSOP bodies: Mercury, Venus, Earth, Mars. - # Calculate the heliocentric state of the given body - # and add the Sun's heliocentric state to obtain the - # body's barycentric state. - # BarySun + HelioBody = BaryBody planet = _CalcVsopPosVel(_vsop[body.value], time.tt) return StateVector( bary.Sun.r.x + planet.r.x, @@ -2267,7 +2338,6 @@ def BaryState(body, time): time ) - # FIXFIXFIX: later, we can add support for Moon, EMB, etc. raise InvalidBodyError() diff --git a/generate/template/astronomy.ts b/generate/template/astronomy.ts index e17c5dd1..73793998 100644 --- a/generate/template/astronomy.ts +++ b/generate/template/astronomy.ts @@ -2040,7 +2040,7 @@ export function GeoMoon(date: FlexibleDateTime): Vector { * The position and velocity are of the Moon's center relative to the Earth's center. * The position (x, y, z) components are expressed in AU (astronomical units). * The velocity (vx, vy, vz) components are expressed in AU/day. - * If you only need the Moon's geocentric position, and not its geocentric velocity, + * If you need the Moon's position only, and not its velocity, * it is much more efficient to use {@link GeoMoon} instead. * * @param {FlexibleDateTime} date diff --git a/generate/test.js b/generate/test.js index c86a000b..96cf1984 100644 --- a/generate/test.js +++ b/generate/test.js @@ -2170,7 +2170,7 @@ function StateVectorDiff(vec, x, y, z) { return ds; } - +// Constants for use inside unit tests only; they doesn't make sense for public consumption. const Body_GeoMoon = -100; const Body_Geo_EMB = -101; diff --git a/generate/test.py b/generate/test.py index e141f661..58dcb4d7 100755 --- a/generate/test.py +++ b/generate/test.py @@ -1896,8 +1896,19 @@ def StateVectorDiff(vec, x, y, z): ds = sqrt(dx*dx + dy*dy + dz*dz) return ds +# Constants for use inside unit tests only; they doesn't make sense for public consumption. +_Body_GeoMoon = -100 +_Body_Geo_EMB = -101 + + def VerifyBaryState(stats, body, filename, lnum, time, pos, vel, r_thresh, v_thresh): - state = astronomy.BaryState(body, time) + if body == _Body_GeoMoon: + state = astronomy.GeoMoonState(time) + elif body == _Body_Geo_EMB: + state = astronomy.GeoEmbState(time) + else: + state = astronomy.BaryState(body, time) + rdiff = StateVectorDiff(pos, state.x, state.y, state.z) if rdiff > stats.max_rdiff: stats.max_rdiff = rdiff @@ -1961,16 +1972,20 @@ def BaryStateBody(body, filename, r_thresh, v_thresh): def BaryState(): - if BaryStateBody(astronomy.Body.Sun, 'barystate/Sun.txt', 1.23e-5, 1.14e-7): return 1 - if BaryStateBody(astronomy.Body.Mercury, 'barystate/Mercury.txt', 5.24e-5, 8.22e-6): return 1 - if BaryStateBody(astronomy.Body.Venus, 'barystate/Venus.txt', 2.98e-5, 8.78e-7): return 1 - if BaryStateBody(astronomy.Body.Earth, 'barystate/Earth.txt', 2.30e-5, 1.09e-6): return 1 - if BaryStateBody(astronomy.Body.Mars, 'barystate/Mars.txt', 4.34e-5, 8.23e-7): return 1 - if BaryStateBody(astronomy.Body.Jupiter, 'barystate/Jupiter.txt', 3.74e-4, 1.78e-6): return 1 - if BaryStateBody(astronomy.Body.Saturn, 'barystate/Saturn.txt', 1.07e-3, 1.71e-6): return 1 - if BaryStateBody(astronomy.Body.Uranus, 'barystate/Uranus.txt', 1.71e-3, 1.03e-6): return 1 - if BaryStateBody(astronomy.Body.Neptune, 'barystate/Neptune.txt', 2.95e-3, 1.39e-6): return 1 - if BaryStateBody(astronomy.Body.Pluto, 'barystate/Pluto.txt', 2.05e-3, 1.91e-7): return 1 + if BaryStateBody(astronomy.Body.Sun, 'barystate/Sun.txt', 1.23e-05, 1.14e-07): return 1 + if BaryStateBody(astronomy.Body.Mercury, 'barystate/Mercury.txt', 5.24e-05, 8.22e-06): return 1 + if BaryStateBody(astronomy.Body.Venus, 'barystate/Venus.txt', 2.98e-05, 8.78e-07): return 1 + if BaryStateBody(astronomy.Body.Earth, 'barystate/Earth.txt', 2.30e-05, 1.09e-06): return 1 + if BaryStateBody(astronomy.Body.Mars, 'barystate/Mars.txt', 4.34e-05, 8.23e-07): return 1 + if BaryStateBody(astronomy.Body.Jupiter, 'barystate/Jupiter.txt', 3.74e-04, 1.78e-06): return 1 + if BaryStateBody(astronomy.Body.Saturn, 'barystate/Saturn.txt', 1.07e-03, 1.71e-06): return 1 + if BaryStateBody(astronomy.Body.Uranus, 'barystate/Uranus.txt', 1.71e-03, 1.03e-06): return 1 + if BaryStateBody(astronomy.Body.Neptune, 'barystate/Neptune.txt', 2.95e-03, 1.39e-06): return 1 + if BaryStateBody(astronomy.Body.Pluto, 'barystate/Pluto.txt', 2.05e-03, 1.91e-07): return 1 + if BaryStateBody(astronomy.Body.Moon, "barystate/Moon.txt", 2.35e-05, 1.13e-06): return 1 + if BaryStateBody(astronomy.Body.EMB, "barystate/EMB.txt", 2.35e-05, 1.11e-06): return 1 + if BaryStateBody(_Body_GeoMoon, "barystate/GeoMoon.txt", 1.04e-07, 3.40e-08): return 1 + if BaryStateBody(_Body_Geo_EMB, "barystate/GeoEMB.txt", 1.26e-09, 4.12e-10): return 1 print('PY BaryState: PASS') return 0 diff --git a/source/c/README.md b/source/c/README.md index 41074ec6..17280d72 100644 --- a/source/c/README.md +++ b/source/c/README.md @@ -664,7 +664,7 @@ This algorithm is based on Nautical Almanac Office's *Improved Lunar Ephemeris* Given a time of observation, calculates the Moon's position and velocity vectors. The position and velocity are of the Moon's center relative to the Earth's center. The position (x, y, z) components are expressed in AU (astronomical units). The velocity (vx, vy, vz) components are expressed in AU/day. -If you only need the Moon's geocentric position, and not its geocentric velocity, it is much more efficient to use [`Astronomy_GeoMoon`](#Astronomy_GeoMoon) instead. +If you need the Moon's position only, and not its velocity, it is much more efficient to use [`Astronomy_GeoMoon`](#Astronomy_GeoMoon) instead. diff --git a/source/c/astronomy.c b/source/c/astronomy.c index 73d92048..6403525b 100644 --- a/source/c/astronomy.c +++ b/source/c/astronomy.c @@ -2062,7 +2062,7 @@ astro_vector_t Astronomy_GeoMoon(astro_time_t time) * The position (x, y, z) components are expressed in AU (astronomical units). * The velocity (vx, vy, vz) components are expressed in AU/day. * - * If you only need the Moon's geocentric position, and not its geocentric velocity, + * If you need the Moon's position only, and not its velocity, * it is much more efficient to use #Astronomy_GeoMoon instead. * * @param time The date and time for which to calculate the Moon's position and velocity. diff --git a/source/csharp/README.md b/source/csharp/README.md index 1e8a5066..00732419 100644 --- a/source/csharp/README.md +++ b/source/csharp/README.md @@ -486,7 +486,7 @@ Given a time of observation, calculates the Moon's position and velocity vectors The position and velocity are of the Moon's center relative to the Earth's center. The position (x, y, z) components are expressed in AU (astronomical units). The velocity (vx, vy, vz) components are expressed in AU/day. -If you only need the Moon's geocentric position, and not its geocentric velocity, +If you need the Moon's position only, and not its velocity, it is much more efficient to use [`Astronomy.GeoVector`](#Astronomy.GeoVector) instead. | Type | Parameter | Description | diff --git a/source/csharp/astronomy.cs b/source/csharp/astronomy.cs index 850c36c0..d23b8209 100644 --- a/source/csharp/astronomy.cs +++ b/source/csharp/astronomy.cs @@ -4598,7 +4598,7 @@ namespace CosineKitty /// The position and velocity are of the Moon's center relative to the Earth's center. /// The position (x, y, z) components are expressed in AU (astronomical units). /// The velocity (vx, vy, vz) components are expressed in AU/day. - /// If you only need the Moon's geocentric position, and not its geocentric velocity, + /// If you need the Moon's position only, and not its velocity, /// it is much more efficient to use #Astronomy.GeoVector instead. /// /// The date and time for which to calculate the Moon's position and velocity. diff --git a/source/js/README.md b/source/js/README.md index 36478fae..86e96ba3 100644 --- a/source/js/README.md +++ b/source/js/README.md @@ -1152,7 +1152,7 @@ Given a time of observation, calculates the Moon's position and velocity vectors The position and velocity are of the Moon's center relative to the Earth's center. The position (x, y, z) components are expressed in AU (astronomical units). The velocity (vx, vy, vz) components are expressed in AU/day. -If you only need the Moon's geocentric position, and not its geocentric velocity, +If you need the Moon's position only, and not its velocity, it is much more efficient to use [GeoMoon](#GeoMoon) instead. | Param | Type | Description | diff --git a/source/js/astronomy.browser.js b/source/js/astronomy.browser.js index 5d07f8ef..2f0d1b0e 100644 --- a/source/js/astronomy.browser.js +++ b/source/js/astronomy.browser.js @@ -2643,7 +2643,7 @@ exports.GeoMoon = GeoMoon; * The position and velocity are of the Moon's center relative to the Earth's center. * The position (x, y, z) components are expressed in AU (astronomical units). * The velocity (vx, vy, vz) components are expressed in AU/day. - * If you only need the Moon's geocentric position, and not its geocentric velocity, + * If you need the Moon's position only, and not its velocity, * it is much more efficient to use {@link GeoMoon} instead. * * @param {FlexibleDateTime} date diff --git a/source/js/astronomy.d.ts b/source/js/astronomy.d.ts index b050f177..7ebc7049 100644 --- a/source/js/astronomy.d.ts +++ b/source/js/astronomy.d.ts @@ -732,7 +732,7 @@ export declare function GeoMoon(date: FlexibleDateTime): Vector; * The position and velocity are of the Moon's center relative to the Earth's center. * The position (x, y, z) components are expressed in AU (astronomical units). * The velocity (vx, vy, vz) components are expressed in AU/day. - * If you only need the Moon's geocentric position, and not its geocentric velocity, + * If you need the Moon's position only, and not its velocity, * it is much more efficient to use {@link GeoMoon} instead. * * @param {FlexibleDateTime} date diff --git a/source/js/astronomy.js b/source/js/astronomy.js index fd2b0ab8..c9e1b582 100644 --- a/source/js/astronomy.js +++ b/source/js/astronomy.js @@ -2642,7 +2642,7 @@ exports.GeoMoon = GeoMoon; * The position and velocity are of the Moon's center relative to the Earth's center. * The position (x, y, z) components are expressed in AU (astronomical units). * The velocity (vx, vy, vz) components are expressed in AU/day. - * If you only need the Moon's geocentric position, and not its geocentric velocity, + * If you need the Moon's position only, and not its velocity, * it is much more efficient to use {@link GeoMoon} instead. * * @param {FlexibleDateTime} date diff --git a/source/js/astronomy.ts b/source/js/astronomy.ts index 9939578a..83157594 100644 --- a/source/js/astronomy.ts +++ b/source/js/astronomy.ts @@ -2851,7 +2851,7 @@ export function GeoMoon(date: FlexibleDateTime): Vector { * The position and velocity are of the Moon's center relative to the Earth's center. * The position (x, y, z) components are expressed in AU (astronomical units). * The velocity (vx, vy, vz) components are expressed in AU/day. - * If you only need the Moon's geocentric position, and not its geocentric velocity, + * If you need the Moon's position only, and not its velocity, * it is much more efficient to use {@link GeoMoon} instead. * * @param {FlexibleDateTime} date diff --git a/source/js/esm/astronomy.js b/source/js/esm/astronomy.js index 2aefc56f..fabc0dc7 100644 --- a/source/js/esm/astronomy.js +++ b/source/js/esm/astronomy.js @@ -2613,7 +2613,7 @@ export function GeoMoon(date) { * The position and velocity are of the Moon's center relative to the Earth's center. * The position (x, y, z) components are expressed in AU (astronomical units). * The velocity (vx, vy, vz) components are expressed in AU/day. - * If you only need the Moon's geocentric position, and not its geocentric velocity, + * If you need the Moon's position only, and not its velocity, * it is much more efficient to use {@link GeoMoon} instead. * * @param {FlexibleDateTime} date diff --git a/source/python/README.md b/source/python/README.md index a1d7a22c..0b22458f 100644 --- a/source/python/README.md +++ b/source/python/README.md @@ -1229,6 +1229,25 @@ Angular coordinates expressed in the same equatorial system as `vec`. --- + +### GeoEmbState(time) + +**Calculates the geocentric position and velocity of the Earth/Moon barycenter.** + +Given a time of observation, calculates the geocentric position and velocity vectors +of the Earth/Moon barycenter (EMB). +The position (x, y, z) components are expressed in AU (astronomical units). +The velocity (vx, vy, vz) components are expressed in AU/day. + +| Type | Parameter | Description | +| --- | --- | --- | +| [`Time`](#Time) | `time` | The date and time for which to calculate the EMB's geocentric state. | + +### Returns: [`StateVector`](#StateVector) +The EMB's position and velocity vectors in J2000 equatorial coordinates. + +--- + ### GeoMoon(time) @@ -1252,6 +1271,27 @@ The Moon's position as a vector in J2000 Cartesian equatorial coordinates. --- + +### GeoMoonState(time) + +**Calculates the geocentric position and velocity of the Moon at a given time.** + +Given a time of observation, calculates the Moon's position and velocity vectors. +The position and velocity are of the Moon's center relative to the Earth's center. +The position (x, y, z) components are expressed in AU (astronomical units). +The velocity (vx, vy, vz) components are expressed in AU/day. +If you need the Moon's position only, and not its velocity, +it is much more efficient to use [`GeoMoon`](#GeoMoon) instead. + +| Type | Parameter | Description | +| --- | --- | --- | +| [`Time`](#Time) | `time` | The date and time for which to calculate the Moon's position and velocity. | + +### Returns: [`StateVector`](#StateVector) +The Moon's position and velocity vectors in J2000 equatorial coordinates. + +--- + ### GeoVector(body, time, aberration) diff --git a/source/python/astronomy.py b/source/python/astronomy.py index ec27d86c..e84da9ea 100644 --- a/source/python/astronomy.py +++ b/source/python/astronomy.py @@ -2487,7 +2487,6 @@ def GeoMoon(time): ------- Vector The Moon's position as a vector in J2000 Cartesian equatorial coordinates. - """ m = _CalcMoon(time) @@ -2506,6 +2505,69 @@ def GeoMoon(time): mpos2 = _precession(mpos1, time, _PrecessDir.Into2000) return Vector(mpos2[0], mpos2[1], mpos2[2], time) + +def GeoMoonState(time): + """Calculates the geocentric position and velocity of the Moon at a given time. + + Given a time of observation, calculates the Moon's position and velocity vectors. + The position and velocity are of the Moon's center relative to the Earth's center. + The position (x, y, z) components are expressed in AU (astronomical units). + The velocity (vx, vy, vz) components are expressed in AU/day. + If you need the Moon's position only, and not its velocity, + it is much more efficient to use #GeoMoon instead. + + Parameters + ---------- + time : Time + The date and time for which to calculate the Moon's position and velocity. + + Returns + ------- + StateVector + The Moon's position and velocity vectors in J2000 equatorial coordinates. + """ + # This is a hack, because trying to figure out how to derive a time + # derivative for CalcMoon() would be extremely painful! + # Calculate just before and just after the given time. + # Average to find position, subtract to find velocity. + dt = 1.0e-5 # 0.864 seconds + t1 = time.AddDays(-dt) + t2 = time.AddDays(+dt) + r1 = GeoMoon(t1) + r2 = GeoMoon(t2) + return StateVector( + (r1.x + r2.x) / 2, + (r1.y + r2.y) / 2, + (r1.z + r2.z) / 2, + (r2.x - r1.x) / (2 * dt), + (r2.y - r1.y) / (2 * dt), + (r2.z - r1.z) / (2 * dt), + time + ) + + +def GeoEmbState(time): + """Calculates the geocentric position and velocity of the Earth/Moon barycenter. + + Given a time of observation, calculates the geocentric position and velocity vectors + of the Earth/Moon barycenter (EMB). + The position (x, y, z) components are expressed in AU (astronomical units). + The velocity (vx, vy, vz) components are expressed in AU/day. + + Parameters + ---------- + time : Time + The date and time for which to calculate the EMB's geocentric state. + + Returns + ------- + StateVector + The EMB's position and velocity vectors in J2000 equatorial coordinates. + """ + s = GeoMoonState(time) + d = 1.0 + _EARTH_MOON_MASS_RATIO + return StateVector(s.x/d, s.y/d, s.z/d, s.vx/d, s.vy/d, s.vz/d, time) + # END CalcMoon #---------------------------------------------------------------------------- # BEGIN VSOP @@ -4292,12 +4354,21 @@ def BaryState(body, time): if body == Body.Neptune: return _ExportState(bary.Neptune, time) + if body in [Body.Moon, Body.EMB]: + earth = _CalcVsopPosVel(_vsop[Body.Earth.value], time.tt) + state = GeoMoonState(time) if body == Body.Moon else GeoEmbState(time) + return StateVector( + state.x + bary.Sun.r.x + earth.r.x, + state.y + bary.Sun.r.y + earth.r.y, + state.z + bary.Sun.r.z + earth.r.z, + state.vx + bary.Sun.v.x + earth.v.x, + state.vy + bary.Sun.v.y + earth.v.y, + state.vz + bary.Sun.v.z + earth.v.z, + time + ) + if 0 <= body.value < len(_vsop): # Handle the remaining VSOP bodies: Mercury, Venus, Earth, Mars. - # Calculate the heliocentric state of the given body - # and add the Sun's heliocentric state to obtain the - # body's barycentric state. - # BarySun + HelioBody = BaryBody planet = _CalcVsopPosVel(_vsop[body.value], time.tt) return StateVector( bary.Sun.r.x + planet.r.x, @@ -4309,7 +4380,6 @@ def BaryState(body, time): time ) - # FIXFIXFIX: later, we can add support for Moon, EMB, etc. raise InvalidBodyError() diff --git a/website/src/assets/documentation.json b/website/src/assets/documentation.json index 6d360c1a..460cb944 100644 --- a/website/src/assets/documentation.json +++ b/website/src/assets/documentation.json @@ -22927,11 +22927,11 @@ "scope": "global" }, { - "comment": "/**\n * @brief Calculates the geocentric position and velocity of the Moon at a given time.\n *\n * Given a time of observation, calculates the Moon's position and velocity vectors.\n * The position and velocity are of the Moon's center relative to the Earth's center.\n * The position (x, y, z) components are expressed in AU (astronomical units).\n * The velocity (vx, vy, vz) components are expressed in AU/day.\n * If you only need the Moon's geocentric position, and not its geocentric velocity,\n * it is much more efficient to use {@link GeoMoon} instead.\n *\n * @param {FlexibleDateTime} date\n * The date and time for which to calculate the Moon's geocentric state.\n *\n * @returns {StateVector}\n */", + "comment": "/**\n * @brief Calculates the geocentric position and velocity of the Moon at a given time.\n *\n * Given a time of observation, calculates the Moon's position and velocity vectors.\n * The position and velocity are of the Moon's center relative to the Earth's center.\n * The position (x, y, z) components are expressed in AU (astronomical units).\n * The velocity (vx, vy, vz) components are expressed in AU/day.\n * If you need the Moon's position only, and not its velocity,\n * it is much more efficient to use {@link GeoMoon} instead.\n *\n * @param {FlexibleDateTime} date\n * The date and time for which to calculate the Moon's geocentric state.\n *\n * @returns {StateVector}\n */", "meta": { "range": [ - 119225, - 119876 + 119203, + 119854 ], "filename": "astronomy.js", "lineno": 2653, @@ -22957,8 +22957,8 @@ { "originalTitle": "brief", "title": "brief", - "text": "Calculates the geocentric position and velocity of the Moon at a given time.\n\nGiven a time of observation, calculates the Moon's position and velocity vectors.\nThe position and velocity are of the Moon's center relative to the Earth's center.\nThe position (x, y, z) components are expressed in AU (astronomical units).\nThe velocity (vx, vy, vz) components are expressed in AU/day.\nIf you only need the Moon's geocentric position, and not its geocentric velocity,\nit is much more efficient to use {@link GeoMoon} instead.", - "value": "Calculates the geocentric position and velocity of the Moon at a given time.\n\nGiven a time of observation, calculates the Moon's position and velocity vectors.\nThe position and velocity are of the Moon's center relative to the Earth's center.\nThe position (x, y, z) components are expressed in AU (astronomical units).\nThe velocity (vx, vy, vz) components are expressed in AU/day.\nIf you only need the Moon's geocentric position, and not its geocentric velocity,\nit is much more efficient to use {@link GeoMoon} instead." + "text": "Calculates the geocentric position and velocity of the Moon at a given time.\n\nGiven a time of observation, calculates the Moon's position and velocity vectors.\nThe position and velocity are of the Moon's center relative to the Earth's center.\nThe position (x, y, z) components are expressed in AU (astronomical units).\nThe velocity (vx, vy, vz) components are expressed in AU/day.\nIf you need the Moon's position only, and not its velocity,\nit is much more efficient to use {@link GeoMoon} instead.", + "value": "Calculates the geocentric position and velocity of the Moon at a given time.\n\nGiven a time of observation, calculates the Moon's position and velocity vectors.\nThe position and velocity are of the Moon's center relative to the Earth's center.\nThe position (x, y, z) components are expressed in AU (astronomical units).\nThe velocity (vx, vy, vz) components are expressed in AU/day.\nIf you need the Moon's position only, and not its velocity,\nit is much more efficient to use {@link GeoMoon} instead." } ], "params": [ @@ -22990,8 +22990,8 @@ "comment": "", "meta": { "range": [ - 119265, - 119286 + 119243, + 119264 ], "filename": "astronomy.js", "lineno": 2654, @@ -23015,8 +23015,8 @@ "comment": "", "meta": { "range": [ - 119552, - 119563 + 119530, + 119541 ], "filename": "astronomy.js", "lineno": 2659, @@ -23040,8 +23040,8 @@ "comment": "", "meta": { "range": [ - 119592, - 119614 + 119570, + 119592 ], "filename": "astronomy.js", "lineno": 2660, @@ -23065,8 +23065,8 @@ "comment": "", "meta": { "range": [ - 119626, - 119648 + 119604, + 119626 ], "filename": "astronomy.js", "lineno": 2661, @@ -23090,8 +23090,8 @@ "comment": "", "meta": { "range": [ - 119660, - 119676 + 119638, + 119654 ], "filename": "astronomy.js", "lineno": 2662, @@ -23115,8 +23115,8 @@ "comment": "", "meta": { "range": [ - 119688, - 119704 + 119666, + 119682 ], "filename": "astronomy.js", "lineno": 2663, @@ -23140,8 +23140,8 @@ "comment": "", "meta": { "range": [ - 119877, - 119912 + 119855, + 119890 ], "filename": "astronomy.js", "lineno": 2666, @@ -23164,8 +23164,8 @@ "comment": "/**\n * @brief Calculates the geocentric position and velocity of the Earth/Moon barycenter.\n *\n * Given a time of observation, calculates the geocentric position and velocity vectors\n * of the Earth/Moon barycenter (EMB).\n * The position (x, y, z) components are expressed in AU (astronomical units).\n * The velocity (vx, vy, vz) components are expressed in AU/day.\n *\n * @param {FlexibleDateTime} date\n * The date and time for which to calculate the EMB's geocentric state.\n *\n * @returns {StateVector}\n */", "meta": { "range": [ - 120427, - 120658 + 120405, + 120636 ], "filename": "astronomy.js", "lineno": 2680, @@ -23221,8 +23221,8 @@ "comment": "", "meta": { "range": [ - 120466, - 120487 + 120444, + 120465 ], "filename": "astronomy.js", "lineno": 2681, @@ -23246,8 +23246,8 @@ "comment": "", "meta": { "range": [ - 120499, - 120521 + 120477, + 120499 ], "filename": "astronomy.js", "lineno": 2682, @@ -23271,8 +23271,8 @@ "comment": "", "meta": { "range": [ - 120533, - 120564 + 120511, + 120542 ], "filename": "astronomy.js", "lineno": 2683, @@ -23296,8 +23296,8 @@ "comment": "", "meta": { "range": [ - 120659, - 120692 + 120637, + 120670 ], "filename": "astronomy.js", "lineno": 2686, @@ -23320,8 +23320,8 @@ "comment": "", "meta": { "range": [ - 120694, - 121159 + 120672, + 121137 ], "filename": "astronomy.js", "lineno": 2687, @@ -23356,8 +23356,8 @@ "comment": "", "meta": { "range": [ - 120750, - 120760 + 120728, + 120738 ], "filename": "astronomy.js", "lineno": 2688, @@ -23381,8 +23381,8 @@ "comment": "", "meta": { "range": [ - 120770, - 120779 + 120748, + 120757 ], "filename": "astronomy.js", "lineno": 2689, @@ -23406,8 +23406,8 @@ "comment": "", "meta": { "range": [ - 120794, - 120800 + 120772, + 120778 ], "filename": "astronomy.js", "lineno": 2690, @@ -23429,8 +23429,8 @@ "comment": "", "meta": { "range": [ - 120827, - 120834 + 120805, + 120812 ], "filename": "astronomy.js", "lineno": 2691, @@ -23454,8 +23454,8 @@ "comment": "", "meta": { "range": [ - 120895, - 120936 + 120873, + 120914 ], "filename": "astronomy.js", "lineno": 2693, @@ -23480,8 +23480,8 @@ "comment": "", "meta": { "range": [ - 120950, - 120969 + 120928, + 120947 ], "filename": "astronomy.js", "lineno": 2694, @@ -23505,8 +23505,8 @@ "comment": "", "meta": { "range": [ - 121008, - 121019 + 120986, + 120997 ], "filename": "astronomy.js", "lineno": 2696, @@ -23531,8 +23531,8 @@ "comment": "", "meta": { "range": [ - 121098, - 121111 + 121076, + 121089 ], "filename": "astronomy.js", "lineno": 2697, @@ -23557,8 +23557,8 @@ "comment": "", "meta": { "range": [ - 121121, - 121132 + 121099, + 121110 ], "filename": "astronomy.js", "lineno": 2698, @@ -23583,8 +23583,8 @@ "comment": "", "meta": { "range": [ - 121160, - 121745 + 121138, + 121723 ], "filename": "astronomy.js", "lineno": 2702, @@ -23621,8 +23621,8 @@ "comment": "", "meta": { "range": [ - 121201, - 121211 + 121179, + 121189 ], "filename": "astronomy.js", "lineno": 2703, @@ -23646,8 +23646,8 @@ "comment": "", "meta": { "range": [ - 121228, - 121238 + 121206, + 121216 ], "filename": "astronomy.js", "lineno": 2704, @@ -23671,8 +23671,8 @@ "comment": "", "meta": { "range": [ - 121259, - 121268 + 121237, + 121246 ], "filename": "astronomy.js", "lineno": 2705, @@ -23696,8 +23696,8 @@ "comment": "", "meta": { "range": [ - 121278, - 121283 + 121256, + 121261 ], "filename": "astronomy.js", "lineno": 2706, @@ -23721,8 +23721,8 @@ "comment": "", "meta": { "range": [ - 121298, - 121304 + 121276, + 121282 ], "filename": "astronomy.js", "lineno": 2707, @@ -23744,8 +23744,8 @@ "comment": "", "meta": { "range": [ - 121331, - 121342 + 121309, + 121320 ], "filename": "astronomy.js", "lineno": 2708, @@ -23769,8 +23769,8 @@ "comment": "", "meta": { "range": [ - 121356, - 121367 + 121334, + 121345 ], "filename": "astronomy.js", "lineno": 2709, @@ -23794,8 +23794,8 @@ "comment": "", "meta": { "range": [ - 121434, - 121459 + 121412, + 121437 ], "filename": "astronomy.js", "lineno": 2711, @@ -23819,8 +23819,8 @@ "comment": "", "meta": { "range": [ - 121473, - 121513 + 121451, + 121491 ], "filename": "astronomy.js", "lineno": 2712, @@ -23845,8 +23845,8 @@ "comment": "", "meta": { "range": [ - 121554, - 121587 + 121532, + 121565 ], "filename": "astronomy.js", "lineno": 2714, @@ -23871,8 +23871,8 @@ "comment": "", "meta": { "range": [ - 121607, - 121659 + 121585, + 121637 ], "filename": "astronomy.js", "lineno": 2716, @@ -23897,8 +23897,8 @@ "comment": "", "meta": { "range": [ - 121669, - 121684 + 121647, + 121662 ], "filename": "astronomy.js", "lineno": 2717, @@ -23923,8 +23923,8 @@ "comment": "", "meta": { "range": [ - 121694, - 121705 + 121672, + 121683 ], "filename": "astronomy.js", "lineno": 2718, @@ -23949,8 +23949,8 @@ "comment": "", "meta": { "range": [ - 121752, - 121780 + 121730, + 121758 ], "filename": "astronomy.js", "lineno": 2723, @@ -23973,8 +23973,8 @@ "comment": "", "meta": { "range": [ - 121788, - 121801 + 121766, + 121779 ], "filename": "astronomy.js", "lineno": 2724, @@ -23997,8 +23997,8 @@ "comment": "", "meta": { "range": [ - 121809, - 121822 + 121787, + 121800 ], "filename": "astronomy.js", "lineno": 2725, @@ -24021,8 +24021,8 @@ "comment": "", "meta": { "range": [ - 121830, - 121843 + 121808, + 121821 ], "filename": "astronomy.js", "lineno": 2726, @@ -24045,8 +24045,8 @@ "comment": "", "meta": { "range": [ - 121845, - 122191 + 121823, + 122169 ], "filename": "astronomy.js", "lineno": 2727, @@ -24071,8 +24071,8 @@ "comment": "", "meta": { "range": [ - 122192, - 122529 + 122170, + 122507 ], "filename": "astronomy.js", "lineno": 2731, @@ -24104,8 +24104,8 @@ "comment": "", "meta": { "range": [ - 122320, - 122353 + 122298, + 122331 ], "filename": "astronomy.js", "lineno": 2733, @@ -24129,8 +24129,8 @@ "comment": "", "meta": { "range": [ - 122365, - 122387 + 122343, + 122365 ], "filename": "astronomy.js", "lineno": 2734, @@ -24154,8 +24154,8 @@ "comment": "", "meta": { "range": [ - 122399, - 122421 + 122377, + 122399 ], "filename": "astronomy.js", "lineno": 2735, @@ -24179,8 +24179,8 @@ "comment": "", "meta": { "range": [ - 122530, - 122904 + 122508, + 122882 ], "filename": "astronomy.js", "lineno": 2742, @@ -24213,8 +24213,8 @@ "comment": "", "meta": { "range": [ - 122573, - 122606 + 122551, + 122584 ], "filename": "astronomy.js", "lineno": 2743, @@ -24238,8 +24238,8 @@ "comment": "", "meta": { "range": [ - 122642, - 122686 + 122620, + 122664 ], "filename": "astronomy.js", "lineno": 2744, @@ -24263,8 +24263,8 @@ "comment": "", "meta": { "range": [ - 122698, - 122743 + 122676, + 122721 ], "filename": "astronomy.js", "lineno": 2745, @@ -24288,8 +24288,8 @@ "comment": "", "meta": { "range": [ - 122755, - 122800 + 122733, + 122778 ], "filename": "astronomy.js", "lineno": 2746, @@ -24313,8 +24313,8 @@ "comment": "", "meta": { "range": [ - 122812, - 122851 + 122790, + 122829 ], "filename": "astronomy.js", "lineno": 2747, @@ -24338,8 +24338,8 @@ "comment": "", "meta": { "range": [ - 122905, - 124455 + 122883, + 124433 ], "filename": "astronomy.js", "lineno": 2750, @@ -24385,8 +24385,8 @@ "comment": "", "meta": { "range": [ - 122952, - 122980 + 122930, + 122958 ], "filename": "astronomy.js", "lineno": 2751, @@ -24410,8 +24410,8 @@ "comment": "", "meta": { "range": [ - 123085, - 123129 + 123063, + 123107 ], "filename": "astronomy.js", "lineno": 2753, @@ -24435,8 +24435,8 @@ "comment": "", "meta": { "range": [ - 123141, - 123186 + 123119, + 123164 ], "filename": "astronomy.js", "lineno": 2754, @@ -24460,8 +24460,8 @@ "comment": "", "meta": { "range": [ - 123198, - 123243 + 123176, + 123221 ], "filename": "astronomy.js", "lineno": 2755, @@ -24485,8 +24485,8 @@ "comment": "", "meta": { "range": [ - 123255, - 123295 + 123233, + 123273 ], "filename": "astronomy.js", "lineno": 2756, @@ -24510,8 +24510,8 @@ "comment": "", "meta": { "range": [ - 123307, - 123347 + 123285, + 123325 ], "filename": "astronomy.js", "lineno": 2757, @@ -24535,8 +24535,8 @@ "comment": "", "meta": { "range": [ - 123359, - 123399 + 123337, + 123377 ], "filename": "astronomy.js", "lineno": 2758, @@ -24560,8 +24560,8 @@ "comment": "", "meta": { "range": [ - 123533, - 123555 + 123511, + 123533 ], "filename": "astronomy.js", "lineno": 2761, @@ -24585,8 +24585,8 @@ "comment": "", "meta": { "range": [ - 123567, - 123589 + 123545, + 123567 ], "filename": "astronomy.js", "lineno": 2762, @@ -24610,8 +24610,8 @@ "comment": "", "meta": { "range": [ - 123601, - 123623 + 123579, + 123601 ], "filename": "astronomy.js", "lineno": 2763, @@ -24635,8 +24635,8 @@ "comment": "", "meta": { "range": [ - 123635, - 123657 + 123613, + 123635 ], "filename": "astronomy.js", "lineno": 2764, @@ -24660,8 +24660,8 @@ "comment": "", "meta": { "range": [ - 123669, - 123792 + 123647, + 123770 ], "filename": "astronomy.js", "lineno": 2765, @@ -24685,8 +24685,8 @@ "comment": "", "meta": { "range": [ - 123804, - 123927 + 123782, + 123905 ], "filename": "astronomy.js", "lineno": 2768, @@ -24710,8 +24710,8 @@ "comment": "", "meta": { "range": [ - 123939, - 124000 + 123917, + 123978 ], "filename": "astronomy.js", "lineno": 2771, @@ -24735,8 +24735,8 @@ "comment": "", "meta": { "range": [ - 124012, - 124055 + 123990, + 124033 ], "filename": "astronomy.js", "lineno": 2773, @@ -24760,8 +24760,8 @@ "comment": "", "meta": { "range": [ - 124128, - 124248 + 124106, + 124226 ], "filename": "astronomy.js", "lineno": 2775, @@ -24785,8 +24785,8 @@ "comment": "", "meta": { "range": [ - 124327, - 124358 + 124305, + 124336 ], "filename": "astronomy.js", "lineno": 2781, @@ -24810,8 +24810,8 @@ "comment": "", "meta": { "range": [ - 124370, - 124401 + 124348, + 124379 ], "filename": "astronomy.js", "lineno": 2782, @@ -24835,8 +24835,8 @@ "comment": "", "meta": { "range": [ - 124456, - 124693 + 124434, + 124671 ], "filename": "astronomy.js", "lineno": 2785, @@ -24871,8 +24871,8 @@ "comment": "", "meta": { "range": [ - 124518, - 124550 + 124496, + 124528 ], "filename": "astronomy.js", "lineno": 2786, @@ -24896,8 +24896,8 @@ "comment": "", "meta": { "range": [ - 124562, - 124597 + 124540, + 124575 ], "filename": "astronomy.js", "lineno": 2787, @@ -24921,8 +24921,8 @@ "comment": "", "meta": { "range": [ - 124603, - 124628 + 124581, + 124606 ], "filename": "astronomy.js", "lineno": 2788, @@ -24946,8 +24946,8 @@ "comment": "", "meta": { "range": [ - 124634, - 124659 + 124612, + 124637 ], "filename": "astronomy.js", "lineno": 2789, @@ -24971,8 +24971,8 @@ "comment": "", "meta": { "range": [ - 124665, - 124690 + 124643, + 124668 ], "filename": "astronomy.js", "lineno": 2790, @@ -24996,8 +24996,8 @@ "comment": "", "meta": { "range": [ - 124694, - 125035 + 124672, + 125013 ], "filename": "astronomy.js", "lineno": 2792, @@ -25025,8 +25025,8 @@ "comment": "", "meta": { "range": [ - 124747, - 124784 + 124725, + 124762 ], "filename": "astronomy.js", "lineno": 2793, @@ -25050,8 +25050,8 @@ "comment": "", "meta": { "range": [ - 125122, - 125143 + 125100, + 125121 ], "filename": "astronomy.js", "lineno": 2801, @@ -25074,8 +25074,8 @@ "comment": "", "meta": { "range": [ - 125151, - 125174 + 125129, + 125152 ], "filename": "astronomy.js", "lineno": 2802, @@ -25098,8 +25098,8 @@ "comment": "", "meta": { "range": [ - 125182, - 125196 + 125160, + 125174 ], "filename": "astronomy.js", "lineno": 2803, @@ -25122,8 +25122,8 @@ "comment": "", "meta": { "range": [ - 125204, - 125222 + 125182, + 125200 ], "filename": "astronomy.js", "lineno": 2804, @@ -25146,8 +25146,8 @@ "comment": "", "meta": { "range": [ - 125230, - 132346 + 125208, + 132324 ], "filename": "astronomy.js", "lineno": 2805, @@ -25170,8 +25170,8 @@ "comment": "", "meta": { "range": [ - 132348, - 133408 + 132326, + 133386 ], "filename": "astronomy.js", "lineno": 2858, @@ -25197,8 +25197,8 @@ "comment": "", "meta": { "range": [ - 132372, - 132460 + 132350, + 132438 ], "filename": "astronomy.js", "lineno": 2859, @@ -25228,8 +25228,8 @@ "comment": "", "meta": { "range": [ - 132403, - 132413 + 132381, + 132391 ], "filename": "astronomy.js", "lineno": 2860, @@ -25253,8 +25253,8 @@ "comment": "", "meta": { "range": [ - 132423, - 132433 + 132401, + 132411 ], "filename": "astronomy.js", "lineno": 2861, @@ -25278,8 +25278,8 @@ "comment": "", "meta": { "range": [ - 132443, - 132453 + 132421, + 132431 ], "filename": "astronomy.js", "lineno": 2862, @@ -25303,8 +25303,8 @@ "comment": "", "meta": { "range": [ - 132465, - 132543 + 132443, + 132521 ], "filename": "astronomy.js", "lineno": 2864, @@ -25333,8 +25333,8 @@ "comment": "", "meta": { "range": [ - 132548, - 132636 + 132526, + 132614 ], "filename": "astronomy.js", "lineno": 2867, @@ -25361,8 +25361,8 @@ "comment": "", "meta": { "range": [ - 132641, - 132745 + 132619, + 132723 ], "filename": "astronomy.js", "lineno": 2870, @@ -25391,8 +25391,8 @@ "comment": "", "meta": { "range": [ - 132750, - 132854 + 132728, + 132832 ], "filename": "astronomy.js", "lineno": 2873, @@ -25421,8 +25421,8 @@ "comment": "", "meta": { "range": [ - 132859, - 132959 + 132837, + 132937 ], "filename": "astronomy.js", "lineno": 2876, @@ -25451,8 +25451,8 @@ "comment": "", "meta": { "range": [ - 132881, - 132898 + 132859, + 132876 ], "filename": "astronomy.js", "lineno": 2877, @@ -25476,8 +25476,8 @@ "comment": "", "meta": { "range": [ - 132908, - 132925 + 132886, + 132903 ], "filename": "astronomy.js", "lineno": 2878, @@ -25501,8 +25501,8 @@ "comment": "", "meta": { "range": [ - 132935, - 132952 + 132913, + 132930 ], "filename": "astronomy.js", "lineno": 2879, @@ -25526,8 +25526,8 @@ "comment": "", "meta": { "range": [ - 132964, - 133064 + 132942, + 133042 ], "filename": "astronomy.js", "lineno": 2881, @@ -25556,8 +25556,8 @@ "comment": "", "meta": { "range": [ - 132986, - 133003 + 132964, + 132981 ], "filename": "astronomy.js", "lineno": 2882, @@ -25581,8 +25581,8 @@ "comment": "", "meta": { "range": [ - 133013, - 133030 + 132991, + 133008 ], "filename": "astronomy.js", "lineno": 2883, @@ -25606,8 +25606,8 @@ "comment": "", "meta": { "range": [ - 133040, - 133057 + 133018, + 133035 ], "filename": "astronomy.js", "lineno": 2884, @@ -25631,8 +25631,8 @@ "comment": "", "meta": { "range": [ - 133069, - 133171 + 133047, + 133149 ], "filename": "astronomy.js", "lineno": 2886, @@ -25661,8 +25661,8 @@ "comment": "", "meta": { "range": [ - 133176, - 133278 + 133154, + 133256 ], "filename": "astronomy.js", "lineno": 2889, @@ -25691,8 +25691,8 @@ "comment": "", "meta": { "range": [ - 133283, - 133406 + 133261, + 133384 ], "filename": "astronomy.js", "lineno": 2892, @@ -25721,8 +25721,8 @@ "comment": "", "meta": { "range": [ - 133409, - 133527 + 133387, + 133505 ], "filename": "astronomy.js", "lineno": 2896, @@ -25748,8 +25748,8 @@ "comment": "", "meta": { "range": [ - 133434, - 133525 + 133412, + 133503 ], "filename": "astronomy.js", "lineno": 2897, @@ -25779,8 +25779,8 @@ "comment": "", "meta": { "range": [ - 133466, - 133478 + 133444, + 133456 ], "filename": "astronomy.js", "lineno": 2898, @@ -25804,8 +25804,8 @@ "comment": "", "meta": { "range": [ - 133488, - 133498 + 133466, + 133476 ], "filename": "astronomy.js", "lineno": 2899, @@ -25829,8 +25829,8 @@ "comment": "", "meta": { "range": [ - 133508, - 133518 + 133486, + 133496 ], "filename": "astronomy.js", "lineno": 2900, @@ -25854,8 +25854,8 @@ "comment": "", "meta": { "range": [ - 133528, - 133707 + 133506, + 133685 ], "filename": "astronomy.js", "lineno": 2903, @@ -25883,8 +25883,8 @@ "comment": "", "meta": { "range": [ - 133708, - 133965 + 133686, + 133943 ], "filename": "astronomy.js", "lineno": 2907, @@ -25916,8 +25916,8 @@ "comment": "", "meta": { "range": [ - 133778, - 133818 + 133756, + 133796 ], "filename": "astronomy.js", "lineno": 2908, @@ -25941,8 +25941,8 @@ "comment": "", "meta": { "range": [ - 133830, - 133869 + 133808, + 133847 ], "filename": "astronomy.js", "lineno": 2909, @@ -25966,8 +25966,8 @@ "comment": "", "meta": { "range": [ - 133966, - 134154 + 133944, + 134132 ], "filename": "astronomy.js", "lineno": 2914, @@ -25998,8 +25998,8 @@ "comment": "", "meta": { "range": [ - 134035, - 134067 + 134013, + 134045 ], "filename": "astronomy.js", "lineno": 2915, @@ -26023,8 +26023,8 @@ "comment": "", "meta": { "range": [ - 134079, - 134102 + 134057, + 134080 ], "filename": "astronomy.js", "lineno": 2916, @@ -26048,8 +26048,8 @@ "comment": "", "meta": { "range": [ - 134155, - 135742 + 134133, + 135720 ], "filename": "astronomy.js", "lineno": 2919, @@ -26073,8 +26073,8 @@ "comment": "", "meta": { "range": [ - 134182, - 135171 + 134160, + 135149 ], "filename": "astronomy.js", "lineno": 2920, @@ -26102,8 +26102,8 @@ "comment": "", "meta": { "range": [ - 134272, - 134350 + 134250, + 134328 ], "filename": "astronomy.js", "lineno": 2922, @@ -26127,8 +26127,8 @@ "comment": "", "meta": { "range": [ - 134360, - 134432 + 134338, + 134410 ], "filename": "astronomy.js", "lineno": 2923, @@ -26152,8 +26152,8 @@ "comment": "", "meta": { "range": [ - 134442, - 134511 + 134420, + 134489 ], "filename": "astronomy.js", "lineno": 2924, @@ -26177,8 +26177,8 @@ "comment": "", "meta": { "range": [ - 134521, - 134590 + 134499, + 134568 ], "filename": "astronomy.js", "lineno": 2925, @@ -26202,8 +26202,8 @@ "comment": "", "meta": { "range": [ - 134600, - 134672 + 134578, + 134650 ], "filename": "astronomy.js", "lineno": 2926, @@ -26227,8 +26227,8 @@ "comment": "", "meta": { "range": [ - 135103, - 135164 + 135081, + 135142 ], "filename": "astronomy.js", "lineno": 2937, @@ -26252,8 +26252,8 @@ "comment": "", "meta": { "range": [ - 135176, - 135740 + 135154, + 135718 ], "filename": "astronomy.js", "lineno": 2939, @@ -26282,8 +26282,8 @@ "comment": "", "meta": { "range": [ - 135369, - 135421 + 135347, + 135399 ], "filename": "astronomy.js", "lineno": 2942, @@ -26307,8 +26307,8 @@ "comment": "/**\n * @ignore\n *\n * @brief The state of a body at an incremental step in a gravity simulation.\n *\n * This is an internal data structure used to represent the\n * position, velocity, and acceleration vectors of a body\n * in a gravity simulation at a given moment in time.\n *\n * @property tt\n * The J2000 terrestrial time of the state [days].\n *\n * @property r\n * The position vector [au].\n *\n * @property v\n * The velocity vector [au/day].\n *\n * @property a\n * The acceleration vector [au/day^2].\n */", "meta": { "range": [ - 136263, - 136408 + 136241, + 136386 ], "filename": "astronomy.js", "lineno": 2971, @@ -26362,8 +26362,8 @@ "comment": "", "meta": { "range": [ - 136292, - 136406 + 136270, + 136384 ], "filename": "astronomy.js", "lineno": 2972, @@ -26394,8 +26394,8 @@ "comment": "/**\n * @ignore\n *\n * @brief The state of a body at an incremental step in a gravity simulation.\n *\n * This is an internal data structure used to represent the\n * position, velocity, and acceleration vectors of a body\n * in a gravity simulation at a given moment in time.\n *\n * @property tt\n * The J2000 terrestrial time of the state [days].\n *\n * @property r\n * The position vector [au].\n *\n * @property v\n * The velocity vector [au/day].\n *\n * @property a\n * The acceleration vector [au/day^2].\n */", "meta": { "range": [ - 136263, - 136408 + 136241, + 136386 ], "filename": "astronomy.js", "lineno": 2971, @@ -26448,8 +26448,8 @@ "comment": "", "meta": { "range": [ - 136327, - 136339 + 136305, + 136317 ], "filename": "astronomy.js", "lineno": 2973, @@ -26473,8 +26473,8 @@ "comment": "", "meta": { "range": [ - 136349, - 136359 + 136327, + 136337 ], "filename": "astronomy.js", "lineno": 2974, @@ -26498,8 +26498,8 @@ "comment": "", "meta": { "range": [ - 136369, - 136379 + 136347, + 136357 ], "filename": "astronomy.js", "lineno": 2975, @@ -26523,8 +26523,8 @@ "comment": "", "meta": { "range": [ - 136389, - 136399 + 136367, + 136377 ], "filename": "astronomy.js", "lineno": 2976, @@ -26548,8 +26548,8 @@ "comment": "", "meta": { "range": [ - 136409, - 136517 + 136387, + 136495 ], "filename": "astronomy.js", "lineno": 2979, @@ -26574,8 +26574,8 @@ "comment": "", "meta": { "range": [ - 136432, - 136515 + 136410, + 136493 ], "filename": "astronomy.js", "lineno": 2980, @@ -26604,8 +26604,8 @@ "comment": "", "meta": { "range": [ - 136466, - 136482 + 136444, + 136460 ], "filename": "astronomy.js", "lineno": 2981, @@ -26629,8 +26629,8 @@ "comment": "", "meta": { "range": [ - 136492, - 136508 + 136470, + 136486 ], "filename": "astronomy.js", "lineno": 2982, @@ -26654,8 +26654,8 @@ "comment": "", "meta": { "range": [ - 136518, - 136685 + 136496, + 136663 ], "filename": "astronomy.js", "lineno": 2985, @@ -26683,8 +26683,8 @@ "comment": "", "meta": { "range": [ - 136686, - 136799 + 136664, + 136777 ], "filename": "astronomy.js", "lineno": 2988, @@ -26711,8 +26711,8 @@ "comment": "", "meta": { "range": [ - 136800, - 137717 + 136778, + 137695 ], "filename": "astronomy.js", "lineno": 2991, @@ -26748,8 +26748,8 @@ "comment": "", "meta": { "range": [ - 136841, - 136860 + 136819, + 136838 ], "filename": "astronomy.js", "lineno": 2992, @@ -26773,8 +26773,8 @@ "comment": "", "meta": { "range": [ - 136953, - 136984 + 136931, + 136962 ], "filename": "astronomy.js", "lineno": 2994, @@ -26798,8 +26798,8 @@ "comment": "", "meta": { "range": [ - 137102, - 137160 + 137080, + 137138 ], "filename": "astronomy.js", "lineno": 2996, @@ -26823,8 +26823,8 @@ "comment": "", "meta": { "range": [ - 137325, - 137380 + 137303, + 137358 ], "filename": "astronomy.js", "lineno": 2999, @@ -26848,8 +26848,8 @@ "comment": "", "meta": { "range": [ - 137475, - 137527 + 137453, + 137505 ], "filename": "astronomy.js", "lineno": 3001, @@ -26873,8 +26873,8 @@ "comment": "", "meta": { "range": [ - 137539, - 137574 + 137517, + 137552 ], "filename": "astronomy.js", "lineno": 3002, @@ -26898,8 +26898,8 @@ "comment": "", "meta": { "range": [ - 137586, - 137615 + 137564, + 137593 ], "filename": "astronomy.js", "lineno": 3003, @@ -26923,8 +26923,8 @@ "comment": "", "meta": { "range": [ - 137627, - 137674 + 137605, + 137652 ], "filename": "astronomy.js", "lineno": 3004, @@ -26948,8 +26948,8 @@ "comment": "", "meta": { "range": [ - 137724, - 137740 + 137702, + 137718 ], "filename": "astronomy.js", "lineno": 3007, @@ -26972,8 +26972,8 @@ "comment": "", "meta": { "range": [ - 137742, - 137922 + 137720, + 137900 ], "filename": "astronomy.js", "lineno": 3008, @@ -27002,8 +27002,8 @@ "comment": "", "meta": { "range": [ - 137788, - 137812 + 137766, + 137790 ], "filename": "astronomy.js", "lineno": 3009, @@ -27027,8 +27027,8 @@ "comment": "", "meta": { "range": [ - 137923, - 138259 + 137901, + 138237 ], "filename": "astronomy.js", "lineno": 3016, @@ -27061,8 +27061,8 @@ "comment": "", "meta": { "range": [ - 137965, - 137998 + 137943, + 137976 ], "filename": "astronomy.js", "lineno": 3017, @@ -27086,8 +27086,8 @@ "comment": "", "meta": { "range": [ - 138010, - 138045 + 137988, + 138023 ], "filename": "astronomy.js", "lineno": 3018, @@ -27111,8 +27111,8 @@ "comment": "", "meta": { "range": [ - 138057, - 138084 + 138035, + 138062 ], "filename": "astronomy.js", "lineno": 3019, @@ -27136,8 +27136,8 @@ "comment": "", "meta": { "range": [ - 138096, - 138123 + 138074, + 138101 ], "filename": "astronomy.js", "lineno": 3020, @@ -27161,8 +27161,8 @@ "comment": "", "meta": { "range": [ - 138135, - 138159 + 138113, + 138137 ], "filename": "astronomy.js", "lineno": 3021, @@ -27186,8 +27186,8 @@ "comment": "", "meta": { "range": [ - 138171, - 138217 + 138149, + 138195 ], "filename": "astronomy.js", "lineno": 3022, @@ -27211,8 +27211,8 @@ "comment": "", "meta": { "range": [ - 138260, - 139836 + 138238, + 139814 ], "filename": "astronomy.js", "lineno": 3025, @@ -27254,8 +27254,8 @@ "comment": "", "meta": { "range": [ - 138303, - 138329 + 138281, + 138307 ], "filename": "astronomy.js", "lineno": 3026, @@ -27279,8 +27279,8 @@ "comment": "", "meta": { "range": [ - 138535, - 138608 + 138513, + 138586 ], "filename": "astronomy.js", "lineno": 3031, @@ -27304,8 +27304,8 @@ "comment": "", "meta": { "range": [ - 138653, - 138680 + 138631, + 138658 ], "filename": "astronomy.js", "lineno": 3033, @@ -27329,8 +27329,8 @@ "comment": "", "meta": { "range": [ - 138659, - 138680 + 138637, + 138658 ], "filename": "astronomy.js", "lineno": 3033, @@ -27353,8 +27353,8 @@ "comment": "", "meta": { "range": [ - 138725, - 138780 + 138703, + 138758 ], "filename": "astronomy.js", "lineno": 3035, @@ -27379,8 +27379,8 @@ "comment": "", "meta": { "range": [ - 138790, - 138864 + 138768, + 138842 ], "filename": "astronomy.js", "lineno": 3036, @@ -27405,8 +27405,8 @@ "comment": "", "meta": { "range": [ - 138934, - 138935 + 138912, + 138913 ], "filename": "astronomy.js", "lineno": 3038, @@ -27428,8 +27428,8 @@ "comment": "", "meta": { "range": [ - 138949, - 138968 + 138927, + 138946 ], "filename": "astronomy.js", "lineno": 3039, @@ -27453,8 +27453,8 @@ "comment": "", "meta": { "range": [ - 138983, - 138988 + 138961, + 138966 ], "filename": "astronomy.js", "lineno": 3040, @@ -27479,8 +27479,8 @@ "comment": "", "meta": { "range": [ - 139029, - 139083 + 139007, + 139061 ], "filename": "astronomy.js", "lineno": 3041, @@ -27505,8 +27505,8 @@ "comment": "", "meta": { "range": [ - 139046, - 139065 + 139024, + 139043 ], "filename": "astronomy.js", "lineno": 3041, @@ -27531,8 +27531,8 @@ "comment": "", "meta": { "range": [ - 139150, - 139184 + 139128, + 139162 ], "filename": "astronomy.js", "lineno": 3043, @@ -27557,8 +27557,8 @@ "comment": "", "meta": { "range": [ - 139198, - 139210 + 139176, + 139188 ], "filename": "astronomy.js", "lineno": 3044, @@ -27582,8 +27582,8 @@ "comment": "", "meta": { "range": [ - 139220, - 139269 + 139198, + 139247 ], "filename": "astronomy.js", "lineno": 3045, @@ -27608,8 +27608,8 @@ "comment": "", "meta": { "range": [ - 139284, - 139304 + 139262, + 139282 ], "filename": "astronomy.js", "lineno": 3046, @@ -27634,8 +27634,8 @@ "comment": "", "meta": { "range": [ - 139330, - 139392 + 139308, + 139370 ], "filename": "astronomy.js", "lineno": 3047, @@ -27660,8 +27660,8 @@ "comment": "", "meta": { "range": [ - 139351, - 139370 + 139329, + 139348 ], "filename": "astronomy.js", "lineno": 3047, @@ -27686,8 +27686,8 @@ "comment": "", "meta": { "range": [ - 139480, - 139500 + 139458, + 139478 ], "filename": "astronomy.js", "lineno": 3049, @@ -27712,8 +27712,8 @@ "comment": "", "meta": { "range": [ - 139534, - 139563 + 139512, + 139541 ], "filename": "astronomy.js", "lineno": 3050, @@ -27737,8 +27737,8 @@ "comment": "", "meta": { "range": [ - 139577, - 139638 + 139555, + 139616 ], "filename": "astronomy.js", "lineno": 3051, @@ -27763,8 +27763,8 @@ "comment": "", "meta": { "range": [ - 139652, - 139713 + 139630, + 139691 ], "filename": "astronomy.js", "lineno": 3052, @@ -27789,8 +27789,8 @@ "comment": "", "meta": { "range": [ - 139727, - 139788 + 139705, + 139766 ], "filename": "astronomy.js", "lineno": 3053, @@ -27815,8 +27815,8 @@ "comment": "", "meta": { "range": [ - 139837, - 140109 + 139815, + 140087 ], "filename": "astronomy.js", "lineno": 3058, @@ -27848,8 +27848,8 @@ "comment": "", "meta": { "range": [ - 139894, - 139920 + 139872, + 139898 ], "filename": "astronomy.js", "lineno": 3059, @@ -27873,8 +27873,8 @@ "comment": "", "meta": { "range": [ - 139932, - 139977 + 139910, + 139955 ], "filename": "astronomy.js", "lineno": 3060, @@ -27898,8 +27898,8 @@ "comment": "", "meta": { "range": [ - 139992, - 139997 + 139970, + 139975 ], "filename": "astronomy.js", "lineno": 3061, @@ -27923,8 +27923,8 @@ "comment": "", "meta": { "range": [ - 140019, - 140090 + 139997, + 140068 ], "filename": "astronomy.js", "lineno": 3062, @@ -27949,8 +27949,8 @@ "comment": "", "meta": { "range": [ - 140110, - 142002 + 140088, + 141980 ], "filename": "astronomy.js", "lineno": 3065, @@ -27992,8 +27992,8 @@ "comment": "", "meta": { "range": [ - 140152, - 140153 + 140130, + 140131 ], "filename": "astronomy.js", "lineno": 3066, @@ -28015,8 +28015,8 @@ "comment": "", "meta": { "range": [ - 140155, - 140156 + 140133, + 140134 ], "filename": "astronomy.js", "lineno": 3066, @@ -28038,8 +28038,8 @@ "comment": "", "meta": { "range": [ - 140158, - 140162 + 140136, + 140140 ], "filename": "astronomy.js", "lineno": 3066, @@ -28061,8 +28061,8 @@ "comment": "", "meta": { "range": [ - 140174, - 140212 + 140152, + 140190 ], "filename": "astronomy.js", "lineno": 3067, @@ -28086,8 +28086,8 @@ "comment": "", "meta": { "range": [ - 140477, - 140480 + 140455, + 140458 ], "filename": "astronomy.js", "lineno": 3072, @@ -28109,8 +28109,8 @@ "comment": "", "meta": { "range": [ - 140539, - 140600 + 140517, + 140578 ], "filename": "astronomy.js", "lineno": 3074, @@ -28135,8 +28135,8 @@ "comment": "", "meta": { "range": [ - 140627, - 140707 + 140605, + 140685 ], "filename": "astronomy.js", "lineno": 3076, @@ -28161,8 +28161,8 @@ "comment": "", "meta": { "range": [ - 140717, - 140731 + 140695, + 140709 ], "filename": "astronomy.js", "lineno": 3077, @@ -28187,8 +28187,8 @@ "comment": "", "meta": { "range": [ - 140741, - 140755 + 140719, + 140733 ], "filename": "astronomy.js", "lineno": 3078, @@ -28213,8 +28213,8 @@ "comment": "", "meta": { "range": [ - 140765, - 140780 + 140743, + 140758 ], "filename": "astronomy.js", "lineno": 3079, @@ -28239,8 +28239,8 @@ "comment": "", "meta": { "range": [ - 140813, - 140882 + 140791, + 140860 ], "filename": "astronomy.js", "lineno": 3082, @@ -28264,8 +28264,8 @@ "comment": "", "meta": { "range": [ - 140898, - 140912 + 140876, + 140890 ], "filename": "astronomy.js", "lineno": 3083, @@ -28289,8 +28289,8 @@ "comment": "", "meta": { "range": [ - 140928, - 140946 + 140906, + 140924 ], "filename": "astronomy.js", "lineno": 3084, @@ -28314,8 +28314,8 @@ "comment": "", "meta": { "range": [ - 141022, - 141043 + 141000, + 141021 ], "filename": "astronomy.js", "lineno": 3086, @@ -28339,8 +28339,8 @@ "comment": "", "meta": { "range": [ - 141154, - 141207 + 141132, + 141185 ], "filename": "astronomy.js", "lineno": 3088, @@ -28364,8 +28364,8 @@ "comment": "", "meta": { "range": [ - 141223, - 141270 + 141201, + 141248 ], "filename": "astronomy.js", "lineno": 3089, @@ -28389,8 +28389,8 @@ "comment": "", "meta": { "range": [ - 141381, - 141434 + 141359, + 141412 ], "filename": "astronomy.js", "lineno": 3091, @@ -28414,8 +28414,8 @@ "comment": "", "meta": { "range": [ - 141450, - 141497 + 141428, + 141475 ], "filename": "astronomy.js", "lineno": 3092, @@ -28439,8 +28439,8 @@ "comment": "", "meta": { "range": [ - 141582, - 141617 + 141560, + 141595 ], "filename": "astronomy.js", "lineno": 3094, @@ -28464,8 +28464,8 @@ "comment": "", "meta": { "range": [ - 141627, - 141665 + 141605, + 141643 ], "filename": "astronomy.js", "lineno": 3095, @@ -28490,8 +28490,8 @@ "comment": "", "meta": { "range": [ - 141675, - 141713 + 141653, + 141691 ], "filename": "astronomy.js", "lineno": 3096, @@ -28516,8 +28516,8 @@ "comment": "", "meta": { "range": [ - 141833, - 141867 + 141811, + 141845 ], "filename": "astronomy.js", "lineno": 3101, @@ -28542,8 +28542,8 @@ "comment": "", "meta": { "range": [ - 141877, - 141898 + 141855, + 141876 ], "filename": "astronomy.js", "lineno": 3102, @@ -28568,8 +28568,8 @@ "comment": "", "meta": { "range": [ - 141908, - 141929 + 141886, + 141907 ], "filename": "astronomy.js", "lineno": 3103, @@ -28594,8 +28594,8 @@ "comment": "", "meta": { "range": [ - 142011, - 142289 + 141989, + 142267 ], "filename": "astronomy.js", "lineno": 3108, @@ -28618,8 +28618,8 @@ "comment": "", "meta": { "range": [ - 142297, - 149399 + 142275, + 149377 ], "filename": "astronomy.js", "lineno": 3113, @@ -28642,8 +28642,8 @@ "comment": "", "meta": { "range": [ - 142346, - 142372 + 142324, + 142350 ], "filename": "astronomy.js", "lineno": 3116, @@ -28665,8 +28665,8 @@ "comment": "", "meta": { "range": [ - 142382, - 142434 + 142360, + 142412 ], "filename": "astronomy.js", "lineno": 3117, @@ -28688,8 +28688,8 @@ "comment": "", "meta": { "range": [ - 142444, - 142539 + 142422, + 142517 ], "filename": "astronomy.js", "lineno": 3118, @@ -28711,8 +28711,8 @@ "comment": "", "meta": { "range": [ - 142549, - 142894 + 142527, + 142872 ], "filename": "astronomy.js", "lineno": 3121, @@ -28734,8 +28734,8 @@ "comment": "", "meta": { "range": [ - 142904, - 143164 + 142882, + 143142 ], "filename": "astronomy.js", "lineno": 3127, @@ -28757,8 +28757,8 @@ "comment": "", "meta": { "range": [ - 143174, - 143356 + 143152, + 143334 ], "filename": "astronomy.js", "lineno": 3132, @@ -28780,8 +28780,8 @@ "comment": "", "meta": { "range": [ - 143396, - 143422 + 143374, + 143400 ], "filename": "astronomy.js", "lineno": 3139, @@ -28803,8 +28803,8 @@ "comment": "", "meta": { "range": [ - 143432, - 143485 + 143410, + 143463 ], "filename": "astronomy.js", "lineno": 3140, @@ -28826,8 +28826,8 @@ "comment": "", "meta": { "range": [ - 143495, - 143672 + 143473, + 143650 ], "filename": "astronomy.js", "lineno": 3141, @@ -28849,8 +28849,8 @@ "comment": "", "meta": { "range": [ - 143682, - 144354 + 143660, + 144332 ], "filename": "astronomy.js", "lineno": 3145, @@ -28872,8 +28872,8 @@ "comment": "", "meta": { "range": [ - 144364, - 144954 + 144342, + 144932 ], "filename": "astronomy.js", "lineno": 3155, @@ -28895,8 +28895,8 @@ "comment": "", "meta": { "range": [ - 144964, - 145311 + 144942, + 145289 ], "filename": "astronomy.js", "lineno": 3164, @@ -28918,8 +28918,8 @@ "comment": "", "meta": { "range": [ - 145353, - 145379 + 145331, + 145357 ], "filename": "astronomy.js", "lineno": 3173, @@ -28941,8 +28941,8 @@ "comment": "", "meta": { "range": [ - 145389, - 145441 + 145367, + 145419 ], "filename": "astronomy.js", "lineno": 3174, @@ -28964,8 +28964,8 @@ "comment": "", "meta": { "range": [ - 145451, - 145628 + 145429, + 145606 ], "filename": "astronomy.js", "lineno": 3175, @@ -28987,8 +28987,8 @@ "comment": "", "meta": { "range": [ - 145638, - 146312 + 145616, + 146290 ], "filename": "astronomy.js", "lineno": 3179, @@ -29010,8 +29010,8 @@ "comment": "", "meta": { "range": [ - 146322, - 146995 + 146300, + 146973 ], "filename": "astronomy.js", "lineno": 3189, @@ -29033,8 +29033,8 @@ "comment": "", "meta": { "range": [ - 147005, - 147353 + 146983, + 147331 ], "filename": "astronomy.js", "lineno": 3199, @@ -29056,8 +29056,8 @@ "comment": "", "meta": { "range": [ - 147395, - 147421 + 147373, + 147399 ], "filename": "astronomy.js", "lineno": 3208, @@ -29079,8 +29079,8 @@ "comment": "", "meta": { "range": [ - 147431, - 147484 + 147409, + 147462 ], "filename": "astronomy.js", "lineno": 3209, @@ -29102,8 +29102,8 @@ "comment": "", "meta": { "range": [ - 147494, - 147753 + 147472, + 147731 ], "filename": "astronomy.js", "lineno": 3210, @@ -29125,8 +29125,8 @@ "comment": "", "meta": { "range": [ - 147763, - 148269 + 147741, + 148247 ], "filename": "astronomy.js", "lineno": 3215, @@ -29148,8 +29148,8 @@ "comment": "", "meta": { "range": [ - 148279, - 149034 + 148257, + 149012 ], "filename": "astronomy.js", "lineno": 3223, @@ -29171,8 +29171,8 @@ "comment": "", "meta": { "range": [ - 149044, - 149391 + 149022, + 149369 ], "filename": "astronomy.js", "lineno": 3234, @@ -29194,8 +29194,8 @@ "comment": "/**\n * @brief Holds the positions and velocities of Jupiter's major 4 moons.\n *\n * The {@link JupiterMoons} function returns an object of this type\n * to report position and velocity vectors for Jupiter's largest 4 moons\n * Io, Europa, Ganymede, and Callisto. Each position vector is relative\n * to the center of Jupiter. Both position and velocity are oriented in\n * the EQJ system (that is, using Earth's equator at the J2000 epoch).\n * The positions are expressed in astronomical units (AU),\n * and the velocities in AU/day.\n *\n * @property {StateVector[]} moon\n * An array of state vectors, one for each of the four major moons\n * of Jupiter, in the following order: 0=Io, 1=Europa, 2=Ganymede, 3=Callisto.\n */", "meta": { "range": [ - 150126, - 150208 + 150104, + 150186 ], "filename": "astronomy.js", "lineno": 3257, @@ -29238,8 +29238,8 @@ "comment": "", "meta": { "range": [ - 150155, - 150206 + 150133, + 150184 ], "filename": "astronomy.js", "lineno": 3258, @@ -29267,8 +29267,8 @@ "comment": "/**\n * @brief Holds the positions and velocities of Jupiter's major 4 moons.\n *\n * The {@link JupiterMoons} function returns an object of this type\n * to report position and velocity vectors for Jupiter's largest 4 moons\n * Io, Europa, Ganymede, and Callisto. Each position vector is relative\n * to the center of Jupiter. Both position and velocity are oriented in\n * the EQJ system (that is, using Earth's equator at the J2000 epoch).\n * The positions are expressed in astronomical units (AU),\n * and the velocities in AU/day.\n *\n * @property {StateVector[]} moon\n * An array of state vectors, one for each of the four major moons\n * of Jupiter, in the following order: 0=Io, 1=Europa, 2=Ganymede, 3=Callisto.\n */", "meta": { "range": [ - 150126, - 150208 + 150104, + 150186 ], "filename": "astronomy.js", "lineno": 3257, @@ -29310,8 +29310,8 @@ "comment": "", "meta": { "range": [ - 150183, - 150199 + 150161, + 150177 ], "filename": "astronomy.js", "lineno": 3259, @@ -29335,8 +29335,8 @@ "comment": "", "meta": { "range": [ - 150209, - 150252 + 150187, + 150230 ], "filename": "astronomy.js", "lineno": 3262, @@ -29359,8 +29359,8 @@ "comment": "", "meta": { "range": [ - 150254, - 151615 + 150232, + 151593 ], "filename": "astronomy.js", "lineno": 3263, @@ -29413,8 +29413,8 @@ "comment": "", "meta": { "range": [ - 150428, - 150439 + 150406, + 150417 ], "filename": "astronomy.js", "lineno": 3266, @@ -29438,8 +29438,8 @@ "comment": "", "meta": { "range": [ - 150451, - 150463 + 150429, + 150441 ], "filename": "astronomy.js", "lineno": 3267, @@ -29463,8 +29463,8 @@ "comment": "", "meta": { "range": [ - 150475, - 150486 + 150453, + 150464 ], "filename": "astronomy.js", "lineno": 3268, @@ -29488,8 +29488,8 @@ "comment": "", "meta": { "range": [ - 150498, - 150509 + 150476, + 150487 ], "filename": "astronomy.js", "lineno": 3269, @@ -29513,8 +29513,8 @@ "comment": "", "meta": { "range": [ - 150521, - 150532 + 150499, + 150510 ], "filename": "astronomy.js", "lineno": 3270, @@ -29538,8 +29538,8 @@ "comment": "", "meta": { "range": [ - 150544, - 150555 + 150522, + 150533 ], "filename": "astronomy.js", "lineno": 3271, @@ -29563,8 +29563,8 @@ "comment": "", "meta": { "range": [ - 150567, - 150599 + 150545, + 150577 ], "filename": "astronomy.js", "lineno": 3272, @@ -29588,8 +29588,8 @@ "comment": "", "meta": { "range": [ - 150609, - 150611 + 150587, + 150589 ], "filename": "astronomy.js", "lineno": 3273, @@ -29611,8 +29611,8 @@ "comment": "", "meta": { "range": [ - 150613, - 150615 + 150591, + 150593 ], "filename": "astronomy.js", "lineno": 3273, @@ -29634,8 +29634,8 @@ "comment": "", "meta": { "range": [ - 150617, - 150619 + 150595, + 150597 ], "filename": "astronomy.js", "lineno": 3273, @@ -29657,8 +29657,8 @@ "comment": "", "meta": { "range": [ - 150629, - 150674 + 150607, + 150652 ], "filename": "astronomy.js", "lineno": 3274, @@ -29682,8 +29682,8 @@ "comment": "", "meta": { "range": [ - 150693, - 150710 + 150671, + 150688 ], "filename": "astronomy.js", "lineno": 3276, @@ -29708,8 +29708,8 @@ "comment": "", "meta": { "range": [ - 150720, - 150737 + 150698, + 150715 ], "filename": "astronomy.js", "lineno": 3277, @@ -29734,8 +29734,8 @@ "comment": "", "meta": { "range": [ - 150747, - 150805 + 150725, + 150783 ], "filename": "astronomy.js", "lineno": 3278, @@ -29760,8 +29760,8 @@ "comment": "", "meta": { "range": [ - 150815, - 150823 + 150793, + 150801 ], "filename": "astronomy.js", "lineno": 3279, @@ -29786,8 +29786,8 @@ "comment": "", "meta": { "range": [ - 150868, - 150885 + 150846, + 150863 ], "filename": "astronomy.js", "lineno": 3281, @@ -29812,8 +29812,8 @@ "comment": "", "meta": { "range": [ - 150891, - 150908 + 150869, + 150886 ], "filename": "astronomy.js", "lineno": 3282, @@ -29838,8 +29838,8 @@ "comment": "", "meta": { "range": [ - 150920, - 150941 + 150898, + 150919 ], "filename": "astronomy.js", "lineno": 3283, @@ -29863,8 +29863,8 @@ "comment": "", "meta": { "range": [ - 150953, - 150977 + 150931, + 150955 ], "filename": "astronomy.js", "lineno": 3284, @@ -29888,8 +29888,8 @@ "comment": "", "meta": { "range": [ - 150989, - 151014 + 150967, + 150992 ], "filename": "astronomy.js", "lineno": 3285, @@ -29913,8 +29913,8 @@ "comment": "", "meta": { "range": [ - 151026, - 151062 + 151004, + 151040 ], "filename": "astronomy.js", "lineno": 3286, @@ -29938,8 +29938,8 @@ "comment": "", "meta": { "range": [ - 151074, - 151097 + 151052, + 151075 ], "filename": "astronomy.js", "lineno": 3287, @@ -29963,8 +29963,8 @@ "comment": "", "meta": { "range": [ - 151109, - 151142 + 151087, + 151120 ], "filename": "astronomy.js", "lineno": 3288, @@ -29988,8 +29988,8 @@ "comment": "", "meta": { "range": [ - 151154, - 151187 + 151132, + 151165 ], "filename": "astronomy.js", "lineno": 3289, @@ -30013,8 +30013,8 @@ "comment": "", "meta": { "range": [ - 151199, - 151243 + 151177, + 151221 ], "filename": "astronomy.js", "lineno": 3290, @@ -30038,8 +30038,8 @@ "comment": "", "meta": { "range": [ - 151255, - 151299 + 151233, + 151277 ], "filename": "astronomy.js", "lineno": 3291, @@ -30063,8 +30063,8 @@ "comment": "", "meta": { "range": [ - 151311, - 151352 + 151289, + 151330 ], "filename": "astronomy.js", "lineno": 3292, @@ -30088,8 +30088,8 @@ "comment": "", "meta": { "range": [ - 151364, - 151386 + 151342, + 151364 ], "filename": "astronomy.js", "lineno": 3293, @@ -30113,8 +30113,8 @@ "comment": "", "meta": { "range": [ - 151398, - 151420 + 151376, + 151398 ], "filename": "astronomy.js", "lineno": 3294, @@ -30138,8 +30138,8 @@ "comment": "", "meta": { "range": [ - 151432, - 151448 + 151410, + 151426 ], "filename": "astronomy.js", "lineno": 3295, @@ -30163,8 +30163,8 @@ "comment": "", "meta": { "range": [ - 151616, - 152996 + 151594, + 152974 ], "filename": "astronomy.js", "lineno": 3298, @@ -30203,8 +30203,8 @@ "comment": "", "meta": { "range": [ - 151800, - 151821 + 151778, + 151799 ], "filename": "astronomy.js", "lineno": 3301, @@ -30228,8 +30228,8 @@ "comment": "", "meta": { "range": [ - 151934, - 151981 + 151912, + 151959 ], "filename": "astronomy.js", "lineno": 3303, @@ -30253,8 +30253,8 @@ "comment": "", "meta": { "range": [ - 152042, - 152098 + 152020, + 152076 ], "filename": "astronomy.js", "lineno": 3305, @@ -30279,8 +30279,8 @@ "comment": "", "meta": { "range": [ - 152159, - 152215 + 152137, + 152193 ], "filename": "astronomy.js", "lineno": 3307, @@ -30305,8 +30305,8 @@ "comment": "", "meta": { "range": [ - 152221, - 152235 + 152199, + 152213 ], "filename": "astronomy.js", "lineno": 3308, @@ -30331,8 +30331,8 @@ "comment": "", "meta": { "range": [ - 152266, - 152280 + 152244, + 152258 ], "filename": "astronomy.js", "lineno": 3310, @@ -30357,8 +30357,8 @@ "comment": "", "meta": { "range": [ - 152349, - 152378 + 152327, + 152356 ], "filename": "astronomy.js", "lineno": 3312, @@ -30382,8 +30382,8 @@ "comment": "", "meta": { "range": [ - 152388, - 152424 + 152366, + 152402 ], "filename": "astronomy.js", "lineno": 3313, @@ -30408,8 +30408,8 @@ "comment": "", "meta": { "range": [ - 152434, - 152470 + 152412, + 152448 ], "filename": "astronomy.js", "lineno": 3314, @@ -30434,8 +30434,8 @@ "comment": "", "meta": { "range": [ - 152548, - 152577 + 152526, + 152555 ], "filename": "astronomy.js", "lineno": 3317, @@ -30459,8 +30459,8 @@ "comment": "", "meta": { "range": [ - 152587, - 152623 + 152565, + 152601 ], "filename": "astronomy.js", "lineno": 3318, @@ -30485,8 +30485,8 @@ "comment": "", "meta": { "range": [ - 152633, - 152669 + 152611, + 152647 ], "filename": "astronomy.js", "lineno": 3319, @@ -30511,8 +30511,8 @@ "comment": "", "meta": { "range": [ - 152786, - 152831 + 152764, + 152809 ], "filename": "astronomy.js", "lineno": 3322, @@ -30536,8 +30536,8 @@ "comment": "/**\n * @brief Calculates jovicentric positions and velocities of Jupiter's largest 4 moons.\n *\n * Calculates position and velocity vectors for Jupiter's moons\n * Io, Europa, Ganymede, and Callisto, at the given date and time.\n * The vectors are jovicentric (relative to the center of Jupiter).\n * Their orientation is the Earth's equatorial system at the J2000 epoch (EQJ).\n * The position components are expressed in astronomical units (AU), and the\n * velocity components are in AU/day.\n *\n * To convert to heliocentric vectors, call {@link HelioVector}\n * with `Astronomy.Body.Jupiter` to get Jupiter's heliocentric position, then\n * add the jovicentric vectors. Likewise, you can call {@link GeoVector}\n * to convert to geocentric vectors.\n *\n * @param {FlexibleDateTime} date The date and time for which to calculate Jupiter's moons.\n * @return {JupiterMoonsInfo} Position and velocity vectors of Jupiter's largest 4 moons.\n */", "meta": { "range": [ - 153931, - 154157 + 153909, + 154135 ], "filename": "astronomy.js", "lineno": 3344, @@ -30594,8 +30594,8 @@ "comment": "", "meta": { "range": [ - 153971, - 153997 + 153949, + 153975 ], "filename": "astronomy.js", "lineno": 3345, @@ -30619,8 +30619,8 @@ "comment": "", "meta": { "range": [ - 154007, - 154020 + 153985, + 153998 ], "filename": "astronomy.js", "lineno": 3346, @@ -30644,8 +30644,8 @@ "comment": "", "meta": { "range": [ - 154035, - 154039 + 154013, + 154017 ], "filename": "astronomy.js", "lineno": 3347, @@ -30667,8 +30667,8 @@ "comment": "", "meta": { "range": [ - 154158, - 154193 + 154136, + 154171 ], "filename": "astronomy.js", "lineno": 3351, @@ -30691,8 +30691,8 @@ "comment": "/**\n * @brief Calculates a vector from the center of the Sun to the given body at the given time.\n *\n * Calculates heliocentric (i.e., with respect to the center of the Sun)\n * Cartesian coordinates in the J2000 equatorial system of a celestial\n * body at a specified time. The position is not corrected for light travel time or aberration.\n *\n * @param {Body} body\n * One of the strings\n * `\"Sun\"`, `\"Moon\"`, `\"Mercury\"`, `\"Venus\"`,\n * `\"Earth\"`, `\"Mars\"`, `\"Jupiter\"`, `\"Saturn\"`,\n * `\"Uranus\"`, `\"Neptune\"`, `\"Pluto\"`,\n * `\"SSB\"`, or `\"EMB\"`.\n *\n * @param {FlexibleDateTime} date\n * The date and time for which the body's position is to be calculated.\n *\n * @returns {Vector}\n */", "meta": { "range": [ - 154987, - 155876 + 154965, + 155854 ], "filename": "astronomy.js", "lineno": 3372, @@ -30760,8 +30760,8 @@ "comment": "", "meta": { "range": [ - 155030, - 155051 + 155008, + 155029 ], "filename": "astronomy.js", "lineno": 3373, @@ -30785,8 +30785,8 @@ "comment": "", "meta": { "range": [ - 155163, - 155188 + 155141, + 155166 ], "filename": "astronomy.js", "lineno": 3377, @@ -30810,8 +30810,8 @@ "comment": "", "meta": { "range": [ - 155355, - 155385 + 155333, + 155363 ], "filename": "astronomy.js", "lineno": 3383, @@ -30835,8 +30835,8 @@ "comment": "", "meta": { "range": [ - 155399, - 155416 + 155377, + 155394 ], "filename": "astronomy.js", "lineno": 3384, @@ -30860,8 +30860,8 @@ "comment": "", "meta": { "range": [ - 155533, - 155563 + 155511, + 155541 ], "filename": "astronomy.js", "lineno": 3388, @@ -30885,8 +30885,8 @@ "comment": "", "meta": { "range": [ - 155579, - 155596 + 155557, + 155574 ], "filename": "astronomy.js", "lineno": 3389, @@ -30910,8 +30910,8 @@ "comment": "", "meta": { "range": [ - 155612, - 155647 + 155590, + 155625 ], "filename": "astronomy.js", "lineno": 3390, @@ -30935,8 +30935,8 @@ "comment": "", "meta": { "range": [ - 155877, - 155910 + 155855, + 155888 ], "filename": "astronomy.js", "lineno": 3397, @@ -30959,8 +30959,8 @@ "comment": "/**\n * @brief Calculates the distance between a body and the Sun at a given time.\n *\n * Given a date and time, this function calculates the distance between\n * the center of `body` and the center of the Sun.\n * For the planets Mercury through Neptune, this function is significantly\n * more efficient than calling {@link HelioVector} followed by taking the length\n * of the resulting vector.\n *\n * @param {Body} body\n * A body for which to calculate a heliocentric distance:\n * the Sun, Moon, or any of the planets.\n *\n * @param {FlexibleDateTime} date\n * The date and time for which to calculate the heliocentric distance.\n *\n * @returns {number}\n * The heliocentric distance in AU.\n */", "meta": { "range": [ - 156622, - 156849 + 156600, + 156827 ], "filename": "astronomy.js", "lineno": 3418, @@ -31025,8 +31025,8 @@ "comment": "", "meta": { "range": [ - 156669, - 156690 + 156647, + 156668 ], "filename": "astronomy.js", "lineno": 3419, @@ -31050,8 +31050,8 @@ "comment": "", "meta": { "range": [ - 156850, - 156887 + 156828, + 156865 ], "filename": "astronomy.js", "lineno": 3424, @@ -31074,8 +31074,8 @@ "comment": "/**\n * @brief Calculates a vector from the center of the Earth to the given body at the given time.\n *\n * Calculates geocentric (i.e., with respect to the center of the Earth)\n * Cartesian coordinates in the J2000 equatorial system of a celestial\n * body at a specified time. The position is always corrected for light travel time:\n * this means the position of the body is \"back-dated\" based on how long it\n * takes light to travel from the body to an observer on the Earth.\n * Also, the position can optionally be corrected for aberration, an effect\n * causing the apparent direction of the body to be shifted based on\n * transverse movement of the Earth with respect to the rays of light\n * coming from that body.\n *\n * @param {Body} body\n * One of the strings\n * `\"Sun\"`, `\"Moon\"`, `\"Mercury\"`, `\"Venus\"`,\n * `\"Earth\"`, `\"Mars\"`, `\"Jupiter\"`, `\"Saturn\"`,\n * `\"Uranus\"`, `\"Neptune\"`, or `\"Pluto\"`.\n *\n * @param {FlexibleDateTime} date\n * The date and time for which the body's position is to be calculated.\n *\n * @param {bool} aberration\n * Pass `true` to correct for\n * aberration,\n * or `false` to leave uncorrected.\n *\n * @returns {Vector}\n */", "meta": { "range": [ - 158143, - 160143 + 158121, + 160121 ], "filename": "astronomy.js", "lineno": 3454, @@ -31156,8 +31156,8 @@ "comment": "", "meta": { "range": [ - 158229, - 158250 + 158207, + 158228 ], "filename": "astronomy.js", "lineno": 3456, @@ -31181,8 +31181,8 @@ "comment": "", "meta": { "range": [ - 158389, - 158401 + 158367, + 158379 ], "filename": "astronomy.js", "lineno": 3461, @@ -31206,8 +31206,8 @@ "comment": "", "meta": { "range": [ - 158411, - 158412 + 158389, + 158390 ], "filename": "astronomy.js", "lineno": 3462, @@ -31229,8 +31229,8 @@ "comment": "", "meta": { "range": [ - 158422, - 158425 + 158400, + 158403 ], "filename": "astronomy.js", "lineno": 3463, @@ -31252,8 +31252,8 @@ "comment": "", "meta": { "range": [ - 158435, - 158441 + 158413, + 158419 ], "filename": "astronomy.js", "lineno": 3464, @@ -31277,8 +31277,8 @@ "comment": "", "meta": { "range": [ - 158451, - 158463 + 158429, + 158441 ], "filename": "astronomy.js", "lineno": 3465, @@ -31302,8 +31302,8 @@ "comment": "", "meta": { "range": [ - 158569, - 158577 + 158547, + 158555 ], "filename": "astronomy.js", "lineno": 3467, @@ -31327,8 +31327,8 @@ "comment": "", "meta": { "range": [ - 158608, - 158636 + 158586, + 158614 ], "filename": "astronomy.js", "lineno": 3468, @@ -31353,8 +31353,8 @@ "comment": "", "meta": { "range": [ - 159546, - 159581 + 159524, + 159559 ], "filename": "astronomy.js", "lineno": 3483, @@ -31379,8 +31379,8 @@ "comment": "", "meta": { "range": [ - 159748, - 159782 + 159726, + 159760 ], "filename": "astronomy.js", "lineno": 3488, @@ -31405,8 +31405,8 @@ "comment": "", "meta": { "range": [ - 159816, - 159883 + 159794, + 159861 ], "filename": "astronomy.js", "lineno": 3491, @@ -31431,8 +31431,8 @@ "comment": "", "meta": { "range": [ - 159897, - 159951 + 159875, + 159929 ], "filename": "astronomy.js", "lineno": 3492, @@ -31456,8 +31456,8 @@ "comment": "", "meta": { "range": [ - 159961, - 159996 + 159939, + 159974 ], "filename": "astronomy.js", "lineno": 3493, @@ -31482,8 +31482,8 @@ "comment": "", "meta": { "range": [ - 160055, - 160069 + 160033, + 160047 ], "filename": "astronomy.js", "lineno": 3496, @@ -31508,8 +31508,8 @@ "comment": "", "meta": { "range": [ - 160144, - 160173 + 160122, + 160151 ], "filename": "astronomy.js", "lineno": 3500, @@ -31532,8 +31532,8 @@ "comment": "", "meta": { "range": [ - 160175, - 160312 + 160153, + 160290 ], "filename": "astronomy.js", "lineno": 3501, @@ -31559,8 +31559,8 @@ "comment": "/**\n * @brief Calculates barycentric position and velocity vectors for the given body.\n *\n * Given a body and a time, calculates the barycentric position and velocity\n * vectors for the center of that body at that time.\n * The vectors are expressed in equatorial J2000 coordinates (EQJ).\n *\n * @param {Body} body\n * The celestial body whose barycentric state vector is to be calculated.\n * Supported values are `Body.Sun`, `Body.Moon`, `Body.EMB`, `Body.SSB`, and all planets:\n * `Body.Mercury`, `Body.Venus`, `Body.Earth`, `Body.Mars`, `Body.Jupiter`,\n * `Body.Saturn`, `Body.Uranus`, `Body.Neptune`, `Body.Pluto`.\n * @param {FlexibleDateTime} date\n * The date and time for which to calculate position and velocity.\n * @returns {StateVector}\n * An object that contains barycentric position and velocity vectors.\n */", "meta": { "range": [ - 161161, - 162851 + 161139, + 162829 ], "filename": "astronomy.js", "lineno": 3521, @@ -31629,8 +31629,8 @@ "comment": "", "meta": { "range": [ - 161204, - 161225 + 161182, + 161203 ], "filename": "astronomy.js", "lineno": 3522, @@ -31654,8 +31654,8 @@ "comment": "", "meta": { "range": [ - 161588, - 161622 + 161566, + 161600 ], "filename": "astronomy.js", "lineno": 3532, @@ -31679,8 +31679,8 @@ "comment": "", "meta": { "range": [ - 162032, - 162081 + 162010, + 162059 ], "filename": "astronomy.js", "lineno": 3541, @@ -31704,8 +31704,8 @@ "comment": "", "meta": { "range": [ - 162101, - 162170 + 162079, + 162148 ], "filename": "astronomy.js", "lineno": 3542, @@ -31729,8 +31729,8 @@ "comment": "", "meta": { "range": [ - 162547, - 162591 + 162525, + 162569 ], "filename": "astronomy.js", "lineno": 3547, @@ -31754,8 +31754,8 @@ "comment": "", "meta": { "range": [ - 162852, - 162881 + 162830, + 162859 ], "filename": "astronomy.js", "lineno": 3552, @@ -31778,8 +31778,8 @@ "comment": "", "meta": { "range": [ - 162883, - 163910 + 162861, + 163888 ], "filename": "astronomy.js", "lineno": 3553, @@ -31820,8 +31820,8 @@ "comment": "", "meta": { "range": [ - 162933, - 162955 + 162911, + 162933 ], "filename": "astronomy.js", "lineno": 3554, @@ -31845,8 +31845,8 @@ "comment": "", "meta": { "range": [ - 162965, - 162982 + 162943, + 162960 ], "filename": "astronomy.js", "lineno": 3555, @@ -31870,8 +31870,8 @@ "comment": "", "meta": { "range": [ - 162992, - 162998 + 162970, + 162976 ], "filename": "astronomy.js", "lineno": 3556, @@ -31895,8 +31895,8 @@ "comment": "", "meta": { "range": [ - 163008, - 163009 + 162986, + 162987 ], "filename": "astronomy.js", "lineno": 3557, @@ -31918,8 +31918,8 @@ "comment": "", "meta": { "range": [ - 163202, - 163212 + 163180, + 163190 ], "filename": "astronomy.js", "lineno": 3564, @@ -31944,8 +31944,8 @@ "comment": "", "meta": { "range": [ - 163370, - 163391 + 163348, + 163369 ], "filename": "astronomy.js", "lineno": 3570, @@ -31969,8 +31969,8 @@ "comment": "", "meta": { "range": [ - 163450, - 163467 + 163428, + 163445 ], "filename": "astronomy.js", "lineno": 3573, @@ -31994,8 +31994,8 @@ "comment": "", "meta": { "range": [ - 163481, - 163505 + 163459, + 163483 ], "filename": "astronomy.js", "lineno": 3574, @@ -32019,8 +32019,8 @@ "comment": "", "meta": { "range": [ - 163519, - 163543 + 163497, + 163521 ], "filename": "astronomy.js", "lineno": 3575, @@ -32044,8 +32044,8 @@ "comment": "", "meta": { "range": [ - 163660, - 163666 + 163638, + 163644 ], "filename": "astronomy.js", "lineno": 3579, @@ -32070,8 +32070,8 @@ "comment": "", "meta": { "range": [ - 163731, - 163737 + 163709, + 163715 ], "filename": "astronomy.js", "lineno": 3582, @@ -32096,8 +32096,8 @@ "comment": "", "meta": { "range": [ - 163813, - 163828 + 163791, + 163806 ], "filename": "astronomy.js", "lineno": 3588, @@ -32121,8 +32121,8 @@ "comment": "", "meta": { "range": [ - 163838, - 163866 + 163816, + 163844 ], "filename": "astronomy.js", "lineno": 3589, @@ -32146,8 +32146,8 @@ "comment": "", "meta": { "range": [ - 163881, - 163885 + 163859, + 163863 ], "filename": "astronomy.js", "lineno": 3590, @@ -32169,8 +32169,8 @@ "comment": "", "meta": { "range": [ - 163887, - 163891 + 163865, + 163869 ], "filename": "astronomy.js", "lineno": 3590, @@ -32192,8 +32192,8 @@ "comment": "", "meta": { "range": [ - 163893, - 163905 + 163871, + 163883 ], "filename": "astronomy.js", "lineno": 3590, @@ -32282,8 +32282,8 @@ "comment": "/**\n * @brief Finds the time when a function ascends through zero.\n *\n * Search for next time t (such that t is between `t1` and `t2`)\n * that `func(t)` crosses from a negative value to a non-negative value.\n * The given function must have \"smooth\" behavior over the entire inclusive range [`t1`, `t2`],\n * meaning that it behaves like a continuous differentiable function.\n * It is not required that `t1` < `t2`; `t1` > `t2`\n * allows searching backward in time.\n * Note: `t1` and `t2` must be chosen such that there is no possibility\n * of more than one zero-crossing (ascending or descending), or it is possible\n * that the \"wrong\" event will be found (i.e. not the first event after t1)\n * or even that the function will return `null`, indicating that no event was found.\n *\n * @param {function(AstroTime): number} func\n * The function to find an ascending zero crossing for.\n * The function must accept a single parameter of type {@link AstroTime}\n * and return a numeric value.\n *\n * @param {AstroTime} t1\n * The lower time bound of a search window.\n *\n * @param {AstroTime} t2\n * The upper time bound of a search window.\n *\n * @param {SearchOptions | undefined} options\n * Options that can tune the behavior of the search.\n * Most callers can omit this argument.\n *\n * @returns {AstroTime | null}\n * If the search is successful, returns the date and time of the solution.\n * If the search fails, returns `null`.\n */", "meta": { "range": [ - 166500, - 169492 + 166478, + 169470 ], "filename": "astronomy.js", "lineno": 3649, @@ -32389,8 +32389,8 @@ "comment": "", "meta": { "range": [ - 166548, - 166631 + 166526, + 166609 ], "filename": "astronomy.js", "lineno": 3650, @@ -32414,8 +32414,8 @@ "comment": "", "meta": { "range": [ - 166643, - 166701 + 166621, + 166679 ], "filename": "astronomy.js", "lineno": 3651, @@ -32439,8 +32439,8 @@ "comment": "", "meta": { "range": [ - 166711, - 166753 + 166689, + 166731 ], "filename": "astronomy.js", "lineno": 3652, @@ -32464,8 +32464,8 @@ "comment": "", "meta": { "range": [ - 166763, - 166805 + 166741, + 166783 ], "filename": "astronomy.js", "lineno": 3653, @@ -32489,8 +32489,8 @@ "comment": "", "meta": { "range": [ - 166815, - 166825 + 166793, + 166803 ], "filename": "astronomy.js", "lineno": 3654, @@ -32514,8 +32514,8 @@ "comment": "", "meta": { "range": [ - 166835, - 166843 + 166813, + 166821 ], "filename": "astronomy.js", "lineno": 3655, @@ -32539,8 +32539,8 @@ "comment": "", "meta": { "range": [ - 166853, - 166903 + 166831, + 166881 ], "filename": "astronomy.js", "lineno": 3656, @@ -32564,8 +32564,8 @@ "comment": "", "meta": { "range": [ - 166913, - 166929 + 166891, + 166907 ], "filename": "astronomy.js", "lineno": 3657, @@ -32589,8 +32589,8 @@ "comment": "", "meta": { "range": [ - 167048, - 167083 + 167026, + 167061 ], "filename": "astronomy.js", "lineno": 3661, @@ -32614,8 +32614,8 @@ "comment": "", "meta": { "range": [ - 167097, - 167117 + 167075, + 167095 ], "filename": "astronomy.js", "lineno": 3662, @@ -32639,8 +32639,8 @@ "comment": "", "meta": { "range": [ - 167295, - 167309 + 167273, + 167287 ], "filename": "astronomy.js", "lineno": 3668, @@ -32665,8 +32665,8 @@ "comment": "", "meta": { "range": [ - 167336, - 167352 + 167314, + 167330 ], "filename": "astronomy.js", "lineno": 3670, @@ -32691,8 +32691,8 @@ "comment": "", "meta": { "range": [ - 167596, - 167650 + 167574, + 167628 ], "filename": "astronomy.js", "lineno": 3674, @@ -32716,8 +32716,8 @@ "comment": "", "meta": { "range": [ - 167802, - 167820 + 167780, + 167798 ], "filename": "astronomy.js", "lineno": 3678, @@ -32741,8 +32741,8 @@ "comment": "", "meta": { "range": [ - 167838, - 167848 + 167816, + 167826 ], "filename": "astronomy.js", "lineno": 3679, @@ -32766,8 +32766,8 @@ "comment": "", "meta": { "range": [ - 168187, - 168226 + 168165, + 168204 ], "filename": "astronomy.js", "lineno": 3686, @@ -32791,8 +32791,8 @@ "comment": "", "meta": { "range": [ - 168294, - 168323 + 168272, + 168301 ], "filename": "astronomy.js", "lineno": 3688, @@ -32816,8 +32816,8 @@ "comment": "", "meta": { "range": [ - 168349, - 168379 + 168327, + 168357 ], "filename": "astronomy.js", "lineno": 3689, @@ -32841,8 +32841,8 @@ "comment": "", "meta": { "range": [ - 168561, - 168577 + 168539, + 168555 ], "filename": "astronomy.js", "lineno": 3692, @@ -32866,8 +32866,8 @@ "comment": "", "meta": { "range": [ - 168611, - 168629 + 168589, + 168607 ], "filename": "astronomy.js", "lineno": 3693, @@ -32891,8 +32891,8 @@ "comment": "", "meta": { "range": [ - 168723, - 168733 + 168701, + 168711 ], "filename": "astronomy.js", "lineno": 3695, @@ -32917,8 +32917,8 @@ "comment": "", "meta": { "range": [ - 168767, - 168778 + 168745, + 168756 ], "filename": "astronomy.js", "lineno": 3696, @@ -32943,8 +32943,8 @@ "comment": "", "meta": { "range": [ - 168812, - 168822 + 168790, + 168800 ], "filename": "astronomy.js", "lineno": 3697, @@ -32969,8 +32969,8 @@ "comment": "", "meta": { "range": [ - 168856, - 168867 + 168834, + 168845 ], "filename": "astronomy.js", "lineno": 3698, @@ -32995,8 +32995,8 @@ "comment": "", "meta": { "range": [ - 168901, - 168910 + 168879, + 168888 ], "filename": "astronomy.js", "lineno": 3699, @@ -33021,8 +33021,8 @@ "comment": "", "meta": { "range": [ - 168944, - 168961 + 168922, + 168939 ], "filename": "astronomy.js", "lineno": 3700, @@ -33047,8 +33047,8 @@ "comment": "", "meta": { "range": [ - 169172, - 169181 + 169150, + 169159 ], "filename": "astronomy.js", "lineno": 3709, @@ -33073,8 +33073,8 @@ "comment": "", "meta": { "range": [ - 169195, - 169204 + 169173, + 169182 ], "filename": "astronomy.js", "lineno": 3710, @@ -33099,8 +33099,8 @@ "comment": "", "meta": { "range": [ - 169285, - 169294 + 169263, + 169272 ], "filename": "astronomy.js", "lineno": 3714, @@ -33125,8 +33125,8 @@ "comment": "", "meta": { "range": [ - 169308, - 169317 + 169286, + 169295 ], "filename": "astronomy.js", "lineno": 3715, @@ -33151,8 +33151,8 @@ "comment": "", "meta": { "range": [ - 169493, - 169516 + 169471, + 169494 ], "filename": "astronomy.js", "lineno": 3723, @@ -33175,8 +33175,8 @@ "comment": "", "meta": { "range": [ - 169518, - 169692 + 169496, + 169670 ], "filename": "astronomy.js", "lineno": 3724, @@ -33204,8 +33204,8 @@ "comment": "", "meta": { "range": [ - 169559, - 169572 + 169537, + 169550 ], "filename": "astronomy.js", "lineno": 3725, @@ -33229,8 +33229,8 @@ "comment": "", "meta": { "range": [ - 169609, - 169622 + 169587, + 169600 ], "filename": "astronomy.js", "lineno": 3727, @@ -33255,8 +33255,8 @@ "comment": "", "meta": { "range": [ - 169657, - 169670 + 169635, + 169648 ], "filename": "astronomy.js", "lineno": 3729, @@ -33281,8 +33281,8 @@ "comment": "", "meta": { "range": [ - 169693, - 169828 + 169671, + 169806 ], "filename": "astronomy.js", "lineno": 3732, @@ -33310,8 +33310,8 @@ "comment": "", "meta": { "range": [ - 169756, - 169766 + 169734, + 169744 ], "filename": "astronomy.js", "lineno": 3734, @@ -33336,8 +33336,8 @@ "comment": "", "meta": { "range": [ - 169799, - 169809 + 169777, + 169787 ], "filename": "astronomy.js", "lineno": 3736, @@ -33362,8 +33362,8 @@ "comment": "/**\n * @brief Searches for when the Sun reaches a given ecliptic longitude.\n *\n * Searches for the moment in time when the center of the Sun reaches a given apparent\n * ecliptic longitude, as seen from the center of the Earth, within a given range of dates.\n * This function can be used to determine equinoxes and solstices.\n * However, it is usually more convenient and efficient to call {@link Seasons}\n * to calculate equinoxes and solstices for a given calendar year.\n * `SearchSunLongitude` is more general in that it allows searching for arbitrary longitude values.\n *\n * @param {number} targetLon\n * The desired ecliptic longitude of date in degrees.\n * This may be any value in the range [0, 360), although certain\n * values have conventional meanings:\n *\n * When `targetLon` is 0, finds the March equinox,\n * which is the moment spring begins in the northern hemisphere\n * and the beginning of autumn in the southern hemisphere.\n *\n * When `targetLon` is 180, finds the September equinox,\n * which is the moment autumn begins in the northern hemisphere and\n * spring begins in the southern hemisphere.\n *\n * When `targetLon` is 90, finds the northern solstice, which is the\n * moment summer begins in the northern hemisphere and winter\n * begins in the southern hemisphere.\n *\n * When `targetLon` is 270, finds the southern solstice, which is the\n * moment winter begins in the northern hemisphere and summer\n * begins in the southern hemisphere.\n *\n * @param {FlexibleDateTime} dateStart\n * A date and time known to be earlier than the desired longitude event.\n *\n * @param {number} limitDays\n * A floating point number of days, which when added to `dateStart`,\n * yields a date and time known to be after the desired longitude event.\n *\n * @returns {AstroTime | null}\n * The date and time when the Sun reaches the apparent ecliptic longitude `targetLon`\n * within the range of times specified by `dateStart` and `limitDays`.\n * If the Sun does not reach the target longitude within the specified time range, or the\n * time range is excessively wide, the return value is `null`.\n * To avoid a `null` return value, the caller must pick a time window around\n * the event that is within a few days but not so small that the event might fall outside the window.\n */", "meta": { "range": [ - 172221, - 172575 + 172199, + 172553 ], "filename": "astronomy.js", "lineno": 3785, @@ -33441,8 +33441,8 @@ "comment": "", "meta": { "range": [ - 172288, - 172406 + 172266, + 172384 ], "filename": "astronomy.js", "lineno": 3786, @@ -33471,8 +33471,8 @@ "comment": "", "meta": { "range": [ - 172325, - 172345 + 172303, + 172323 ], "filename": "astronomy.js", "lineno": 3787, @@ -33496,8 +33496,8 @@ "comment": "", "meta": { "range": [ - 172473, - 172497 + 172451, + 172475 ], "filename": "astronomy.js", "lineno": 3792, @@ -33521,8 +33521,8 @@ "comment": "", "meta": { "range": [ - 172507, - 172533 + 172485, + 172511 ], "filename": "astronomy.js", "lineno": 3793, @@ -33546,8 +33546,8 @@ "comment": "", "meta": { "range": [ - 172576, - 172623 + 172554, + 172601 ], "filename": "astronomy.js", "lineno": 3796, @@ -33570,8 +33570,8 @@ "comment": "/**\n * @brief Returns one body's ecliptic longitude with respect to another, as seen from the Earth.\n *\n * This function determines where one body appears around the ecliptic plane\n * (the plane of the Earth's orbit around the Sun) as seen from the Earth,\n * relative to the another body's apparent position.\n * The function returns an angle in the half-open range [0, 360) degrees.\n * The value is the ecliptic longitude of `body1` relative to the ecliptic\n * longitude of `body2`.\n *\n * The angle is 0 when the two bodies are at the same ecliptic longitude\n * as seen from the Earth. The angle increases in the prograde direction\n * (the direction that the planets orbit the Sun and the Moon orbits the Earth).\n *\n * When the angle is 180 degrees, it means the two bodies appear on opposite sides\n * of the sky for an Earthly observer.\n *\n * Neither `body1` nor `body2` is allowed to be `Body.Earth`.\n * If this happens, the function throws an exception.\n *\n * @param {Body} body1\n * The first body, whose longitude is to be found relative to the second body.\n *\n * @param {Body} body2\n * The second body, relative to which the longitude of the first body is to be found.\n *\n * @param {FlexibleDateTime} date\n * The date and time of the observation.\n *\n * @returns {number}\n * An angle in the range [0, 360), expressed in degrees.\n */", "meta": { "range": [ - 173982, - 174425 + 173960, + 174403 ], "filename": "astronomy.js", "lineno": 3829, @@ -33650,8 +33650,8 @@ "comment": "", "meta": { "range": [ - 174165, - 174186 + 174143, + 174164 ], "filename": "astronomy.js", "lineno": 3832, @@ -33675,8 +33675,8 @@ "comment": "", "meta": { "range": [ - 174198, - 174237 + 174176, + 174215 ], "filename": "astronomy.js", "lineno": 3833, @@ -33700,8 +33700,8 @@ "comment": "", "meta": { "range": [ - 174249, - 174275 + 174227, + 174253 ], "filename": "astronomy.js", "lineno": 3834, @@ -33725,8 +33725,8 @@ "comment": "", "meta": { "range": [ - 174287, - 174326 + 174265, + 174304 ], "filename": "astronomy.js", "lineno": 3835, @@ -33750,8 +33750,8 @@ "comment": "", "meta": { "range": [ - 174338, - 174364 + 174316, + 174342 ], "filename": "astronomy.js", "lineno": 3836, @@ -33775,8 +33775,8 @@ "comment": "", "meta": { "range": [ - 174426, - 174463 + 174404, + 174441 ], "filename": "astronomy.js", "lineno": 3839, @@ -33799,8 +33799,8 @@ "comment": "/**\n * @brief Calculates the angular separation between the Sun and the given body.\n *\n * Returns the full angle seen from\n * the Earth, between the given body and the Sun.\n * Unlike {@link PairLongitude}, this function does not\n * project the body's \"shadow\" onto the ecliptic;\n * the angle is measured in 3D space around the plane that\n * contains the centers of the Earth, the Sun, and `body`.\n *\n * @param {Body} body\n * The name of a supported celestial body other than the Earth.\n *\n * @param {FlexibleDateTime} date\n * The time at which the angle from the Sun is to be found.\n *\n * @returns {number}\n * An angle in degrees in the range [0, 180].\n */", "meta": { "range": [ - 175137, - 175456 + 175115, + 175434 ], "filename": "astronomy.js", "lineno": 3859, @@ -33868,8 +33868,8 @@ "comment": "", "meta": { "range": [ - 175282, - 175303 + 175260, + 175281 ], "filename": "astronomy.js", "lineno": 3862, @@ -33893,8 +33893,8 @@ "comment": "", "meta": { "range": [ - 175315, - 175351 + 175293, + 175329 ], "filename": "astronomy.js", "lineno": 3863, @@ -33918,8 +33918,8 @@ "comment": "", "meta": { "range": [ - 175363, - 175395 + 175341, + 175373 ], "filename": "astronomy.js", "lineno": 3864, @@ -33943,8 +33943,8 @@ "comment": "", "meta": { "range": [ - 175407, - 175435 + 175385, + 175413 ], "filename": "astronomy.js", "lineno": 3865, @@ -33968,8 +33968,8 @@ "comment": "", "meta": { "range": [ - 175457, - 175492 + 175435, + 175470 ], "filename": "astronomy.js", "lineno": 3868, @@ -33992,8 +33992,8 @@ "comment": "/**\n * @brief Calculates heliocentric ecliptic longitude based on the J2000 equinox.\n *\n * @param {Body} body\n * The name of a celestial body other than the Sun.\n *\n * @param {FlexibleDateTime} date\n * The date and time for which to calculate the ecliptic longitude.\n *\n * @returns {number}\n * The ecliptic longitude angle of the body in degrees measured counterclockwise around the mean\n * plane of the Earth's orbit, as seen from above the Sun's north pole.\n * Ecliptic longitude starts at 0 at the J2000\n * equinox and\n * increases in the same direction the Earth orbits the Sun.\n * The returned value is always in the range [0, 360).\n */", "meta": { "range": [ - 176252, - 176485 + 176230, + 176463 ], "filename": "astronomy.js", "lineno": 3886, @@ -34059,8 +34059,8 @@ "comment": "", "meta": { "range": [ - 176399, - 176427 + 176377, + 176405 ], "filename": "astronomy.js", "lineno": 3889, @@ -34084,8 +34084,8 @@ "comment": "", "meta": { "range": [ - 176439, - 176459 + 176417, + 176437 ], "filename": "astronomy.js", "lineno": 3890, @@ -34109,8 +34109,8 @@ "comment": "", "meta": { "range": [ - 176486, - 176531 + 176464, + 176509 ], "filename": "astronomy.js", "lineno": 3893, @@ -34133,8 +34133,8 @@ "comment": "", "meta": { "range": [ - 176533, - 177827 + 176511, + 177805 ], "filename": "astronomy.js", "lineno": 3894, @@ -34170,8 +34170,8 @@ "comment": "", "meta": { "range": [ - 176689, - 176691 + 176667, + 176669 ], "filename": "astronomy.js", "lineno": 3896, @@ -34193,8 +34193,8 @@ "comment": "", "meta": { "range": [ - 176693, - 176699 + 176671, + 176677 ], "filename": "astronomy.js", "lineno": 3896, @@ -34218,8 +34218,8 @@ "comment": "", "meta": { "range": [ - 176701, - 176707 + 176679, + 176685 ], "filename": "astronomy.js", "lineno": 3896, @@ -34243,8 +34243,8 @@ "comment": "", "meta": { "range": [ - 176709, - 176715 + 176687, + 176693 ], "filename": "astronomy.js", "lineno": 3896, @@ -34268,8 +34268,8 @@ "comment": "", "meta": { "range": [ - 176776, - 176786 + 176754, + 176764 ], "filename": "astronomy.js", "lineno": 3899, @@ -34294,8 +34294,8 @@ "comment": "", "meta": { "range": [ - 176800, - 176810 + 176778, + 176788 ], "filename": "astronomy.js", "lineno": 3900, @@ -34320,8 +34320,8 @@ "comment": "", "meta": { "range": [ - 176824, - 176834 + 176802, + 176812 ], "filename": "astronomy.js", "lineno": 3901, @@ -34346,8 +34346,8 @@ "comment": "", "meta": { "range": [ - 176848, - 176858 + 176826, + 176836 ], "filename": "astronomy.js", "lineno": 3902, @@ -34372,8 +34372,8 @@ "comment": "", "meta": { "range": [ - 176953, - 176963 + 176931, + 176941 ], "filename": "astronomy.js", "lineno": 3906, @@ -34398,8 +34398,8 @@ "comment": "", "meta": { "range": [ - 176981, - 176991 + 176959, + 176969 ], "filename": "astronomy.js", "lineno": 3907, @@ -34424,8 +34424,8 @@ "comment": "", "meta": { "range": [ - 177009, - 177019 + 176987, + 176997 ], "filename": "astronomy.js", "lineno": 3908, @@ -34450,8 +34450,8 @@ "comment": "", "meta": { "range": [ - 177037, - 177047 + 177015, + 177025 ], "filename": "astronomy.js", "lineno": 3909, @@ -34476,8 +34476,8 @@ "comment": "", "meta": { "range": [ - 177098, - 177107 + 177076, + 177085 ], "filename": "astronomy.js", "lineno": 3912, @@ -34502,8 +34502,8 @@ "comment": "", "meta": { "range": [ - 177125, - 177135 + 177103, + 177113 ], "filename": "astronomy.js", "lineno": 3913, @@ -34528,8 +34528,8 @@ "comment": "", "meta": { "range": [ - 177206, - 177216 + 177184, + 177194 ], "filename": "astronomy.js", "lineno": 3917, @@ -34554,8 +34554,8 @@ "comment": "", "meta": { "range": [ - 177230, - 177240 + 177208, + 177218 ], "filename": "astronomy.js", "lineno": 3918, @@ -34580,8 +34580,8 @@ "comment": "", "meta": { "range": [ - 177300, - 177310 + 177278, + 177288 ], "filename": "astronomy.js", "lineno": 3921, @@ -34606,8 +34606,8 @@ "comment": "", "meta": { "range": [ - 177324, - 177334 + 177302, + 177312 ], "filename": "astronomy.js", "lineno": 3922, @@ -34632,8 +34632,8 @@ "comment": "", "meta": { "range": [ - 177393, - 177403 + 177371, + 177381 ], "filename": "astronomy.js", "lineno": 3925, @@ -34658,8 +34658,8 @@ "comment": "", "meta": { "range": [ - 177417, - 177427 + 177395, + 177405 ], "filename": "astronomy.js", "lineno": 3926, @@ -34684,8 +34684,8 @@ "comment": "", "meta": { "range": [ - 177487, - 177497 + 177465, + 177475 ], "filename": "astronomy.js", "lineno": 3929, @@ -34710,8 +34710,8 @@ "comment": "", "meta": { "range": [ - 177555, - 177565 + 177533, + 177543 ], "filename": "astronomy.js", "lineno": 3932, @@ -34736,8 +34736,8 @@ "comment": "", "meta": { "range": [ - 177579, - 177589 + 177557, + 177567 ], "filename": "astronomy.js", "lineno": 3933, @@ -34762,8 +34762,8 @@ "comment": "", "meta": { "range": [ - 177694, - 177709 + 177672, + 177687 ], "filename": "astronomy.js", "lineno": 3937, @@ -34787,8 +34787,8 @@ "comment": "", "meta": { "range": [ - 177719, - 177758 + 177697, + 177736 ], "filename": "astronomy.js", "lineno": 3938, @@ -34812,8 +34812,8 @@ "comment": "", "meta": { "range": [ - 177764, - 177808 + 177742, + 177786 ], "filename": "astronomy.js", "lineno": 3939, @@ -34838,8 +34838,8 @@ "comment": "", "meta": { "range": [ - 177828, - 178878 + 177806, + 178856 ], "filename": "astronomy.js", "lineno": 3942, @@ -34878,8 +34878,8 @@ "comment": "", "meta": { "range": [ - 178150, - 178170 + 178128, + 178148 ], "filename": "astronomy.js", "lineno": 3947, @@ -34903,8 +34903,8 @@ "comment": "", "meta": { "range": [ - 178182, - 178210 + 178160, + 178188 ], "filename": "astronomy.js", "lineno": 3948, @@ -34928,8 +34928,8 @@ "comment": "", "meta": { "range": [ - 178276, - 178329 + 178254, + 178307 ], "filename": "astronomy.js", "lineno": 3949, @@ -34953,8 +34953,8 @@ "comment": "", "meta": { "range": [ - 178445, - 178479 + 178423, + 178457 ], "filename": "astronomy.js", "lineno": 3951, @@ -34978,8 +34978,8 @@ "comment": "", "meta": { "range": [ - 178491, - 178525 + 178469, + 178503 ], "filename": "astronomy.js", "lineno": 3952, @@ -35003,8 +35003,8 @@ "comment": "", "meta": { "range": [ - 178537, - 178635 + 178515, + 178613 ], "filename": "astronomy.js", "lineno": 3953, @@ -35028,8 +35028,8 @@ "comment": "", "meta": { "range": [ - 178647, - 178682 + 178625, + 178660 ], "filename": "astronomy.js", "lineno": 3954, @@ -35053,8 +35053,8 @@ "comment": "", "meta": { "range": [ - 178692, - 178718 + 178670, + 178696 ], "filename": "astronomy.js", "lineno": 3955, @@ -35078,8 +35078,8 @@ "comment": "", "meta": { "range": [ - 178724, - 178765 + 178702, + 178743 ], "filename": "astronomy.js", "lineno": 3956, @@ -35104,8 +35104,8 @@ "comment": "", "meta": { "range": [ - 178771, - 178815 + 178749, + 178793 ], "filename": "astronomy.js", "lineno": 3957, @@ -35130,8 +35130,8 @@ "comment": "", "meta": { "range": [ - 178830, - 178838 + 178808, + 178816 ], "filename": "astronomy.js", "lineno": 3958, @@ -35153,8 +35153,8 @@ "comment": "", "meta": { "range": [ - 178840, - 178873 + 178818, + 178851 ], "filename": "astronomy.js", "lineno": 3958, @@ -35176,8 +35176,8 @@ "comment": "", "meta": { "range": [ - 178879, - 179401 + 178857, + 179379 ], "filename": "astronomy.js", "lineno": 3960, @@ -35212,8 +35212,8 @@ "comment": "", "meta": { "range": [ - 179074, - 179103 + 179052, + 179081 ], "filename": "astronomy.js", "lineno": 3962, @@ -35237,8 +35237,8 @@ "comment": "", "meta": { "range": [ - 179113, - 179129 + 179091, + 179107 ], "filename": "astronomy.js", "lineno": 3963, @@ -35262,8 +35262,8 @@ "comment": "", "meta": { "range": [ - 179139, - 179157 + 179117, + 179135 ], "filename": "astronomy.js", "lineno": 3964, @@ -35287,8 +35287,8 @@ "comment": "", "meta": { "range": [ - 179167, - 179219 + 179145, + 179197 ], "filename": "astronomy.js", "lineno": 3965, @@ -35312,8 +35312,8 @@ "comment": "", "meta": { "range": [ - 179231, - 179283 + 179209, + 179261 ], "filename": "astronomy.js", "lineno": 3966, @@ -35337,8 +35337,8 @@ "comment": "", "meta": { "range": [ - 179293, - 179334 + 179271, + 179312 ], "filename": "astronomy.js", "lineno": 3967, @@ -35362,8 +35362,8 @@ "comment": "", "meta": { "range": [ - 179340, - 179382 + 179318, + 179360 ], "filename": "astronomy.js", "lineno": 3968, @@ -35388,8 +35388,8 @@ "comment": "/**\n * @brief Information about the apparent brightness and sunlit phase of a celestial object.\n *\n * @property {AstroTime} time\n * The date and time pertaining to the other calculated values in this object.\n *\n * @property {number} mag\n * The apparent visual magnitude of the celestial body.\n *\n * @property {number} phase_angle\n * The angle in degrees as seen from the center of the celestial body between the Sun and the Earth.\n * The value is always in the range 0 to 180.\n * The phase angle provides a measure of what fraction of the body's face appears\n * illuminated by the Sun as seen from the Earth.\n * When the observed body is the Sun, the `phase` property is set to 0,\n * although this has no physical meaning because the Sun emits, rather than reflects, light.\n * When the phase is near 0 degrees, the body appears \"full\".\n * When it is 90 degrees, the body appears \"half full\".\n * And when it is 180 degrees, the body appears \"new\" and is very difficult to see\n * because it is both dim and lost in the Sun's glare as seen from the Earth.\n *\n * @property {number} phase_fraction\n * The fraction of the body's face that is illuminated by the Sun, as seen from the Earth.\n * Calculated from `phase_angle` for convenience.\n * This value ranges from 0 to 1.\n *\n * @property {number} helio_dist\n * The distance between the center of the Sun and the center of the body in\n * astronomical units (AU).\n *\n * @property {number} geo_dist\n * The distance between the center of the Earth and the center of the body in AU.\n *\n * @property {Vector} gc\n * Geocentric coordinates: the 3D vector from the center of the Earth to the center of the body.\n * The components are in expressed in AU and are oriented with respect to the J2000 equatorial plane.\n *\n * @property {Vector} hc\n * Heliocentric coordinates: The 3D vector from the center of the Sun to the center of the body.\n * Like `gc`, `hc` is expressed in AU and oriented with respect\n * to the J2000 equatorial plane.\n *\n * @property {number | undefined} ring_tilt\n * For Saturn, this is the angular tilt of the planet's rings in degrees away\n * from the line of sight from the Earth. When the value is near 0, the rings\n * appear edge-on from the Earth and are therefore difficult to see.\n * When `ring_tilt` approaches its maximum value (about 27 degrees),\n * the rings appear widest and brightest from the Earth.\n * Unlike the JPL Horizons online tool,\n * this library includes the effect of the ring tilt angle in the calculated value\n * for Saturn's visual magnitude.\n * For all bodies other than Saturn, the value of `ring_tilt` is `undefined`.\n */", "meta": { "range": [ - 182350, - 182788 + 182328, + 182766 ], "filename": "astronomy.js", "lineno": 4024, @@ -35512,8 +35512,8 @@ "comment": "", "meta": { "range": [ - 182379, - 182786 + 182357, + 182764 ], "filename": "astronomy.js", "lineno": 4025, @@ -35548,8 +35548,8 @@ "comment": "/**\n * @brief Information about the apparent brightness and sunlit phase of a celestial object.\n *\n * @property {AstroTime} time\n * The date and time pertaining to the other calculated values in this object.\n *\n * @property {number} mag\n * The apparent visual magnitude of the celestial body.\n *\n * @property {number} phase_angle\n * The angle in degrees as seen from the center of the celestial body between the Sun and the Earth.\n * The value is always in the range 0 to 180.\n * The phase angle provides a measure of what fraction of the body's face appears\n * illuminated by the Sun as seen from the Earth.\n * When the observed body is the Sun, the `phase` property is set to 0,\n * although this has no physical meaning because the Sun emits, rather than reflects, light.\n * When the phase is near 0 degrees, the body appears \"full\".\n * When it is 90 degrees, the body appears \"half full\".\n * And when it is 180 degrees, the body appears \"new\" and is very difficult to see\n * because it is both dim and lost in the Sun's glare as seen from the Earth.\n *\n * @property {number} phase_fraction\n * The fraction of the body's face that is illuminated by the Sun, as seen from the Earth.\n * Calculated from `phase_angle` for convenience.\n * This value ranges from 0 to 1.\n *\n * @property {number} helio_dist\n * The distance between the center of the Sun and the center of the body in\n * astronomical units (AU).\n *\n * @property {number} geo_dist\n * The distance between the center of the Earth and the center of the body in AU.\n *\n * @property {Vector} gc\n * Geocentric coordinates: the 3D vector from the center of the Earth to the center of the body.\n * The components are in expressed in AU and are oriented with respect to the J2000 equatorial plane.\n *\n * @property {Vector} hc\n * Heliocentric coordinates: The 3D vector from the center of the Sun to the center of the body.\n * Like `gc`, `hc` is expressed in AU and oriented with respect\n * to the J2000 equatorial plane.\n *\n * @property {number | undefined} ring_tilt\n * For Saturn, this is the angular tilt of the planet's rings in degrees away\n * from the line of sight from the Earth. When the value is near 0, the rings\n * appear edge-on from the Earth and are therefore difficult to see.\n * When `ring_tilt` approaches its maximum value (about 27 degrees),\n * the rings appear widest and brightest from the Earth.\n * Unlike the JPL Horizons online tool,\n * this library includes the effect of the ring tilt angle in the calculated value\n * for Saturn's visual magnitude.\n * For all bodies other than Saturn, the value of `ring_tilt` is `undefined`.\n */", "meta": { "range": [ - 182350, - 182788 + 182328, + 182766 ], "filename": "astronomy.js", "lineno": 4024, @@ -35671,8 +35671,8 @@ "comment": "", "meta": { "range": [ - 182466, - 182482 + 182444, + 182460 ], "filename": "astronomy.js", "lineno": 4026, @@ -35696,8 +35696,8 @@ "comment": "", "meta": { "range": [ - 182492, - 182506 + 182470, + 182484 ], "filename": "astronomy.js", "lineno": 4027, @@ -35721,8 +35721,8 @@ "comment": "", "meta": { "range": [ - 182516, - 182546 + 182494, + 182524 ], "filename": "astronomy.js", "lineno": 4028, @@ -35746,8 +35746,8 @@ "comment": "", "meta": { "range": [ - 182556, - 182584 + 182534, + 182562 ], "filename": "astronomy.js", "lineno": 4029, @@ -35771,8 +35771,8 @@ "comment": "", "meta": { "range": [ - 182594, - 182618 + 182572, + 182596 ], "filename": "astronomy.js", "lineno": 4030, @@ -35796,8 +35796,8 @@ "comment": "", "meta": { "range": [ - 182628, - 182640 + 182606, + 182618 ], "filename": "astronomy.js", "lineno": 4031, @@ -35821,8 +35821,8 @@ "comment": "", "meta": { "range": [ - 182650, - 182662 + 182628, + 182640 ], "filename": "astronomy.js", "lineno": 4032, @@ -35846,8 +35846,8 @@ "comment": "", "meta": { "range": [ - 182672, - 182698 + 182650, + 182676 ], "filename": "astronomy.js", "lineno": 4033, @@ -35871,8 +35871,8 @@ "comment": "", "meta": { "range": [ - 182708, - 182779 + 182686, + 182757 ], "filename": "astronomy.js", "lineno": 4034, @@ -35896,8 +35896,8 @@ "comment": "", "meta": { "range": [ - 182789, - 182832 + 182767, + 182810 ], "filename": "astronomy.js", "lineno": 4037, @@ -35920,8 +35920,8 @@ "comment": "/**\n * @brief Calculates visual magnitude and related information about a body.\n *\n * Calculates the phase angle, visual magnitude,\n * and other values relating to the body's illumination\n * at the given date and time, as seen from the Earth.\n *\n * @param {Body} body\n * The name of the celestial body being observed.\n * Not allowed to be `\"Earth\"`.\n *\n * @param {FlexibleDateTime} date\n * The date and time for which to calculate the illumination data for the given body.\n *\n * @returns {IlluminationInfo}\n */", "meta": { "range": [ - 183360, - 185297 + 183338, + 185275 ], "filename": "astronomy.js", "lineno": 4054, @@ -35994,8 +35994,8 @@ "comment": "", "meta": { "range": [ - 183498, - 183519 + 183476, + 183497 ], "filename": "astronomy.js", "lineno": 4057, @@ -36019,8 +36019,8 @@ "comment": "", "meta": { "range": [ - 183531, - 183565 + 183509, + 183543 ], "filename": "astronomy.js", "lineno": 4058, @@ -36044,8 +36044,8 @@ "comment": "", "meta": { "range": [ - 183575, - 183580 + 183553, + 183558 ], "filename": "astronomy.js", "lineno": 4059, @@ -36067,8 +36067,8 @@ "comment": "", "meta": { "range": [ - 183656, - 183658 + 183634, + 183636 ], "filename": "astronomy.js", "lineno": 4060, @@ -36090,8 +36090,8 @@ "comment": "", "meta": { "range": [ - 183695, - 183697 + 183673, + 183675 ], "filename": "astronomy.js", "lineno": 4061, @@ -36113,8 +36113,8 @@ "comment": "", "meta": { "range": [ - 183736, - 183739 + 183714, + 183717 ], "filename": "astronomy.js", "lineno": 4062, @@ -36136,8 +36136,8 @@ "comment": "", "meta": { "range": [ - 183798, - 183849 + 183776, + 183827 ], "filename": "astronomy.js", "lineno": 4064, @@ -36162,8 +36162,8 @@ "comment": "", "meta": { "range": [ - 183859, - 183889 + 183837, + 183867 ], "filename": "astronomy.js", "lineno": 4065, @@ -36188,8 +36188,8 @@ "comment": "", "meta": { "range": [ - 183899, - 183908 + 183877, + 183886 ], "filename": "astronomy.js", "lineno": 4066, @@ -36214,8 +36214,8 @@ "comment": "", "meta": { "range": [ - 184170, - 184188 + 184148, + 184166 ], "filename": "astronomy.js", "lineno": 4071, @@ -36240,8 +36240,8 @@ "comment": "", "meta": { "range": [ - 184202, - 184271 + 184180, + 184249 ], "filename": "astronomy.js", "lineno": 4072, @@ -36266,8 +36266,8 @@ "comment": "", "meta": { "range": [ - 184387, - 184415 + 184365, + 184393 ], "filename": "astronomy.js", "lineno": 4076, @@ -36292,8 +36292,8 @@ "comment": "", "meta": { "range": [ - 184429, - 184498 + 184407, + 184476 ], "filename": "astronomy.js", "lineno": 4077, @@ -36318,8 +36318,8 @@ "comment": "", "meta": { "range": [ - 184518, - 184546 + 184496, + 184524 ], "filename": "astronomy.js", "lineno": 4079, @@ -36344,8 +36344,8 @@ "comment": "", "meta": { "range": [ - 184562, - 184584 + 184540, + 184562 ], "filename": "astronomy.js", "lineno": 4081, @@ -36369,8 +36369,8 @@ "comment": "", "meta": { "range": [ - 184635, - 184659 + 184613, + 184637 ], "filename": "astronomy.js", "lineno": 4082, @@ -36394,8 +36394,8 @@ "comment": "", "meta": { "range": [ - 184708, - 184717 + 184686, + 184695 ], "filename": "astronomy.js", "lineno": 4083, @@ -36417,8 +36417,8 @@ "comment": "", "meta": { "range": [ - 184784, - 184828 + 184762, + 184806 ], "filename": "astronomy.js", "lineno": 4085, @@ -36443,8 +36443,8 @@ "comment": "", "meta": { "range": [ - 184879, - 184927 + 184857, + 184905 ], "filename": "astronomy.js", "lineno": 4088, @@ -36469,8 +36469,8 @@ "comment": "", "meta": { "range": [ - 184986, - 185049 + 184964, + 185027 ], "filename": "astronomy.js", "lineno": 4091, @@ -36494,8 +36494,8 @@ "comment": "", "meta": { "range": [ - 185059, - 185075 + 185037, + 185053 ], "filename": "astronomy.js", "lineno": 4092, @@ -36520,8 +36520,8 @@ "comment": "", "meta": { "range": [ - 185085, - 185113 + 185063, + 185091 ], "filename": "astronomy.js", "lineno": 4093, @@ -36546,8 +36546,8 @@ "comment": "", "meta": { "range": [ - 185140, - 185196 + 185118, + 185174 ], "filename": "astronomy.js", "lineno": 4096, @@ -36572,8 +36572,8 @@ "comment": "", "meta": { "range": [ - 185298, - 185333 + 185276, + 185311 ], "filename": "astronomy.js", "lineno": 4100, @@ -36596,8 +36596,8 @@ "comment": "", "meta": { "range": [ - 185335, - 186246 + 185313, + 186224 ], "filename": "astronomy.js", "lineno": 4101, @@ -36628,8 +36628,8 @@ "comment": "", "meta": { "range": [ - 185867, - 185888 + 185845, + 185866 ], "filename": "astronomy.js", "lineno": 4110, @@ -36653,8 +36653,8 @@ "comment": "", "meta": { "range": [ - 186093, - 186124 + 186071, + 186102 ], "filename": "astronomy.js", "lineno": 4115, @@ -36678,8 +36678,8 @@ "comment": "", "meta": { "range": [ - 186136, - 186161 + 186114, + 186139 ], "filename": "astronomy.js", "lineno": 4116, @@ -36703,8 +36703,8 @@ "comment": "", "meta": { "range": [ - 186173, - 186217 + 186151, + 186195 ], "filename": "astronomy.js", "lineno": 4117, @@ -36728,8 +36728,8 @@ "comment": "/**\n * @brief Searches for when the Earth and a given body reach a relative ecliptic longitude separation.\n *\n * Searches for the date and time the relative ecliptic longitudes of\n * the specified body and the Earth, as seen from the Sun, reach a certain\n * difference. This function is useful for finding conjunctions and oppositions\n * of the planets. For the opposition of a superior planet (Mars, Jupiter, ..., Pluto),\n * or the inferior conjunction of an inferior planet (Mercury, Venus),\n * call with `targetRelLon` = 0. The 0 value indicates that both\n * planets are on the same ecliptic longitude line, ignoring the other planet's\n * distance above or below the plane of the Earth's orbit.\n * For superior conjunctions, call with `targetRelLon` = 180.\n * This means the Earth and the other planet are on opposite sides of the Sun.\n *\n * @param {Body} body\n * The name of a planet other than the Earth.\n *\n * @param {number} targetRelLon\n * The desired angular difference in degrees between the ecliptic longitudes\n * of `body` and the Earth. Must be in the range (-180, +180].\n *\n * @param {FlexibleDateTime} startDate\n * The date and time after which to find the next occurrence of the\n * body and the Earth reaching the desired relative longitude.\n *\n * @returns {AstroTime}\n * The time when the Earth and the body next reach the specified relative longitudes.\n */", "meta": { "range": [ - 187652, - 189894 + 187630, + 189872 ], "filename": "astronomy.js", "lineno": 4148, @@ -36813,8 +36813,8 @@ "comment": "", "meta": { "range": [ - 187760, - 187781 + 187738, + 187759 ], "filename": "astronomy.js", "lineno": 4150, @@ -36838,8 +36838,8 @@ "comment": "", "meta": { "range": [ - 188122, - 188195 + 188100, + 188173 ], "filename": "astronomy.js", "lineno": 4157, @@ -36863,8 +36863,8 @@ "comment": "", "meta": { "range": [ - 188201, - 188432 + 188179, + 188410 ], "filename": "astronomy.js", "lineno": 4158, @@ -36895,8 +36895,8 @@ "comment": "", "meta": { "range": [ - 188236, - 188269 + 188214, + 188247 ], "filename": "astronomy.js", "lineno": 4159, @@ -36920,8 +36920,8 @@ "comment": "", "meta": { "range": [ - 188285, - 188324 + 188263, + 188302 ], "filename": "astronomy.js", "lineno": 4160, @@ -36945,8 +36945,8 @@ "comment": "", "meta": { "range": [ - 188340, - 188372 + 188318, + 188350 ], "filename": "astronomy.js", "lineno": 4161, @@ -36970,8 +36970,8 @@ "comment": "", "meta": { "range": [ - 188441, - 188466 + 188419, + 188444 ], "filename": "astronomy.js", "lineno": 4164, @@ -36995,8 +36995,8 @@ "comment": "", "meta": { "range": [ - 188476, - 188502 + 188454, + 188480 ], "filename": "astronomy.js", "lineno": 4165, @@ -37020,8 +37020,8 @@ "comment": "", "meta": { "range": [ - 188707, - 188733 + 188685, + 188711 ], "filename": "astronomy.js", "lineno": 4169, @@ -37045,8 +37045,8 @@ "comment": "", "meta": { "range": [ - 188768, - 188786 + 188746, + 188764 ], "filename": "astronomy.js", "lineno": 4171, @@ -37071,8 +37071,8 @@ "comment": "", "meta": { "range": [ - 188836, - 188844 + 188814, + 188822 ], "filename": "astronomy.js", "lineno": 4172, @@ -37096,8 +37096,8 @@ "comment": "", "meta": { "range": [ - 189031, - 189070 + 189009, + 189048 ], "filename": "astronomy.js", "lineno": 4175, @@ -37121,8 +37121,8 @@ "comment": "", "meta": { "range": [ - 189080, - 189111 + 189058, + 189089 ], "filename": "astronomy.js", "lineno": 4176, @@ -37147,8 +37147,8 @@ "comment": "", "meta": { "range": [ - 189206, - 189230 + 189184, + 189208 ], "filename": "astronomy.js", "lineno": 4179, @@ -37172,8 +37172,8 @@ "comment": "", "meta": { "range": [ - 189240, - 189266 + 189218, + 189244 ], "filename": "astronomy.js", "lineno": 4180, @@ -37198,8 +37198,8 @@ "comment": "", "meta": { "range": [ - 189606, - 189653 + 189584, + 189631 ], "filename": "astronomy.js", "lineno": 4186, @@ -37223,8 +37223,8 @@ "comment": "", "meta": { "range": [ - 189723, - 189735 + 189701, + 189713 ], "filename": "astronomy.js", "lineno": 4188, @@ -37249,8 +37249,8 @@ "comment": "", "meta": { "range": [ - 189895, - 189952 + 189873, + 189930 ], "filename": "astronomy.js", "lineno": 4194, @@ -37273,8 +37273,8 @@ "comment": "/**\n * @brief Determines the moon's phase expressed as an ecliptic longitude.\n *\n * @param {FlexibleDateTime} date\n * The date and time for which to calculate the moon's phase.\n *\n * @returns {number}\n * A value in the range [0, 360) indicating the difference\n * in ecliptic longitude between the center of the Sun and the\n * center of the Moon, as seen from the center of the Earth.\n * Certain longitude values have conventional meanings:\n *\n * * 0 = new moon\n * * 90 = first quarter\n * * 180 = full moon\n * * 270 = third quarter\n */", "meta": { "range": [ - 190514, - 190595 + 190492, + 190573 ], "filename": "astronomy.js", "lineno": 4212, @@ -37326,8 +37326,8 @@ "comment": "", "meta": { "range": [ - 190596, - 190625 + 190574, + 190603 ], "filename": "astronomy.js", "lineno": 4215, @@ -37350,8 +37350,8 @@ "comment": "/**\n * @brief Searches for the date and time that the Moon reaches a specified phase.\n *\n * Lunar phases are defined in terms of geocentric ecliptic longitudes\n * with respect to the Sun. When the Moon and the Sun have the same ecliptic\n * longitude, that is defined as a new moon. When the two ecliptic longitudes\n * are 180 degrees apart, that is defined as a full moon.\n * To enumerate quarter lunar phases, it is simpler to call\n * {@link SearchMoonQuarter} once, followed by repeatedly calling\n * {@link NextMoonQuarter}. `SearchMoonPhase` is only\n * necessary for finding other lunar phases than the usual quarter phases.\n *\n * @param {number} targetLon\n * The difference in geocentric ecliptic longitude between the Sun and Moon\n * that specifies the lunar phase being sought. This can be any value\n * in the range [0, 360). Here are some helpful examples:\n * 0 = new moon,\n * 90 = first quarter,\n * 180 = full moon,\n * 270 = third quarter.\n *\n * @param {FlexibleDateTime} dateStart\n * The beginning of the window of time in which to search.\n *\n * @param {number} limitDays\n * The floating point number of days after `dateStart`\n * that limits the window of time in which to search.\n *\n * @returns {AstroTime | null}\n * If the specified lunar phase occurs after `dateStart`\n * and before `limitDays` days after `dateStart`,\n * this function returns the date and time of the first such occurrence.\n * Otherwise, it returns `null`.\n */", "meta": { "range": [ - 192139, - 193593 + 192117, + 193571 ], "filename": "astronomy.js", "lineno": 4250, @@ -37435,8 +37435,8 @@ "comment": "", "meta": { "range": [ - 192203, - 192317 + 192181, + 192295 ], "filename": "astronomy.js", "lineno": 4251, @@ -37465,8 +37465,8 @@ "comment": "", "meta": { "range": [ - 192241, - 192260 + 192219, + 192238 ], "filename": "astronomy.js", "lineno": 4252, @@ -37490,8 +37490,8 @@ "comment": "", "meta": { "range": [ - 193067, - 193084 + 193045, + 193062 ], "filename": "astronomy.js", "lineno": 4267, @@ -37515,8 +37515,8 @@ "comment": "", "meta": { "range": [ - 193094, - 193118 + 193072, + 193096 ], "filename": "astronomy.js", "lineno": 4268, @@ -37540,8 +37540,8 @@ "comment": "", "meta": { "range": [ - 193128, - 193148 + 193106, + 193126 ], "filename": "astronomy.js", "lineno": 4269, @@ -37565,8 +37565,8 @@ "comment": "", "meta": { "range": [ - 193174, - 193183 + 193152, + 193161 ], "filename": "astronomy.js", "lineno": 4271, @@ -37591,8 +37591,8 @@ "comment": "", "meta": { "range": [ - 193242, - 193283 + 193220, + 193261 ], "filename": "astronomy.js", "lineno": 4272, @@ -37616,8 +37616,8 @@ "comment": "", "meta": { "range": [ - 193293, - 193319 + 193271, + 193297 ], "filename": "astronomy.js", "lineno": 4273, @@ -37641,8 +37641,8 @@ "comment": "", "meta": { "range": [ - 193443, - 193490 + 193421, + 193468 ], "filename": "astronomy.js", "lineno": 4276, @@ -37666,8 +37666,8 @@ "comment": "", "meta": { "range": [ - 193500, - 193520 + 193478, + 193498 ], "filename": "astronomy.js", "lineno": 4277, @@ -37691,8 +37691,8 @@ "comment": "", "meta": { "range": [ - 193530, - 193550 + 193508, + 193528 ], "filename": "astronomy.js", "lineno": 4278, @@ -37716,8 +37716,8 @@ "comment": "", "meta": { "range": [ - 193594, - 193635 + 193572, + 193613 ], "filename": "astronomy.js", "lineno": 4281, @@ -37740,8 +37740,8 @@ "comment": "/**\n * @brief A quarter lunar phase, along with when it occurs.\n *\n * @property {number} quarter\n * An integer as follows:\n * 0 = new moon,\n * 1 = first quarter,\n * 2 = full moon,\n * 3 = third quarter.\n *\n * @property {AstroTime} time\n * The date and time of the quarter lunar phase.\n */", "meta": { "range": [ - 193955, - 194073 + 193933, + 194051 ], "filename": "astronomy.js", "lineno": 4295, @@ -37794,8 +37794,8 @@ "comment": "", "meta": { "range": [ - 193979, - 194071 + 193957, + 194049 ], "filename": "astronomy.js", "lineno": 4296, @@ -37824,8 +37824,8 @@ "comment": "/**\n * @brief A quarter lunar phase, along with when it occurs.\n *\n * @property {number} quarter\n * An integer as follows:\n * 0 = new moon,\n * 1 = first quarter,\n * 2 = full moon,\n * 3 = third quarter.\n *\n * @property {AstroTime} time\n * The date and time of the quarter lunar phase.\n */", "meta": { "range": [ - 193955, - 194073 + 193933, + 194051 ], "filename": "astronomy.js", "lineno": 4295, @@ -37877,8 +37877,8 @@ "comment": "", "meta": { "range": [ - 194016, - 194038 + 193994, + 194016 ], "filename": "astronomy.js", "lineno": 4297, @@ -37902,8 +37902,8 @@ "comment": "", "meta": { "range": [ - 194048, - 194064 + 194026, + 194042 ], "filename": "astronomy.js", "lineno": 4298, @@ -37927,8 +37927,8 @@ "comment": "", "meta": { "range": [ - 194074, - 194107 + 194052, + 194085 ], "filename": "astronomy.js", "lineno": 4301, @@ -37951,8 +37951,8 @@ "comment": "/**\n * @brief Finds the first quarter lunar phase after the specified date and time.\n *\n * The quarter lunar phases are: new moon, first quarter, full moon, and third quarter.\n * To enumerate quarter lunar phases, call `SearchMoonQuarter` once,\n * then pass its return value to {@link NextMoonQuarter} to find the next\n * `MoonQuarter`. Keep calling `NextMoonQuarter` in a loop,\n * passing the previous return value as the argument to the next call.\n *\n * @param {FlexibleDateTime} dateStart\n * The date and time after which to find the first quarter lunar phase.\n *\n * @returns {MoonQuarter}\n */", "meta": { "range": [ - 194711, - 195104 + 194689, + 195082 ], "filename": "astronomy.js", "lineno": 4316, @@ -38009,8 +38009,8 @@ "comment": "", "meta": { "range": [ - 194813, - 194846 + 194791, + 194824 ], "filename": "astronomy.js", "lineno": 4318, @@ -38034,8 +38034,8 @@ "comment": "", "meta": { "range": [ - 194856, - 194898 + 194834, + 194876 ], "filename": "astronomy.js", "lineno": 4319, @@ -38059,8 +38059,8 @@ "comment": "", "meta": { "range": [ - 194908, - 194940 + 194886, + 194918 ], "filename": "astronomy.js", "lineno": 4320, @@ -38084,8 +38084,8 @@ "comment": "", "meta": { "range": [ - 194950, - 195001 + 194928, + 194979 ], "filename": "astronomy.js", "lineno": 4321, @@ -38109,8 +38109,8 @@ "comment": "", "meta": { "range": [ - 195105, - 195150 + 195083, + 195128 ], "filename": "astronomy.js", "lineno": 4326, @@ -38133,8 +38133,8 @@ "comment": "/**\n * @brief Finds the next quarter lunar phase in a series.\n *\n * Given a {@link MoonQuarter} object, finds the next consecutive\n * quarter lunar phase. See remarks in {@link SearchMoonQuarter}\n * for explanation of usage.\n *\n * @param {MoonQuarter} mq\n * The return value of a prior call to {@link MoonQuarter} or `NextMoonQuarter`.\n */", "meta": { "range": [ - 195497, - 195854 + 195475, + 195832 ], "filename": "astronomy.js", "lineno": 4337, @@ -38179,8 +38179,8 @@ "comment": "", "meta": { "range": [ - 195755, - 195815 + 195733, + 195793 ], "filename": "astronomy.js", "lineno": 4341, @@ -38204,8 +38204,8 @@ "comment": "", "meta": { "range": [ - 195855, - 195896 + 195833, + 195874 ], "filename": "astronomy.js", "lineno": 4344, @@ -38228,8 +38228,8 @@ "comment": "", "meta": { "range": [ - 195898, - 196299 + 195876, + 196277 ], "filename": "astronomy.js", "lineno": 4345, @@ -38254,8 +38254,8 @@ "comment": "/**\n * @brief Finds the next rise or set time for a body.\n *\n * Finds a rise or set time for the given body as\n * seen by an observer at the specified location on the Earth.\n * Rise time is defined as the moment when the top of the body\n * is observed to first appear above the horizon in the east.\n * Set time is defined as the moment the top of the body\n * is observed to sink below the horizon in the west.\n * The times are adjusted for typical atmospheric refraction conditions.\n *\n * @param {Body} body\n * The name of the body to find the rise or set time for.\n *\n * @param {Observer} observer\n * Specifies the geographic coordinates and elevation above sea level of the observer.\n *\n * @param {number} direction\n * Either +1 to find rise time or -1 to find set time.\n * Any other value will cause an exception to be thrown.\n *\n * @param {FlexibleDateTime} dateStart\n * The date and time after which the specified rise or set time is to be found.\n *\n * @param {number} limitDays\n * The fractional number of days after `dateStart` that limits\n * when the rise or set time is to be found.\n *\n * @returns {AstroTime | null}\n * The date and time of the rise or set event, or null if no such event\n * occurs within the specified time window.\n */", "meta": { "range": [ - 197591, - 198638 + 197569, + 198616 ], "filename": "astronomy.js", "lineno": 4388, @@ -38352,8 +38352,8 @@ "comment": "", "meta": { "range": [ - 197673, - 197708 + 197651, + 197686 ], "filename": "astronomy.js", "lineno": 4389, @@ -38377,8 +38377,8 @@ "comment": "", "meta": { "range": [ - 197714, - 198537 + 197692, + 198515 ], "filename": "astronomy.js", "lineno": 4390, @@ -38409,8 +38409,8 @@ "comment": "", "meta": { "range": [ - 198275, - 198322 + 198253, + 198300 ], "filename": "astronomy.js", "lineno": 4399, @@ -38434,8 +38434,8 @@ "comment": "", "meta": { "range": [ - 198338, - 198387 + 198316, + 198365 ], "filename": "astronomy.js", "lineno": 4400, @@ -38459,8 +38459,8 @@ "comment": "", "meta": { "range": [ - 198403, - 198498 + 198381, + 198476 ], "filename": "astronomy.js", "lineno": 4401, @@ -38484,8 +38484,8 @@ "comment": "", "meta": { "range": [ - 198639, - 198676 + 198617, + 198654 ], "filename": "astronomy.js", "lineno": 4406, @@ -38508,8 +38508,8 @@ "comment": "/**\n * @brief Finds the next time a body reaches a given altitude.\n *\n * Finds when the given body ascends or descends through a given\n * altitude angle, as seen by an observer at the specified location on the Earth.\n * By using the appropriate combination of `direction` and `altitude` parameters,\n * this function can be used to find when civil, nautical, or astronomical twilight\n * begins (dawn) or ends (dusk).\n *\n * Civil dawn begins before sunrise when the Sun ascends through 6 degrees below\n * the horizon. To find civil dawn, pass +1 for `direction` and -6 for `altitude`.\n *\n * Civil dusk ends after sunset when the Sun descends through 6 degrees below the horizon.\n * To find civil dusk, pass -1 for `direction` and -6 for `altitude`.\n *\n * Nautical twilight is similar to civil twilight, only the `altitude` value should be -12 degrees.\n *\n * Astronomical twilight uses -18 degrees as the `altitude` value.\n *\n * @param {Body} body\n * The name of the body for which to find the altitude event.\n * Can be the Sun, Moon, or any planet other than the Earth.\n *\n * @param {Observer} observer\n * Specifies the geographic coordinates and elevation above sea level of the observer.\n *\n * @param {number} direction\n * Either +1 to find when the body ascends through the altitude,\n * or -1 for when the body descends through the altitude.\n * Any other value will cause an exception to be thrown.\n *\n * @param {FlexibleDateTime} dateStart\n * The date and time after which the specified altitude event is to be found.\n *\n * @param {number} limitDays\n * The fractional number of days after `dateStart` that limits\n * when the altitude event is to be found. Must be a positive number.\n *\n * @param {number} altitude\n * The desired altitude angle of the body's center above (positive)\n * or below (negative) the observer's local horizon, expressed in degrees.\n * Must be in the range [-90, +90].\n *\n * @returns {AstroTime | null}\n * The date and time of the altitude event, or null if no such event\n * occurs within the specified time window.\n */", "meta": { "range": [ - 200794, - 201326 + 200772, + 201304 ], "filename": "astronomy.js", "lineno": 4454, @@ -38615,8 +38615,8 @@ "comment": "", "meta": { "range": [ - 201008, - 201224 + 200986, + 201202 ], "filename": "astronomy.js", "lineno": 4457, @@ -38646,8 +38646,8 @@ "comment": "", "meta": { "range": [ - 201051, - 201098 + 201029, + 201076 ], "filename": "astronomy.js", "lineno": 4458, @@ -38671,8 +38671,8 @@ "comment": "", "meta": { "range": [ - 201114, - 201163 + 201092, + 201141 ], "filename": "astronomy.js", "lineno": 4459, @@ -38696,8 +38696,8 @@ "comment": "", "meta": { "range": [ - 201327, - 201366 + 201305, + 201344 ], "filename": "astronomy.js", "lineno": 4464, @@ -38720,8 +38720,8 @@ "comment": "", "meta": { "range": [ - 201368, - 204411 + 201346, + 204389 ], "filename": "astronomy.js", "lineno": 4465, @@ -38762,8 +38762,8 @@ "comment": "", "meta": { "range": [ - 202287, - 202296 + 202265, + 202274 ], "filename": "astronomy.js", "lineno": 4480, @@ -38785,8 +38785,8 @@ "comment": "", "meta": { "range": [ - 202298, - 202306 + 202276, + 202284 ], "filename": "astronomy.js", "lineno": 4480, @@ -38808,8 +38808,8 @@ "comment": "", "meta": { "range": [ - 202344, - 202358 + 202322, + 202336 ], "filename": "astronomy.js", "lineno": 4482, @@ -38834,8 +38834,8 @@ "comment": "", "meta": { "range": [ - 202428, - 202440 + 202406, + 202418 ], "filename": "astronomy.js", "lineno": 4483, @@ -38860,8 +38860,8 @@ "comment": "", "meta": { "range": [ - 202553, - 202566 + 202531, + 202544 ], "filename": "astronomy.js", "lineno": 4486, @@ -38886,8 +38886,8 @@ "comment": "", "meta": { "range": [ - 202621, - 202634 + 202599, + 202612 ], "filename": "astronomy.js", "lineno": 4487, @@ -38912,8 +38912,8 @@ "comment": "", "meta": { "range": [ - 202784, - 202816 + 202762, + 202794 ], "filename": "astronomy.js", "lineno": 4492, @@ -38937,8 +38937,8 @@ "comment": "", "meta": { "range": [ - 202826, - 202837 + 202804, + 202815 ], "filename": "astronomy.js", "lineno": 4493, @@ -38960,8 +38960,8 @@ "comment": "", "meta": { "range": [ - 202847, - 202857 + 202825, + 202835 ], "filename": "astronomy.js", "lineno": 4494, @@ -38983,8 +38983,8 @@ "comment": "", "meta": { "range": [ - 202867, - 202876 + 202845, + 202854 ], "filename": "astronomy.js", "lineno": 4495, @@ -39006,8 +39006,8 @@ "comment": "", "meta": { "range": [ - 202886, - 202927 + 202864, + 202905 ], "filename": "astronomy.js", "lineno": 4496, @@ -39031,8 +39031,8 @@ "comment": "", "meta": { "range": [ - 202937, - 202948 + 202915, + 202926 ], "filename": "astronomy.js", "lineno": 4497, @@ -39054,8 +39054,8 @@ "comment": "", "meta": { "range": [ - 203089, - 203156 + 203067, + 203134 ], "filename": "astronomy.js", "lineno": 4500, @@ -39080,8 +39080,8 @@ "comment": "", "meta": { "range": [ - 203166, - 203195 + 203144, + 203173 ], "filename": "astronomy.js", "lineno": 4501, @@ -39106,8 +39106,8 @@ "comment": "", "meta": { "range": [ - 203205, - 203247 + 203183, + 203225 ], "filename": "astronomy.js", "lineno": 4502, @@ -39132,8 +39132,8 @@ "comment": "", "meta": { "range": [ - 203431, - 203455 + 203409, + 203433 ], "filename": "astronomy.js", "lineno": 4507, @@ -39158,8 +39158,8 @@ "comment": "", "meta": { "range": [ - 203467, - 203533 + 203445, + 203511 ], "filename": "astronomy.js", "lineno": 4509, @@ -39184,8 +39184,8 @@ "comment": "", "meta": { "range": [ - 203539, - 203583 + 203517, + 203561 ], "filename": "astronomy.js", "lineno": 4510, @@ -39210,8 +39210,8 @@ "comment": "", "meta": { "range": [ - 203750, - 203855 + 203728, + 203833 ], "filename": "astronomy.js", "lineno": 4514, @@ -39235,8 +39235,8 @@ "comment": "", "meta": { "range": [ - 203809, - 203830 + 203787, + 203808 ], "filename": "astronomy.js", "lineno": 4514, @@ -39258,8 +39258,8 @@ "comment": "", "meta": { "range": [ - 203832, - 203852 + 203810, + 203830 ], "filename": "astronomy.js", "lineno": 4514, @@ -39281,8 +39281,8 @@ "comment": "", "meta": { "range": [ - 204016, - 204087 + 203994, + 204065 ], "filename": "astronomy.js", "lineno": 4519, @@ -39307,8 +39307,8 @@ "comment": "", "meta": { "range": [ - 204097, - 204167 + 204075, + 204145 ], "filename": "astronomy.js", "lineno": 4520, @@ -39333,8 +39333,8 @@ "comment": "", "meta": { "range": [ - 204263, - 204292 + 204241, + 204270 ], "filename": "astronomy.js", "lineno": 4523, @@ -39359,8 +39359,8 @@ "comment": "", "meta": { "range": [ - 204302, - 204348 + 204280, + 204326 ], "filename": "astronomy.js", "lineno": 4524, @@ -39385,8 +39385,8 @@ "comment": "", "meta": { "range": [ - 204358, - 204402 + 204336, + 204380 ], "filename": "astronomy.js", "lineno": 4525, @@ -39411,8 +39411,8 @@ "comment": "/**\n * @brief Horizontal position of a body upon reaching an hour angle.\n *\n * Returns information about an occurrence of a celestial body\n * reaching a given hour angle as seen by an observer at a given\n * location on the surface of the Earth.\n *\n * @property {AstroTime} time\n * The date and time of the celestial body reaching the hour angle.\n *\n * @property {HorizontalCoordinates} hor\n * Topocentric horizontal coordinates for the body\n * at the time indicated by the `time` property.\n */", "meta": { "range": [ - 204921, - 205030 + 204899, + 205008 ], "filename": "astronomy.js", "lineno": 4542, @@ -39465,8 +39465,8 @@ "comment": "", "meta": { "range": [ - 204948, - 205028 + 204926, + 205006 ], "filename": "astronomy.js", "lineno": 4543, @@ -39495,8 +39495,8 @@ "comment": "/**\n * @brief Horizontal position of a body upon reaching an hour angle.\n *\n * Returns information about an occurrence of a celestial body\n * reaching a given hour angle as seen by an observer at a given\n * location on the surface of the Earth.\n *\n * @property {AstroTime} time\n * The date and time of the celestial body reaching the hour angle.\n *\n * @property {HorizontalCoordinates} hor\n * Topocentric horizontal coordinates for the body\n * at the time indicated by the `time` property.\n */", "meta": { "range": [ - 204921, - 205030 + 204899, + 205008 ], "filename": "astronomy.js", "lineno": 4542, @@ -39548,8 +39548,8 @@ "comment": "", "meta": { "range": [ - 204981, - 204997 + 204959, + 204975 ], "filename": "astronomy.js", "lineno": 4544, @@ -39573,8 +39573,8 @@ "comment": "", "meta": { "range": [ - 205007, - 205021 + 204985, + 204999 ], "filename": "astronomy.js", "lineno": 4545, @@ -39598,8 +39598,8 @@ "comment": "", "meta": { "range": [ - 205031, - 205070 + 205009, + 205048 ], "filename": "astronomy.js", "lineno": 4548, @@ -39622,8 +39622,8 @@ "comment": "/**\n * @brief Finds when a body will reach a given hour angle.\n *\n * Finds the next time the given body is seen to reach the specified\n * hour angle\n * by the given observer.\n * Providing `hourAngle` = 0 finds the next maximum altitude event (culmination).\n * Providing `hourAngle` = 12 finds the next minimum altitude event.\n * Note that, especially close to the Earth's poles, a body as seen on a given day\n * may always be above the horizon or always below the horizon, so the caller cannot\n * assume that a culminating object is visible nor that an object is below the horizon\n * at its minimum altitude.\n *\n * @param {Body} body\n * The name of a celestial body other than the Earth.\n *\n * @param {Observer} observer\n * Specifies the geographic coordinates and elevation above sea level of the observer.\n *\n * @param {number} hourAngle\n * The hour angle expressed in\n * sidereal\n * hours for which the caller seeks to find the body attain.\n * The value must be in the range [0, 24).\n * The hour angle represents the number of sidereal hours that have\n * elapsed since the most recent time the body crossed the observer's local\n * meridian.\n * This specifying `hourAngle` = 0 finds the moment in time\n * the body reaches the highest angular altitude in a given sidereal day.\n *\n * @param {FlexibleDateTime} dateStart\n * The date and time after which the desired hour angle crossing event\n * is to be found.\n *\n * @returns {HourAngleEvent}\n */", "meta": { "range": [ - 206761, - 208631 + 206739, + 208609 ], "filename": "astronomy.js", "lineno": 4585, @@ -39713,8 +39713,8 @@ "comment": "", "meta": { "range": [ - 206864, - 206890 + 206842, + 206868 ], "filename": "astronomy.js", "lineno": 4587, @@ -39738,8 +39738,8 @@ "comment": "", "meta": { "range": [ - 206900, - 206908 + 206878, + 206886 ], "filename": "astronomy.js", "lineno": 4588, @@ -39763,8 +39763,8 @@ "comment": "", "meta": { "range": [ - 207250, - 207276 + 207228, + 207254 ], "filename": "astronomy.js", "lineno": 4597, @@ -39788,8 +39788,8 @@ "comment": "", "meta": { "range": [ - 207290, - 207340 + 207268, + 207318 ], "filename": "astronomy.js", "lineno": 4598, @@ -39813,8 +39813,8 @@ "comment": "", "meta": { "range": [ - 207471, - 207557 + 207449, + 207535 ], "filename": "astronomy.js", "lineno": 4601, @@ -39838,8 +39838,8 @@ "comment": "", "meta": { "range": [ - 207713, - 207739 + 207691, + 207717 ], "filename": "astronomy.js", "lineno": 4605, @@ -39864,8 +39864,8 @@ "comment": "", "meta": { "range": [ - 207960, - 207986 + 207938, + 207964 ], "filename": "astronomy.js", "lineno": 4611, @@ -39890,8 +39890,8 @@ "comment": "", "meta": { "range": [ - 208053, - 208079 + 208031, + 208057 ], "filename": "astronomy.js", "lineno": 4613, @@ -39916,8 +39916,8 @@ "comment": "", "meta": { "range": [ - 208246, - 208308 + 208224, + 208286 ], "filename": "astronomy.js", "lineno": 4617, @@ -39941,8 +39941,8 @@ "comment": "", "meta": { "range": [ - 208511, - 208581 + 208489, + 208559 ], "filename": "astronomy.js", "lineno": 4622, @@ -39966,8 +39966,8 @@ "comment": "", "meta": { "range": [ - 208591, - 208622 + 208569, + 208600 ], "filename": "astronomy.js", "lineno": 4623, @@ -39992,8 +39992,8 @@ "comment": "", "meta": { "range": [ - 208632, - 208673 + 208610, + 208651 ], "filename": "astronomy.js", "lineno": 4626, @@ -40016,8 +40016,8 @@ "comment": "/**\n * @brief When the seasons change for a given calendar year.\n *\n * Represents the dates and times of the two solstices\n * and the two equinoxes in a given calendar year.\n * These four events define the changing of the seasons on the Earth.\n *\n * @property {AstroTime} mar_equinox\n * The date and time of the March equinox in the given calendar year.\n * This is the moment in March that the plane of the Earth's equator passes\n * through the center of the Sun; thus the Sun's declination\n * changes from a negative number to a positive number.\n * The March equinox defines\n * the beginning of spring in the northern hemisphere and\n * the beginning of autumn in the southern hemisphere.\n *\n * @property {AstroTime} jun_solstice\n * The date and time of the June solstice in the given calendar year.\n * This is the moment in June that the Sun reaches its most positive\n * declination value.\n * At this moment the Earth's north pole is most tilted most toward the Sun.\n * The June solstice defines\n * the beginning of summer in the northern hemisphere and\n * the beginning of winter in the southern hemisphere.\n *\n * @property {AstroTime} sep_equinox\n * The date and time of the September equinox in the given calendar year.\n * This is the moment in September that the plane of the Earth's equator passes\n * through the center of the Sun; thus the Sun's declination\n * changes from a positive number to a negative number.\n * The September equinox defines\n * the beginning of autumn in the northern hemisphere and\n * the beginning of spring in the southern hemisphere.\n *\n * @property {AstroTime} dec_solstice\n * The date and time of the December solstice in the given calendar year.\n * This is the moment in December that the Sun reaches its most negative\n * declination value.\n * At this moment the Earth's south pole is tilted most toward the Sun.\n * The December solstice defines\n * the beginning of winter in the northern hemisphere and\n * the beginning of summer in the southern hemisphere.\n */", "meta": { "range": [ - 210814, - 211076 + 210792, + 211054 ], "filename": "astronomy.js", "lineno": 4670, @@ -40090,8 +40090,8 @@ "comment": "", "meta": { "range": [ - 210837, - 211074 + 210815, + 211052 ], "filename": "astronomy.js", "lineno": 4671, @@ -40122,8 +40122,8 @@ "comment": "/**\n * @brief When the seasons change for a given calendar year.\n *\n * Represents the dates and times of the two solstices\n * and the two equinoxes in a given calendar year.\n * These four events define the changing of the seasons on the Earth.\n *\n * @property {AstroTime} mar_equinox\n * The date and time of the March equinox in the given calendar year.\n * This is the moment in March that the plane of the Earth's equator passes\n * through the center of the Sun; thus the Sun's declination\n * changes from a negative number to a positive number.\n * The March equinox defines\n * the beginning of spring in the northern hemisphere and\n * the beginning of autumn in the southern hemisphere.\n *\n * @property {AstroTime} jun_solstice\n * The date and time of the June solstice in the given calendar year.\n * This is the moment in June that the Sun reaches its most positive\n * declination value.\n * At this moment the Earth's north pole is most tilted most toward the Sun.\n * The June solstice defines\n * the beginning of summer in the northern hemisphere and\n * the beginning of winter in the southern hemisphere.\n *\n * @property {AstroTime} sep_equinox\n * The date and time of the September equinox in the given calendar year.\n * This is the moment in September that the plane of the Earth's equator passes\n * through the center of the Sun; thus the Sun's declination\n * changes from a positive number to a negative number.\n * The September equinox defines\n * the beginning of autumn in the northern hemisphere and\n * the beginning of spring in the southern hemisphere.\n *\n * @property {AstroTime} dec_solstice\n * The date and time of the December solstice in the given calendar year.\n * This is the moment in December that the Sun reaches its most negative\n * declination value.\n * At this moment the Earth's south pole is tilted most toward the Sun.\n * The December solstice defines\n * the beginning of winter in the northern hemisphere and\n * the beginning of summer in the southern hemisphere.\n */", "meta": { "range": [ - 210814, - 211076 + 210792, + 211054 ], "filename": "astronomy.js", "lineno": 4670, @@ -40195,8 +40195,8 @@ "comment": "", "meta": { "range": [ - 210913, - 210943 + 210891, + 210921 ], "filename": "astronomy.js", "lineno": 4672, @@ -40220,8 +40220,8 @@ "comment": "", "meta": { "range": [ - 210953, - 210985 + 210931, + 210963 ], "filename": "astronomy.js", "lineno": 4673, @@ -40245,8 +40245,8 @@ "comment": "", "meta": { "range": [ - 210995, - 211025 + 210973, + 211003 ], "filename": "astronomy.js", "lineno": 4674, @@ -40270,8 +40270,8 @@ "comment": "", "meta": { "range": [ - 211035, - 211067 + 211013, + 211045 ], "filename": "astronomy.js", "lineno": 4675, @@ -40295,8 +40295,8 @@ "comment": "", "meta": { "range": [ - 211077, - 211108 + 211055, + 211086 ], "filename": "astronomy.js", "lineno": 4678, @@ -40319,8 +40319,8 @@ "comment": "/**\n * @brief Finds the equinoxes and solstices for a given calendar year.\n *\n * @param {number | AstroTime} year\n * The integer value or `AstroTime` object that specifies\n * the UTC calendar year for which to find equinoxes and solstices.\n *\n * @returns {SeasonInfo}\n */", "meta": { "range": [ - 211392, - 212209 + 211370, + 212187 ], "filename": "astronomy.js", "lineno": 4688, @@ -40380,8 +40380,8 @@ "comment": "", "meta": { "range": [ - 211421, - 211714 + 211399, + 211692 ], "filename": "astronomy.js", "lineno": 4689, @@ -40413,8 +40413,8 @@ "comment": "", "meta": { "range": [ - 211472, - 211524 + 211450, + 211502 ], "filename": "astronomy.js", "lineno": 4690, @@ -40438,8 +40438,8 @@ "comment": "", "meta": { "range": [ - 211538, - 211588 + 211516, + 211566 ], "filename": "astronomy.js", "lineno": 4691, @@ -40463,8 +40463,8 @@ "comment": "", "meta": { "range": [ - 211790, - 211818 + 211768, + 211796 ], "filename": "astronomy.js", "lineno": 4697, @@ -40489,8 +40489,8 @@ "comment": "", "meta": { "range": [ - 211975, - 212003 + 211953, + 211981 ], "filename": "astronomy.js", "lineno": 4700, @@ -40514,8 +40514,8 @@ "comment": "", "meta": { "range": [ - 212013, - 212043 + 211991, + 212021 ], "filename": "astronomy.js", "lineno": 4701, @@ -40539,8 +40539,8 @@ "comment": "", "meta": { "range": [ - 212053, - 212083 + 212031, + 212061 ], "filename": "astronomy.js", "lineno": 4702, @@ -40564,8 +40564,8 @@ "comment": "", "meta": { "range": [ - 212093, - 212125 + 212071, + 212103 ], "filename": "astronomy.js", "lineno": 4703, @@ -40589,8 +40589,8 @@ "comment": "", "meta": { "range": [ - 212210, - 212235 + 212188, + 212213 ], "filename": "astronomy.js", "lineno": 4706, @@ -40613,8 +40613,8 @@ "comment": "/**\n * @brief The viewing conditions of a body relative to the Sun.\n *\n * Represents the angular separation of a body from the Sun as seen from the Earth\n * and the relative ecliptic longitudes between that body and the Earth as seen from the Sun.\n *\n * @property {AstroTime} time\n * The date and time of the observation.\n *\n * @property {string} visibility\n * Either `\"morning\"` or `\"evening\"`,\n * indicating when the body is most easily seen.\n *\n * @property {number} elongation\n * The angle in degrees, as seen from the center of the Earth,\n * of the apparent separation between the body and the Sun.\n * This angle is measured in 3D space and is not projected onto the ecliptic plane.\n * When `elongation` is less than a few degrees, the body is very\n * difficult to see from the Earth because it is lost in the Sun's glare.\n * The elongation is always in the range [0, 180].\n *\n * @property {number} ecliptic_separation\n * The absolute value of the difference between the body's ecliptic longitude\n * and the Sun's ecliptic longitude, both as seen from the center of the Earth.\n * This angle measures around the plane of the Earth's orbit (the ecliptic),\n * and ignores how far above or below that plane the body is.\n * The ecliptic separation is measured in degrees and is always in the range [0, 180].\n *\n * @see {@link Elongation}\n */", "meta": { "range": [ - 213652, - 213910 + 213630, + 213888 ], "filename": "astronomy.js", "lineno": 4737, @@ -40690,8 +40690,8 @@ "comment": "", "meta": { "range": [ - 213680, - 213908 + 213658, + 213886 ], "filename": "astronomy.js", "lineno": 4738, @@ -40722,8 +40722,8 @@ "comment": "/**\n * @brief The viewing conditions of a body relative to the Sun.\n *\n * Represents the angular separation of a body from the Sun as seen from the Earth\n * and the relative ecliptic longitudes between that body and the Earth as seen from the Sun.\n *\n * @property {AstroTime} time\n * The date and time of the observation.\n *\n * @property {string} visibility\n * Either `\"morning\"` or `\"evening\"`,\n * indicating when the body is most easily seen.\n *\n * @property {number} elongation\n * The angle in degrees, as seen from the center of the Earth,\n * of the apparent separation between the body and the Sun.\n * This angle is measured in 3D space and is not projected onto the ecliptic plane.\n * When `elongation` is less than a few degrees, the body is very\n * difficult to see from the Earth because it is lost in the Sun's glare.\n * The elongation is always in the range [0, 180].\n *\n * @property {number} ecliptic_separation\n * The absolute value of the difference between the body's ecliptic longitude\n * and the Sun's ecliptic longitude, both as seen from the center of the Earth.\n * This angle measures around the plane of the Earth's orbit (the ecliptic),\n * and ignores how far above or below that plane the body is.\n * The ecliptic separation is measured in degrees and is always in the range [0, 180].\n *\n * @see {@link Elongation}\n */", "meta": { "range": [ - 213652, - 213910 + 213630, + 213888 ], "filename": "astronomy.js", "lineno": 4737, @@ -40798,8 +40798,8 @@ "comment": "", "meta": { "range": [ - 213753, - 213769 + 213731, + 213747 ], "filename": "astronomy.js", "lineno": 4739, @@ -40823,8 +40823,8 @@ "comment": "", "meta": { "range": [ - 213779, - 213807 + 213757, + 213785 ], "filename": "astronomy.js", "lineno": 4740, @@ -40848,8 +40848,8 @@ "comment": "", "meta": { "range": [ - 213817, - 213845 + 213795, + 213823 ], "filename": "astronomy.js", "lineno": 4741, @@ -40873,8 +40873,8 @@ "comment": "", "meta": { "range": [ - 213855, - 213901 + 213833, + 213879 ], "filename": "astronomy.js", "lineno": 4742, @@ -40898,8 +40898,8 @@ "comment": "", "meta": { "range": [ - 213911, - 213952 + 213889, + 213930 ], "filename": "astronomy.js", "lineno": 4745, @@ -40922,8 +40922,8 @@ "comment": "/**\n * @brief Calculates the viewing conditions of a body relative to the Sun.\n *\n * Calculates angular separation of a body from the Sun as seen from the Earth\n * and the relative ecliptic longitudes between that body and the Earth as seen from the Sun.\n * See the return type {@link ElongationEvent} for details.\n *\n * This function is helpful for determining how easy\n * it is to view a planet away from the Sun's glare on a given date.\n * It also determines whether the object is visible in the morning or evening;\n * this is more important the smaller the elongation is.\n * It is also used to determine how far a planet is from opposition, conjunction, or quadrature.\n *\n * @param {Body} body\n * The name of the observed body. Not allowed to be `\"Earth\"`.\n *\n * @returns {ElongationEvent}\n */", "meta": { "range": [ - 214757, - 215103 + 214735, + 215081 ], "filename": "astronomy.js", "lineno": 4764, @@ -40981,8 +40981,8 @@ "comment": "", "meta": { "range": [ - 214799, - 214820 + 214777, + 214798 ], "filename": "astronomy.js", "lineno": 4765, @@ -41006,8 +41006,8 @@ "comment": "", "meta": { "range": [ - 214830, - 214871 + 214808, + 214849 ], "filename": "astronomy.js", "lineno": 4766, @@ -41031,8 +41031,8 @@ "comment": "", "meta": { "range": [ - 214881, - 214884 + 214859, + 214862 ], "filename": "astronomy.js", "lineno": 4767, @@ -41054,8 +41054,8 @@ "comment": "", "meta": { "range": [ - 214915, - 214930 + 214893, + 214908 ], "filename": "astronomy.js", "lineno": 4769, @@ -41080,8 +41080,8 @@ "comment": "", "meta": { "range": [ - 214940, - 214955 + 214918, + 214933 ], "filename": "astronomy.js", "lineno": 4770, @@ -41106,8 +41106,8 @@ "comment": "", "meta": { "range": [ - 214982, - 214997 + 214960, + 214975 ], "filename": "astronomy.js", "lineno": 4773, @@ -41132,8 +41132,8 @@ "comment": "", "meta": { "range": [ - 215013, - 215045 + 214991, + 215023 ], "filename": "astronomy.js", "lineno": 4775, @@ -41157,8 +41157,8 @@ "comment": "", "meta": { "range": [ - 215104, - 215135 + 215082, + 215113 ], "filename": "astronomy.js", "lineno": 4778, @@ -41181,8 +41181,8 @@ "comment": "/**\n * @brief Finds the next time Mercury or Venus reaches maximum elongation.\n *\n * Searches for the next maximum elongation event for Mercury or Venus\n * that occurs after the given start date. Calling with other values\n * of `body` will result in an exception.\n * Maximum elongation occurs when the body has the greatest\n * angular separation from the Sun, as seen from the Earth.\n * Returns an `ElongationEvent` object containing the date and time of the next\n * maximum elongation, the elongation in degrees, and whether\n * the body is visible in the morning or evening.\n *\n * @param {Body} body Either `\"Mercury\"` or `\"Venus\"`.\n * @param {FlexibleDateTime} startDate The date and time after which to search for the next maximum elongation event.\n *\n * @returns {ElongationEvent}\n */", "meta": { "range": [ - 215931, - 220057 + 215909, + 220035 ], "filename": "astronomy.js", "lineno": 4796, @@ -41263,8 +41263,8 @@ "comment": "", "meta": { "range": [ - 215989, - 215998 + 215967, + 215976 ], "filename": "astronomy.js", "lineno": 4797, @@ -41288,8 +41288,8 @@ "comment": "", "meta": { "range": [ - 216004, - 216466 + 215982, + 216444 ], "filename": "astronomy.js", "lineno": 4798, @@ -41322,8 +41322,8 @@ "comment": "", "meta": { "range": [ - 216265, - 216288 + 216243, + 216266 ], "filename": "astronomy.js", "lineno": 4802, @@ -41347,8 +41347,8 @@ "comment": "", "meta": { "range": [ - 216304, - 216327 + 216282, + 216305 ], "filename": "astronomy.js", "lineno": 4803, @@ -41372,8 +41372,8 @@ "comment": "", "meta": { "range": [ - 216341, - 216368 + 216319, + 216346 ], "filename": "astronomy.js", "lineno": 4804, @@ -41397,8 +41397,8 @@ "comment": "", "meta": { "range": [ - 216382, - 216409 + 216360, + 216387 ], "filename": "astronomy.js", "lineno": 4805, @@ -41422,8 +41422,8 @@ "comment": "", "meta": { "range": [ - 216423, - 216441 + 216401, + 216419 ], "filename": "astronomy.js", "lineno": 4806, @@ -41447,8 +41447,8 @@ "comment": "", "meta": { "range": [ - 216475, - 216506 + 216453, + 216484 ], "filename": "astronomy.js", "lineno": 4809, @@ -41472,8 +41472,8 @@ "comment": "", "meta": { "range": [ - 216518, - 216612 + 216496, + 216590 ], "filename": "astronomy.js", "lineno": 4810, @@ -41497,8 +41497,8 @@ "comment": "", "meta": { "range": [ - 216536, - 216567 + 216514, + 216545 ], "filename": "astronomy.js", "lineno": 4811, @@ -41521,8 +41521,8 @@ "comment": "", "meta": { "range": [ - 216547, - 216555 + 216525, + 216533 ], "filename": "astronomy.js", "lineno": 4811, @@ -41545,8 +41545,8 @@ "comment": "", "meta": { "range": [ - 216557, - 216565 + 216535, + 216543 ], "filename": "astronomy.js", "lineno": 4811, @@ -41569,8 +41569,8 @@ "comment": "", "meta": { "range": [ - 216577, - 216606 + 216555, + 216584 ], "filename": "astronomy.js", "lineno": 4812, @@ -41593,8 +41593,8 @@ "comment": "", "meta": { "range": [ - 216586, - 216594 + 216564, + 216572 ], "filename": "astronomy.js", "lineno": 4812, @@ -41617,8 +41617,8 @@ "comment": "", "meta": { "range": [ - 216596, - 216604 + 216574, + 216582 ], "filename": "astronomy.js", "lineno": 4812, @@ -41641,8 +41641,8 @@ "comment": "", "meta": { "range": [ - 216624, - 216644 + 216602, + 216622 ], "filename": "astronomy.js", "lineno": 4814, @@ -41666,8 +41666,8 @@ "comment": "", "meta": { "range": [ - 216742, - 216750 + 216720, + 216728 ], "filename": "astronomy.js", "lineno": 4817, @@ -41691,8 +41691,8 @@ "comment": "", "meta": { "range": [ - 216900, - 216941 + 216878, + 216919 ], "filename": "astronomy.js", "lineno": 4821, @@ -41716,8 +41716,8 @@ "comment": "", "meta": { "range": [ - 216955, - 217002 + 216933, + 216980 ], "filename": "astronomy.js", "lineno": 4822, @@ -41741,8 +41741,8 @@ "comment": "", "meta": { "range": [ - 217016, - 217051 + 216994, + 217029 ], "filename": "astronomy.js", "lineno": 4823, @@ -41766,8 +41766,8 @@ "comment": "", "meta": { "range": [ - 217337, - 217344 + 217315, + 217322 ], "filename": "astronomy.js", "lineno": 4827, @@ -41789,8 +41789,8 @@ "comment": "", "meta": { "range": [ - 217346, - 217353 + 217324, + 217331 ], "filename": "astronomy.js", "lineno": 4827, @@ -41812,8 +41812,8 @@ "comment": "", "meta": { "range": [ - 217355, - 217366 + 217333, + 217344 ], "filename": "astronomy.js", "lineno": 4827, @@ -41835,8 +41835,8 @@ "comment": "", "meta": { "range": [ - 217481, - 217496 + 217459, + 217474 ], "filename": "astronomy.js", "lineno": 4830, @@ -41861,8 +41861,8 @@ "comment": "", "meta": { "range": [ - 217576, - 217596 + 217554, + 217574 ], "filename": "astronomy.js", "lineno": 4832, @@ -41887,8 +41887,8 @@ "comment": "", "meta": { "range": [ - 217676, - 217696 + 217654, + 217674 ], "filename": "astronomy.js", "lineno": 4834, @@ -41913,8 +41913,8 @@ "comment": "", "meta": { "range": [ - 217841, - 217856 + 217819, + 217834 ], "filename": "astronomy.js", "lineno": 4838, @@ -41939,8 +41939,8 @@ "comment": "", "meta": { "range": [ - 217936, - 217956 + 217914, + 217934 ], "filename": "astronomy.js", "lineno": 4840, @@ -41965,8 +41965,8 @@ "comment": "", "meta": { "range": [ - 218036, - 218056 + 218014, + 218034 ], "filename": "astronomy.js", "lineno": 4842, @@ -41991,8 +41991,8 @@ "comment": "", "meta": { "range": [ - 218245, - 218283 + 218223, + 218261 ], "filename": "astronomy.js", "lineno": 4847, @@ -42017,8 +42017,8 @@ "comment": "", "meta": { "range": [ - 218297, - 218317 + 218275, + 218295 ], "filename": "astronomy.js", "lineno": 4848, @@ -42043,8 +42043,8 @@ "comment": "", "meta": { "range": [ - 218331, - 218351 + 218309, + 218329 ], "filename": "astronomy.js", "lineno": 4849, @@ -42069,8 +42069,8 @@ "comment": "", "meta": { "range": [ - 218599, - 218637 + 218577, + 218615 ], "filename": "astronomy.js", "lineno": 4855, @@ -42095,8 +42095,8 @@ "comment": "", "meta": { "range": [ - 218651, - 218671 + 218629, + 218649 ], "filename": "astronomy.js", "lineno": 4856, @@ -42121,8 +42121,8 @@ "comment": "", "meta": { "range": [ - 218759, - 218779 + 218737, + 218757 ], "filename": "astronomy.js", "lineno": 4858, @@ -42147,8 +42147,8 @@ "comment": "", "meta": { "range": [ - 218803, - 218843 + 218781, + 218821 ], "filename": "astronomy.js", "lineno": 4860, @@ -42172,8 +42172,8 @@ "comment": "", "meta": { "range": [ - 218857, - 218909 + 218835, + 218887 ], "filename": "astronomy.js", "lineno": 4861, @@ -42197,8 +42197,8 @@ "comment": "", "meta": { "range": [ - 218923, - 218970 + 218901, + 218948 ], "filename": "astronomy.js", "lineno": 4862, @@ -42222,8 +42222,8 @@ "comment": "", "meta": { "range": [ - 219105, - 219123 + 219083, + 219101 ], "filename": "astronomy.js", "lineno": 4865, @@ -42247,8 +42247,8 @@ "comment": "", "meta": { "range": [ - 219227, - 219245 + 219205, + 219223 ], "filename": "astronomy.js", "lineno": 4868, @@ -42272,8 +42272,8 @@ "comment": "", "meta": { "range": [ - 219458, - 219544 + 219436, + 219522 ], "filename": "astronomy.js", "lineno": 4872, @@ -42297,8 +42297,8 @@ "comment": "", "meta": { "range": [ - 219491, - 219502 + 219469, + 219480 ], "filename": "astronomy.js", "lineno": 4872, @@ -42320,8 +42320,8 @@ "comment": "", "meta": { "range": [ - 219504, - 219515 + 219482, + 219493 ], "filename": "astronomy.js", "lineno": 4872, @@ -42343,8 +42343,8 @@ "comment": "", "meta": { "range": [ - 219517, - 219541 + 219495, + 219519 ], "filename": "astronomy.js", "lineno": 4872, @@ -42366,8 +42366,8 @@ "comment": "", "meta": { "range": [ - 219953, - 219978 + 219931, + 219956 ], "filename": "astronomy.js", "lineno": 4880, @@ -42392,8 +42392,8 @@ "comment": "", "meta": { "range": [ - 220058, - 220107 + 220036, + 220085 ], "filename": "astronomy.js", "lineno": 4884, @@ -42416,8 +42416,8 @@ "comment": "/**\n * @brief Searches for the date and time Venus will next appear brightest as seen from the Earth.\n *\n * @param {Body} body\n * Currently only `\"Venus\"` is supported.\n * Mercury's peak magnitude occurs at superior conjunction, when it is virtually impossible to see from Earth,\n * so peak magnitude events have little practical value for that planet.\n * The Moon reaches peak magnitude very close to full moon, which can be found using\n * {@link SearchMoonQuarter} or {@link SearchMoonPhase}.\n * The other planets reach peak magnitude very close to opposition,\n * which can be found using {@link SearchRelativeLongitude}.\n *\n * @param {FlexibleDateTime} startDate\n * The date and time after which to find the next peak magnitude event.\n *\n * @returns {IlluminationInfo}\n */", "meta": { "range": [ - 220925, - 225092 + 220903, + 225070 ], "filename": "astronomy.js", "lineno": 4902, @@ -42498,8 +42498,8 @@ "comment": "", "meta": { "range": [ - 221081, - 221090 + 221059, + 221068 ], "filename": "astronomy.js", "lineno": 4905, @@ -42523,8 +42523,8 @@ "comment": "", "meta": { "range": [ - 221096, - 221691 + 221074, + 221669 ], "filename": "astronomy.js", "lineno": 4906, @@ -42557,8 +42557,8 @@ "comment": "", "meta": { "range": [ - 221476, - 221499 + 221454, + 221477 ], "filename": "astronomy.js", "lineno": 4912, @@ -42582,8 +42582,8 @@ "comment": "", "meta": { "range": [ - 221515, - 221538 + 221493, + 221516 ], "filename": "astronomy.js", "lineno": 4913, @@ -42607,8 +42607,8 @@ "comment": "", "meta": { "range": [ - 221554, - 221585 + 221532, + 221563 ], "filename": "astronomy.js", "lineno": 4914, @@ -42632,8 +42632,8 @@ "comment": "", "meta": { "range": [ - 221601, - 221632 + 221579, + 221610 ], "filename": "astronomy.js", "lineno": 4915, @@ -42657,8 +42657,8 @@ "comment": "", "meta": { "range": [ - 221648, - 221666 + 221626, + 221644 ], "filename": "astronomy.js", "lineno": 4916, @@ -42682,8 +42682,8 @@ "comment": "", "meta": { "range": [ - 221700, - 221731 + 221678, + 221709 ], "filename": "astronomy.js", "lineno": 4919, @@ -42707,8 +42707,8 @@ "comment": "", "meta": { "range": [ - 221832, - 221841 + 221810, + 221819 ], "filename": "astronomy.js", "lineno": 4921, @@ -42732,8 +42732,8 @@ "comment": "", "meta": { "range": [ - 221853, - 221862 + 221831, + 221840 ], "filename": "astronomy.js", "lineno": 4922, @@ -42757,8 +42757,8 @@ "comment": "", "meta": { "range": [ - 221872, - 221880 + 221850, + 221858 ], "filename": "astronomy.js", "lineno": 4923, @@ -42782,8 +42782,8 @@ "comment": "", "meta": { "range": [ - 222030, - 222071 + 222008, + 222049 ], "filename": "astronomy.js", "lineno": 4927, @@ -42807,8 +42807,8 @@ "comment": "", "meta": { "range": [ - 222085, - 222132 + 222063, + 222110 ], "filename": "astronomy.js", "lineno": 4928, @@ -42832,8 +42832,8 @@ "comment": "", "meta": { "range": [ - 222146, - 222181 + 222124, + 222159 ], "filename": "astronomy.js", "lineno": 4929, @@ -42857,8 +42857,8 @@ "comment": "", "meta": { "range": [ - 222467, - 222474 + 222445, + 222452 ], "filename": "astronomy.js", "lineno": 4933, @@ -42880,8 +42880,8 @@ "comment": "", "meta": { "range": [ - 222476, - 222483 + 222454, + 222461 ], "filename": "astronomy.js", "lineno": 4933, @@ -42903,8 +42903,8 @@ "comment": "", "meta": { "range": [ - 222485, - 222496 + 222463, + 222474 ], "filename": "astronomy.js", "lineno": 4933, @@ -42926,8 +42926,8 @@ "comment": "", "meta": { "range": [ - 222597, - 222612 + 222575, + 222590 ], "filename": "astronomy.js", "lineno": 4936, @@ -42952,8 +42952,8 @@ "comment": "", "meta": { "range": [ - 222692, - 222705 + 222670, + 222683 ], "filename": "astronomy.js", "lineno": 4938, @@ -42978,8 +42978,8 @@ "comment": "", "meta": { "range": [ - 222785, - 222798 + 222763, + 222776 ], "filename": "astronomy.js", "lineno": 4940, @@ -43004,8 +43004,8 @@ "comment": "", "meta": { "range": [ - 222929, - 222944 + 222907, + 222922 ], "filename": "astronomy.js", "lineno": 4944, @@ -43030,8 +43030,8 @@ "comment": "", "meta": { "range": [ - 223024, - 223037 + 223002, + 223015 ], "filename": "astronomy.js", "lineno": 4946, @@ -43056,8 +43056,8 @@ "comment": "", "meta": { "range": [ - 223117, - 223130 + 223095, + 223108 ], "filename": "astronomy.js", "lineno": 4948, @@ -43082,8 +43082,8 @@ "comment": "", "meta": { "range": [ - 223319, - 223357 + 223297, + 223335 ], "filename": "astronomy.js", "lineno": 4953, @@ -43108,8 +43108,8 @@ "comment": "", "meta": { "range": [ - 223371, - 223384 + 223349, + 223362 ], "filename": "astronomy.js", "lineno": 4954, @@ -43134,8 +43134,8 @@ "comment": "", "meta": { "range": [ - 223472, - 223485 + 223450, + 223463 ], "filename": "astronomy.js", "lineno": 4956, @@ -43160,8 +43160,8 @@ "comment": "", "meta": { "range": [ - 223659, - 223697 + 223637, + 223675 ], "filename": "astronomy.js", "lineno": 4961, @@ -43186,8 +43186,8 @@ "comment": "", "meta": { "range": [ - 223711, - 223724 + 223689, + 223702 ], "filename": "astronomy.js", "lineno": 4962, @@ -43212,8 +43212,8 @@ "comment": "", "meta": { "range": [ - 223812, - 223825 + 223790, + 223803 ], "filename": "astronomy.js", "lineno": 4964, @@ -43238,8 +43238,8 @@ "comment": "", "meta": { "range": [ - 223849, - 223889 + 223827, + 223867 ], "filename": "astronomy.js", "lineno": 4966, @@ -43263,8 +43263,8 @@ "comment": "", "meta": { "range": [ - 223903, - 223955 + 223881, + 223933 ], "filename": "astronomy.js", "lineno": 4967, @@ -43288,8 +43288,8 @@ "comment": "", "meta": { "range": [ - 223969, - 224016 + 223947, + 223994 ], "filename": "astronomy.js", "lineno": 4968, @@ -43313,8 +43313,8 @@ "comment": "", "meta": { "range": [ - 224150, - 224164 + 224128, + 224142 ], "filename": "astronomy.js", "lineno": 4971, @@ -43338,8 +43338,8 @@ "comment": "", "meta": { "range": [ - 224268, - 224282 + 224246, + 224260 ], "filename": "astronomy.js", "lineno": 4974, @@ -43363,8 +43363,8 @@ "comment": "", "meta": { "range": [ - 224495, - 224577 + 224473, + 224555 ], "filename": "astronomy.js", "lineno": 4978, @@ -43388,8 +43388,8 @@ "comment": "", "meta": { "range": [ - 224524, - 224535 + 224502, + 224513 ], "filename": "astronomy.js", "lineno": 4978, @@ -43411,8 +43411,8 @@ "comment": "", "meta": { "range": [ - 224537, - 224548 + 224515, + 224526 ], "filename": "astronomy.js", "lineno": 4978, @@ -43434,8 +43434,8 @@ "comment": "", "meta": { "range": [ - 224550, - 224574 + 224528, + 224552 ], "filename": "astronomy.js", "lineno": 4978, @@ -43457,8 +43457,8 @@ "comment": "", "meta": { "range": [ - 224988, - 225013 + 224966, + 224991 ], "filename": "astronomy.js", "lineno": 4986, @@ -43483,8 +43483,8 @@ "comment": "", "meta": { "range": [ - 225093, - 225142 + 225071, + 225120 ], "filename": "astronomy.js", "lineno": 4990, @@ -43507,8 +43507,8 @@ "comment": "/**\n * @brief A closest or farthest point in a body's orbit around its primary.\n *\n * For a planet orbiting the Sun, apsis is a perihelion or aphelion, respectively.\n * For the Moon orbiting the Earth, apsis is a perigee or apogee, respectively.\n *\n * @property {AstroTime} time\n * The date and time of the apsis.\n *\n * @property {number} kind\n * For a closest approach (perigee or perihelion), `kind` is 0.\n * For a farthest distance event (apogee or aphelion), `kind` is 1.\n *\n * @property {number} dist_au\n * The distance between the centers of the two bodies in astronomical units (AU).\n *\n * @property {number} dist_km\n * The distance between the centers of the two bodies in kilometers.\n *\n * @see {@link SearchLunarApsis}\n * @see {@link NextLunarApsis}\n */", "meta": { "range": [ - 225933, - 226129 + 225911, + 226107 ], "filename": "astronomy.js", "lineno": 5013, @@ -43584,8 +43584,8 @@ "comment": "", "meta": { "range": [ - 225951, - 226127 + 225929, + 226105 ], "filename": "astronomy.js", "lineno": 5014, @@ -43615,8 +43615,8 @@ "comment": "/**\n * @brief A closest or farthest point in a body's orbit around its primary.\n *\n * For a planet orbiting the Sun, apsis is a perihelion or aphelion, respectively.\n * For the Moon orbiting the Earth, apsis is a perigee or apogee, respectively.\n *\n * @property {AstroTime} time\n * The date and time of the apsis.\n *\n * @property {number} kind\n * For a closest approach (perigee or perihelion), `kind` is 0.\n * For a farthest distance event (apogee or aphelion), `kind` is 1.\n *\n * @property {number} dist_au\n * The distance between the centers of the two bodies in astronomical units (AU).\n *\n * @property {number} dist_km\n * The distance between the centers of the two bodies in kilometers.\n *\n * @see {@link SearchLunarApsis}\n * @see {@link NextLunarApsis}\n */", "meta": { "range": [ - 225933, - 226129 + 225911, + 226107 ], "filename": "astronomy.js", "lineno": 5013, @@ -43691,8 +43691,8 @@ "comment": "", "meta": { "range": [ - 225994, - 226010 + 225972, + 225988 ], "filename": "astronomy.js", "lineno": 5015, @@ -43716,8 +43716,8 @@ "comment": "", "meta": { "range": [ - 226020, - 226036 + 225998, + 226014 ], "filename": "astronomy.js", "lineno": 5016, @@ -43741,8 +43741,8 @@ "comment": "", "meta": { "range": [ - 226046, - 226068 + 226024, + 226046 ], "filename": "astronomy.js", "lineno": 5017, @@ -43766,8 +43766,8 @@ "comment": "", "meta": { "range": [ - 226078, - 226120 + 226056, + 226098 ], "filename": "astronomy.js", "lineno": 5018, @@ -43791,8 +43791,8 @@ "comment": "", "meta": { "range": [ - 226130, - 226151 + 226108, + 226129 ], "filename": "astronomy.js", "lineno": 5021, @@ -43815,8 +43815,8 @@ "comment": "/**\n * @brief Finds the next perigee or apogee of the Moon.\n *\n * Finds the next perigee (closest approach) or apogee (farthest remove) of the Moon\n * that occurs after the specified date and time.\n *\n * @param {FlexibleDateTime} startDate\n * The date and time after which to find the next perigee or apogee.\n *\n * @returns {Apsis}\n */", "meta": { "range": [ - 226494, - 229289 + 226472, + 229267 ], "filename": "astronomy.js", "lineno": 5033, @@ -43880,8 +43880,8 @@ "comment": "", "meta": { "range": [ - 226543, - 226553 + 226521, + 226531 ], "filename": "astronomy.js", "lineno": 5034, @@ -43905,8 +43905,8 @@ "comment": "", "meta": { "range": [ - 226559, - 226803 + 226537, + 226781 ], "filename": "astronomy.js", "lineno": 5035, @@ -43939,8 +43939,8 @@ "comment": "", "meta": { "range": [ - 226600, - 226623 + 226578, + 226601 ], "filename": "astronomy.js", "lineno": 5036, @@ -43964,8 +43964,8 @@ "comment": "", "meta": { "range": [ - 226637, - 226660 + 226615, + 226638 ], "filename": "astronomy.js", "lineno": 5037, @@ -43989,8 +43989,8 @@ "comment": "", "meta": { "range": [ - 226674, - 226703 + 226652, + 226681 ], "filename": "astronomy.js", "lineno": 5038, @@ -44014,8 +44014,8 @@ "comment": "", "meta": { "range": [ - 226717, - 226746 + 226695, + 226724 ], "filename": "astronomy.js", "lineno": 5039, @@ -44039,8 +44039,8 @@ "comment": "", "meta": { "range": [ - 226760, - 226778 + 226738, + 226756 ], "filename": "astronomy.js", "lineno": 5040, @@ -44064,8 +44064,8 @@ "comment": "", "meta": { "range": [ - 226808, - 226886 + 226786, + 226864 ], "filename": "astronomy.js", "lineno": 5043, @@ -44091,8 +44091,8 @@ "comment": "", "meta": { "range": [ - 227314, - 227338 + 227292, + 227316 ], "filename": "astronomy.js", "lineno": 5052, @@ -44116,8 +44116,8 @@ "comment": "", "meta": { "range": [ - 227348, - 227371 + 227326, + 227349 ], "filename": "astronomy.js", "lineno": 5053, @@ -44141,8 +44141,8 @@ "comment": "", "meta": { "range": [ - 227383, - 227396 + 227361, + 227374 ], "filename": "astronomy.js", "lineno": 5054, @@ -44166,8 +44166,8 @@ "comment": "", "meta": { "range": [ - 227455, - 227463 + 227433, + 227441 ], "filename": "astronomy.js", "lineno": 5055, @@ -44191,8 +44191,8 @@ "comment": "", "meta": { "range": [ - 227530, - 227556 + 227508, + 227534 ], "filename": "astronomy.js", "lineno": 5056, @@ -44216,8 +44216,8 @@ "comment": "", "meta": { "range": [ - 227570, - 227593 + 227548, + 227571 ], "filename": "astronomy.js", "lineno": 5057, @@ -44241,8 +44241,8 @@ "comment": "", "meta": { "range": [ - 227988, - 228053 + 227966, + 228031 ], "filename": "astronomy.js", "lineno": 5065, @@ -44266,8 +44266,8 @@ "comment": "", "meta": { "range": [ - 228026, - 228037 + 228004, + 228015 ], "filename": "astronomy.js", "lineno": 5065, @@ -44289,8 +44289,8 @@ "comment": "", "meta": { "range": [ - 228039, - 228050 + 228017, + 228028 ], "filename": "astronomy.js", "lineno": 5065, @@ -44312,8 +44312,8 @@ "comment": "", "meta": { "range": [ - 228185, - 228216 + 228163, + 228194 ], "filename": "astronomy.js", "lineno": 5068, @@ -44337,8 +44337,8 @@ "comment": "", "meta": { "range": [ - 228526, - 228602 + 228504, + 228580 ], "filename": "astronomy.js", "lineno": 5075, @@ -44362,8 +44362,8 @@ "comment": "", "meta": { "range": [ - 228573, - 228585 + 228551, + 228563 ], "filename": "astronomy.js", "lineno": 5075, @@ -44385,8 +44385,8 @@ "comment": "", "meta": { "range": [ - 228587, - 228599 + 228565, + 228577 ], "filename": "astronomy.js", "lineno": 5075, @@ -44408,8 +44408,8 @@ "comment": "", "meta": { "range": [ - 228733, - 228764 + 228711, + 228742 ], "filename": "astronomy.js", "lineno": 5078, @@ -44433,8 +44433,8 @@ "comment": "", "meta": { "range": [ - 229067, - 229074 + 229045, + 229052 ], "filename": "astronomy.js", "lineno": 5085, @@ -44459,8 +44459,8 @@ "comment": "", "meta": { "range": [ - 229084, - 229091 + 229062, + 229069 ], "filename": "astronomy.js", "lineno": 5086, @@ -44485,8 +44485,8 @@ "comment": "", "meta": { "range": [ - 229290, - 229333 + 229268, + 229311 ], "filename": "astronomy.js", "lineno": 5091, @@ -44509,8 +44509,8 @@ "comment": "/**\n * @brief Finds the next lunar apsis (perigee or apogee) in a series.\n *\n * Given a lunar apsis returned by an initial call to {@link SearchLunarApsis},\n * or a previous call to `NextLunarApsis`, finds the next lunar apsis.\n * If the given apsis is a perigee, this function finds the next apogee, and vice versa.\n *\n * @param {Apsis} apsis\n * A lunar perigee or apogee event.\n *\n * @returns {Apsis}\n * The successor apogee for the given perigee, or the successor perigee for the given apogee.\n */", "meta": { "range": [ - 229846, - 230259 + 229824, + 230237 ], "filename": "astronomy.js", "lineno": 5105, @@ -44566,8 +44566,8 @@ "comment": "", "meta": { "range": [ - 229889, - 229898 + 229867, + 229876 ], "filename": "astronomy.js", "lineno": 5106, @@ -44591,8 +44591,8 @@ "comment": "", "meta": { "range": [ - 229972, - 230021 + 229950, + 229999 ], "filename": "astronomy.js", "lineno": 5107, @@ -44616,8 +44616,8 @@ "comment": "", "meta": { "range": [ - 230260, - 230299 + 230238, + 230277 ], "filename": "astronomy.js", "lineno": 5112, @@ -44640,8 +44640,8 @@ "comment": "", "meta": { "range": [ - 230301, - 231299 + 230279, + 231277 ], "filename": "astronomy.js", "lineno": 5113, @@ -44683,8 +44683,8 @@ "comment": "", "meta": { "range": [ - 230369, - 230407 + 230347, + 230385 ], "filename": "astronomy.js", "lineno": 5114, @@ -44708,8 +44708,8 @@ "comment": "", "meta": { "range": [ - 230419, - 230431 + 230397, + 230409 ], "filename": "astronomy.js", "lineno": 5115, @@ -44733,8 +44733,8 @@ "comment": "", "meta": { "range": [ - 230462, - 230496 + 230440, + 230474 ], "filename": "astronomy.js", "lineno": 5117, @@ -44758,8 +44758,8 @@ "comment": "", "meta": { "range": [ - 230616, - 230663 + 230594, + 230641 ], "filename": "astronomy.js", "lineno": 5120, @@ -44783,8 +44783,8 @@ "comment": "", "meta": { "range": [ - 230683, - 230724 + 230661, + 230702 ], "filename": "astronomy.js", "lineno": 5121, @@ -44808,8 +44808,8 @@ "comment": "", "meta": { "range": [ - 230805, - 230816 + 230783, + 230794 ], "filename": "astronomy.js", "lineno": 5124, @@ -44833,8 +44833,8 @@ "comment": "", "meta": { "range": [ - 230830, - 230845 + 230808, + 230823 ], "filename": "astronomy.js", "lineno": 5125, @@ -44858,8 +44858,8 @@ "comment": "", "meta": { "range": [ - 230864, - 230869 + 230842, + 230847 ], "filename": "astronomy.js", "lineno": 5126, @@ -44883,8 +44883,8 @@ "comment": "", "meta": { "range": [ - 230909, - 230948 + 230887, + 230926 ], "filename": "astronomy.js", "lineno": 5127, @@ -44908,8 +44908,8 @@ "comment": "", "meta": { "range": [ - 230968, - 231012 + 230946, + 230990 ], "filename": "astronomy.js", "lineno": 5128, @@ -44933,8 +44933,8 @@ "comment": "", "meta": { "range": [ - 231076, - 231086 + 231054, + 231064 ], "filename": "astronomy.js", "lineno": 5130, @@ -44959,8 +44959,8 @@ "comment": "", "meta": { "range": [ - 231104, - 231120 + 231082, + 231098 ], "filename": "astronomy.js", "lineno": 5131, @@ -44985,8 +44985,8 @@ "comment": "", "meta": { "range": [ - 231200, - 231256 + 231178, + 231234 ], "filename": "astronomy.js", "lineno": 5135, @@ -45011,8 +45011,8 @@ "comment": "", "meta": { "range": [ - 231266, - 231290 + 231244, + 231268 ], "filename": "astronomy.js", "lineno": 5136, @@ -45037,8 +45037,8 @@ "comment": "", "meta": { "range": [ - 231300, - 233868 + 231278, + 233846 ], "filename": "astronomy.js", "lineno": 5139, @@ -45079,8 +45079,8 @@ "comment": "", "meta": { "range": [ - 232591, - 232604 + 232569, + 232582 ], "filename": "astronomy.js", "lineno": 5164, @@ -45104,8 +45104,8 @@ "comment": "", "meta": { "range": [ - 232616, - 232680 + 232594, + 232658 ], "filename": "astronomy.js", "lineno": 5165, @@ -45129,8 +45129,8 @@ "comment": "", "meta": { "range": [ - 232692, - 232757 + 232670, + 232735 ], "filename": "astronomy.js", "lineno": 5166, @@ -45154,8 +45154,8 @@ "comment": "", "meta": { "range": [ - 232767, - 232777 + 232745, + 232755 ], "filename": "astronomy.js", "lineno": 5167, @@ -45179,8 +45179,8 @@ "comment": "", "meta": { "range": [ - 232787, - 232797 + 232765, + 232775 ], "filename": "astronomy.js", "lineno": 5168, @@ -45204,8 +45204,8 @@ "comment": "", "meta": { "range": [ - 232807, - 232822 + 232785, + 232800 ], "filename": "astronomy.js", "lineno": 5169, @@ -45229,8 +45229,8 @@ "comment": "", "meta": { "range": [ - 232832, - 232847 + 232810, + 232825 ], "filename": "astronomy.js", "lineno": 5170, @@ -45254,8 +45254,8 @@ "comment": "", "meta": { "range": [ - 232859, - 232901 + 232837, + 232879 ], "filename": "astronomy.js", "lineno": 5171, @@ -45279,8 +45279,8 @@ "comment": "", "meta": { "range": [ - 232916, - 232921 + 232894, + 232899 ], "filename": "astronomy.js", "lineno": 5172, @@ -45304,8 +45304,8 @@ "comment": "", "meta": { "range": [ - 232957, - 232988 + 232935, + 232966 ], "filename": "astronomy.js", "lineno": 5173, @@ -45329,8 +45329,8 @@ "comment": "", "meta": { "range": [ - 233004, - 233036 + 232982, + 233014 ], "filename": "astronomy.js", "lineno": 5174, @@ -45354,8 +45354,8 @@ "comment": "", "meta": { "range": [ - 233073, - 233099 + 233051, + 233077 ], "filename": "astronomy.js", "lineno": 5176, @@ -45380,8 +45380,8 @@ "comment": "", "meta": { "range": [ - 233084, - 233099 + 233062, + 233077 ], "filename": "astronomy.js", "lineno": 5176, @@ -45406,8 +45406,8 @@ "comment": "", "meta": { "range": [ - 233177, - 233192 + 233155, + 233170 ], "filename": "astronomy.js", "lineno": 5180, @@ -45432,8 +45432,8 @@ "comment": "", "meta": { "range": [ - 233210, - 233222 + 233188, + 233200 ], "filename": "astronomy.js", "lineno": 5181, @@ -45458,8 +45458,8 @@ "comment": "", "meta": { "range": [ - 233289, - 233304 + 233267, + 233282 ], "filename": "astronomy.js", "lineno": 5184, @@ -45484,8 +45484,8 @@ "comment": "", "meta": { "range": [ - 233322, - 233334 + 233300, + 233312 ], "filename": "astronomy.js", "lineno": 5185, @@ -45510,8 +45510,8 @@ "comment": "", "meta": { "range": [ - 233376, - 233455 + 233354, + 233433 ], "filename": "astronomy.js", "lineno": 5189, @@ -45535,8 +45535,8 @@ "comment": "", "meta": { "range": [ - 233467, - 233544 + 233445, + 233522 ], "filename": "astronomy.js", "lineno": 5190, @@ -45560,8 +45560,8 @@ "comment": "/**\n * @brief Finds the next perihelion or aphelion of a planet.\n *\n * Finds the date and time of a planet's perihelion (closest approach to the Sun)\n * or aphelion (farthest distance from the Sun) after a given time.\n *\n * Given a date and time to start the search in `startTime`, this function finds the\n * next date and time that the center of the specified planet reaches the closest or farthest point\n * in its orbit with respect to the center of the Sun, whichever comes first\n * after `startTime`.\n *\n * The closest point is called *perihelion* and the farthest point is called *aphelion*.\n * The word *apsis* refers to either event.\n *\n * To iterate through consecutive alternating perihelion and aphelion events,\n * call `SearchPlanetApsis` once, then use the return value to call\n * {@link NextPlanetApsis}. After that, keep feeding the previous return value\n * from `NextPlanetApsis` into another call of `NextPlanetApsis`\n * as many times as desired.\n *\n * @param {Body} body\n * The planet for which to find the next perihelion/aphelion event.\n * Not allowed to be `\"Sun\"` or `\"Moon\"`.\n *\n * @param {AstroTime} startTime\n * The date and time at which to start searching for the next perihelion or aphelion.\n *\n * @returns {Apsis}\n * The next perihelion or aphelion that occurs after `startTime`.\n */", "meta": { "range": [ - 235201, - 237638 + 235179, + 237616 ], "filename": "astronomy.js", "lineno": 5230, @@ -45638,8 +45638,8 @@ "comment": "", "meta": { "range": [ - 235361, - 235629 + 235339, + 235607 ], "filename": "astronomy.js", "lineno": 5233, @@ -45673,8 +45673,8 @@ "comment": "", "meta": { "range": [ - 235404, - 235414 + 235382, + 235392 ], "filename": "astronomy.js", "lineno": 5234, @@ -45698,8 +45698,8 @@ "comment": "", "meta": { "range": [ - 235428, - 235451 + 235406, + 235429 ], "filename": "astronomy.js", "lineno": 5235, @@ -45723,8 +45723,8 @@ "comment": "", "meta": { "range": [ - 235465, - 235488 + 235443, + 235466 ], "filename": "astronomy.js", "lineno": 5236, @@ -45748,8 +45748,8 @@ "comment": "", "meta": { "range": [ - 235502, - 235530 + 235480, + 235508 ], "filename": "astronomy.js", "lineno": 5237, @@ -45773,8 +45773,8 @@ "comment": "", "meta": { "range": [ - 235544, - 235572 + 235522, + 235550 ], "filename": "astronomy.js", "lineno": 5238, @@ -45798,8 +45798,8 @@ "comment": "", "meta": { "range": [ - 235586, - 235604 + 235564, + 235582 ], "filename": "astronomy.js", "lineno": 5239, @@ -45823,8 +45823,8 @@ "comment": "", "meta": { "range": [ - 235634, - 235703 + 235612, + 235681 ], "filename": "astronomy.js", "lineno": 5242, @@ -45850,8 +45850,8 @@ "comment": "", "meta": { "range": [ - 235714, - 235760 + 235692, + 235738 ], "filename": "astronomy.js", "lineno": 5245, @@ -45875,8 +45875,8 @@ "comment": "", "meta": { "range": [ - 235772, - 235807 + 235750, + 235785 ], "filename": "astronomy.js", "lineno": 5246, @@ -45900,8 +45900,8 @@ "comment": "", "meta": { "range": [ - 235817, - 235831 + 235795, + 235809 ], "filename": "astronomy.js", "lineno": 5247, @@ -45925,8 +45925,8 @@ "comment": "", "meta": { "range": [ - 235841, - 235864 + 235819, + 235842 ], "filename": "astronomy.js", "lineno": 5248, @@ -45950,8 +45950,8 @@ "comment": "", "meta": { "range": [ - 235879, - 235887 + 235857, + 235865 ], "filename": "astronomy.js", "lineno": 5249, @@ -45975,8 +45975,8 @@ "comment": "", "meta": { "range": [ - 235957, - 235983 + 235935, + 235961 ], "filename": "astronomy.js", "lineno": 5250, @@ -46000,8 +46000,8 @@ "comment": "", "meta": { "range": [ - 235999, - 236022 + 235977, + 236000 ], "filename": "astronomy.js", "lineno": 5251, @@ -46025,8 +46025,8 @@ "comment": "", "meta": { "range": [ - 236286, - 236296 + 236264, + 236274 ], "filename": "astronomy.js", "lineno": 5256, @@ -46048,8 +46048,8 @@ "comment": "", "meta": { "range": [ - 236314, - 236318 + 236292, + 236296 ], "filename": "astronomy.js", "lineno": 5257, @@ -46071,8 +46071,8 @@ "comment": "", "meta": { "range": [ - 236549, - 236576 + 236527, + 236554 ], "filename": "astronomy.js", "lineno": 5261, @@ -46097,8 +46097,8 @@ "comment": "", "meta": { "range": [ - 236594, - 236602 + 236572, + 236580 ], "filename": "astronomy.js", "lineno": 5262, @@ -46123,8 +46123,8 @@ "comment": "", "meta": { "range": [ - 236864, - 236891 + 236842, + 236869 ], "filename": "astronomy.js", "lineno": 5267, @@ -46149,8 +46149,8 @@ "comment": "", "meta": { "range": [ - 236909, - 236917 + 236887, + 236895 ], "filename": "astronomy.js", "lineno": 5268, @@ -46175,8 +46175,8 @@ "comment": "", "meta": { "range": [ - 237171, - 237206 + 237149, + 237184 ], "filename": "astronomy.js", "lineno": 5274, @@ -46200,8 +46200,8 @@ "comment": "", "meta": { "range": [ - 237335, - 237369 + 237313, + 237347 ], "filename": "astronomy.js", "lineno": 5277, @@ -46225,8 +46225,8 @@ "comment": "", "meta": { "range": [ - 237516, - 237523 + 237494, + 237501 ], "filename": "astronomy.js", "lineno": 5281, @@ -46251,8 +46251,8 @@ "comment": "", "meta": { "range": [ - 237533, - 237540 + 237511, + 237518 ], "filename": "astronomy.js", "lineno": 5282, @@ -46277,8 +46277,8 @@ "comment": "", "meta": { "range": [ - 237639, - 237684 + 237617, + 237662 ], "filename": "astronomy.js", "lineno": 5286, @@ -46301,8 +46301,8 @@ "comment": "/**\n * @brief Finds the next planetary perihelion or aphelion event in a series.\n *\n * This function requires an {@link Apsis} value obtained from a call\n * to {@link SearchPlanetApsis} or `NextPlanetApsis`.\n * Given an aphelion event, this function finds the next perihelion event, and vice versa.\n * See {@link SearchPlanetApsis} for more details.\n *\n * @param {Body} body\n * The planet for which to find the next perihelion/aphelion event.\n * Not allowed to be `\"Sun\"` or `\"Moon\"`.\n * Must match the body passed into the call that produced the `apsis` parameter.\n *\n * @param {Apsis} apsis\n * An apsis event obtained from a call to {@link SearchPlanetApsis} or `NextPlanetApsis`.\n *\n * @returns {Apsis}\n * Same as the return value for {@link SearchPlanetApsis}.\n */", "meta": { "range": [ - 238480, - 239055 + 238458, + 239033 ], "filename": "astronomy.js", "lineno": 5306, @@ -46369,8 +46369,8 @@ "comment": "", "meta": { "range": [ - 238687, - 238727 + 238665, + 238705 ], "filename": "astronomy.js", "lineno": 5310, @@ -46394,8 +46394,8 @@ "comment": "", "meta": { "range": [ - 238739, - 238770 + 238717, + 238748 ], "filename": "astronomy.js", "lineno": 5311, @@ -46419,8 +46419,8 @@ "comment": "", "meta": { "range": [ - 238782, - 238818 + 238760, + 238796 ], "filename": "astronomy.js", "lineno": 5312, @@ -46444,8 +46444,8 @@ "comment": "", "meta": { "range": [ - 239056, - 239097 + 239034, + 239075 ], "filename": "astronomy.js", "lineno": 5318, @@ -46468,8 +46468,8 @@ "comment": "/**\n * @brief Calculates the inverse of a rotation matrix.\n *\n * Given a rotation matrix that performs some coordinate transform,\n * this function returns the matrix that reverses that trasnform.\n *\n * @param {RotationMatrix} rotation\n * The rotation matrix to be inverted.\n *\n * @returns {RotationMatrix}\n * The inverse rotation matrix.\n */", "meta": { "range": [ - 239451, - 239738 + 239429, + 239716 ], "filename": "astronomy.js", "lineno": 5331, @@ -46521,8 +46521,8 @@ "comment": "", "meta": { "range": [ - 239739, - 239780 + 239717, + 239758 ], "filename": "astronomy.js", "lineno": 5338, @@ -46545,8 +46545,8 @@ "comment": "/**\n * @brief Creates a rotation based on applying one rotation followed by another.\n *\n * Given two rotation matrices, returns a combined rotation matrix that is\n * equivalent to rotating based on the first matrix, followed by the second.\n *\n * @param {RotationMatrix} a\n * The first rotation to apply.\n *\n * @param {RotationMatrix} b\n * The second rotation to apply.\n *\n * @returns {RotationMatrix}\n * The combined rotation matrix.\n */", "meta": { "range": [ - 240235, - 241538 + 240213, + 241516 ], "filename": "astronomy.js", "lineno": 5354, @@ -46608,8 +46608,8 @@ "comment": "", "meta": { "range": [ - 241539, - 241580 + 241517, + 241558 ], "filename": "astronomy.js", "lineno": 5380, @@ -46632,8 +46632,8 @@ "comment": "/**\n * @brief Creates an identity rotation matrix.\n *\n * Returns a rotation matrix that has no effect on orientation.\n * This matrix can be the starting point for other operations,\n * such as using a series of calls to {@link Pivot} to\n * create a custom rotation matrix.\n *\n * @returns {RotationMatrix}\n * The identity matrix.\n */", "meta": { "range": [ - 241919, - 242044 + 241897, + 242022 ], "filename": "astronomy.js", "lineno": 5392, @@ -46673,8 +46673,8 @@ "comment": "", "meta": { "range": [ - 242045, - 242084 + 242023, + 242062 ], "filename": "astronomy.js", "lineno": 5399, @@ -46697,8 +46697,8 @@ "comment": "/**\n* @brief Re-orients a rotation matrix by pivoting it by an angle around one of its axes.\n*\n* Given a rotation matrix, a selected coordinate axis, and an angle in degrees,\n* this function pivots the rotation matrix by that angle around that coordinate axis.\n*\n* For example, if you have rotation matrix that converts ecliptic coordinates (ECL)\n* to horizontal coordinates (HOR), but you really want to convert ECL to the orientation\n* of a telescope camera pointed at a given body, you can use `Astronomy_Pivot` twice:\n* (1) pivot around the zenith axis by the body's azimuth, then (2) pivot around the\n* western axis by the body's altitude angle. The resulting rotation matrix will then\n* reorient ECL coordinates to the orientation of your telescope camera.\n*\n* @param {RotationMatrix} rotation\n* The input rotation matrix.\n*\n* @param {number} axis\n* An integer that selects which coordinate axis to rotate around:\n* 0 = x, 1 = y, 2 = z. Any other value will cause an exception.\n*\n* @param {number} angle\n* An angle in degrees indicating the amount of rotation around the specified axis.\n* Positive angles indicate rotation counterclockwise as seen from the positive\n* direction along that axis, looking towards the origin point of the orientation system.\n* Any finite number of degrees is allowed, but best precision will result from\n* keeping `angle` in the range [-360, +360].\n*\n* @returns {RotationMatrix}\n* A pivoted matrix object.\n*/", "meta": { "range": [ - 243576, - 244789 + 243554, + 244767 ], "filename": "astronomy.js", "lineno": 5430, @@ -46780,8 +46780,8 @@ "comment": "", "meta": { "range": [ - 243777, - 243824 + 243755, + 243802 ], "filename": "astronomy.js", "lineno": 5434, @@ -46805,8 +46805,8 @@ "comment": "", "meta": { "range": [ - 243836, - 243857 + 243814, + 243835 ], "filename": "astronomy.js", "lineno": 5435, @@ -46830,8 +46830,8 @@ "comment": "", "meta": { "range": [ - 243869, - 243890 + 243847, + 243868 ], "filename": "astronomy.js", "lineno": 5436, @@ -46855,8 +46855,8 @@ "comment": "", "meta": { "range": [ - 244135, - 244153 + 244113, + 244131 ], "filename": "astronomy.js", "lineno": 5443, @@ -46880,8 +46880,8 @@ "comment": "", "meta": { "range": [ - 244165, - 244183 + 244143, + 244161 ], "filename": "astronomy.js", "lineno": 5444, @@ -46905,8 +46905,8 @@ "comment": "", "meta": { "range": [ - 244195, - 244203 + 244173, + 244181 ], "filename": "astronomy.js", "lineno": 5445, @@ -46930,8 +46930,8 @@ "comment": "", "meta": { "range": [ - 244213, - 244252 + 244191, + 244230 ], "filename": "astronomy.js", "lineno": 5446, @@ -46955,8 +46955,8 @@ "comment": "", "meta": { "range": [ - 244258, - 244317 + 244236, + 244295 ], "filename": "astronomy.js", "lineno": 5447, @@ -46981,8 +46981,8 @@ "comment": "", "meta": { "range": [ - 244323, - 244382 + 244301, + 244360 ], "filename": "astronomy.js", "lineno": 5448, @@ -47007,8 +47007,8 @@ "comment": "", "meta": { "range": [ - 244388, - 244418 + 244366, + 244396 ], "filename": "astronomy.js", "lineno": 5449, @@ -47033,8 +47033,8 @@ "comment": "", "meta": { "range": [ - 244424, - 244483 + 244402, + 244461 ], "filename": "astronomy.js", "lineno": 5450, @@ -47059,8 +47059,8 @@ "comment": "", "meta": { "range": [ - 244489, - 244548 + 244467, + 244526 ], "filename": "astronomy.js", "lineno": 5451, @@ -47085,8 +47085,8 @@ "comment": "", "meta": { "range": [ - 244554, - 244584 + 244532, + 244562 ], "filename": "astronomy.js", "lineno": 5452, @@ -47111,8 +47111,8 @@ "comment": "", "meta": { "range": [ - 244590, - 244649 + 244568, + 244627 ], "filename": "astronomy.js", "lineno": 5453, @@ -47137,8 +47137,8 @@ "comment": "", "meta": { "range": [ - 244655, - 244714 + 244633, + 244692 ], "filename": "astronomy.js", "lineno": 5454, @@ -47163,8 +47163,8 @@ "comment": "", "meta": { "range": [ - 244720, - 244750 + 244698, + 244728 ], "filename": "astronomy.js", "lineno": 5455, @@ -47189,8 +47189,8 @@ "comment": "", "meta": { "range": [ - 244790, - 244811 + 244768, + 244789 ], "filename": "astronomy.js", "lineno": 5458, @@ -47213,8 +47213,8 @@ "comment": "/**\n * @brief Converts spherical coordinates to Cartesian coordinates.\n *\n * Given spherical coordinates and a time at which they are valid,\n * returns a vector of Cartesian coordinates. The returned value\n * includes the time, as required by `AstroTime`.\n *\n * @param {Spherical} sphere\n * Spherical coordinates to be converted.\n *\n * @param {AstroTime} time\n * The time that should be included in the returned vector.\n *\n * @returns {Vector}\n * The vector form of the supplied spherical coordinates.\n */", "meta": { "range": [ - 245334, - 245644 + 245312, + 245622 ], "filename": "astronomy.js", "lineno": 5475, @@ -47281,8 +47281,8 @@ "comment": "", "meta": { "range": [ - 245386, - 245423 + 245364, + 245401 ], "filename": "astronomy.js", "lineno": 5476, @@ -47306,8 +47306,8 @@ "comment": "", "meta": { "range": [ - 245435, - 245472 + 245413, + 245450 ], "filename": "astronomy.js", "lineno": 5477, @@ -47331,8 +47331,8 @@ "comment": "", "meta": { "range": [ - 245484, - 245524 + 245462, + 245502 ], "filename": "astronomy.js", "lineno": 5478, @@ -47356,8 +47356,8 @@ "comment": "", "meta": { "range": [ - 245645, - 245688 + 245623, + 245666 ], "filename": "astronomy.js", "lineno": 5481, @@ -47380,8 +47380,8 @@ "comment": "/**\n * @brief Given an equatorial vector, calculates equatorial angular coordinates.\n *\n * @param {Vector} vec\n * A vector in an equatorial coordinate system.\n *\n * @returns {EquatorialCoordinates}\n * Angular coordinates expressed in the same equatorial system as `vec`.\n */", "meta": { "range": [ - 245975, - 246137 + 245953, + 246115 ], "filename": "astronomy.js", "lineno": 5491, @@ -47436,8 +47436,8 @@ "comment": "", "meta": { "range": [ - 246019, - 246049 + 245997, + 246027 ], "filename": "astronomy.js", "lineno": 5492, @@ -47461,8 +47461,8 @@ "comment": "", "meta": { "range": [ - 246138, - 246183 + 246116, + 246161 ], "filename": "astronomy.js", "lineno": 5495, @@ -47485,8 +47485,8 @@ "comment": "/**\n * @brief Converts Cartesian coordinates to spherical coordinates.\n *\n * Given a Cartesian vector, returns latitude, longitude, and distance.\n *\n * @param {Vector} vector\n * Cartesian vector to be converted to spherical coordinates.\n *\n * @returns {Spherical}\n * Spherical coordinates that are equivalent to the given vector.\n */", "meta": { "range": [ - 246529, - 247131 + 246507, + 247109 ], "filename": "astronomy.js", "lineno": 5507, @@ -47544,8 +47544,8 @@ "comment": "", "meta": { "range": [ - 246575, - 246625 + 246553, + 246603 ], "filename": "astronomy.js", "lineno": 5508, @@ -47569,8 +47569,8 @@ "comment": "", "meta": { "range": [ - 246637, - 246683 + 246615, + 246661 ], "filename": "astronomy.js", "lineno": 5509, @@ -47594,8 +47594,8 @@ "comment": "", "meta": { "range": [ - 246693, - 246696 + 246671, + 246674 ], "filename": "astronomy.js", "lineno": 5510, @@ -47617,8 +47617,8 @@ "comment": "", "meta": { "range": [ - 246698, - 246701 + 246676, + 246679 ], "filename": "astronomy.js", "lineno": 5510, @@ -47640,8 +47640,8 @@ "comment": "", "meta": { "range": [ - 246820, - 246829 + 246798, + 246807 ], "filename": "astronomy.js", "lineno": 5514, @@ -47666,8 +47666,8 @@ "comment": "", "meta": { "range": [ - 246839, - 246877 + 246817, + 246855 ], "filename": "astronomy.js", "lineno": 5515, @@ -47692,8 +47692,8 @@ "comment": "", "meta": { "range": [ - 246904, - 246958 + 246882, + 246936 ], "filename": "astronomy.js", "lineno": 5518, @@ -47718,8 +47718,8 @@ "comment": "", "meta": { "range": [ - 246995, - 247007 + 246973, + 246985 ], "filename": "astronomy.js", "lineno": 5520, @@ -47744,8 +47744,8 @@ "comment": "", "meta": { "range": [ - 247017, - 247080 + 246995, + 247058 ], "filename": "astronomy.js", "lineno": 5521, @@ -47770,8 +47770,8 @@ "comment": "", "meta": { "range": [ - 247132, - 247175 + 247110, + 247153 ], "filename": "astronomy.js", "lineno": 5525, @@ -47794,8 +47794,8 @@ "comment": "", "meta": { "range": [ - 247177, - 247338 + 247155, + 247316 ], "filename": "astronomy.js", "lineno": 5526, @@ -47823,8 +47823,8 @@ "comment": "", "meta": { "range": [ - 247219, - 247234 + 247197, + 247212 ], "filename": "astronomy.js", "lineno": 5527, @@ -47849,8 +47849,8 @@ "comment": "", "meta": { "range": [ - 247265, - 247276 + 247243, + 247254 ], "filename": "astronomy.js", "lineno": 5529, @@ -47875,8 +47875,8 @@ "comment": "", "meta": { "range": [ - 247309, - 247320 + 247287, + 247298 ], "filename": "astronomy.js", "lineno": 5531, @@ -47901,8 +47901,8 @@ "comment": "/**\n * @brief Converts Cartesian coordinates to horizontal coordinates.\n *\n * Given a horizontal Cartesian vector, returns horizontal azimuth and altitude.\n *\n * *IMPORTANT:* This function differs from {@link SphereFromVector} in two ways:\n * - `SphereFromVector` returns a `lon` value that represents azimuth defined counterclockwise\n * from north (e.g., west = +90), but this function represents a clockwise rotation\n * (e.g., east = +90). The difference is because `SphereFromVector` is intended\n * to preserve the vector \"right-hand rule\", while this function defines azimuth in a more\n * traditional way as used in navigation and cartography.\n * - This function optionally corrects for atmospheric refraction, while `SphereFromVector` does not.\n *\n * The returned object contains the azimuth in `lon`.\n * It is measured in degrees clockwise from north: east = +90 degrees, west = +270 degrees.\n *\n * The altitude is stored in `lat`.\n *\n * The distance to the observed object is stored in `dist`,\n * and is expressed in astronomical units (AU).\n *\n * @param {Vector} vector\n * Cartesian vector to be converted to horizontal coordinates.\n *\n * @param {string} refraction\n * `\"normal\"`: correct altitude for atmospheric refraction (recommended).\n * `\"jplhor\"`: for JPL Horizons compatibility testing only; not recommended for normal use.\n * `null`: no atmospheric refraction correction is performed.\n *\n * @returns {Spherical}\n */", "meta": { "range": [ - 248800, - 249021 + 248778, + 248999 ], "filename": "astronomy.js", "lineno": 5565, @@ -47968,8 +47968,8 @@ "comment": "", "meta": { "range": [ - 248859, - 248892 + 248837, + 248870 ], "filename": "astronomy.js", "lineno": 5566, @@ -47993,8 +47993,8 @@ "comment": "", "meta": { "range": [ - 248898, - 248945 + 248876, + 248923 ], "filename": "astronomy.js", "lineno": 5567, @@ -48019,8 +48019,8 @@ "comment": "", "meta": { "range": [ - 248951, - 248999 + 248929, + 248977 ], "filename": "astronomy.js", "lineno": 5568, @@ -48045,8 +48045,8 @@ "comment": "", "meta": { "range": [ - 249022, - 249067 + 249000, + 249045 ], "filename": "astronomy.js", "lineno": 5571, @@ -48069,8 +48069,8 @@ "comment": "/**\n * @brief Given apparent angular horizontal coordinates in `sphere`, calculate horizontal vector.\n *\n * @param {Spherical} sphere\n * A structure that contains apparent horizontal coordinates:\n * `lat` holds the refracted azimuth angle,\n * `lon` holds the azimuth in degrees clockwise from north,\n * and `dist` holds the distance from the observer to the object in AU.\n *\n * @param {AstroTime} time\n * The date and time of the observation. This is needed because the returned\n * vector object requires a valid time value when passed to certain other functions.\n *\n * @param {string} refraction\n * `\"normal\"`: correct altitude for atmospheric refraction (recommended).\n * `\"jplhor\"`: for JPL Horizons compatibility testing only; not recommended for normal use.\n * `null`: no atmospheric refraction correction is performed.\n *\n * @returns {Vector}\n * A vector in the horizontal system: `x` = north, `y` = west, and `z` = zenith (up).\n */", "meta": { "range": [ - 250058, - 250466 + 250036, + 250444 ], "filename": "astronomy.js", "lineno": 5593, @@ -48147,8 +48147,8 @@ "comment": "", "meta": { "range": [ - 250207, - 250247 + 250185, + 250225 ], "filename": "astronomy.js", "lineno": 5595, @@ -48172,8 +48172,8 @@ "comment": "", "meta": { "range": [ - 250301, - 250361 + 250279, + 250339 ], "filename": "astronomy.js", "lineno": 5597, @@ -48197,8 +48197,8 @@ "comment": "", "meta": { "range": [ - 250373, - 250419 + 250351, + 250397 ], "filename": "astronomy.js", "lineno": 5598, @@ -48222,8 +48222,8 @@ "comment": "", "meta": { "range": [ - 250467, - 250512 + 250445, + 250490 ], "filename": "astronomy.js", "lineno": 5601, @@ -48246,8 +48246,8 @@ "comment": "/**\n * @brief Calculates the amount of \"lift\" to an altitude angle caused by atmospheric refraction.\n *\n * Given an altitude angle and a refraction option, calculates\n * the amount of \"lift\" caused by atmospheric refraction.\n * This is the number of degrees higher in the sky an object appears\n * due to the lensing of the Earth's atmosphere.\n *\n * @param {string} refraction\n * `\"normal\"`: correct altitude for atmospheric refraction (recommended).\n * `\"jplhor\"`: for JPL Horizons compatibility testing only; not recommended for normal use.\n * `null`: no atmospheric refraction correction is performed.\n *\n * @param {number} altitude\n * An altitude angle in a horizontal coordinate system. Must be a value between -90 and +90.\n *\n * @returns {number}\n * The angular adjustment in degrees to be added to the altitude angle to correct for atmospheric lensing.\n */", "meta": { "range": [ - 251402, - 253082 + 251380, + 253060 ], "filename": "astronomy.js", "lineno": 5621, @@ -48313,8 +48313,8 @@ "comment": "", "meta": { "range": [ - 251454, - 251458 + 251432, + 251436 ], "filename": "astronomy.js", "lineno": 5622, @@ -48336,8 +48336,8 @@ "comment": "", "meta": { "range": [ - 252287, - 252300 + 252265, + 252278 ], "filename": "astronomy.js", "lineno": 5635, @@ -48361,8 +48361,8 @@ "comment": "", "meta": { "range": [ - 252337, - 252346 + 252315, + 252324 ], "filename": "astronomy.js", "lineno": 5637, @@ -48387,8 +48387,8 @@ "comment": "", "meta": { "range": [ - 252356, - 252432 + 252334, + 252410 ], "filename": "astronomy.js", "lineno": 5638, @@ -48413,8 +48413,8 @@ "comment": "", "meta": { "range": [ - 252826, - 252858 + 252804, + 252836 ], "filename": "astronomy.js", "lineno": 5644, @@ -48439,8 +48439,8 @@ "comment": "", "meta": { "range": [ - 252971, - 252981 + 252949, + 252959 ], "filename": "astronomy.js", "lineno": 5649, @@ -48465,8 +48465,8 @@ "comment": "", "meta": { "range": [ - 253083, - 253114 + 253061, + 253092 ], "filename": "astronomy.js", "lineno": 5656, @@ -48489,8 +48489,8 @@ "comment": "/**\n * @brief Calculates the inverse of an atmospheric refraction angle.\n *\n * Given an observed altitude angle that includes atmospheric refraction,\n * calculate the negative angular correction to obtain the unrefracted\n * altitude. This is useful for cases where observed horizontal\n * coordinates are to be converted to another orientation system,\n * but refraction first must be removed from the observed position.\n *\n * @param {string} refraction\n * `\"normal\"`: correct altitude for atmospheric refraction (recommended).\n * `\"jplhor\"`: for JPL Horizons compatibility testing only; not recommended for normal use.\n * `null`: no atmospheric refraction correction is performed.\n *\n * @param {number} bent_altitude\n * The apparent altitude that includes atmospheric refraction.\n *\n * @returns {number}\n * The angular adjustment in degrees to be added to the\n * altitude angle to correct for atmospheric lensing.\n * This will be less than or equal to zero.\n */", "meta": { "range": [ - 254112, - 254705 + 254090, + 254683 ], "filename": "astronomy.js", "lineno": 5679, @@ -48556,8 +48556,8 @@ "comment": "", "meta": { "range": [ - 254390, - 254454 + 254368, + 254432 ], "filename": "astronomy.js", "lineno": 5683, @@ -48581,8 +48581,8 @@ "comment": "", "meta": { "range": [ - 254519, - 254587 + 254497, + 254565 ], "filename": "astronomy.js", "lineno": 5686, @@ -48606,8 +48606,8 @@ "comment": "", "meta": { "range": [ - 254680, - 254696 + 254658, + 254674 ], "filename": "astronomy.js", "lineno": 5689, @@ -48632,8 +48632,8 @@ "comment": "", "meta": { "range": [ - 254706, - 254751 + 254684, + 254729 ], "filename": "astronomy.js", "lineno": 5692, @@ -48656,8 +48656,8 @@ "comment": "/**\n * @brief Applies a rotation to a vector, yielding a rotated vector.\n *\n * This function transforms a vector in one orientation to a vector\n * in another orientation.\n *\n * @param {RotationMatrix} rotation\n * A rotation matrix that specifies how the orientation of the vector is to be changed.\n *\n * @param {Vector} vector\n * The vector whose orientation is to be changed.\n *\n * @returns {Vector}\n * A vector in the orientation specified by `rotation`.\n */", "meta": { "range": [ - 255229, - 255590 + 255207, + 255568 ], "filename": "astronomy.js", "lineno": 5708, @@ -48719,8 +48719,8 @@ "comment": "", "meta": { "range": [ - 255591, - 255626 + 255569, + 255604 ], "filename": "astronomy.js", "lineno": 5711, @@ -48743,8 +48743,8 @@ "comment": "/**\n * @brief Applies a rotation to a state vector, yielding a rotated vector.\n *\n * This function transforms a state vector in one orientation to a vector\n * in another orientation.\n *\n * @param {RotationMatrix} rotation\n * A rotation matrix that specifies how the orientation of the state vector is to be changed.\n *\n * @param {StateVector} state\n * The state vector whose orientation is to be changed.\n * Both the position and velocity components are transformed.\n *\n * @return {StateVector}\n * A state vector in the orientation specified by `rotation`.\n */", "meta": { "range": [ - 256209, - 256848 + 256187, + 256826 ], "filename": "astronomy.js", "lineno": 5728, @@ -48806,8 +48806,8 @@ "comment": "", "meta": { "range": [ - 256849, - 256882 + 256827, + 256860 ], "filename": "astronomy.js", "lineno": 5731, @@ -48830,8 +48830,8 @@ "comment": "/**\n * @brief Calculates a rotation matrix from equatorial J2000 (EQJ) to ecliptic J2000 (ECL).\n *\n * This is one of the family of functions that returns a rotation matrix\n * for converting from one orientation to another.\n * Source: EQJ = equatorial system, using equator at J2000 epoch.\n * Target: ECL = ecliptic system, using equator at J2000 epoch.\n *\n * @returns {RotationMatrix}\n * A rotation matrix that converts EQJ to ECL.\n */", "meta": { "range": [ - 257325, - 257635 + 257303, + 257613 ], "filename": "astronomy.js", "lineno": 5743, @@ -48875,8 +48875,8 @@ "comment": "", "meta": { "range": [ - 257448, - 257470 + 257426, + 257448 ], "filename": "astronomy.js", "lineno": 5745, @@ -48900,8 +48900,8 @@ "comment": "", "meta": { "range": [ - 257496, - 257518 + 257474, + 257496 ], "filename": "astronomy.js", "lineno": 5746, @@ -48925,8 +48925,8 @@ "comment": "", "meta": { "range": [ - 257636, - 257679 + 257614, + 257657 ], "filename": "astronomy.js", "lineno": 5753, @@ -48949,8 +48949,8 @@ "comment": "/**\n * @brief Calculates a rotation matrix from ecliptic J2000 (ECL) to equatorial J2000 (EQJ).\n *\n * This is one of the family of functions that returns a rotation matrix\n * for converting from one orientation to another.\n * Source: ECL = ecliptic system, using equator at J2000 epoch.\n * Target: EQJ = equatorial system, using equator at J2000 epoch.\n *\n * @returns {RotationMatrix}\n * A rotation matrix that converts ECL to EQJ.\n */", "meta": { "range": [ - 258122, - 258432 + 258100, + 258410 ], "filename": "astronomy.js", "lineno": 5765, @@ -48994,8 +48994,8 @@ "comment": "", "meta": { "range": [ - 258245, - 258267 + 258223, + 258245 ], "filename": "astronomy.js", "lineno": 5767, @@ -49019,8 +49019,8 @@ "comment": "", "meta": { "range": [ - 258293, - 258315 + 258271, + 258293 ], "filename": "astronomy.js", "lineno": 5768, @@ -49044,8 +49044,8 @@ "comment": "", "meta": { "range": [ - 258433, - 258476 + 258411, + 258454 ], "filename": "astronomy.js", "lineno": 5775, @@ -49068,8 +49068,8 @@ "comment": "/**\n * @brief Calculates a rotation matrix from equatorial J2000 (EQJ) to equatorial of-date (EQD).\n *\n * This is one of the family of functions that returns a rotation matrix\n * for converting from one orientation to another.\n * Source: EQJ = equatorial system, using equator at J2000 epoch.\n * Target: EQD = equatorial system, using equator of the specified date/time.\n *\n * @param {FlexibleDateTime} time\n * The date and time at which the Earth's equator defines the target orientation.\n *\n * @returns {RotationMatrix}\n * A rotation matrix that converts EQJ to EQD at `time`.\n */", "meta": { "range": [ - 259071, - 259301 + 259049, + 259279 ], "filename": "astronomy.js", "lineno": 5790, @@ -49126,8 +49126,8 @@ "comment": "", "meta": { "range": [ - 259109, - 259130 + 259087, + 259108 ], "filename": "astronomy.js", "lineno": 5791, @@ -49152,8 +49152,8 @@ "comment": "", "meta": { "range": [ - 259142, - 259196 + 259120, + 259174 ], "filename": "astronomy.js", "lineno": 5792, @@ -49177,8 +49177,8 @@ "comment": "", "meta": { "range": [ - 259208, - 259259 + 259186, + 259237 ], "filename": "astronomy.js", "lineno": 5793, @@ -49202,8 +49202,8 @@ "comment": "", "meta": { "range": [ - 259302, - 259345 + 259280, + 259323 ], "filename": "astronomy.js", "lineno": 5796, @@ -49226,8 +49226,8 @@ "comment": "/**\n * @brief Calculates a rotation matrix from equatorial of-date (EQD) to equatorial J2000 (EQJ).\n *\n * This is one of the family of functions that returns a rotation matrix\n * for converting from one orientation to another.\n * Source: EQD = equatorial system, using equator of the specified date/time.\n * Target: EQJ = equatorial system, using equator at J2000 epoch.\n *\n * @param {FlexibleDateTime} time\n * The date and time at which the Earth's equator defines the source orientation.\n *\n * @returns {RotationMatrix}\n * A rotation matrix that converts EQD at `time` to EQJ.\n */", "meta": { "range": [ - 259940, - 260170 + 259918, + 260148 ], "filename": "astronomy.js", "lineno": 5811, @@ -49284,8 +49284,8 @@ "comment": "", "meta": { "range": [ - 259978, - 259999 + 259956, + 259977 ], "filename": "astronomy.js", "lineno": 5812, @@ -49310,8 +49310,8 @@ "comment": "", "meta": { "range": [ - 260011, - 260062 + 259989, + 260040 ], "filename": "astronomy.js", "lineno": 5813, @@ -49335,8 +49335,8 @@ "comment": "", "meta": { "range": [ - 260074, - 260128 + 260052, + 260106 ], "filename": "astronomy.js", "lineno": 5814, @@ -49360,8 +49360,8 @@ "comment": "", "meta": { "range": [ - 260171, - 260214 + 260149, + 260192 ], "filename": "astronomy.js", "lineno": 5817, @@ -49384,8 +49384,8 @@ "comment": "/**\n * @brief Calculates a rotation matrix from equatorial of-date (EQD) to horizontal (HOR).\n *\n * This is one of the family of functions that returns a rotation matrix\n * for converting from one orientation to another.\n * Source: EQD = equatorial system, using equator of the specified date/time.\n * Target: HOR = horizontal system.\n *\n * Use `HorizonFromVector` to convert the return value\n * to a traditional altitude/azimuth pair.\n *\n * @param {FlexibleDateTime} time\n * The date and time at which the Earth's equator applies.\n *\n * @param {Observer} observer\n * A location near the Earth's mean sea level that defines the observer's horizon.\n *\n * @returns {RotationMatrix}\n * A rotation matrix that converts EQD to HOR at `time` and for `observer`.\n * The components of the horizontal vector are:\n * x = north, y = west, z = zenith (straight up from the observer).\n * These components are chosen so that the \"right-hand rule\" works for the vector\n * and so that north represents the direction where azimuth = 0.\n */", "meta": { "range": [ - 261274, - 262069 + 261252, + 262047 ], "filename": "astronomy.js", "lineno": 5842, @@ -49461,8 +49461,8 @@ "comment": "", "meta": { "range": [ - 261322, - 261343 + 261300, + 261321 ], "filename": "astronomy.js", "lineno": 5843, @@ -49487,8 +49487,8 @@ "comment": "", "meta": { "range": [ - 261355, - 261409 + 261333, + 261387 ], "filename": "astronomy.js", "lineno": 5844, @@ -49512,8 +49512,8 @@ "comment": "", "meta": { "range": [ - 261421, - 261475 + 261399, + 261453 ], "filename": "astronomy.js", "lineno": 5845, @@ -49537,8 +49537,8 @@ "comment": "", "meta": { "range": [ - 261487, - 261542 + 261465, + 261520 ], "filename": "astronomy.js", "lineno": 5846, @@ -49562,8 +49562,8 @@ "comment": "", "meta": { "range": [ - 261554, - 261609 + 261532, + 261587 ], "filename": "astronomy.js", "lineno": 5847, @@ -49587,8 +49587,8 @@ "comment": "", "meta": { "range": [ - 261621, - 261669 + 261599, + 261647 ], "filename": "astronomy.js", "lineno": 5848, @@ -49612,8 +49612,8 @@ "comment": "", "meta": { "range": [ - 261681, - 261731 + 261659, + 261709 ], "filename": "astronomy.js", "lineno": 5849, @@ -49637,8 +49637,8 @@ "comment": "", "meta": { "range": [ - 261743, - 261769 + 261721, + 261747 ], "filename": "astronomy.js", "lineno": 5850, @@ -49662,8 +49662,8 @@ "comment": "", "meta": { "range": [ - 261781, - 261819 + 261759, + 261797 ], "filename": "astronomy.js", "lineno": 5851, @@ -49687,8 +49687,8 @@ "comment": "", "meta": { "range": [ - 261831, - 261857 + 261809, + 261835 ], "filename": "astronomy.js", "lineno": 5852, @@ -49712,8 +49712,8 @@ "comment": "", "meta": { "range": [ - 261869, - 261895 + 261847, + 261873 ], "filename": "astronomy.js", "lineno": 5853, @@ -49737,8 +49737,8 @@ "comment": "", "meta": { "range": [ - 261907, - 261933 + 261885, + 261911 ], "filename": "astronomy.js", "lineno": 5854, @@ -49762,8 +49762,8 @@ "comment": "", "meta": { "range": [ - 262070, - 262113 + 262048, + 262091 ], "filename": "astronomy.js", "lineno": 5861, @@ -49786,8 +49786,8 @@ "comment": "/**\n * @brief Calculates a rotation matrix from horizontal (HOR) to equatorial of-date (EQD).\n *\n * This is one of the family of functions that returns a rotation matrix\n * for converting from one orientation to another.\n * Source: HOR = horizontal system (x=North, y=West, z=Zenith).\n * Target: EQD = equatorial system, using equator of the specified date/time.\n *\n * @param {FlexibleDateTime} time\n * The date and time at which the Earth's equator applies.\n *\n * @param {Observer} observer\n * A location near the Earth's mean sea level that defines the observer's horizon.\n *\n * @returns {RotationMatrix}\n * A rotation matrix that converts HOR to EQD at `time` and for `observer`.\n */", "meta": { "range": [ - 262817, - 262945 + 262795, + 262923 ], "filename": "astronomy.js", "lineno": 5879, @@ -49852,8 +49852,8 @@ "comment": "", "meta": { "range": [ - 262871, - 262909 + 262849, + 262887 ], "filename": "astronomy.js", "lineno": 5880, @@ -49877,8 +49877,8 @@ "comment": "", "meta": { "range": [ - 262946, - 262989 + 262924, + 262967 ], "filename": "astronomy.js", "lineno": 5883, @@ -49901,8 +49901,8 @@ "comment": "/**\n * @brief Calculates a rotation matrix from horizontal (HOR) to J2000 equatorial (EQJ).\n *\n * This is one of the family of functions that returns a rotation matrix\n * for converting from one orientation to another.\n * Source: HOR = horizontal system (x=North, y=West, z=Zenith).\n * Target: EQJ = equatorial system, using equator at the J2000 epoch.\n *\n * @param {FlexibleDateTime} time\n * The date and time of the observation.\n *\n * @param {Observer} observer\n * A location near the Earth's mean sea level that defines the observer's horizon.\n *\n * @returns {RotationMatrix}\n * A rotation matrix that converts HOR to EQD at `time` and for `observer`.\n */", "meta": { "range": [ - 263665, - 263881 + 263643, + 263859 ], "filename": "astronomy.js", "lineno": 5901, @@ -49969,8 +49969,8 @@ "comment": "", "meta": { "range": [ - 263713, - 263734 + 263691, + 263712 ], "filename": "astronomy.js", "lineno": 5902, @@ -49995,8 +49995,8 @@ "comment": "", "meta": { "range": [ - 263746, - 263788 + 263724, + 263766 ], "filename": "astronomy.js", "lineno": 5903, @@ -50020,8 +50020,8 @@ "comment": "", "meta": { "range": [ - 263800, - 263832 + 263778, + 263810 ], "filename": "astronomy.js", "lineno": 5904, @@ -50045,8 +50045,8 @@ "comment": "", "meta": { "range": [ - 263882, - 263925 + 263860, + 263903 ], "filename": "astronomy.js", "lineno": 5907, @@ -50069,8 +50069,8 @@ "comment": "/**\n * @brief Calculates a rotation matrix from equatorial J2000 (EQJ) to horizontal (HOR).\n *\n * This is one of the family of functions that returns a rotation matrix\n * for converting from one orientation to another.\n * Source: EQJ = equatorial system, using the equator at the J2000 epoch.\n * Target: HOR = horizontal system.\n *\n * Use {@link HorizonFromVector} to convert the return value\n * to a traditional altitude/azimuth pair.\n *\n * @param {FlexibleDateTime} time\n * The date and time of the desired horizontal orientation.\n *\n * @param {Observer} observer\n * A location near the Earth's mean sea level that defines the observer's horizon.\n *\n * @return\n * A rotation matrix that converts EQJ to HOR at `time` and for `observer`.\n * The components of the horizontal vector are:\n * x = north, y = west, z = zenith (straight up from the observer).\n * These components are chosen so that the \"right-hand rule\" works for the vector\n * and so that north represents the direction where azimuth = 0.\n */", "meta": { "range": [ - 264968, - 265096 + 264946, + 265074 ], "filename": "astronomy.js", "lineno": 5932, @@ -50130,8 +50130,8 @@ "comment": "", "meta": { "range": [ - 265022, - 265060 + 265000, + 265038 ], "filename": "astronomy.js", "lineno": 5933, @@ -50155,8 +50155,8 @@ "comment": "", "meta": { "range": [ - 265097, - 265140 + 265075, + 265118 ], "filename": "astronomy.js", "lineno": 5936, @@ -50179,8 +50179,8 @@ "comment": "/**\n * @brief Calculates a rotation matrix from equatorial of-date (EQD) to ecliptic J2000 (ECL).\n *\n * This is one of the family of functions that returns a rotation matrix\n * for converting from one orientation to another.\n * Source: EQD = equatorial system, using equator of date.\n * Target: ECL = ecliptic system, using equator at J2000 epoch.\n *\n * @param {FlexibleDateTime} time\n * The date and time of the source equator.\n *\n * @returns {RotationMatrix}\n * A rotation matrix that converts EQD to ECL.\n */", "meta": { "range": [ - 265664, - 265829 + 265642, + 265807 ], "filename": "astronomy.js", "lineno": 5951, @@ -50236,8 +50236,8 @@ "comment": "", "meta": { "range": [ - 265708, - 265740 + 265686, + 265718 ], "filename": "astronomy.js", "lineno": 5952, @@ -50261,8 +50261,8 @@ "comment": "", "meta": { "range": [ - 265752, - 265780 + 265730, + 265758 ], "filename": "astronomy.js", "lineno": 5953, @@ -50286,8 +50286,8 @@ "comment": "", "meta": { "range": [ - 265830, - 265873 + 265808, + 265851 ], "filename": "astronomy.js", "lineno": 5956, @@ -50310,8 +50310,8 @@ "comment": "/**\n * @brief Calculates a rotation matrix from ecliptic J2000 (ECL) to equatorial of-date (EQD).\n *\n * This is one of the family of functions that returns a rotation matrix\n * for converting from one orientation to another.\n * Source: ECL = ecliptic system, using equator at J2000 epoch.\n * Target: EQD = equatorial system, using equator of date.\n *\n * @param {FlexibleDateTime} time\n * The date and time of the desired equator.\n *\n * @returns {RotationMatrix}\n * A rotation matrix that converts ECL to EQD.\n */", "meta": { "range": [ - 266398, - 266506 + 266376, + 266484 ], "filename": "astronomy.js", "lineno": 5971, @@ -50366,8 +50366,8 @@ "comment": "", "meta": { "range": [ - 266442, - 266470 + 266420, + 266448 ], "filename": "astronomy.js", "lineno": 5972, @@ -50391,8 +50391,8 @@ "comment": "", "meta": { "range": [ - 266507, - 266550 + 266485, + 266528 ], "filename": "astronomy.js", "lineno": 5975, @@ -50415,8 +50415,8 @@ "comment": "/**\n * @brief Calculates a rotation matrix from ecliptic J2000 (ECL) to horizontal (HOR).\n *\n * This is one of the family of functions that returns a rotation matrix\n * for converting from one orientation to another.\n * Source: ECL = ecliptic system, using equator at J2000 epoch.\n * Target: HOR = horizontal system.\n *\n * Use {@link HorizonFromVector} to convert the return value\n * to a traditional altitude/azimuth pair.\n *\n * @param {FlexibleDateTime} time\n * The date and time of the desired horizontal orientation.\n *\n * @param {Observer} observer\n * A location near the Earth's mean sea level that defines the observer's horizon.\n *\n * @returns {RotationMatrix}\n * A rotation matrix that converts ECL to HOR at `time` and for `observer`.\n * The components of the horizontal vector are:\n * x = north, y = west, z = zenith (straight up from the observer).\n * These components are chosen so that the \"right-hand rule\" works for the vector\n * and so that north represents the direction where azimuth = 0.\n */", "meta": { "range": [ - 267599, - 267815 + 267577, + 267793 ], "filename": "astronomy.js", "lineno": 6000, @@ -50483,8 +50483,8 @@ "comment": "", "meta": { "range": [ - 267647, - 267668 + 267625, + 267646 ], "filename": "astronomy.js", "lineno": 6001, @@ -50509,8 +50509,8 @@ "comment": "", "meta": { "range": [ - 267680, - 267712 + 267658, + 267690 ], "filename": "astronomy.js", "lineno": 6002, @@ -50534,8 +50534,8 @@ "comment": "", "meta": { "range": [ - 267724, - 267766 + 267702, + 267744 ], "filename": "astronomy.js", "lineno": 6003, @@ -50559,8 +50559,8 @@ "comment": "", "meta": { "range": [ - 267816, - 267859 + 267794, + 267837 ], "filename": "astronomy.js", "lineno": 6006, @@ -50583,8 +50583,8 @@ "comment": "/**\n * @brief Calculates a rotation matrix from horizontal (HOR) to ecliptic J2000 (ECL).\n *\n * This is one of the family of functions that returns a rotation matrix\n * for converting from one orientation to another.\n * Source: HOR = horizontal system.\n * Target: ECL = ecliptic system, using equator at J2000 epoch.\n *\n * @param {FlexibleDateTime} time\n * The date and time of the horizontal observation.\n *\n * @param {Observer} observer\n * The location of the horizontal observer.\n *\n * @returns {RotationMatrix}\n * A rotation matrix that converts HOR to ECL.\n */", "meta": { "range": [ - 268442, - 268570 + 268420, + 268548 ], "filename": "astronomy.js", "lineno": 6024, @@ -50649,8 +50649,8 @@ "comment": "", "meta": { "range": [ - 268496, - 268534 + 268474, + 268512 ], "filename": "astronomy.js", "lineno": 6025, @@ -50674,8 +50674,8 @@ "comment": "", "meta": { "range": [ - 268571, - 268614 + 268549, + 268592 ], "filename": "astronomy.js", "lineno": 6028, @@ -50698,8 +50698,8 @@ "comment": "/**\n * @brief Calculates a rotation matrix from equatorial J2000 (EQJ) to galactic (GAL).\n *\n * This is one of the family of functions that returns a rotation matrix\n * for converting from one orientation to another.\n * Source: EQJ = equatorial system, using the equator at the J2000 epoch.\n * Target: GAL = galactic system (IAU 1958 definition).\n *\n * @returns {RotationMatrix}\n * A rotation matrix that converts EQJ to GAL.\n */", "meta": { "range": [ - 269051, - 269487 + 269029, + 269465 ], "filename": "astronomy.js", "lineno": 6040, @@ -50739,8 +50739,8 @@ "comment": "", "meta": { "range": [ - 269488, - 269531 + 269466, + 269509 ], "filename": "astronomy.js", "lineno": 6050, @@ -50763,8 +50763,8 @@ "comment": "/**\n * @brief Calculates a rotation matrix from galactic (GAL) to equatorial J2000 (EQJ).\n *\n * This is one of the family of functions that returns a rotation matrix\n * for converting from one orientation to another.\n * Source: GAL = galactic system (IAU 1958 definition).\n * Target: EQJ = equatorial system, using the equator at the J2000 epoch.\n *\n * @returns {RotationMatrix}\n * A rotation matrix that converts GAL to EQJ.\n */", "meta": { "range": [ - 269968, - 270404 + 269946, + 270382 ], "filename": "astronomy.js", "lineno": 6062, @@ -50804,8 +50804,8 @@ "comment": "", "meta": { "range": [ - 270405, - 270448 + 270383, + 270426 ], "filename": "astronomy.js", "lineno": 6072, @@ -50828,8 +50828,8 @@ "comment": "", "meta": { "range": [ - 270456, - 273592 + 270434, + 273570 ], "filename": "astronomy.js", "lineno": 6073, @@ -50852,8 +50852,8 @@ "comment": "", "meta": { "range": [ - 273600, - 287673 + 273578, + 287651 ], "filename": "astronomy.js", "lineno": 6250, @@ -50876,8 +50876,8 @@ "comment": "", "meta": { "range": [ - 287679, - 287689 + 287657, + 287667 ], "filename": "astronomy.js", "lineno": 6965, @@ -50898,8 +50898,8 @@ "comment": "", "meta": { "range": [ - 287695, - 287704 + 287673, + 287682 ], "filename": "astronomy.js", "lineno": 6966, @@ -50920,8 +50920,8 @@ "comment": "/**\n * @brief Reports the constellation that a given celestial point lies within.\n *\n * @property {string} symbol\n * 3-character mnemonic symbol for the constellation, e.g. \"Ori\".\n *\n * @property {string} name\n * Full name of constellation, e.g. \"Orion\".\n *\n * @property {number} ra1875\n * Right ascension expressed in B1875 coordinates.\n *\n * @property {number} dec1875\n * Declination expressed in B1875 coordinates.\n */", "meta": { "range": [ - 288148, - 288348 + 288126, + 288326 ], "filename": "astronomy.js", "lineno": 6982, @@ -50994,8 +50994,8 @@ "comment": "", "meta": { "range": [ - 288178, - 288346 + 288156, + 288324 ], "filename": "astronomy.js", "lineno": 6983, @@ -51026,8 +51026,8 @@ "comment": "/**\n * @brief Reports the constellation that a given celestial point lies within.\n *\n * @property {string} symbol\n * 3-character mnemonic symbol for the constellation, e.g. \"Ori\".\n *\n * @property {string} name\n * Full name of constellation, e.g. \"Orion\".\n *\n * @property {number} ra1875\n * Right ascension expressed in B1875 coordinates.\n *\n * @property {number} dec1875\n * Declination expressed in B1875 coordinates.\n */", "meta": { "range": [ - 288148, - 288348 + 288126, + 288326 ], "filename": "astronomy.js", "lineno": 6982, @@ -51099,8 +51099,8 @@ "comment": "", "meta": { "range": [ - 288231, - 288251 + 288209, + 288229 ], "filename": "astronomy.js", "lineno": 6984, @@ -51124,8 +51124,8 @@ "comment": "", "meta": { "range": [ - 288261, - 288277 + 288239, + 288255 ], "filename": "astronomy.js", "lineno": 6985, @@ -51149,8 +51149,8 @@ "comment": "", "meta": { "range": [ - 288287, - 288307 + 288265, + 288285 ], "filename": "astronomy.js", "lineno": 6986, @@ -51174,8 +51174,8 @@ "comment": "", "meta": { "range": [ - 288317, - 288339 + 288295, + 288317 ], "filename": "astronomy.js", "lineno": 6987, @@ -51199,8 +51199,8 @@ "comment": "", "meta": { "range": [ - 288349, - 288394 + 288327, + 288372 ], "filename": "astronomy.js", "lineno": 6990, @@ -51223,8 +51223,8 @@ "comment": "/**\n * @brief Determines the constellation that contains the given point in the sky.\n *\n * Given J2000 equatorial (EQJ) coordinates of a point in the sky,\n * determines the constellation that contains that point.\n *\n * @param {number} ra\n * The right ascension (RA) of a point in the sky, using the J2000 equatorial system.\n *\n * @param {number} dec\n * The declination (DEC) of a point in the sky, using the J2000 equatorial system.\n *\n * @returns {ConstellationInfo}\n * An object that contains the 3-letter abbreviation and full name\n * of the constellation that contains the given (ra,dec), along with\n * the converted B1875 (ra,dec) for that point.\n */", "meta": { "range": [ - 289077, - 291265 + 289055, + 291243 ], "filename": "astronomy.js", "lineno": 7008, @@ -51302,8 +51302,8 @@ "comment": "", "meta": { "range": [ - 289310, - 289320 + 289288, + 289298 ], "filename": "astronomy.js", "lineno": 7014, @@ -51328,8 +51328,8 @@ "comment": "", "meta": { "range": [ - 289348, - 289358 + 289326, + 289336 ], "filename": "astronomy.js", "lineno": 7016, @@ -51354,8 +51354,8 @@ "comment": "", "meta": { "range": [ - 290134, - 290198 + 290112, + 290176 ], "filename": "astronomy.js", "lineno": 7030, @@ -51380,8 +51380,8 @@ "comment": "", "meta": { "range": [ - 290208, - 290236 + 290186, + 290214 ], "filename": "astronomy.js", "lineno": 7031, @@ -51406,8 +51406,8 @@ "comment": "", "meta": { "range": [ - 290302, - 290346 + 290280, + 290324 ], "filename": "astronomy.js", "lineno": 7034, @@ -51431,8 +51431,8 @@ "comment": "", "meta": { "range": [ - 290358, - 290404 + 290336, + 290382 ], "filename": "astronomy.js", "lineno": 7035, @@ -51456,8 +51456,8 @@ "comment": "", "meta": { "range": [ - 290416, - 290459 + 290394, + 290437 ], "filename": "astronomy.js", "lineno": 7036, @@ -51481,8 +51481,8 @@ "comment": "", "meta": { "range": [ - 290471, - 290507 + 290449, + 290485 ], "filename": "astronomy.js", "lineno": 7037, @@ -51506,8 +51506,8 @@ "comment": "", "meta": { "range": [ - 290584, - 290602 + 290562, + 290580 ], "filename": "astronomy.js", "lineno": 7039, @@ -51531,8 +51531,8 @@ "comment": "", "meta": { "range": [ - 290669, - 290681 + 290647, + 290659 ], "filename": "astronomy.js", "lineno": 7040, @@ -51556,8 +51556,8 @@ "comment": "", "meta": { "range": [ - 290758, - 290759 + 290736, + 290737 ], "filename": "astronomy.js", "lineno": 7041, @@ -51579,8 +51579,8 @@ "comment": "", "meta": { "range": [ - 290867, - 290882 + 290845, + 290860 ], "filename": "astronomy.js", "lineno": 7043, @@ -51604,8 +51604,8 @@ "comment": "", "meta": { "range": [ - 290898, - 290915 + 290876, + 290893 ], "filename": "astronomy.js", "lineno": 7044, @@ -51629,8 +51629,8 @@ "comment": "", "meta": { "range": [ - 290931, - 290948 + 290909, + 290926 ], "filename": "astronomy.js", "lineno": 7045, @@ -51654,8 +51654,8 @@ "comment": "", "meta": { "range": [ - 291047, - 291069 + 291025, + 291047 ], "filename": "astronomy.js", "lineno": 7047, @@ -51679,8 +51679,8 @@ "comment": "", "meta": { "range": [ - 291266, - 291303 + 291244, + 291281 ], "filename": "astronomy.js", "lineno": 7054, @@ -51703,8 +51703,8 @@ "comment": "/**\n * @brief Returns information about a lunar eclipse.\n *\n * Returned by {@link SearchLunarEclipse} or {@link NextLunarEclipse}\n * to report information about a lunar eclipse event.\n * When a lunar eclipse is found, it is classified as penumbral, partial, or total.\n * Penumbral eclipses are difficult to observe, because the moon is only slightly dimmed\n * by the Earth's penumbra; no part of the Moon touches the Earth's umbra.\n * Partial eclipses occur when part, but not all, of the Moon touches the Earth's umbra.\n * Total eclipses occur when the entire Moon passes into the Earth's umbra.\n *\n * The `kind` field thus holds one of the strings `\"penumbral\"`, `\"partial\"`,\n * or `\"total\"`, depending on the kind of lunar eclipse found.\n *\n * Field `peak` holds the date and time of the peak of the eclipse, when it is at its peak.\n *\n * Fields `sd_penum`, `sd_partial`, and `sd_total` hold the semi-duration of each phase\n * of the eclipse, which is half of the amount of time the eclipse spends in each\n * phase (expressed in minutes), or 0 if the eclipse never reaches that phase.\n * By converting from minutes to days, and subtracting/adding with `peak`, the caller\n * may determine the date and time of the beginning/end of each eclipse phase.\n *\n * @property {string} kind\n * The type of lunar eclipse found.\n *\n * @property {AstroTime} peak\n * The time of the eclipse at its peak.\n *\n * @property {number} sd_penum\n * The semi-duration of the penumbral phase in minutes.\n *\n * @property {number} sd_partial\n * The semi-duration of the penumbral phase in minutes, or 0.0 if none.\n *\n * @property {number} sd_total\n * The semi-duration of the penumbral phase in minutes, or 0.0 if none.\n *\n */", "meta": { "range": [ - 293033, - 293285 + 293011, + 293263 ], "filename": "astronomy.js", "lineno": 7093, @@ -51787,8 +51787,8 @@ "comment": "", "meta": { "range": [ - 293062, - 293283 + 293040, + 293261 ], "filename": "astronomy.js", "lineno": 7094, @@ -51820,8 +51820,8 @@ "comment": "/**\n * @brief Returns information about a lunar eclipse.\n *\n * Returned by {@link SearchLunarEclipse} or {@link NextLunarEclipse}\n * to report information about a lunar eclipse event.\n * When a lunar eclipse is found, it is classified as penumbral, partial, or total.\n * Penumbral eclipses are difficult to observe, because the moon is only slightly dimmed\n * by the Earth's penumbra; no part of the Moon touches the Earth's umbra.\n * Partial eclipses occur when part, but not all, of the Moon touches the Earth's umbra.\n * Total eclipses occur when the entire Moon passes into the Earth's umbra.\n *\n * The `kind` field thus holds one of the strings `\"penumbral\"`, `\"partial\"`,\n * or `\"total\"`, depending on the kind of lunar eclipse found.\n *\n * Field `peak` holds the date and time of the peak of the eclipse, when it is at its peak.\n *\n * Fields `sd_penum`, `sd_partial`, and `sd_total` hold the semi-duration of each phase\n * of the eclipse, which is half of the amount of time the eclipse spends in each\n * phase (expressed in minutes), or 0 if the eclipse never reaches that phase.\n * By converting from minutes to days, and subtracting/adding with `peak`, the caller\n * may determine the date and time of the beginning/end of each eclipse phase.\n *\n * @property {string} kind\n * The type of lunar eclipse found.\n *\n * @property {AstroTime} peak\n * The time of the eclipse at its peak.\n *\n * @property {number} sd_penum\n * The semi-duration of the penumbral phase in minutes.\n *\n * @property {number} sd_partial\n * The semi-duration of the penumbral phase in minutes, or 0.0 if none.\n *\n * @property {number} sd_total\n * The semi-duration of the penumbral phase in minutes, or 0.0 if none.\n *\n */", "meta": { "range": [ - 293033, - 293285 + 293011, + 293263 ], "filename": "astronomy.js", "lineno": 7093, @@ -51903,8 +51903,8 @@ "comment": "", "meta": { "range": [ - 293128, - 293144 + 293106, + 293122 ], "filename": "astronomy.js", "lineno": 7095, @@ -51928,8 +51928,8 @@ "comment": "", "meta": { "range": [ - 293154, - 293170 + 293132, + 293148 ], "filename": "astronomy.js", "lineno": 7096, @@ -51953,8 +51953,8 @@ "comment": "", "meta": { "range": [ - 293180, - 293204 + 293158, + 293182 ], "filename": "astronomy.js", "lineno": 7097, @@ -51978,8 +51978,8 @@ "comment": "", "meta": { "range": [ - 293214, - 293242 + 293192, + 293220 ], "filename": "astronomy.js", "lineno": 7098, @@ -52003,8 +52003,8 @@ "comment": "", "meta": { "range": [ - 293252, - 293276 + 293230, + 293254 ], "filename": "astronomy.js", "lineno": 7099, @@ -52028,8 +52028,8 @@ "comment": "", "meta": { "range": [ - 293286, - 293329 + 293264, + 293307 ], "filename": "astronomy.js", "lineno": 7102, @@ -52052,8 +52052,8 @@ "comment": "/**\n * @ignore\n *\n * @brief Represents the relative alignment of the Earth and another body, and their respective shadows.\n *\n * This is an internal data structure used to assist calculation of\n * lunar eclipses, solar eclipses, and transits of Mercury and Venus.\n *\n * Definitions:\n *\n * casting body = A body that casts a shadow of interest, possibly striking another body.\n *\n * receiving body = A body on which the shadow of another body might land.\n *\n * shadow axis = The line passing through the center of the Sun and the center of the casting body.\n *\n * shadow plane = The plane passing through the center of a receiving body,\n * and perpendicular to the shadow axis.\n *\n * @property {AstroTime} time\n * The time associated with the shadow calculation.\n *\n * @property {number} u\n * The distance [au] between the center of the casting body and the shadow plane.\n *\n * @property {number} r\n * The distance [km] between center of receiving body and the shadow axis.\n *\n * @property {number} k\n * The umbra radius [km] at the shadow plane.\n *\n * @property {number} p\n * The penumbra radius [km] at the shadow plane.\n *\n * @property {Vector} target\n * The location in space where we are interested in determining how close a shadow falls.\n * For example, when calculating lunar eclipses, `target` would be the center of the Moon\n * expressed in geocentric coordinates. Then we can evaluate how far the center of the Earth's\n * shadow cone approaches the center of the Moon.\n * The vector components are expressed in [au].\n *\n * @property {Vector} dir\n * The direction in space that the shadow points away from the center of a shadow-casting body.\n * This vector lies on the shadow axis and points away from the Sun.\n * In other words: the direction light from the Sun would be traveling,\n * except that the center of a body (Earth, Moon, Mercury, or Venus) is blocking it.\n * The distance units do not matter, because the vector will be normalized.\n */", "meta": { "range": [ - 295364, - 295599 + 295342, + 295577 ], "filename": "astronomy.js", "lineno": 7151, @@ -52157,8 +52157,8 @@ "comment": "", "meta": { "range": [ - 295387, - 295597 + 295365, + 295575 ], "filename": "astronomy.js", "lineno": 7152, @@ -52192,8 +52192,8 @@ "comment": "/**\n * @ignore\n *\n * @brief Represents the relative alignment of the Earth and another body, and their respective shadows.\n *\n * This is an internal data structure used to assist calculation of\n * lunar eclipses, solar eclipses, and transits of Mercury and Venus.\n *\n * Definitions:\n *\n * casting body = A body that casts a shadow of interest, possibly striking another body.\n *\n * receiving body = A body on which the shadow of another body might land.\n *\n * shadow axis = The line passing through the center of the Sun and the center of the casting body.\n *\n * shadow plane = The plane passing through the center of a receiving body,\n * and perpendicular to the shadow axis.\n *\n * @property {AstroTime} time\n * The time associated with the shadow calculation.\n *\n * @property {number} u\n * The distance [au] between the center of the casting body and the shadow plane.\n *\n * @property {number} r\n * The distance [km] between center of receiving body and the shadow axis.\n *\n * @property {number} k\n * The umbra radius [km] at the shadow plane.\n *\n * @property {number} p\n * The penumbra radius [km] at the shadow plane.\n *\n * @property {Vector} target\n * The location in space where we are interested in determining how close a shadow falls.\n * For example, when calculating lunar eclipses, `target` would be the center of the Moon\n * expressed in geocentric coordinates. Then we can evaluate how far the center of the Earth's\n * shadow cone approaches the center of the Moon.\n * The vector components are expressed in [au].\n *\n * @property {Vector} dir\n * The direction in space that the shadow points away from the center of a shadow-casting body.\n * This vector lies on the shadow axis and points away from the Sun.\n * In other words: the direction light from the Sun would be traveling,\n * except that the center of a body (Earth, Moon, Mercury, or Venus) is blocking it.\n * The distance units do not matter, because the vector will be normalized.\n */", "meta": { "range": [ - 295364, - 295599 + 295342, + 295577 ], "filename": "astronomy.js", "lineno": 7151, @@ -52296,8 +52296,8 @@ "comment": "", "meta": { "range": [ - 295440, - 295456 + 295418, + 295434 ], "filename": "astronomy.js", "lineno": 7153, @@ -52321,8 +52321,8 @@ "comment": "", "meta": { "range": [ - 295466, - 295476 + 295444, + 295454 ], "filename": "astronomy.js", "lineno": 7154, @@ -52346,8 +52346,8 @@ "comment": "", "meta": { "range": [ - 295486, - 295496 + 295464, + 295474 ], "filename": "astronomy.js", "lineno": 7155, @@ -52371,8 +52371,8 @@ "comment": "", "meta": { "range": [ - 295506, - 295516 + 295484, + 295494 ], "filename": "astronomy.js", "lineno": 7156, @@ -52396,8 +52396,8 @@ "comment": "", "meta": { "range": [ - 295526, - 295536 + 295504, + 295514 ], "filename": "astronomy.js", "lineno": 7157, @@ -52421,8 +52421,8 @@ "comment": "", "meta": { "range": [ - 295546, - 295566 + 295524, + 295544 ], "filename": "astronomy.js", "lineno": 7158, @@ -52446,8 +52446,8 @@ "comment": "", "meta": { "range": [ - 295576, - 295590 + 295554, + 295568 ], "filename": "astronomy.js", "lineno": 7159, @@ -52471,8 +52471,8 @@ "comment": "", "meta": { "range": [ - 295600, - 296183 + 295578, + 296161 ], "filename": "astronomy.js", "lineno": 7162, @@ -52509,8 +52509,8 @@ "comment": "", "meta": { "range": [ - 295667, - 295777 + 295645, + 295755 ], "filename": "astronomy.js", "lineno": 7163, @@ -52534,8 +52534,8 @@ "comment": "", "meta": { "range": [ - 295789, - 295816 + 295767, + 295794 ], "filename": "astronomy.js", "lineno": 7164, @@ -52559,8 +52559,8 @@ "comment": "", "meta": { "range": [ - 295828, - 295855 + 295806, + 295833 ], "filename": "astronomy.js", "lineno": 7165, @@ -52584,8 +52584,8 @@ "comment": "", "meta": { "range": [ - 295867, - 295894 + 295845, + 295872 ], "filename": "astronomy.js", "lineno": 7166, @@ -52609,8 +52609,8 @@ "comment": "", "meta": { "range": [ - 295906, - 295968 + 295884, + 295946 ], "filename": "astronomy.js", "lineno": 7167, @@ -52634,8 +52634,8 @@ "comment": "", "meta": { "range": [ - 295980, - 296045 + 295958, + 296023 ], "filename": "astronomy.js", "lineno": 7168, @@ -52659,8 +52659,8 @@ "comment": "", "meta": { "range": [ - 296057, - 296122 + 296035, + 296100 ], "filename": "astronomy.js", "lineno": 7169, @@ -52684,8 +52684,8 @@ "comment": "", "meta": { "range": [ - 296184, - 296345 + 296162, + 296323 ], "filename": "astronomy.js", "lineno": 7172, @@ -52714,8 +52714,8 @@ "comment": "", "meta": { "range": [ - 296223, - 296253 + 296201, + 296231 ], "filename": "astronomy.js", "lineno": 7173, @@ -52739,8 +52739,8 @@ "comment": "", "meta": { "range": [ - 296265, - 296282 + 296243, + 296260 ], "filename": "astronomy.js", "lineno": 7174, @@ -52764,8 +52764,8 @@ "comment": "", "meta": { "range": [ - 296346, - 296910 + 296324, + 296888 ], "filename": "astronomy.js", "lineno": 7177, @@ -52798,8 +52798,8 @@ "comment": "", "meta": { "range": [ - 296565, - 296595 + 296543, + 296573 ], "filename": "astronomy.js", "lineno": 7181, @@ -52823,8 +52823,8 @@ "comment": "", "meta": { "range": [ - 296629, - 296646 + 296607, + 296624 ], "filename": "astronomy.js", "lineno": 7182, @@ -52848,8 +52848,8 @@ "comment": "", "meta": { "range": [ - 296713, - 296750 + 296691, + 296728 ], "filename": "astronomy.js", "lineno": 7184, @@ -52873,8 +52873,8 @@ "comment": "", "meta": { "range": [ - 296809, - 296819 + 296787, + 296797 ], "filename": "astronomy.js", "lineno": 7186, @@ -52899,8 +52899,8 @@ "comment": "", "meta": { "range": [ - 296825, - 296835 + 296803, + 296813 ], "filename": "astronomy.js", "lineno": 7187, @@ -52925,8 +52925,8 @@ "comment": "", "meta": { "range": [ - 296841, - 296851 + 296819, + 296829 ], "filename": "astronomy.js", "lineno": 7188, @@ -52951,8 +52951,8 @@ "comment": "", "meta": { "range": [ - 296911, - 297618 + 296889, + 297596 ], "filename": "astronomy.js", "lineno": 7191, @@ -52987,8 +52987,8 @@ "comment": "", "meta": { "range": [ - 297166, - 297195 + 297144, + 297173 ], "filename": "astronomy.js", "lineno": 7195, @@ -53012,8 +53012,8 @@ "comment": "", "meta": { "range": [ - 297207, - 297237 + 297185, + 297215 ], "filename": "astronomy.js", "lineno": 7196, @@ -53037,8 +53037,8 @@ "comment": "", "meta": { "range": [ - 297271, - 297288 + 297249, + 297266 ], "filename": "astronomy.js", "lineno": 7197, @@ -53062,8 +53062,8 @@ "comment": "", "meta": { "range": [ - 297396, - 297458 + 297374, + 297436 ], "filename": "astronomy.js", "lineno": 7199, @@ -53087,8 +53087,8 @@ "comment": "", "meta": { "range": [ - 297517, - 297527 + 297495, + 297505 ], "filename": "astronomy.js", "lineno": 7201, @@ -53113,8 +53113,8 @@ "comment": "", "meta": { "range": [ - 297533, - 297543 + 297511, + 297521 ], "filename": "astronomy.js", "lineno": 7202, @@ -53139,8 +53139,8 @@ "comment": "", "meta": { "range": [ - 297549, - 297559 + 297527, + 297537 ], "filename": "astronomy.js", "lineno": 7203, @@ -53165,8 +53165,8 @@ "comment": "", "meta": { "range": [ - 297619, - 298198 + 297597, + 298176 ], "filename": "astronomy.js", "lineno": 7206, @@ -53201,8 +53201,8 @@ "comment": "", "meta": { "range": [ - 297752, - 297784 + 297730, + 297762 ], "filename": "astronomy.js", "lineno": 7208, @@ -53226,8 +53226,8 @@ "comment": "", "meta": { "range": [ - 297862, - 297898 + 297840, + 297876 ], "filename": "astronomy.js", "lineno": 7210, @@ -53251,8 +53251,8 @@ "comment": "", "meta": { "range": [ - 297974, - 298027 + 297952, + 298005 ], "filename": "astronomy.js", "lineno": 7212, @@ -53276,8 +53276,8 @@ "comment": "", "meta": { "range": [ - 298100, - 298110 + 298078, + 298088 ], "filename": "astronomy.js", "lineno": 7214, @@ -53302,8 +53302,8 @@ "comment": "", "meta": { "range": [ - 298116, - 298126 + 298094, + 298104 ], "filename": "astronomy.js", "lineno": 7215, @@ -53328,8 +53328,8 @@ "comment": "", "meta": { "range": [ - 298132, - 298142 + 298110, + 298120 ], "filename": "astronomy.js", "lineno": 7216, @@ -53354,8 +53354,8 @@ "comment": "", "meta": { "range": [ - 298199, - 298460 + 298177, + 298438 ], "filename": "astronomy.js", "lineno": 7219, @@ -53388,8 +53388,8 @@ "comment": "", "meta": { "range": [ - 298258, - 298276 + 298236, + 298254 ], "filename": "astronomy.js", "lineno": 7220, @@ -53413,8 +53413,8 @@ "comment": "", "meta": { "range": [ - 298288, - 298310 + 298266, + 298288 ], "filename": "astronomy.js", "lineno": 7221, @@ -53438,8 +53438,8 @@ "comment": "", "meta": { "range": [ - 298322, - 298344 + 298300, + 298322 ], "filename": "astronomy.js", "lineno": 7222, @@ -53463,8 +53463,8 @@ "comment": "", "meta": { "range": [ - 298356, - 298380 + 298334, + 298358 ], "filename": "astronomy.js", "lineno": 7223, @@ -53488,8 +53488,8 @@ "comment": "", "meta": { "range": [ - 298392, - 298416 + 298370, + 298394 ], "filename": "astronomy.js", "lineno": 7224, @@ -53513,8 +53513,8 @@ "comment": "", "meta": { "range": [ - 298461, - 298746 + 298439, + 298724 ], "filename": "astronomy.js", "lineno": 7227, @@ -53546,8 +53546,8 @@ "comment": "", "meta": { "range": [ - 298530, - 298548 + 298508, + 298526 ], "filename": "astronomy.js", "lineno": 7228, @@ -53571,8 +53571,8 @@ "comment": "", "meta": { "range": [ - 298560, - 298625 + 298538, + 298603 ], "filename": "astronomy.js", "lineno": 7229, @@ -53596,8 +53596,8 @@ "comment": "", "meta": { "range": [ - 298637, - 298702 + 298615, + 298680 ], "filename": "astronomy.js", "lineno": 7230, @@ -53621,8 +53621,8 @@ "comment": "", "meta": { "range": [ - 298747, - 299164 + 298725, + 299142 ], "filename": "astronomy.js", "lineno": 7233, @@ -53654,8 +53654,8 @@ "comment": "", "meta": { "range": [ - 298804, - 298817 + 298782, + 298795 ], "filename": "astronomy.js", "lineno": 7234, @@ -53679,8 +53679,8 @@ "comment": "", "meta": { "range": [ - 298891, - 298931 + 298869, + 298909 ], "filename": "astronomy.js", "lineno": 7235, @@ -53704,8 +53704,8 @@ "comment": "", "meta": { "range": [ - 298943, - 298983 + 298921, + 298961 ], "filename": "astronomy.js", "lineno": 7236, @@ -53729,8 +53729,8 @@ "comment": "", "meta": { "range": [ - 298995, - 299064 + 298973, + 299042 ], "filename": "astronomy.js", "lineno": 7237, @@ -53754,8 +53754,8 @@ "comment": "", "meta": { "range": [ - 299165, - 299578 + 299143, + 299556 ], "filename": "astronomy.js", "lineno": 7242, @@ -53787,8 +53787,8 @@ "comment": "", "meta": { "range": [ - 299221, - 299234 + 299199, + 299212 ], "filename": "astronomy.js", "lineno": 7243, @@ -53812,8 +53812,8 @@ "comment": "", "meta": { "range": [ - 299308, - 299348 + 299286, + 299326 ], "filename": "astronomy.js", "lineno": 7244, @@ -53837,8 +53837,8 @@ "comment": "", "meta": { "range": [ - 299360, - 299400 + 299338, + 299378 ], "filename": "astronomy.js", "lineno": 7245, @@ -53862,8 +53862,8 @@ "comment": "", "meta": { "range": [ - 299412, - 299480 + 299390, + 299458 ], "filename": "astronomy.js", "lineno": 7246, @@ -53887,8 +53887,8 @@ "comment": "", "meta": { "range": [ - 299579, - 300154 + 299557, + 300132 ], "filename": "astronomy.js", "lineno": 7251, @@ -53922,8 +53922,8 @@ "comment": "", "meta": { "range": [ - 299741, - 299753 + 299719, + 299731 ], "filename": "astronomy.js", "lineno": 7253, @@ -53947,8 +53947,8 @@ "comment": "", "meta": { "range": [ - 299846, - 299886 + 299824, + 299864 ], "filename": "astronomy.js", "lineno": 7254, @@ -53972,8 +53972,8 @@ "comment": "", "meta": { "range": [ - 299898, - 299938 + 299876, + 299916 ], "filename": "astronomy.js", "lineno": 7255, @@ -53997,8 +53997,8 @@ "comment": "", "meta": { "range": [ - 299950, - 300028 + 299928, + 300006 ], "filename": "astronomy.js", "lineno": 7256, @@ -54022,8 +54022,8 @@ "comment": "", "meta": { "range": [ - 300155, - 300790 + 300133, + 300768 ], "filename": "astronomy.js", "lineno": 7261, @@ -54057,8 +54057,8 @@ "comment": "", "meta": { "range": [ - 300344, - 300356 + 300322, + 300334 ], "filename": "astronomy.js", "lineno": 7264, @@ -54082,8 +54082,8 @@ "comment": "", "meta": { "range": [ - 300368, - 300408 + 300346, + 300386 ], "filename": "astronomy.js", "lineno": 7265, @@ -54107,8 +54107,8 @@ "comment": "", "meta": { "range": [ - 300420, - 300460 + 300398, + 300438 ], "filename": "astronomy.js", "lineno": 7266, @@ -54132,8 +54132,8 @@ "comment": "", "meta": { "range": [ - 300466, - 300547 + 300444, + 300525 ], "filename": "astronomy.js", "lineno": 7267, @@ -54159,8 +54159,8 @@ "comment": "", "meta": { "range": [ - 300558, - 300628 + 300536, + 300606 ], "filename": "astronomy.js", "lineno": 7270, @@ -54184,8 +54184,8 @@ "comment": "", "meta": { "range": [ - 300791, - 301495 + 300769, + 301473 ], "filename": "astronomy.js", "lineno": 7275, @@ -54220,8 +54220,8 @@ "comment": "", "meta": { "range": [ - 300988, - 301027 + 300966, + 301005 ], "filename": "astronomy.js", "lineno": 7277, @@ -54245,8 +54245,8 @@ "comment": "", "meta": { "range": [ - 301039, - 301076 + 301017, + 301054 ], "filename": "astronomy.js", "lineno": 7278, @@ -54270,8 +54270,8 @@ "comment": "", "meta": { "range": [ - 301088, - 301124 + 301066, + 301102 ], "filename": "astronomy.js", "lineno": 7279, @@ -54295,8 +54295,8 @@ "comment": "", "meta": { "range": [ - 301136, - 301217 + 301114, + 301195 ], "filename": "astronomy.js", "lineno": 7280, @@ -54320,8 +54320,8 @@ "comment": "", "meta": { "range": [ - 301229, - 301309 + 301207, + 301287 ], "filename": "astronomy.js", "lineno": 7281, @@ -54345,8 +54345,8 @@ "comment": "", "meta": { "range": [ - 301496, - 301624 + 301474, + 301602 ], "filename": "astronomy.js", "lineno": 7286, @@ -54374,8 +54374,8 @@ "comment": "", "meta": { "range": [ - 301551, - 301572 + 301529, + 301550 ], "filename": "astronomy.js", "lineno": 7287, @@ -54399,8 +54399,8 @@ "comment": "/**\n * @brief Searches for a lunar eclipse.\n *\n * This function finds the first lunar eclipse that occurs after `startTime`.\n * A lunar eclipse may be penumbral, partial, or total.\n * See {@link LunarEclipseInfo} for more information.\n * To find a series of lunar eclipses, call this function once,\n * then keep calling {@link NextLunarEclipse} as many times as desired,\n * passing in the `peak` value returned from the previous call.\n *\n * @param {FlexibleDateTime} date\n * The date and time for starting the search for a lunar eclipse.\n *\n * @returns {LunarEclipseInfo}\n */", "meta": { "range": [ - 302206, - 304569 + 302184, + 304547 ], "filename": "astronomy.js", "lineno": 7305, @@ -54463,8 +54463,8 @@ "comment": "", "meta": { "range": [ - 302252, - 302271 + 302230, + 302249 ], "filename": "astronomy.js", "lineno": 7306, @@ -54488,8 +54488,8 @@ "comment": "", "meta": { "range": [ - 302351, - 302374 + 302329, + 302352 ], "filename": "astronomy.js", "lineno": 7307, @@ -54513,8 +54513,8 @@ "comment": "", "meta": { "range": [ - 302389, - 302400 + 302367, + 302378 ], "filename": "astronomy.js", "lineno": 7308, @@ -54538,8 +54538,8 @@ "comment": "", "meta": { "range": [ - 302517, - 302560 + 302495, + 302538 ], "filename": "astronomy.js", "lineno": 7310, @@ -54563,8 +54563,8 @@ "comment": "", "meta": { "range": [ - 302855, - 302904 + 302833, + 302882 ], "filename": "astronomy.js", "lineno": 7318, @@ -54588,8 +54588,8 @@ "comment": "", "meta": { "range": [ - 303151, - 303185 + 303129, + 303163 ], "filename": "astronomy.js", "lineno": 7322, @@ -54613,8 +54613,8 @@ "comment": "", "meta": { "range": [ - 303353, - 303371 + 303331, + 303349 ], "filename": "astronomy.js", "lineno": 7325, @@ -54638,8 +54638,8 @@ "comment": "", "meta": { "range": [ - 303393, - 303407 + 303371, + 303385 ], "filename": "astronomy.js", "lineno": 7326, @@ -54663,8 +54663,8 @@ "comment": "", "meta": { "range": [ - 303429, - 303445 + 303407, + 303423 ], "filename": "astronomy.js", "lineno": 7327, @@ -54688,8 +54688,8 @@ "comment": "", "meta": { "range": [ - 303467, - 303555 + 303445, + 303533 ], "filename": "astronomy.js", "lineno": 7328, @@ -54713,8 +54713,8 @@ "comment": "", "meta": { "range": [ - 303704, - 303720 + 303682, + 303698 ], "filename": "astronomy.js", "lineno": 7331, @@ -54739,8 +54739,8 @@ "comment": "", "meta": { "range": [ - 303742, - 303835 + 303720, + 303813 ], "filename": "astronomy.js", "lineno": 7332, @@ -54765,8 +54765,8 @@ "comment": "", "meta": { "range": [ - 303985, - 303999 + 303963, + 303977 ], "filename": "astronomy.js", "lineno": 7335, @@ -54791,8 +54791,8 @@ "comment": "", "meta": { "range": [ - 304025, - 304118 + 304003, + 304096 ], "filename": "astronomy.js", "lineno": 7336, @@ -54817,8 +54817,8 @@ "comment": "", "meta": { "range": [ - 304375, - 304404 + 304353, + 304382 ], "filename": "astronomy.js", "lineno": 7343, @@ -54843,8 +54843,8 @@ "comment": "", "meta": { "range": [ - 304570, - 304617 + 304548, + 304595 ], "filename": "astronomy.js", "lineno": 7348, @@ -54867,8 +54867,8 @@ "comment": "/**\n * @brief Reports the time and geographic location of the peak of a solar eclipse.\n *\n * Returned by {@link SearchGlobalSolarEclipse} or {@link NextGlobalSolarEclipse}\n * to report information about a solar eclipse event.\n *\n * Field `peak` holds the date and time of the peak of the eclipse, defined as\n * the instant when the axis of the Moon's shadow cone passes closest to the Earth's center.\n *\n * The eclipse is classified as partial, annular, or total, depending on the\n * maximum amount of the Sun's disc obscured, as seen at the peak location\n * on the surface of the Earth.\n *\n * The `kind` field thus holds one of the strings `\"partial\"`, `\"annular\"`, or `\"total\"`.\n * A total eclipse is when the peak observer sees the Sun completely blocked by the Moon.\n * An annular eclipse is like a total eclipse, but the Moon is too far from the Earth's surface\n * to completely block the Sun; instead, the Sun takes on a ring-shaped appearance.\n * A partial eclipse is when the Moon blocks part of the Sun's disc, but nobody on the Earth\n * observes either a total or annular eclipse.\n *\n * If `kind` is `\"total\"` or `\"annular\"`, the `latitude` and `longitude`\n * fields give the geographic coordinates of the center of the Moon's shadow projected\n * onto the daytime side of the Earth at the instant of the eclipse's peak.\n * If `kind` has any other value, `latitude` and `longitude` are undefined and should\n * not be used.\n *\n * @property {string} kind\n * One of the following string values: `\"partial\"`, `\"annular\"`, `\"total\"`.\n *\n * @property {AstroTime} peak\n * The date and time of the peak of the eclipse, defined as the instant\n * when the axis of the Moon's shadow cone passes closest to the Earth's center.\n *\n * @property {number} distance\n * The distance in kilometers between the axis of the Moon's shadow cone\n * and the center of the Earth at the time indicated by `peak`.\n *\n * @property {number | undefined} latitude\n * If `kind` holds `\"total\"`, the geographic latitude in degrees\n * where the center of the Moon's shadow falls on the Earth at the\n * time indicated by `peak`; otherwise, `latitude` holds `undefined`.\n *\n * @property {number | undefined} longitude\n * If `kind` holds `\"total\"`, the geographic longitude in degrees\n * where the center of the Moon's shadow falls on the Earth at the\n * time indicated by `peak`; otherwise, `longitude` holds `undefined`.\n */", "meta": { "range": [ - 307061, - 307316 + 307039, + 307294 ], "filename": "astronomy.js", "lineno": 7396, @@ -54953,8 +54953,8 @@ "comment": "", "meta": { "range": [ - 307096, - 307314 + 307074, + 307292 ], "filename": "astronomy.js", "lineno": 7397, @@ -54986,8 +54986,8 @@ "comment": "/**\n * @brief Reports the time and geographic location of the peak of a solar eclipse.\n *\n * Returned by {@link SearchGlobalSolarEclipse} or {@link NextGlobalSolarEclipse}\n * to report information about a solar eclipse event.\n *\n * Field `peak` holds the date and time of the peak of the eclipse, defined as\n * the instant when the axis of the Moon's shadow cone passes closest to the Earth's center.\n *\n * The eclipse is classified as partial, annular, or total, depending on the\n * maximum amount of the Sun's disc obscured, as seen at the peak location\n * on the surface of the Earth.\n *\n * The `kind` field thus holds one of the strings `\"partial\"`, `\"annular\"`, or `\"total\"`.\n * A total eclipse is when the peak observer sees the Sun completely blocked by the Moon.\n * An annular eclipse is like a total eclipse, but the Moon is too far from the Earth's surface\n * to completely block the Sun; instead, the Sun takes on a ring-shaped appearance.\n * A partial eclipse is when the Moon blocks part of the Sun's disc, but nobody on the Earth\n * observes either a total or annular eclipse.\n *\n * If `kind` is `\"total\"` or `\"annular\"`, the `latitude` and `longitude`\n * fields give the geographic coordinates of the center of the Moon's shadow projected\n * onto the daytime side of the Earth at the instant of the eclipse's peak.\n * If `kind` has any other value, `latitude` and `longitude` are undefined and should\n * not be used.\n *\n * @property {string} kind\n * One of the following string values: `\"partial\"`, `\"annular\"`, `\"total\"`.\n *\n * @property {AstroTime} peak\n * The date and time of the peak of the eclipse, defined as the instant\n * when the axis of the Moon's shadow cone passes closest to the Earth's center.\n *\n * @property {number} distance\n * The distance in kilometers between the axis of the Moon's shadow cone\n * and the center of the Earth at the time indicated by `peak`.\n *\n * @property {number | undefined} latitude\n * If `kind` holds `\"total\"`, the geographic latitude in degrees\n * where the center of the Moon's shadow falls on the Earth at the\n * time indicated by `peak`; otherwise, `latitude` holds `undefined`.\n *\n * @property {number | undefined} longitude\n * If `kind` holds `\"total\"`, the geographic longitude in degrees\n * where the center of the Moon's shadow falls on the Earth at the\n * time indicated by `peak`; otherwise, `longitude` holds `undefined`.\n */", "meta": { "range": [ - 307061, - 307316 + 307039, + 307294 ], "filename": "astronomy.js", "lineno": 7396, @@ -55071,8 +55071,8 @@ "comment": "", "meta": { "range": [ - 307161, - 307177 + 307139, + 307155 ], "filename": "astronomy.js", "lineno": 7398, @@ -55096,8 +55096,8 @@ "comment": "", "meta": { "range": [ - 307187, - 307203 + 307165, + 307181 ], "filename": "astronomy.js", "lineno": 7399, @@ -55121,8 +55121,8 @@ "comment": "", "meta": { "range": [ - 307213, - 307237 + 307191, + 307215 ], "filename": "astronomy.js", "lineno": 7400, @@ -55146,8 +55146,8 @@ "comment": "", "meta": { "range": [ - 307247, - 307271 + 307225, + 307249 ], "filename": "astronomy.js", "lineno": 7401, @@ -55171,8 +55171,8 @@ "comment": "", "meta": { "range": [ - 307281, - 307307 + 307259, + 307285 ], "filename": "astronomy.js", "lineno": 7402, @@ -55196,8 +55196,8 @@ "comment": "", "meta": { "range": [ - 307317, - 307372 + 307295, + 307350 ], "filename": "astronomy.js", "lineno": 7405, @@ -55220,8 +55220,8 @@ "comment": "", "meta": { "range": [ - 307374, - 307692 + 307352, + 307670 ], "filename": "astronomy.js", "lineno": 7406, @@ -55246,8 +55246,8 @@ "comment": "", "meta": { "range": [ - 307693, - 311825 + 307671, + 311803 ], "filename": "astronomy.js", "lineno": 7412, @@ -55305,8 +55305,8 @@ "comment": "", "meta": { "range": [ - 307735, - 307751 + 307713, + 307729 ], "filename": "astronomy.js", "lineno": 7413, @@ -55330,8 +55330,8 @@ "comment": "", "meta": { "range": [ - 307761, - 307779 + 307739, + 307757 ], "filename": "astronomy.js", "lineno": 7414, @@ -55355,8 +55355,8 @@ "comment": "", "meta": { "range": [ - 307789, - 307808 + 307767, + 307786 ], "filename": "astronomy.js", "lineno": 7415, @@ -55380,8 +55380,8 @@ "comment": "", "meta": { "range": [ - 307818, - 307826 + 307796, + 307804 ], "filename": "astronomy.js", "lineno": 7416, @@ -55403,8 +55403,8 @@ "comment": "", "meta": { "range": [ - 307875, - 307884 + 307853, + 307862 ], "filename": "astronomy.js", "lineno": 7417, @@ -55426,8 +55426,8 @@ "comment": "", "meta": { "range": [ - 308214, - 308249 + 308192, + 308227 ], "filename": "astronomy.js", "lineno": 7422, @@ -55451,8 +55451,8 @@ "comment": "", "meta": { "range": [ - 308261, - 308294 + 308239, + 308272 ], "filename": "astronomy.js", "lineno": 7423, @@ -55476,8 +55476,8 @@ "comment": "", "meta": { "range": [ - 308359, - 308395 + 308337, + 308373 ], "filename": "astronomy.js", "lineno": 7424, @@ -55501,8 +55501,8 @@ "comment": "", "meta": { "range": [ - 308740, - 308764 + 308718, + 308742 ], "filename": "astronomy.js", "lineno": 7429, @@ -55527,8 +55527,8 @@ "comment": "", "meta": { "range": [ - 308770, - 308794 + 308748, + 308772 ], "filename": "astronomy.js", "lineno": 7430, @@ -55553,8 +55553,8 @@ "comment": "", "meta": { "range": [ - 308800, - 308843 + 308778, + 308821 ], "filename": "astronomy.js", "lineno": 7431, @@ -55579,8 +55579,8 @@ "comment": "", "meta": { "range": [ - 308849, - 308873 + 308827, + 308851 ], "filename": "astronomy.js", "lineno": 7432, @@ -55605,8 +55605,8 @@ "comment": "", "meta": { "range": [ - 308879, - 308903 + 308857, + 308881 ], "filename": "astronomy.js", "lineno": 7433, @@ -55631,8 +55631,8 @@ "comment": "", "meta": { "range": [ - 308909, - 308952 + 308887, + 308930 ], "filename": "astronomy.js", "lineno": 7434, @@ -55657,8 +55657,8 @@ "comment": "", "meta": { "range": [ - 309112, - 309142 + 309090, + 309120 ], "filename": "astronomy.js", "lineno": 7437, @@ -55682,8 +55682,8 @@ "comment": "", "meta": { "range": [ - 309154, - 309191 + 309132, + 309169 ], "filename": "astronomy.js", "lineno": 7438, @@ -55707,8 +55707,8 @@ "comment": "", "meta": { "range": [ - 309203, - 309249 + 309181, + 309227 ], "filename": "astronomy.js", "lineno": 7439, @@ -55732,8 +55732,8 @@ "comment": "", "meta": { "range": [ - 309261, - 309308 + 309239, + 309286 ], "filename": "astronomy.js", "lineno": 7440, @@ -55757,8 +55757,8 @@ "comment": "", "meta": { "range": [ - 309320, - 309345 + 309298, + 309323 ], "filename": "astronomy.js", "lineno": 7441, @@ -55782,8 +55782,8 @@ "comment": "", "meta": { "range": [ - 309502, - 309539 + 309480, + 309517 ], "filename": "astronomy.js", "lineno": 7445, @@ -55807,8 +55807,8 @@ "comment": "", "meta": { "range": [ - 309633, - 309651 + 309611, + 309629 ], "filename": "astronomy.js", "lineno": 7447, @@ -55832,8 +55832,8 @@ "comment": "", "meta": { "range": [ - 309667, - 309685 + 309645, + 309663 ], "filename": "astronomy.js", "lineno": 7448, @@ -55857,8 +55857,8 @@ "comment": "", "meta": { "range": [ - 309701, - 309740 + 309679, + 309718 ], "filename": "astronomy.js", "lineno": 7449, @@ -55882,8 +55882,8 @@ "comment": "", "meta": { "range": [ - 309831, - 309906 + 309809, + 309884 ], "filename": "astronomy.js", "lineno": 7451, @@ -55907,8 +55907,8 @@ "comment": "", "meta": { "range": [ - 309945, - 309982 + 309923, + 309960 ], "filename": "astronomy.js", "lineno": 7453, @@ -55933,8 +55933,8 @@ "comment": "", "meta": { "range": [ - 310009, - 310058 + 309987, + 310036 ], "filename": "astronomy.js", "lineno": 7455, @@ -55959,8 +55959,8 @@ "comment": "", "meta": { "range": [ - 310140, - 310166 + 310118, + 310144 ], "filename": "astronomy.js", "lineno": 7457, @@ -55984,8 +55984,8 @@ "comment": "", "meta": { "range": [ - 310176, - 310248 + 310154, + 310226 ], "filename": "astronomy.js", "lineno": 7458, @@ -56010,8 +56010,8 @@ "comment": "", "meta": { "range": [ - 310295, - 310313 + 310273, + 310291 ], "filename": "astronomy.js", "lineno": 7460, @@ -56036,8 +56036,8 @@ "comment": "", "meta": { "range": [ - 310364, - 310382 + 310342, + 310360 ], "filename": "astronomy.js", "lineno": 7462, @@ -56062,8 +56062,8 @@ "comment": "", "meta": { "range": [ - 310640, - 310666 + 310618, + 310644 ], "filename": "astronomy.js", "lineno": 7466, @@ -56087,8 +56087,8 @@ "comment": "", "meta": { "range": [ - 310831, - 310930 + 310809, + 310908 ], "filename": "astronomy.js", "lineno": 7469, @@ -56112,8 +56112,8 @@ "comment": "", "meta": { "range": [ - 311012, - 311036 + 310990, + 311014 ], "filename": "astronomy.js", "lineno": 7471, @@ -56138,8 +56138,8 @@ "comment": "", "meta": { "range": [ - 311106, - 311128 + 311084, + 311106 ], "filename": "astronomy.js", "lineno": 7473, @@ -56164,8 +56164,8 @@ "comment": "", "meta": { "range": [ - 311138, - 311160 + 311116, + 311138 ], "filename": "astronomy.js", "lineno": 7474, @@ -56190,8 +56190,8 @@ "comment": "", "meta": { "range": [ - 311170, - 311192 + 311148, + 311170 ], "filename": "astronomy.js", "lineno": 7475, @@ -56216,8 +56216,8 @@ "comment": "", "meta": { "range": [ - 311301, - 311371 + 311279, + 311349 ], "filename": "astronomy.js", "lineno": 7477, @@ -56241,8 +56241,8 @@ "comment": "", "meta": { "range": [ - 311696, - 311734 + 311674, + 311712 ], "filename": "astronomy.js", "lineno": 7482, @@ -56267,8 +56267,8 @@ "comment": "/**\n * @brief Searches for the next lunar eclipse in a series.\n *\n * After using {@link SearchLunarEclipse} to find the first lunar eclipse\n * in a series, you can call this function to find the next consecutive lunar eclipse.\n * Pass in the `peak` value from the {@link LunarEclipseInfo} returned by the\n * previous call to `SearchLunarEclipse` or `NextLunarEclipse`\n * to find the next lunar eclipse.\n *\n * @param {AstroTime} prevEclipseTime\n * A date and time near a full moon. Lunar eclipse search will start at the next full moon.\n *\n * @returns {LunarEclipseInfo}\n */", "meta": { "range": [ - 312405, - 312544 + 312383, + 312522 ], "filename": "astronomy.js", "lineno": 7500, @@ -56322,8 +56322,8 @@ "comment": "", "meta": { "range": [ - 312460, - 312499 + 312438, + 312477 ], "filename": "astronomy.js", "lineno": 7501, @@ -56347,8 +56347,8 @@ "comment": "", "meta": { "range": [ - 312545, - 312588 + 312523, + 312566 ], "filename": "astronomy.js", "lineno": 7504, @@ -56371,8 +56371,8 @@ "comment": "/**\n * @brief Searches for a solar eclipse visible anywhere on the Earth's surface.\n *\n * This function finds the first solar eclipse that occurs after `startTime`.\n * A solar eclipse may be partial, annular, or total.\n * See {@link GlobalSolarEclipseInfo} for more information.\n * To find a series of solar eclipses, call this function once,\n * then keep calling {@link NextGlobalSolarEclipse} as many times as desired,\n * passing in the `peak` value returned from the previous call.\n *\n * @param {AstroTime} startTime\n * The date and time for starting the search for a solar eclipse.\n *\n * @returns {GlobalSolarEclipseInfo}\n */", "meta": { "range": [ - 313225, - 314842 + 313203, + 314820 ], "filename": "astronomy.js", "lineno": 7520, @@ -56431,8 +56431,8 @@ "comment": "", "meta": { "range": [ - 313282, - 313301 + 313260, + 313279 ], "filename": "astronomy.js", "lineno": 7521, @@ -56456,8 +56456,8 @@ "comment": "", "meta": { "range": [ - 313477, - 313495 + 313455, + 313473 ], "filename": "astronomy.js", "lineno": 7523, @@ -56481,8 +56481,8 @@ "comment": "", "meta": { "range": [ - 313505, - 313512 + 313483, + 313490 ], "filename": "astronomy.js", "lineno": 7524, @@ -56504,8 +56504,8 @@ "comment": "", "meta": { "range": [ - 313523, - 313534 + 313501, + 313512 ], "filename": "astronomy.js", "lineno": 7525, @@ -56530,8 +56530,8 @@ "comment": "", "meta": { "range": [ - 313647, - 313691 + 313625, + 313669 ], "filename": "astronomy.js", "lineno": 7527, @@ -56555,8 +56555,8 @@ "comment": "", "meta": { "range": [ - 313874, - 313922 + 313852, + 313900 ], "filename": "astronomy.js", "lineno": 7531, @@ -56580,8 +56580,8 @@ "comment": "", "meta": { "range": [ - 314162, - 314194 + 314140, + 314172 ], "filename": "astronomy.js", "lineno": 7535, @@ -56605,8 +56605,8 @@ "comment": "", "meta": { "range": [ - 314609, - 314639 + 314587, + 314617 ], "filename": "astronomy.js", "lineno": 7543, @@ -56631,8 +56631,8 @@ "comment": "", "meta": { "range": [ - 314843, - 314902 + 314821, + 314880 ], "filename": "astronomy.js", "lineno": 7549, @@ -56655,8 +56655,8 @@ "comment": "/**\n * @brief Searches for the next global solar eclipse in a series.\n *\n * After using {@link SearchGlobalSolarEclipse} to find the first solar eclipse\n * in a series, you can call this function to find the next consecutive solar eclipse.\n * Pass in the `peak` value from the {@link GlobalSolarEclipseInfo} returned by the\n * previous call to `SearchGlobalSolarEclipse` or `NextGlobalSolarEclipse`\n * to find the next solar eclipse.\n *\n * @param {AstroTime} prevEclipseTime\n * A date and time near a new moon. Solar eclipse search will start at the next new moon.\n *\n * @returns {GlobalSolarEclipseInfo}\n */", "meta": { "range": [ - 315518, - 315671 + 315496, + 315649 ], "filename": "astronomy.js", "lineno": 7564, @@ -56710,8 +56710,8 @@ "comment": "", "meta": { "range": [ - 315579, - 315620 + 315557, + 315598 ], "filename": "astronomy.js", "lineno": 7565, @@ -56735,8 +56735,8 @@ "comment": "", "meta": { "range": [ - 315672, - 315727 + 315650, + 315705 ], "filename": "astronomy.js", "lineno": 7568, @@ -56759,8 +56759,8 @@ "comment": "/**\n * @brief Holds a time and the observed altitude of the Sun at that time.\n *\n * When reporting a solar eclipse observed at a specific location on the Earth\n * (a \"local\" solar eclipse), a series of events occur. In addition\n * to the time of each event, it is important to know the altitude of the Sun,\n * because each event may be invisible to the observer if the Sun is below\n * the horizon (i.e. it at night).\n *\n * If `altitude` is negative, the event is theoretical only; it would be\n * visible if the Earth were transparent, but the observer cannot actually see it.\n * If `altitude` is positive but less than a few degrees, visibility will be impaired by\n * atmospheric interference (sunrise or sunset conditions).\n *\n * @property {AstroTime} time\n * The date and time of the event.\n *\n * @property {number} altitude\n * The angular altitude of the center of the Sun above/below the horizon, at `time`,\n * corrected for atmospheric refraction and expressed in degrees.\n */", "meta": { "range": [ - 316726, - 316848 + 316704, + 316826 ], "filename": "astronomy.js", "lineno": 7590, @@ -56813,8 +56813,8 @@ "comment": "", "meta": { "range": [ - 316751, - 316846 + 316729, + 316824 ], "filename": "astronomy.js", "lineno": 7591, @@ -56843,8 +56843,8 @@ "comment": "/**\n * @brief Holds a time and the observed altitude of the Sun at that time.\n *\n * When reporting a solar eclipse observed at a specific location on the Earth\n * (a \"local\" solar eclipse), a series of events occur. In addition\n * to the time of each event, it is important to know the altitude of the Sun,\n * because each event may be invisible to the observer if the Sun is below\n * the horizon (i.e. it at night).\n *\n * If `altitude` is negative, the event is theoretical only; it would be\n * visible if the Earth were transparent, but the observer cannot actually see it.\n * If `altitude` is positive but less than a few degrees, visibility will be impaired by\n * atmospheric interference (sunrise or sunset conditions).\n *\n * @property {AstroTime} time\n * The date and time of the event.\n *\n * @property {number} altitude\n * The angular altitude of the center of the Sun above/below the horizon, at `time`,\n * corrected for atmospheric refraction and expressed in degrees.\n */", "meta": { "range": [ - 316726, - 316848 + 316704, + 316826 ], "filename": "astronomy.js", "lineno": 7590, @@ -56896,8 +56896,8 @@ "comment": "", "meta": { "range": [ - 316789, - 316805 + 316767, + 316783 ], "filename": "astronomy.js", "lineno": 7592, @@ -56921,8 +56921,8 @@ "comment": "", "meta": { "range": [ - 316815, - 316839 + 316793, + 316817 ], "filename": "astronomy.js", "lineno": 7593, @@ -56946,8 +56946,8 @@ "comment": "", "meta": { "range": [ - 316849, - 316884 + 316827, + 316862 ], "filename": "astronomy.js", "lineno": 7596, @@ -56970,8 +56970,8 @@ "comment": "/**\n * @brief Information about a solar eclipse as seen by an observer at a given time and geographic location.\n *\n * Returned by {@link SearchLocalSolarEclipse} or {@link NextLocalSolarEclipse}\n * to report information about a solar eclipse as seen at a given geographic location.\n *\n * When a solar eclipse is found, it is classified by setting `kind`\n * to `\"partial\"`, `\"annular\"`, or `\"total\"`.\n * A partial solar eclipse is when the Moon does not line up directly enough with the Sun\n * to completely block the Sun's light from reaching the observer.\n * An annular eclipse occurs when the Moon's disc is completely visible against the Sun\n * but the Moon is too far away to completely block the Sun's light; this leaves the\n * Sun with a ring-like appearance.\n * A total eclipse occurs when the Moon is close enough to the Earth and aligned with the\n * Sun just right to completely block all sunlight from reaching the observer.\n *\n * There are 5 \"event\" fields, each of which contains a time and a solar altitude.\n * Field `peak` holds the date and time of the center of the eclipse, when it is at its peak.\n * The fields `partial_begin` and `partial_end` are always set, and indicate when\n * the eclipse begins/ends. If the eclipse reaches totality or becomes annular,\n * `total_begin` and `total_end` indicate when the total/annular phase begins/ends.\n * When an event field is valid, the caller must also check its `altitude` field to\n * see whether the Sun is above the horizon at the time indicated by the `time` field.\n * See {@link EclipseEvent} for more information.\n *\n * @property {string} kind\n * The type of solar eclipse found: `\"partial\"`, `\"annular\"`, or `\"total\"`.\n *\n * @property {EclipseEvent} partial_begin\n * The time and Sun altitude at the beginning of the eclipse.\n *\n * @property {EclipseEvent | undefined} total_begin\n * If this is an annular or a total eclipse, the time and Sun altitude when annular/total phase begins; otherwise undefined.\n *\n * @property {EclipseEvent} peak\n * The time and Sun altitude when the eclipse reaches its peak.\n *\n * @property {EclipseEvent | undefined} total_end\n * If this is an annular or a total eclipse, the time and Sun altitude when annular/total phase ends; otherwise undefined.\n *\n * @property {EclipseEvent} partial_end\n * The time and Sun altitude at the end of the eclipse.\n */", "meta": { "range": [ - 319270, - 319601 + 319248, + 319579 ], "filename": "astronomy.js", "lineno": 7640, @@ -57066,8 +57066,8 @@ "comment": "", "meta": { "range": [ - 319304, - 319599 + 319282, + 319577 ], "filename": "astronomy.js", "lineno": 7641, @@ -57100,8 +57100,8 @@ "comment": "/**\n * @brief Information about a solar eclipse as seen by an observer at a given time and geographic location.\n *\n * Returned by {@link SearchLocalSolarEclipse} or {@link NextLocalSolarEclipse}\n * to report information about a solar eclipse as seen at a given geographic location.\n *\n * When a solar eclipse is found, it is classified by setting `kind`\n * to `\"partial\"`, `\"annular\"`, or `\"total\"`.\n * A partial solar eclipse is when the Moon does not line up directly enough with the Sun\n * to completely block the Sun's light from reaching the observer.\n * An annular eclipse occurs when the Moon's disc is completely visible against the Sun\n * but the Moon is too far away to completely block the Sun's light; this leaves the\n * Sun with a ring-like appearance.\n * A total eclipse occurs when the Moon is close enough to the Earth and aligned with the\n * Sun just right to completely block all sunlight from reaching the observer.\n *\n * There are 5 \"event\" fields, each of which contains a time and a solar altitude.\n * Field `peak` holds the date and time of the center of the eclipse, when it is at its peak.\n * The fields `partial_begin` and `partial_end` are always set, and indicate when\n * the eclipse begins/ends. If the eclipse reaches totality or becomes annular,\n * `total_begin` and `total_end` indicate when the total/annular phase begins/ends.\n * When an event field is valid, the caller must also check its `altitude` field to\n * see whether the Sun is above the horizon at the time indicated by the `time` field.\n * See {@link EclipseEvent} for more information.\n *\n * @property {string} kind\n * The type of solar eclipse found: `\"partial\"`, `\"annular\"`, or `\"total\"`.\n *\n * @property {EclipseEvent} partial_begin\n * The time and Sun altitude at the beginning of the eclipse.\n *\n * @property {EclipseEvent | undefined} total_begin\n * If this is an annular or a total eclipse, the time and Sun altitude when annular/total phase begins; otherwise undefined.\n *\n * @property {EclipseEvent} peak\n * The time and Sun altitude when the eclipse reaches its peak.\n *\n * @property {EclipseEvent | undefined} total_end\n * If this is an annular or a total eclipse, the time and Sun altitude when annular/total phase ends; otherwise undefined.\n *\n * @property {EclipseEvent} partial_end\n * The time and Sun altitude at the end of the eclipse.\n */", "meta": { "range": [ - 319270, - 319601 + 319248, + 319579 ], "filename": "astronomy.js", "lineno": 7640, @@ -57195,8 +57195,8 @@ "comment": "", "meta": { "range": [ - 319390, - 319406 + 319368, + 319384 ], "filename": "astronomy.js", "lineno": 7642, @@ -57220,8 +57220,8 @@ "comment": "", "meta": { "range": [ - 319416, - 319450 + 319394, + 319428 ], "filename": "astronomy.js", "lineno": 7643, @@ -57245,8 +57245,8 @@ "comment": "", "meta": { "range": [ - 319460, - 319490 + 319438, + 319468 ], "filename": "astronomy.js", "lineno": 7644, @@ -57270,8 +57270,8 @@ "comment": "", "meta": { "range": [ - 319500, - 319516 + 319478, + 319494 ], "filename": "astronomy.js", "lineno": 7645, @@ -57295,8 +57295,8 @@ "comment": "", "meta": { "range": [ - 319526, - 319552 + 319504, + 319530 ], "filename": "astronomy.js", "lineno": 7646, @@ -57320,8 +57320,8 @@ "comment": "", "meta": { "range": [ - 319562, - 319592 + 319540, + 319570 ], "filename": "astronomy.js", "lineno": 7647, @@ -57345,8 +57345,8 @@ "comment": "", "meta": { "range": [ - 319602, - 319655 + 319580, + 319633 ], "filename": "astronomy.js", "lineno": 7650, @@ -57369,8 +57369,8 @@ "comment": "", "meta": { "range": [ - 319657, - 319732 + 319635, + 319710 ], "filename": "astronomy.js", "lineno": 7651, @@ -57395,8 +57395,8 @@ "comment": "", "meta": { "range": [ - 319733, - 319934 + 319711, + 319912 ], "filename": "astronomy.js", "lineno": 7654, @@ -57421,8 +57421,8 @@ "comment": "", "meta": { "range": [ - 319935, - 321059 + 319913, + 321037 ], "filename": "astronomy.js", "lineno": 7659, @@ -57460,8 +57460,8 @@ "comment": "", "meta": { "range": [ - 319987, - 320007 + 319965, + 319985 ], "filename": "astronomy.js", "lineno": 7660, @@ -57485,8 +57485,8 @@ "comment": "", "meta": { "range": [ - 320019, - 320038 + 319997, + 320016 ], "filename": "astronomy.js", "lineno": 7661, @@ -57510,8 +57510,8 @@ "comment": "", "meta": { "range": [ - 320050, - 320089 + 320028, + 320067 ], "filename": "astronomy.js", "lineno": 7662, @@ -57535,8 +57535,8 @@ "comment": "", "meta": { "range": [ - 320099, - 320140 + 320077, + 320118 ], "filename": "astronomy.js", "lineno": 7663, @@ -57560,8 +57560,8 @@ "comment": "", "meta": { "range": [ - 320150, - 320191 + 320128, + 320169 ], "filename": "astronomy.js", "lineno": 7664, @@ -57585,8 +57585,8 @@ "comment": "", "meta": { "range": [ - 320203, - 320298 + 320181, + 320276 ], "filename": "astronomy.js", "lineno": 7665, @@ -57610,8 +57610,8 @@ "comment": "", "meta": { "range": [ - 320310, - 320403 + 320288, + 320381 ], "filename": "astronomy.js", "lineno": 7666, @@ -57635,8 +57635,8 @@ "comment": "", "meta": { "range": [ - 320413, - 320424 + 320391, + 320402 ], "filename": "astronomy.js", "lineno": 7667, @@ -57658,8 +57658,8 @@ "comment": "", "meta": { "range": [ - 320434, - 320443 + 320412, + 320421 ], "filename": "astronomy.js", "lineno": 7668, @@ -57681,8 +57681,8 @@ "comment": "", "meta": { "range": [ - 320453, - 320457 + 320431, + 320435 ], "filename": "astronomy.js", "lineno": 7669, @@ -57704,8 +57704,8 @@ "comment": "", "meta": { "range": [ - 320570, - 320609 + 320548, + 320587 ], "filename": "astronomy.js", "lineno": 7671, @@ -57730,8 +57730,8 @@ "comment": "", "meta": { "range": [ - 320619, - 320658 + 320597, + 320636 ], "filename": "astronomy.js", "lineno": 7672, @@ -57756,8 +57756,8 @@ "comment": "", "meta": { "range": [ - 320668, - 320759 + 320646, + 320737 ], "filename": "astronomy.js", "lineno": 7673, @@ -57782,8 +57782,8 @@ "comment": "", "meta": { "range": [ - 320769, - 320858 + 320747, + 320836 ], "filename": "astronomy.js", "lineno": 7674, @@ -57808,8 +57808,8 @@ "comment": "", "meta": { "range": [ - 320868, - 320905 + 320846, + 320883 ], "filename": "astronomy.js", "lineno": 7675, @@ -57834,8 +57834,8 @@ "comment": "", "meta": { "range": [ - 320932, - 320948 + 320910, + 320926 ], "filename": "astronomy.js", "lineno": 7678, @@ -57860,8 +57860,8 @@ "comment": "", "meta": { "range": [ - 321060, - 321422 + 321038, + 321400 ], "filename": "astronomy.js", "lineno": 7682, @@ -57894,8 +57894,8 @@ "comment": "", "meta": { "range": [ - 321133, - 321261 + 321111, + 321239 ], "filename": "astronomy.js", "lineno": 7683, @@ -57924,8 +57924,8 @@ "comment": "", "meta": { "range": [ - 321173, - 321213 + 321151, + 321191 ], "filename": "astronomy.js", "lineno": 7684, @@ -57949,8 +57949,8 @@ "comment": "", "meta": { "range": [ - 321272, - 321305 + 321250, + 321283 ], "filename": "astronomy.js", "lineno": 7687, @@ -57974,8 +57974,8 @@ "comment": "", "meta": { "range": [ - 321423, - 321556 + 321401, + 321534 ], "filename": "astronomy.js", "lineno": 7692, @@ -58004,8 +58004,8 @@ "comment": "", "meta": { "range": [ - 321470, - 321508 + 321448, + 321486 ], "filename": "astronomy.js", "lineno": 7693, @@ -58029,8 +58029,8 @@ "comment": "", "meta": { "range": [ - 321557, - 321753 + 321535, + 321731 ], "filename": "astronomy.js", "lineno": 7696, @@ -58060,8 +58060,8 @@ "comment": "", "meta": { "range": [ - 321606, - 321657 + 321584, + 321635 ], "filename": "astronomy.js", "lineno": 7697, @@ -58085,8 +58085,8 @@ "comment": "", "meta": { "range": [ - 321669, - 321725 + 321647, + 321703 ], "filename": "astronomy.js", "lineno": 7698, @@ -58110,8 +58110,8 @@ "comment": "/**\n * @brief Searches for a solar eclipse visible at a specific location on the Earth's surface.\n *\n * This function finds the first solar eclipse that occurs after `startTime`.\n * A solar eclipse may be partial, annular, or total.\n * See {@link LocalSolarEclipseInfo} for more information.\n *\n * To find a series of solar eclipses, call this function once,\n * then keep calling {@link NextLocalSolarEclipse} as many times as desired,\n * passing in the `peak` value returned from the previous call.\n *\n * IMPORTANT: An eclipse reported by this function might be partly or\n * completely invisible to the observer due to the time of day.\n * See {@link LocalSolarEclipseInfo} for more information about this topic.\n *\n * @param {AstroTime} startTime\n * The date and time for starting the search for a solar eclipse.\n *\n * @param {Observer} observer\n * The geographic location of the observer.\n *\n * @returns {LocalSolarEclipseInfo}\n */", "meta": { "range": [ - 322698, - 324406 + 322676, + 324384 ], "filename": "astronomy.js", "lineno": 7724, @@ -58180,8 +58180,8 @@ "comment": "", "meta": { "range": [ - 322794, - 322813 + 322772, + 322791 ], "filename": "astronomy.js", "lineno": 7726, @@ -58205,8 +58205,8 @@ "comment": "", "meta": { "range": [ - 322995, - 323013 + 322973, + 322991 ], "filename": "astronomy.js", "lineno": 7728, @@ -58230,8 +58230,8 @@ "comment": "", "meta": { "range": [ - 323117, - 323161 + 323095, + 323139 ], "filename": "astronomy.js", "lineno": 7731, @@ -58255,8 +58255,8 @@ "comment": "", "meta": { "range": [ - 323352, - 323400 + 323330, + 323378 ], "filename": "astronomy.js", "lineno": 7735, @@ -58280,8 +58280,8 @@ "comment": "", "meta": { "range": [ - 323635, - 323682 + 323613, + 323660 ], "filename": "astronomy.js", "lineno": 7739, @@ -58305,8 +58305,8 @@ "comment": "", "meta": { "range": [ - 323826, - 323866 + 323804, + 323844 ], "filename": "astronomy.js", "lineno": 7742, @@ -58330,8 +58330,8 @@ "comment": "", "meta": { "range": [ - 324367, - 324397 + 324345, + 324375 ], "filename": "astronomy.js", "lineno": 7751, @@ -58356,8 +58356,8 @@ "comment": "", "meta": { "range": [ - 324407, - 324464 + 324385, + 324442 ], "filename": "astronomy.js", "lineno": 7754, @@ -58380,8 +58380,8 @@ "comment": "/**\n * @brief Searches for the next local solar eclipse in a series.\n *\n * After using {@link SearchLocalSolarEclipse} to find the first solar eclipse\n * in a series, you can call this function to find the next consecutive solar eclipse.\n * Pass in the `peak` value from the {@link LocalSolarEclipseInfo} returned by the\n * previous call to `SearchLocalSolarEclipse` or `NextLocalSolarEclipse`\n * to find the next solar eclipse.\n * This function finds the first solar eclipse that occurs after `startTime`.\n * A solar eclipse may be partial, annular, or total.\n * See {@link LocalSolarEclipseInfo} for more information.\n *\n * @param {AstroTime} prevEclipseTime\n * The date and time for starting the search for a solar eclipse.\n *\n * @param {Observer} observer\n * The geographic location of the observer.\n *\n * @returns {LocalSolarEclipseInfo}\n */", "meta": { "range": [ - 325323, - 325494 + 325301, + 325472 ], "filename": "astronomy.js", "lineno": 7775, @@ -58445,8 +58445,8 @@ "comment": "", "meta": { "range": [ - 325393, - 325434 + 325371, + 325412 ], "filename": "astronomy.js", "lineno": 7776, @@ -58470,8 +58470,8 @@ "comment": "", "meta": { "range": [ - 325495, - 325548 + 325473, + 325526 ], "filename": "astronomy.js", "lineno": 7779, @@ -58494,8 +58494,8 @@ "comment": "/**\n * @brief Information about a transit of Mercury or Venus, as seen from the Earth.\n *\n * Returned by {@link SearchTransit} or {@link NextTransit} to report\n * information about a transit of Mercury or Venus.\n * A transit is when Mercury or Venus passes between the Sun and Earth so that\n * the other planet is seen in silhouette against the Sun.\n *\n * The calculations are performed from the point of view of a geocentric observer.\n *\n * @property {AstroTime} start\n * The date and time at the beginning of the transit.\n * This is the moment the planet first becomes visible against the Sun in its background.\n *\n * @property {AstroTime} peak\n * When the planet is most aligned with the Sun, as seen from the Earth.\n *\n * @property {AstroTime} finish\n * The date and time at the end of the transit.\n * This is the moment the planet is last seen against the Sun in its background.\n *\n * @property {number} separation\n * The minimum angular separation, in arcminutes, between the centers of the Sun and the planet.\n * This angle pertains to the time stored in `peak`.\n */", "meta": { "range": [ - 326659, - 326859 + 326637, + 326837 ], "filename": "astronomy.js", "lineno": 7805, @@ -58568,8 +58568,8 @@ "comment": "", "meta": { "range": [ - 326683, - 326857 + 326661, + 326835 ], "filename": "astronomy.js", "lineno": 7806, @@ -58600,8 +58600,8 @@ "comment": "/**\n * @brief Information about a transit of Mercury or Venus, as seen from the Earth.\n *\n * Returned by {@link SearchTransit} or {@link NextTransit} to report\n * information about a transit of Mercury or Venus.\n * A transit is when Mercury or Venus passes between the Sun and Earth so that\n * the other planet is seen in silhouette against the Sun.\n *\n * The calculations are performed from the point of view of a geocentric observer.\n *\n * @property {AstroTime} start\n * The date and time at the beginning of the transit.\n * This is the moment the planet first becomes visible against the Sun in its background.\n *\n * @property {AstroTime} peak\n * When the planet is most aligned with the Sun, as seen from the Earth.\n *\n * @property {AstroTime} finish\n * The date and time at the end of the transit.\n * This is the moment the planet is last seen against the Sun in its background.\n *\n * @property {number} separation\n * The minimum angular separation, in arcminutes, between the centers of the Sun and the planet.\n * This angle pertains to the time stored in `peak`.\n */", "meta": { "range": [ - 326659, - 326859 + 326637, + 326837 ], "filename": "astronomy.js", "lineno": 7805, @@ -58673,8 +58673,8 @@ "comment": "", "meta": { "range": [ - 326738, - 326756 + 326716, + 326734 ], "filename": "astronomy.js", "lineno": 7807, @@ -58698,8 +58698,8 @@ "comment": "", "meta": { "range": [ - 326766, - 326782 + 326744, + 326760 ], "filename": "astronomy.js", "lineno": 7808, @@ -58723,8 +58723,8 @@ "comment": "", "meta": { "range": [ - 326792, - 326812 + 326770, + 326790 ], "filename": "astronomy.js", "lineno": 7809, @@ -58748,8 +58748,8 @@ "comment": "", "meta": { "range": [ - 326822, - 326850 + 326800, + 326828 ], "filename": "astronomy.js", "lineno": 7810, @@ -58773,8 +58773,8 @@ "comment": "", "meta": { "range": [ - 326860, - 326893 + 326838, + 326871 ], "filename": "astronomy.js", "lineno": 7813, @@ -58797,8 +58797,8 @@ "comment": "", "meta": { "range": [ - 326895, - 327078 + 326873, + 327056 ], "filename": "astronomy.js", "lineno": 7814, @@ -58829,8 +58829,8 @@ "comment": "", "meta": { "range": [ - 326978, - 327029 + 326956, + 327007 ], "filename": "astronomy.js", "lineno": 7815, @@ -58854,8 +58854,8 @@ "comment": "", "meta": { "range": [ - 327079, - 327449 + 327057, + 327427 ], "filename": "astronomy.js", "lineno": 7818, @@ -58888,8 +58888,8 @@ "comment": "", "meta": { "range": [ - 327271, - 327363 + 327249, + 327341 ], "filename": "astronomy.js", "lineno": 7820, @@ -58913,8 +58913,8 @@ "comment": "/**\n * @brief Searches for the first transit of Mercury or Venus after a given date.\n *\n * Finds the first transit of Mercury or Venus after a specified date.\n * A transit is when an inferior planet passes between the Sun and the Earth\n * so that the silhouette of the planet is visible against the Sun in the background.\n * To continue the search, pass the `finish` time in the returned structure to\n * {@link NextTransit}.\n *\n * @param {Body} body\n * The planet whose transit is to be found. Must be `\"Mercury\"` or `\"Venus\"`.\n *\n * @param {AstroTime} startTime\n * The date and time for starting the search for a transit.\n *\n * @returns {TransitInfo}\n */", "meta": { "range": [ - 328116, - 330308 + 328094, + 330286 ], "filename": "astronomy.js", "lineno": 7842, @@ -58989,8 +58989,8 @@ "comment": "", "meta": { "range": [ - 328168, - 328189 + 328146, + 328167 ], "filename": "astronomy.js", "lineno": 7843, @@ -59014,8 +59014,8 @@ "comment": "", "meta": { "range": [ - 328262, - 328275 + 328240, + 328253 ], "filename": "astronomy.js", "lineno": 7844, @@ -59039,8 +59039,8 @@ "comment": "", "meta": { "range": [ - 328338, - 328354 + 328316, + 328332 ], "filename": "astronomy.js", "lineno": 7846, @@ -59062,8 +59062,8 @@ "comment": "", "meta": { "range": [ - 328415, - 328440 + 328393, + 328418 ], "filename": "astronomy.js", "lineno": 7849, @@ -59088,8 +59088,8 @@ "comment": "", "meta": { "range": [ - 328498, - 328523 + 328476, + 328501 ], "filename": "astronomy.js", "lineno": 7852, @@ -59114,8 +59114,8 @@ "comment": "", "meta": { "range": [ - 328618, - 328641 + 328596, + 328619 ], "filename": "astronomy.js", "lineno": 7857, @@ -59139,8 +59139,8 @@ "comment": "", "meta": { "range": [ - 328875, - 328929 + 328853, + 328907 ], "filename": "astronomy.js", "lineno": 7862, @@ -59164,8 +59164,8 @@ "comment": "", "meta": { "range": [ - 329032, - 329074 + 329010, + 329052 ], "filename": "astronomy.js", "lineno": 7864, @@ -59189,8 +59189,8 @@ "comment": "", "meta": { "range": [ - 329406, - 329461 + 329384, + 329439 ], "filename": "astronomy.js", "lineno": 7870, @@ -59214,8 +59214,8 @@ "comment": "", "meta": { "range": [ - 329652, - 329695 + 329630, + 329673 ], "filename": "astronomy.js", "lineno": 7873, @@ -59239,8 +59239,8 @@ "comment": "", "meta": { "range": [ - 329719, - 329804 + 329697, + 329782 ], "filename": "astronomy.js", "lineno": 7874, @@ -59264,8 +59264,8 @@ "comment": "", "meta": { "range": [ - 329828, - 329870 + 329806, + 329848 ], "filename": "astronomy.js", "lineno": 7875, @@ -59289,8 +59289,8 @@ "comment": "", "meta": { "range": [ - 329894, - 329979 + 329872, + 329957 ], "filename": "astronomy.js", "lineno": 7876, @@ -59314,8 +59314,8 @@ "comment": "", "meta": { "range": [ - 330003, - 330058 + 329981, + 330036 ], "filename": "astronomy.js", "lineno": 7877, @@ -59339,8 +59339,8 @@ "comment": "", "meta": { "range": [ - 330267, - 330299 + 330245, + 330277 ], "filename": "astronomy.js", "lineno": 7882, @@ -59365,8 +59365,8 @@ "comment": "", "meta": { "range": [ - 330309, - 330346 + 330287, + 330324 ], "filename": "astronomy.js", "lineno": 7885, @@ -59389,8 +59389,8 @@ "comment": "/**\n * @brief Searches for the next transit of Mercury or Venus in a series.\n *\n * After calling {@link SearchTransit} to find a transit of Mercury or Venus,\n * this function finds the next transit after that.\n * Keep calling this function as many times as you want to keep finding more transits.\n *\n * @param {Body} body\n * The planet whose transit is to be found. Must be `\"Mercury\"` or `\"Venus\"`.\n *\n * @param {AstroTime} prevTransitTime\n * A date and time near the previous transit.\n *\n * @returns {TransitInfo}\n */", "meta": { "range": [ - 330878, - 331022 + 330856, + 331000 ], "filename": "astronomy.js", "lineno": 7901, @@ -59454,8 +59454,8 @@ "comment": "", "meta": { "range": [ - 330934, - 330976 + 330912, + 330954 ], "filename": "astronomy.js", "lineno": 7902, @@ -59479,8 +59479,8 @@ "comment": "", "meta": { "range": [ - 331023, - 331056 + 331001, + 331034 ], "filename": "astronomy.js", "lineno": 7905,