From 296f23af768318103cf1dcfd844ca4f2bda9fb3a Mon Sep 17 00:00:00 2001 From: Don Cross Date: Fri, 5 Nov 2021 16:02:14 -0400 Subject: [PATCH] Libration functions now calculate apparent angular diameter of the Moon. All 4 languages have added a `diam_deg` field to the structure returned by the Libration function. It is the apparent angular diameter of the Moon as seen from the center of the Earth, expressed in degrees. --- README.md | 2 +- demo/browser/astronomy.browser.js | 13 +- demo/nodejs/astronomy.js | 13 +- demo/nodejs/calendar/astronomy.ts | 13 +- demo/python/astronomy.py | 13 +- generate/ctest.c | 12 +- generate/dotnet/csharp_test/csharp_test.cs | 8 +- generate/template/astronomy.c | 6 +- generate/template/astronomy.cs | 9 +- generate/template/astronomy.py | 13 +- generate/template/astronomy.ts | 13 +- generate/test.js | 8 +- generate/test.py | 10 +- source/c/README.md | 3 +- source/c/astronomy.c | 6 +- source/c/astronomy.h | 1 + source/csharp/README.md | 6 +- source/csharp/astronomy.cs | 9 +- source/js/README.md | 6 +- source/js/astronomy.browser.js | 13 +- source/js/astronomy.browser.min.js | 132 +- source/js/astronomy.d.ts | 10 +- source/js/astronomy.js | 13 +- source/js/astronomy.min.js | 4 +- source/js/astronomy.ts | 13 +- source/js/esm/astronomy.js | 13 +- source/python/README.md | 6 +- source/python/astronomy.py | 13 +- website/src/assets/documentation.json | 14124 ++++++++++--------- 29 files changed, 7340 insertions(+), 7165 deletions(-) diff --git a/README.md b/README.md index 1f96ec90..cd9bc1b0 100644 --- a/README.md +++ b/README.md @@ -151,7 +151,7 @@ of complexity. So I decided to create Astronomy Engine with the following engine - Support JavaScript, C, C#, and Python with the same algorithms, and verify them to produce identical results. - No external dependencies! The code must not require anything outside the standard library for each language. -- Minified JavaScript code less than 100K. (The current size is 98453 bytes.) +- Minified JavaScript code less than 100K. (The current size is 98530 bytes.) - Accuracy always within 1 arcminute of results from NOVAS. - It would be well documented, relatively easy to use, and support a wide variety of common use cases. diff --git a/demo/browser/astronomy.browser.js b/demo/browser/astronomy.browser.js index 5160d867..f1acb1dd 100644 --- a/demo/browser/astronomy.browser.js +++ b/demo/browser/astronomy.browser.js @@ -1584,14 +1584,17 @@ function CalcMoon(time) { * Moon's geocentric ecliptic longitude. * @property {number} dist_km * Distance between the centers of the Earth and Moon in kilometers. + * @property {number} diam_deg + * The apparent angular diameter of the Moon, in degrees, as seen from the center of the Earth. */ class LibrationInfo { - constructor(elat, elon, mlat, mlon, dist_km) { + constructor(elat, elon, mlat, mlon, dist_km, diam_deg) { this.elat = elat; this.elon = elon; this.mlat = mlat; this.mlon = mlon; this.dist_km = dist_km; + this.diam_deg = diam_deg; } } exports.LibrationInfo = LibrationInfo; @@ -1608,8 +1611,9 @@ exports.LibrationInfo = LibrationInfo; * in ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position. * * This function also returns the geocentric position of the Moon - * expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, and - * distance `dist_km` between the centers of the Earth and Moon expressed in kilometers. + * expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, the + * distance `dist_km` between the centers of the Earth and Moon expressed in kilometers, + * and the apparent angular diameter of the Moon `diam_deg`. * * @param {FlexibleDateTime} date * A Date object, a number of UTC days since the J2000 epoch (noon on January 1, 2000), @@ -1693,7 +1697,8 @@ function Libration(date) { +0.00011 * Math.sin(2 * mdash - 2 * m - 2 * d)); const ldash2 = -tau + (rho * Math.cos(a) + sigma * Math.sin(a)) * Math.tan(bdash); const bdash2 = sigma * Math.cos(a) - rho * Math.sin(a); - return new LibrationInfo(exports.RAD2DEG * bdash + bdash2, ldash + ldash2, mlat, mlon, dist_km); + const diam_deg = 2.0 * exports.RAD2DEG * Math.atan(MOON_MEAN_RADIUS_KM / Math.sqrt(dist_km * dist_km - MOON_MEAN_RADIUS_KM * MOON_MEAN_RADIUS_KM)); + return new LibrationInfo(exports.RAD2DEG * bdash + bdash2, ldash + ldash2, mlat, mlon, dist_km, diam_deg); } exports.Libration = Libration; function precession(pos, time, dir) { diff --git a/demo/nodejs/astronomy.js b/demo/nodejs/astronomy.js index 118b05f9..22e9dbb9 100644 --- a/demo/nodejs/astronomy.js +++ b/demo/nodejs/astronomy.js @@ -1583,14 +1583,17 @@ function CalcMoon(time) { * Moon's geocentric ecliptic longitude. * @property {number} dist_km * Distance between the centers of the Earth and Moon in kilometers. + * @property {number} diam_deg + * The apparent angular diameter of the Moon, in degrees, as seen from the center of the Earth. */ class LibrationInfo { - constructor(elat, elon, mlat, mlon, dist_km) { + constructor(elat, elon, mlat, mlon, dist_km, diam_deg) { this.elat = elat; this.elon = elon; this.mlat = mlat; this.mlon = mlon; this.dist_km = dist_km; + this.diam_deg = diam_deg; } } exports.LibrationInfo = LibrationInfo; @@ -1607,8 +1610,9 @@ exports.LibrationInfo = LibrationInfo; * in ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position. * * This function also returns the geocentric position of the Moon - * expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, and - * distance `dist_km` between the centers of the Earth and Moon expressed in kilometers. + * expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, the + * distance `dist_km` between the centers of the Earth and Moon expressed in kilometers, + * and the apparent angular diameter of the Moon `diam_deg`. * * @param {FlexibleDateTime} date * A Date object, a number of UTC days since the J2000 epoch (noon on January 1, 2000), @@ -1692,7 +1696,8 @@ function Libration(date) { +0.00011 * Math.sin(2 * mdash - 2 * m - 2 * d)); const ldash2 = -tau + (rho * Math.cos(a) + sigma * Math.sin(a)) * Math.tan(bdash); const bdash2 = sigma * Math.cos(a) - rho * Math.sin(a); - return new LibrationInfo(exports.RAD2DEG * bdash + bdash2, ldash + ldash2, mlat, mlon, dist_km); + const diam_deg = 2.0 * exports.RAD2DEG * Math.atan(MOON_MEAN_RADIUS_KM / Math.sqrt(dist_km * dist_km - MOON_MEAN_RADIUS_KM * MOON_MEAN_RADIUS_KM)); + return new LibrationInfo(exports.RAD2DEG * bdash + bdash2, ldash + ldash2, mlat, mlon, dist_km, diam_deg); } exports.Libration = Libration; function precession(pos, time, dir) { diff --git a/demo/nodejs/calendar/astronomy.ts b/demo/nodejs/calendar/astronomy.ts index 0f61a5f3..055425a1 100644 --- a/demo/nodejs/calendar/astronomy.ts +++ b/demo/nodejs/calendar/astronomy.ts @@ -1688,6 +1688,8 @@ function CalcMoon(time: AstroTime) { * Moon's geocentric ecliptic longitude. * @property {number} dist_km * Distance between the centers of the Earth and Moon in kilometers. + * @property {number} diam_deg + * The apparent angular diameter of the Moon, in degrees, as seen from the center of the Earth. */ export class LibrationInfo { constructor( @@ -1695,7 +1697,8 @@ export class LibrationInfo { public elon: number, public mlat: number, public mlon: number, - public dist_km: number + public dist_km: number, + public diam_deg: number ) {} } @@ -1712,8 +1715,9 @@ export class LibrationInfo { * in ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position. * * This function also returns the geocentric position of the Moon - * expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, and - * distance `dist_km` between the centers of the Earth and Moon expressed in kilometers. + * expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, the + * distance `dist_km` between the centers of the Earth and Moon expressed in kilometers, + * and the apparent angular diameter of the Moon `diam_deg`. * * @param {FlexibleDateTime} date * A Date object, a number of UTC days since the J2000 epoch (noon on January 1, 2000), @@ -1816,7 +1820,8 @@ export function Libration(date: FlexibleDateTime): LibrationInfo { const ldash2 = -tau + (rho*Math.cos(a) + sigma*Math.sin(a))*Math.tan(bdash); const bdash2 = sigma*Math.cos(a) - rho*Math.sin(a); - return new LibrationInfo(RAD2DEG*bdash + bdash2, ldash + ldash2, mlat, mlon, dist_km); + const diam_deg = 2.0 * RAD2DEG * Math.atan(MOON_MEAN_RADIUS_KM / Math.sqrt(dist_km*dist_km - MOON_MEAN_RADIUS_KM*MOON_MEAN_RADIUS_KM)); + return new LibrationInfo(RAD2DEG*bdash + bdash2, ldash + ldash2, mlat, mlon, dist_km, diam_deg); } function precession(pos: ArrayVector, time: AstroTime, dir: PrecessDirection): ArrayVector { diff --git a/demo/python/astronomy.py b/demo/python/astronomy.py index a9dfc8e9..bccba31f 100644 --- a/demo/python/astronomy.py +++ b/demo/python/astronomy.py @@ -8554,13 +8554,16 @@ class LibrationInfo: Moon's geocentric ecliptic longitude. dist_km : float Distance between the centers of the Earth and Moon in kilometers. + diam_deg : float + The apparent angular diameter of the Moon as seen from the center of the Earth. """ - def __init__(self, elat, elon, mlat, mlon, dist_km): + def __init__(self, elat, elon, mlat, mlon, dist_km, diam_deg): self.elat = elat self.elon = elon self.mlat = mlat self.mlon = mlon self.dist_km = dist_km + self.diam_deg = diam_deg def Libration(time): @@ -8576,8 +8579,9 @@ def Libration(time): in ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position. This function also returns the geocentric position of the Moon - expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, and - distance `dist_km` between the centers of the Earth and Moon expressed in kilometers. + expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, the + distance `dist_km` between the centers of the Earth and Moon expressed in kilometers, + and the apparent angular diameter of the Moon `diam_deg`. Parameters ---------- @@ -8596,6 +8600,7 @@ def Libration(time): mlon = moon.geo_eclip_lon mlat = moon.geo_eclip_lat dist_km = moon.distance_au * KM_PER_AU + diam_deg = 2.0 * math.degrees(math.atan(_MOON_MEAN_RADIUS_KM / math.sqrt(dist_km*dist_km - _MOON_MEAN_RADIUS_KM*_MOON_MEAN_RADIUS_KM))) # Inclination angle I = math.radians(1.54242) @@ -8682,4 +8687,4 @@ def Libration(time): ldash2 = -tau + (rho*math.cos(a) + sigma*math.sin(a))*math.tan(bdash) bdash = math.degrees(bdash) bdash2 = sigma*math.cos(a) - rho*math.sin(a) - return LibrationInfo(bdash + bdash2, ldash + ldash2, mlat, mlon, dist_km) + return LibrationInfo(bdash + bdash2, ldash + ldash2, mlat, mlon, dist_km, diam_deg) diff --git a/generate/ctest.c b/generate/ctest.c index 29606900..719da0c7 100644 --- a/generate/ctest.c +++ b/generate/ctest.c @@ -4626,8 +4626,8 @@ static int Libration(const char *filename, int *ndata, double *var_lon, double * double phase, age, diam, dist, ra, dec, slon, slat, elon, elat, axisa; astro_time_t time; astro_libration_t lib; - double diff_elon, diff_elat, diff_distance; - double max_diff_elon = 0.0, max_diff_elat = 0.0, max_diff_distance = 0.0; + double diff_elon, diff_elat, diff_distance, diff_diam; + double max_diff_elon = 0.0, max_diff_elat = 0.0, max_diff_distance = 0.0, max_diff_diam = 0.0; infile = fopen(filename, "rt"); if (infile == NULL) @@ -4673,6 +4673,10 @@ static int Libration(const char *filename, int *ndata, double *var_lon, double * if (diff_distance > max_diff_distance) max_diff_distance = diff_distance; + diff_diam = ABS(lib.diam_deg - diam/3600.0); + if (diff_diam > max_diff_diam) + max_diff_diam = diff_diam; + if (diff_elon > 0.130) FAIL("C Libration(%s line %d): EXCESSIVE diff_elon = %0.4lf arcmin\n", filename, lnum, diff_elon); @@ -4690,8 +4694,8 @@ static int Libration(const char *filename, int *ndata, double *var_lon, double * } } - printf("C Libration(%s): PASS (%d test cases, max_diff_elon = %0.4lf arcmin, max_diff_elat = %0.4lf arcmin, max_diff_distance = %0.3lf km)\n", - filename, count, max_diff_elon, max_diff_elat, max_diff_distance); + printf("C Libration(%s): PASS (%d test cases, max_diff_elon = %0.4lf arcmin, max_diff_elat = %0.4lf arcmin, max_diff_distance = %0.3lf km, max_diff_diam = %0.12lf deg)\n", + filename, count, max_diff_elon, max_diff_elat, max_diff_distance, max_diff_diam); *ndata += count; error = 0; diff --git a/generate/dotnet/csharp_test/csharp_test.cs b/generate/dotnet/csharp_test/csharp_test.cs index 11764dc5..f7857527 100644 --- a/generate/dotnet/csharp_test/csharp_test.cs +++ b/generate/dotnet/csharp_test/csharp_test.cs @@ -3009,6 +3009,7 @@ namespace csharp_test double max_diff_elon = 0.0; double max_diff_elat = 0.0; double max_diff_distance = 0.0; + double max_diff_diam = 0.0; string line; while (null != (line = infile.ReadLine())) { @@ -3046,6 +3047,7 @@ namespace csharp_test int minute = int.Parse(hmtoken[1]); var time = new AstroTime(year, month, day, hour, minute, 0); + double diam = double.Parse(token[7]) / 3600.0; double dist = double.Parse(token[8]); double elon = double.Parse(token[13]); double elat = double.Parse(token[14]); @@ -3064,6 +3066,10 @@ namespace csharp_test if (diff_distance > max_diff_distance) max_diff_distance = diff_distance; + double diff_diam = abs(lib.diam_deg - diam); + if (diff_diam > max_diff_diam) + max_diff_diam = diff_diam; + if (diff_elon > 0.130) { Console.WriteLine($"C# Libration({filename} line {lnum}): EXCESSIVE diff_elon = {diff_elon} arcmin"); @@ -3085,7 +3091,7 @@ namespace csharp_test } } - Console.WriteLine($"C# Libration({filename}): PASS ({count} test cases, max_diff_elon = {max_diff_elon} arcmin, max_diff_elat = {max_diff_elat} arcmin, max_diff_distance = {max_diff_distance})"); + Console.WriteLine($"C# Libration({filename}): PASS ({count} test cases, max_diff_elon = {max_diff_elon} arcmin, max_diff_elat = {max_diff_elat} arcmin, max_diff_distance = {max_diff_distance} km, max_diff_diam = {max_diff_diam} deg)"); return 0; } diff --git a/generate/template/astronomy.c b/generate/template/astronomy.c index 0570e3f4..03236173 100644 --- a/generate/template/astronomy.c +++ b/generate/template/astronomy.c @@ -1882,8 +1882,9 @@ astro_vector_t Astronomy_GeoMoon(astro_time_t time) * in ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position. * * This function also returns the geocentric position of the Moon - * expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, and - * distance `dist_km` between the centers of the Earth and Moon expressed in kilometers. + * expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, the + * distance `dist_km` between the centers of the Earth and Moon expressed in kilometers, + * and the apparent angular diameter of the Moon `diam_deg`. * * @param time The date and time for which to calculate libration angles. * @return The Moon's ecliptic position and libration angles as seen from the Earth. @@ -1903,6 +1904,7 @@ astro_libration_t Astronomy_Libration(astro_time_t time) CalcMoon(t, &lib.mlon, &lib.mlat, &lib.dist_km); lib.dist_km *= KM_PER_AU; + lib.diam_deg = (2.0 * RAD2DEG) * atan(MOON_MEAN_RADIUS_KM / sqrt(lib.dist_km*lib.dist_km - MOON_MEAN_RADIUS_KM*MOON_MEAN_RADIUS_KM)); /* Moon's argument of latitude in radians. */ f = DEG2RAD * NormalizeLongitude(93.2720950 + 483202.0175233*t - 0.0036539*t2 - t3/3526000 + t4/863310000); diff --git a/generate/template/astronomy.cs b/generate/template/astronomy.cs index 280a7814..d82fc27a 100644 --- a/generate/template/astronomy.cs +++ b/generate/template/astronomy.cs @@ -974,6 +974,9 @@ namespace CosineKitty /// Distance between the centers of the Earth and Moon in kilometers. public double dist_km; + + /// The apparent angular diameter of the Moon, in degrees, as seen from the center of the Earth. + public double diam_deg; } /// @@ -3355,8 +3358,9 @@ $ASTRO_IAU_DATA() /// in ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position. /// /// This function also returns the geocentric position of the Moon - /// expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, and - /// distance `dist_km` between the centers of the Earth and Moon expressed in kilometers. + /// expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, the + /// distance `dist_km` between the centers of the Earth and Moon expressed in kilometers, + /// and the apparent angular diameter of the Moon `diam_deg`. /// /// The date and time for which to calculate lunar libration. /// The Moon's ecliptic position and libration angles as seen from the Earth. @@ -3374,6 +3378,7 @@ $ASTRO_IAU_DATA() lib.mlon = moon.geo_eclip_lon; lib.mlat = moon.geo_eclip_lat; lib.dist_km = moon.distance_au * KM_PER_AU; + lib.diam_deg = (2.0 * RAD2DEG) * Math.Atan(MOON_MEAN_RADIUS_KM / Math.Sqrt(lib.dist_km*lib.dist_km - MOON_MEAN_RADIUS_KM*MOON_MEAN_RADIUS_KM)); // Inclination angle const double I = DEG2RAD * 1.54242; diff --git a/generate/template/astronomy.py b/generate/template/astronomy.py index fa1596e3..4993d194 100644 --- a/generate/template/astronomy.py +++ b/generate/template/astronomy.py @@ -6073,13 +6073,16 @@ class LibrationInfo: Moon's geocentric ecliptic longitude. dist_km : float Distance between the centers of the Earth and Moon in kilometers. + diam_deg : float + The apparent angular diameter of the Moon as seen from the center of the Earth. """ - def __init__(self, elat, elon, mlat, mlon, dist_km): + def __init__(self, elat, elon, mlat, mlon, dist_km, diam_deg): self.elat = elat self.elon = elon self.mlat = mlat self.mlon = mlon self.dist_km = dist_km + self.diam_deg = diam_deg def Libration(time): @@ -6095,8 +6098,9 @@ def Libration(time): in ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position. This function also returns the geocentric position of the Moon - expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, and - distance `dist_km` between the centers of the Earth and Moon expressed in kilometers. + expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, the + distance `dist_km` between the centers of the Earth and Moon expressed in kilometers, + and the apparent angular diameter of the Moon `diam_deg`. Parameters ---------- @@ -6115,6 +6119,7 @@ def Libration(time): mlon = moon.geo_eclip_lon mlat = moon.geo_eclip_lat dist_km = moon.distance_au * KM_PER_AU + diam_deg = 2.0 * math.degrees(math.atan(_MOON_MEAN_RADIUS_KM / math.sqrt(dist_km*dist_km - _MOON_MEAN_RADIUS_KM*_MOON_MEAN_RADIUS_KM))) # Inclination angle I = math.radians(1.54242) @@ -6201,4 +6206,4 @@ def Libration(time): ldash2 = -tau + (rho*math.cos(a) + sigma*math.sin(a))*math.tan(bdash) bdash = math.degrees(bdash) bdash2 = sigma*math.cos(a) - rho*math.sin(a) - return LibrationInfo(bdash + bdash2, ldash + ldash2, mlat, mlon, dist_km) + return LibrationInfo(bdash + bdash2, ldash + ldash2, mlat, mlon, dist_km, diam_deg) diff --git a/generate/template/astronomy.ts b/generate/template/astronomy.ts index 850d9f1b..fd0beaf6 100644 --- a/generate/template/astronomy.ts +++ b/generate/template/astronomy.ts @@ -877,6 +877,8 @@ $ASTRO_ADDSOL() * Moon's geocentric ecliptic longitude. * @property {number} dist_km * Distance between the centers of the Earth and Moon in kilometers. + * @property {number} diam_deg + * The apparent angular diameter of the Moon, in degrees, as seen from the center of the Earth. */ export class LibrationInfo { constructor( @@ -884,7 +886,8 @@ export class LibrationInfo { public elon: number, public mlat: number, public mlon: number, - public dist_km: number + public dist_km: number, + public diam_deg: number ) {} } @@ -901,8 +904,9 @@ export class LibrationInfo { * in ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position. * * This function also returns the geocentric position of the Moon - * expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, and - * distance `dist_km` between the centers of the Earth and Moon expressed in kilometers. + * expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, the + * distance `dist_km` between the centers of the Earth and Moon expressed in kilometers, + * and the apparent angular diameter of the Moon `diam_deg`. * * @param {FlexibleDateTime} date * A Date object, a number of UTC days since the J2000 epoch (noon on January 1, 2000), @@ -1005,7 +1009,8 @@ export function Libration(date: FlexibleDateTime): LibrationInfo { const ldash2 = -tau + (rho*Math.cos(a) + sigma*Math.sin(a))*Math.tan(bdash); const bdash2 = sigma*Math.cos(a) - rho*Math.sin(a); - return new LibrationInfo(RAD2DEG*bdash + bdash2, ldash + ldash2, mlat, mlon, dist_km); + const diam_deg = 2.0 * RAD2DEG * Math.atan(MOON_MEAN_RADIUS_KM / Math.sqrt(dist_km*dist_km - MOON_MEAN_RADIUS_KM*MOON_MEAN_RADIUS_KM)); + return new LibrationInfo(RAD2DEG*bdash + bdash2, ldash + ldash2, mlat, mlon, dist_km, diam_deg); } function precession(pos: ArrayVector, time: AstroTime, dir: PrecessDirection): ArrayVector { diff --git a/generate/test.js b/generate/test.js index 8d0b347f..b4da4d74 100644 --- a/generate/test.js +++ b/generate/test.js @@ -2345,6 +2345,7 @@ function Libration(filename) { let max_diff_elon = 0.0; let max_diff_elat = 0.0; let max_diff_distance = 0.0; + let max_diff_diam = 0.0; let count = 0; let lnum = 0; for (let line of lines) { @@ -2373,6 +2374,7 @@ function Libration(filename) { const minute = int(hmtoken[1]); const time = Astronomy.MakeTime(new Date(Date.UTC(year, month-1, day, hour, minute))); + const diam = float(token[7]) / 3600.0; const dist = float(token[8]); const elon = float(token[13]); const elat = float(token[14]); @@ -2391,6 +2393,10 @@ function Libration(filename) { if (diff_distance > max_diff_distance) max_diff_distance = diff_distance; + const diff_diam = abs(lib.diam_deg - diam); + if (diff_diam > max_diff_diam) + max_diff_diam = diff_diam; + if (diff_elon > 0.130) { console.error(`JS Libration(${filename} line ${lnum}): EXCESSIVE diff_elon = ${diff_elon} arcmin`); return 1; @@ -2408,7 +2414,7 @@ function Libration(filename) { ++count; } } - console.log(`JS Libration(${filename}): PASS (${count} test cases, max_diff_elon = ${max_diff_elon} arcmin, max_diff_elat = ${max_diff_elat} arcmin, max_diff_distance = ${max_diff_distance} km)`); + console.log(`JS Libration(${filename}): PASS (${count} test cases, max_diff_elon = ${max_diff_elon} arcmin, max_diff_elat = ${max_diff_elat} arcmin, max_diff_distance = ${max_diff_distance} km, max_diff_diam = ${max_diff_diam} deg)`); return 0; } diff --git a/generate/test.py b/generate/test.py index 355672e4..50c161f3 100755 --- a/generate/test.py +++ b/generate/test.py @@ -2096,6 +2096,7 @@ def LibrationFile(filename): max_diff_elon = 0.0 max_diff_elat = 0.0 max_diff_distance = 0.0 + max_diff_diam = 0.0 count = 0 with open(filename, 'rt') as infile: lnum = 0 @@ -2120,6 +2121,7 @@ def LibrationFile(filename): hour = int(hmtoken[0]) minute = int(hmtoken[1]) time = astronomy.Time.Make(year, month, day, hour, minute, 0.0) + diam = float(token[7]) / 3600.0 dist = float(token[8]) elon = float(token[13]) elat = float(token[14]) @@ -2137,6 +2139,10 @@ def LibrationFile(filename): if diff_distance > max_diff_distance: max_diff_distance = diff_distance + diff_diam = vabs(lib.diam_deg - diam) + if diff_diam > max_diff_diam: + max_diff_diam = diff_diam + if diff_elon > 0.130: print('PY LibrationFile({} line {}): EXCESSIVE diff_elon = {}'.format(filename, lnum, diff_elon)) return 1 @@ -2151,8 +2157,8 @@ def LibrationFile(filename): count += 1 - print('PY Libration({}): PASS ({} test cases, max_diff_elon = {} arcmin, max_diff_elat = {} arcmin, max_diff_distance = {} km)'.format( - filename, count, max_diff_elon, max_diff_elat, max_diff_distance + print('PY Libration({}): PASS ({} test cases, max_diff_elon = {} arcmin, max_diff_elat = {} arcmin, max_diff_distance = {} km, max_diff_diam = {} deg)'.format( + filename, count, max_diff_elon, max_diff_elat, max_diff_distance, max_diff_diam )) return 0 diff --git a/source/c/README.md b/source/c/README.md index 0e5c4b7e..c2aba08e 100644 --- a/source/c/README.md +++ b/source/c/README.md @@ -918,7 +918,7 @@ Libration is an observed back-and-forth wobble of the portion of the Moon visibl This function calculates a pair of perpendicular libration angles, one representing rotation of the Moon in eclitpic longitude `elon`, the other in ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position. -This function also returns the geocentric position of the Moon expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, and distance `dist_km` between the centers of the Earth and Moon expressed in kilometers. +This function also returns the geocentric position of the Moon expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, the distance `dist_km` between the centers of the Earth and Moon expressed in kilometers, and the apparent angular diameter of the Moon `diam_deg`. @@ -3290,6 +3290,7 @@ The following integer constants may be useful for indexing into the `moon` array | `double` | `mlat` | Moon's geocentric ecliptic latitude. | | `double` | `mlon` | Moon's geocentric ecliptic longitude. | | `double` | `dist_km` | Distance between the centers of the Earth and Moon in kilometers. | +| `double` | `diam_deg` | The apparent angular diameter of the Moon, in degrees, as seen from the center of the Earth. | --- diff --git a/source/c/astronomy.c b/source/c/astronomy.c index f3351e0b..0fba4197 100644 --- a/source/c/astronomy.c +++ b/source/c/astronomy.c @@ -2065,8 +2065,9 @@ astro_vector_t Astronomy_GeoMoon(astro_time_t time) * in ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position. * * This function also returns the geocentric position of the Moon - * expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, and - * distance `dist_km` between the centers of the Earth and Moon expressed in kilometers. + * expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, the + * distance `dist_km` between the centers of the Earth and Moon expressed in kilometers, + * and the apparent angular diameter of the Moon `diam_deg`. * * @param time The date and time for which to calculate libration angles. * @return The Moon's ecliptic position and libration angles as seen from the Earth. @@ -2086,6 +2087,7 @@ astro_libration_t Astronomy_Libration(astro_time_t time) CalcMoon(t, &lib.mlon, &lib.mlat, &lib.dist_km); lib.dist_km *= KM_PER_AU; + lib.diam_deg = (2.0 * RAD2DEG) * atan(MOON_MEAN_RADIUS_KM / sqrt(lib.dist_km*lib.dist_km - MOON_MEAN_RADIUS_KM*MOON_MEAN_RADIUS_KM)); /* Moon's argument of latitude in radians. */ f = DEG2RAD * NormalizeLongitude(93.2720950 + 483202.0175233*t - 0.0036539*t2 - t3/3526000 + t4/863310000); diff --git a/source/c/astronomy.h b/source/c/astronomy.h index b24bdc63..06f3175b 100644 --- a/source/c/astronomy.h +++ b/source/c/astronomy.h @@ -902,6 +902,7 @@ typedef struct double mlat; /**< Moon's geocentric ecliptic latitude. */ double mlon; /**< Moon's geocentric ecliptic longitude. */ double dist_km; /**< Distance between the centers of the Earth and Moon in kilometers. */ + double diam_deg; /**< The apparent angular diameter of the Moon, in degrees, as seen from the center of the Earth. */ } astro_libration_t; diff --git a/source/csharp/README.md b/source/csharp/README.md index cab50089..00dd443e 100644 --- a/source/csharp/README.md +++ b/source/csharp/README.md @@ -711,8 +711,9 @@ one representing rotation of the Moon in eclitpic longitude `elon`, the other in ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position. This function also returns the geocentric position of the Moon -expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, and -distance `dist_km` between the centers of the Earth and Moon expressed in kilometers. +expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, the +distance `dist_km` between the centers of the Earth and Moon expressed in kilometers, +and the apparent angular diameter of the Moon `diam_deg`. | Type | Parameter | Description | | --- | --- | --- | @@ -2224,6 +2225,7 @@ and the velocities in AU/day. | `double` | `mlat` | Moon's geocentric ecliptic latitude. | | `double` | `mlon` | Moon's geocentric ecliptic longitude. | | `double` | `dist_km` | Distance between the centers of the Earth and Moon in kilometers. | +| `double` | `diam_deg` | The apparent angular diameter of the Moon, in degrees, as seen from the center of the Earth. | --- diff --git a/source/csharp/astronomy.cs b/source/csharp/astronomy.cs index 638a4266..d79bf2ae 100644 --- a/source/csharp/astronomy.cs +++ b/source/csharp/astronomy.cs @@ -974,6 +974,9 @@ namespace CosineKitty /// Distance between the centers of the Earth and Moon in kilometers. public double dist_km; + + /// The apparent angular diameter of the Moon, in degrees, as seen from the center of the Earth. + public double diam_deg; } /// @@ -4555,8 +4558,9 @@ namespace CosineKitty /// in ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position. /// /// This function also returns the geocentric position of the Moon - /// expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, and - /// distance `dist_km` between the centers of the Earth and Moon expressed in kilometers. + /// expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, the + /// distance `dist_km` between the centers of the Earth and Moon expressed in kilometers, + /// and the apparent angular diameter of the Moon `diam_deg`. /// /// The date and time for which to calculate lunar libration. /// The Moon's ecliptic position and libration angles as seen from the Earth. @@ -4574,6 +4578,7 @@ namespace CosineKitty lib.mlon = moon.geo_eclip_lon; lib.mlat = moon.geo_eclip_lat; lib.dist_km = moon.distance_au * KM_PER_AU; + lib.diam_deg = (2.0 * RAD2DEG) * Math.Atan(MOON_MEAN_RADIUS_KM / Math.Sqrt(lib.dist_km*lib.dist_km - MOON_MEAN_RADIUS_KM*MOON_MEAN_RADIUS_KM)); // Inclination angle const double I = DEG2RAD * 1.54242; diff --git a/source/js/README.md b/source/js/README.md index cdcc17a1..0fc50f9c 100644 --- a/source/js/README.md +++ b/source/js/README.md @@ -243,6 +243,7 @@ an `AstroTime` value that can be passed to Astronomy Engine functions. | mlat | number | Moon's geocentric ecliptic latitude. | | mlon | number | Moon's geocentric ecliptic longitude. | | dist_km | number | Distance between the centers of the Earth and Moon in kilometers. | +| diam_deg | number | The apparent angular diameter of the Moon, in degrees, as seen from the center of the Earth. | * * * @@ -927,8 +928,9 @@ one representing rotation of the Moon in eclitpic longitude `elon`, the other in ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position. This function also returns the geocentric position of the Moon -expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, and -distance `dist_km` between the centers of the Earth and Moon expressed in kilometers. +expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, the +distance `dist_km` between the centers of the Earth and Moon expressed in kilometers, +and the apparent angular diameter of the Moon `diam_deg`. | Param | Type | Description | | --- | --- | --- | diff --git a/source/js/astronomy.browser.js b/source/js/astronomy.browser.js index 5160d867..f1acb1dd 100644 --- a/source/js/astronomy.browser.js +++ b/source/js/astronomy.browser.js @@ -1584,14 +1584,17 @@ function CalcMoon(time) { * Moon's geocentric ecliptic longitude. * @property {number} dist_km * Distance between the centers of the Earth and Moon in kilometers. + * @property {number} diam_deg + * The apparent angular diameter of the Moon, in degrees, as seen from the center of the Earth. */ class LibrationInfo { - constructor(elat, elon, mlat, mlon, dist_km) { + constructor(elat, elon, mlat, mlon, dist_km, diam_deg) { this.elat = elat; this.elon = elon; this.mlat = mlat; this.mlon = mlon; this.dist_km = dist_km; + this.diam_deg = diam_deg; } } exports.LibrationInfo = LibrationInfo; @@ -1608,8 +1611,9 @@ exports.LibrationInfo = LibrationInfo; * in ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position. * * This function also returns the geocentric position of the Moon - * expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, and - * distance `dist_km` between the centers of the Earth and Moon expressed in kilometers. + * expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, the + * distance `dist_km` between the centers of the Earth and Moon expressed in kilometers, + * and the apparent angular diameter of the Moon `diam_deg`. * * @param {FlexibleDateTime} date * A Date object, a number of UTC days since the J2000 epoch (noon on January 1, 2000), @@ -1693,7 +1697,8 @@ function Libration(date) { +0.00011 * Math.sin(2 * mdash - 2 * m - 2 * d)); const ldash2 = -tau + (rho * Math.cos(a) + sigma * Math.sin(a)) * Math.tan(bdash); const bdash2 = sigma * Math.cos(a) - rho * Math.sin(a); - return new LibrationInfo(exports.RAD2DEG * bdash + bdash2, ldash + ldash2, mlat, mlon, dist_km); + const diam_deg = 2.0 * exports.RAD2DEG * Math.atan(MOON_MEAN_RADIUS_KM / Math.sqrt(dist_km * dist_km - MOON_MEAN_RADIUS_KM * MOON_MEAN_RADIUS_KM)); + return new LibrationInfo(exports.RAD2DEG * bdash + bdash2, ldash + ldash2, mlat, mlon, dist_km, diam_deg); } exports.Libration = Libration; function precession(pos, time, dir) { diff --git a/source/js/astronomy.browser.min.js b/source/js/astronomy.browser.min.js index 4d2cba7c..182aea09 100644 --- a/source/js/astronomy.browser.min.js +++ b/source/js/astronomy.browser.min.js @@ -154,69 +154,69 @@ a.SSB="SSB";a.EMB="EMB"})(r=e.Body||(e.Body={}));var F;(function(a){a[a.From2000 0,-14,104,0,2]],[[0,1,2,0,2],[7566,-21,-11,-3250,0,-5]],[[0,0,2,2,1],[-6637,-11,25,3353,0,14]],[[0,-1,2,0,2],[-7141,21,8,3070,0,4]],[[0,0,0,2,1],[-6302,-11,2,3272,0,4]],[[1,0,2,-2,1],[5800,10,2,-3045,0,-1]],[[2,0,2,-2,2],[6443,0,-7,-2768,0,-4]],[[-2,0,0,2,1],[-5774,-11,-15,3041,0,-5]],[[2,0,2,0,1],[-5350,0,21,2695,0,12]],[[0,-1,2,-2,1],[-4752,-11,-3,2719,0,-3]],[[0,0,0,-2,1],[-4940,-11,-21,2720,0,-9]],[[-1,-1,0,2,0],[7350,0,-8,-51,0,4]],[[2,0,0,-2,1],[4065,0,6,-2206,0,1]],[[1,0,0,2,0],[6579,0,-24, -199,0,2]],[[0,1,2,-2,1],[3579,0,5,-1900,0,1]],[[1,-1,0,0,0],[4725,0,-6,-41,0,3]],[[-2,0,2,0,2],[-3075,0,-2,1313,0,-1]],[[3,0,2,0,2],[-2904,0,15,1233,0,7]],[[0,-1,0,2,0],[4348,0,-10,-81,0,2]],[[1,-1,2,0,2],[-2878,0,8,1232,0,4]],[[0,0,0,1,0],[-4230,0,5,-20,0,-2]],[[-1,-1,2,2,2],[-2819,0,7,1207,0,3]],[[-1,0,2,0,0],[-4056,0,5,40,0,-2]],[[0,-1,2,2,2],[-2647,0,11,1129,0,5]],[[-2,0,0,0,1],[-2294,0,-10,1266,0,-4]],[[1,1,2,0,2],[2481,0,-7,-1062,0,-3]],[[2,0,0,0,1],[2179,0,-2,-1129,0,-2]],[[-1,1,0,1,0],[3276, 0,1,-9,0,0]],[[1,1,0,0,0],[-3389,0,5,35,0,-2]],[[1,0,2,0,0],[3339,0,-13,-107,0,1]],[[-1,0,2,-2,1],[-1987,0,-6,1073,0,-2]],[[1,0,0,0,2],[-1981,0,0,854,0,0]],[[-1,0,0,1,0],[4026,0,-353,-553,0,-139]],[[0,0,2,1,2],[1660,0,-5,-710,0,-2]],[[-1,0,2,4,2],[-1521,0,9,647,0,4]],[[-1,1,0,1,1],[1314,0,0,-700,0,0]],[[0,-2,2,-2,1],[-1283,0,0,672,0,0]],[[1,0,2,2,1],[-1331,0,8,663,0,4]],[[-2,0,2,2,2],[1383,0,-2,-594,0,-2]],[[-1,0,0,0,2],[1405,0,4,-610,0,2]],[[1,1,2,-2,2],[1290,0,0,-556,0,0]]],Ma;e.CalcMoonCount=0; -var Cc=function(a,b,c,d,f){this.elat=a;this.elon=b;this.mlat=c;this.mlon=d;this.dist_km=f};e.LibrationInfo=Cc;e.Libration=function(a){var b=x(a);a=b.tt/36525;var c=a*a,d=c*a,f=c*c,h=aa(b);b=h.geo_eclip_lon;var l=h.geo_eclip_lat;h=h.distance_au*e.KM_PER_AU;var k=1.54242*e.DEG2RAD,g=e.DEG2RAD*pa(93.272095+483202.0175233*a-.0036539*c-d/3526E3+f/86331E4),m=e.DEG2RAD*pa(125.0445479-1934.1362891*a+.0020754*c+d/467441-f/60616E3),n=e.DEG2RAD*pa(357.5291092+35999.0502909*a-1.536E-4*c+d/2449E4),p=e.DEG2RAD* -pa(134.9633964+477198.8675055*a+.0087414*c+d/69699-f/14712E3);d=e.DEG2RAD*pa(297.8501921+445267.1114034*a-.0018819*c+d/545868-f/113065E3);c=1-.002516*a-7.4E-6*c;var u=b-m;f=Math.atan2(Math.sin(u)*Math.cos(l)*Math.cos(k)-Math.sin(l)*Math.sin(k),Math.cos(u)*Math.cos(l));var w=oa(e.RAD2DEG*(f-g));k=Math.asin(-Math.sin(u)*Math.cos(l)*Math.sin(k)-Math.sin(l)*Math.cos(k));u=-.02752*Math.cos(p)+-.02245*Math.sin(g)+.00684*Math.cos(p-2*g)+-.00293*Math.cos(2*g)+-8.5E-4*Math.cos(2*g-2*d)+-5.4E-4*Math.cos(p- -2*d)+-2E-4*Math.sin(p+g)+-2E-4*Math.cos(p+2*g)+-2E-4*Math.cos(p-g)+1.4E-4*Math.cos(p+2*g-2*d);var B=-.02816*Math.sin(p)+.02244*Math.cos(g)+-.00682*Math.sin(p-2*g)+-.00279*Math.sin(2*g)+-8.3E-4*Math.sin(2*g-2*d)+6.9E-4*Math.sin(p-2*d)+4E-4*Math.cos(p+g)+-2.5E-4*Math.sin(2*p)+-2.3E-4*Math.sin(p+2*g)+2E-4*Math.cos(p-g)+1.9E-4*Math.sin(p-g)+1.3E-4*Math.sin(p+2*g-2*d)+-1E-4*Math.cos(p-3*g);return new Cc(e.RAD2DEG*k+(B*Math.cos(f)-u*Math.sin(f)),w+(-(.0252*c*Math.sin(n)+.00473*Math.sin(2*p-2*g)+-.00467* -Math.sin(p)+.00396*Math.sin(e.DEG2RAD*(119.75+131.849*a))+.00276*Math.sin(2*p-2*d)+.00196*Math.sin(m)+-.00183*Math.cos(p-g)+.00115*Math.sin(p-2*d)+-9.6E-4*Math.sin(p-d)+4.6E-4*Math.sin(2*g-2*d)+-3.9E-4*Math.sin(p-g)+-3.2E-4*Math.sin(p-n-d)+2.7E-4*Math.sin(2*p-n-2*d)+2.3E-4*Math.sin(e.DEG2RAD*(72.56+20.186*a))+-1.4E-4*Math.sin(2*d)+1.4E-4*Math.cos(2*p-2*g)+-1.2E-4*Math.sin(p-2*g)+-1.2E-4*Math.sin(2*p)+1.1E-4*Math.sin(2*p-2*n-2*d))+(u*Math.cos(f)+B*Math.sin(f))*Math.tan(k)),l,b,h)};var D=function(a, -b,c,d){this.x=a;this.y=b;this.z=c;this.t=d};D.prototype.Length=function(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z)};e.Vector=D;var na=function(a,b,c,d,f,h,l){this.x=a;this.y=b;this.z=c;this.vx=d;this.vy=f;this.vz=h;this.t=l};e.StateVector=na;var Za=function(a,b,c){this.lat=v(a);this.lon=v(b);this.dist=v(c)};e.Spherical=Za;var Sa=function(a,b,c,d){this.ra=v(a);this.dec=v(b);this.dist=v(c);this.vec=d};e.EquatorialCoordinates=Sa;var J=function(a){this.rot=a};e.RotationMatrix=J;e.MakeRotation= -function(a){if(!Kc(a))throw"Argument must be a [3][3] array of numbers";return new J(a)};var Ib=function(a,b,c,d){this.azimuth=v(a);this.altitude=v(b);this.ra=v(c);this.dec=v(d)};e.HorizontalCoordinates=Ib;var Lb=function(a,b,c){this.vec=a;this.elat=v(b);this.elon=v(c)};e.EclipticCoordinates=Lb;e.Horizon=xa;var ib=function(a,b,c){this.latitude=a;this.longitude=b;this.height=c;ma(this)};e.Observer=ib;e.SunPosition=Jb;e.Equator=za;e.ObserverVector=function(a,b,c){a=x(a);var d=da(a);b=Fb(b,d).pos;c|| -(b=Ra(b,a,F.Into2000));return new D(b[0],b[1],b[2],a)};e.VectorObserver=function(a,b){var c=da(a.t),d=[a.x,a.y,a.z];b||(d=Qa(d,a.t,F.From2000),d=gb(d,a.t,F.From2000));b=d[0]*e.KM_PER_AU;var f=d[1]*e.KM_PER_AU;d=d[2]*e.KM_PER_AU;a=Math.sqrt(b*b+f*f);if(1E-6>a){c=0;var h=0=c;)c+=360;for(;180Math.abs(n))break;h-=n/(-42.69778487239616*((k-g)/l-g*k*-.006694397995865464/(-42.69778487239616*m))+d*f+a*b)}h*=e.RAD2DEG;l=6378.1366/l;d=Math.abs(f)>Math.abs(b)?d/f-.9933056020041345*l:a/b-l}return new ib(h,c,1E3*d)};e.ObserverGravity=function(a,b){a=Math.sin(a*e.DEG2RAD);a*=a;return 9.7803253359*(1+.00193185265241*a)/Math.sqrt(1-.00669437999013*a)*(1-(3.15704E-7-2.10269E-9*a)*b+7.37452E-14*b*b)};e.Ecliptic=Aa;e.GeoMoon=Y;var fa=[[-73E4,[-26.1182072321076, --14.376168177825,3.3844025152995],[.0016339372163656,-.0027861699588508,-.0013585880229445]],[-693500,[43.6599275018261,15.7782921408811,-8.2269833881374],[-2.504304629586E-4,.0021163039457238,7.3466073583102E-4]],[-657E3,[-17.0086014985033,33.059074387642,15.4080189624259],[-.0019676551946049,-.001833770776677,2.0125441459959E-5]],[-620500,[26.9005106893171,-21.5285596810214,-14.7987712668075],[.0022939261196998,.0017431871970059,-1.4585639832643E-4]],[-584E3,[20.2303809506997,43.2669666571891,7.3829660919234], -[-.0019754081700585,5.3457141292226E-4,7.5929169129793E-4]],[-547500,[-22.5571440338751,-19.2958112538447,.7806423603826],[.0021494578646505,-.0024266772630044,-.0014013084013574]],[-511E3,[43.023623681036,19.6179542007347,-6.8406553041565],[-4.7729923671058E-4,.0020208979483877,7.7191815992131E-4]],[-474500,[-20.4245105862934,29.5157679318005,15.3408675727018],[-.0018003167284198,-.0021025226687937,-1.1262333332859E-4]],[-438E3,[30.7746921076872,-18.2366370153037,-14.9455358798963],[.0020113162005465, -.0019353827024189,-2.0937793168297E-6]],[-401500,[16.7235440456361,44.0505598318603,8.688611393944],[-.0020565226049264,3.2710694138777E-4,7.2006155046579E-4]],[-365E3,[-18.4891734360057,-23.1428732331142,-1.6436720878799],[.0025524223225832,-.0020035792463879,-.0013910737531294]],[-328500,[42.0853950560734,22.974253125952,-5.5131410205412],[-6.7105845193949E-4,.0019177289500465,7.9770011059534E-4]],[-292E3,[-23.2753639151193,25.8185142987694,15.0553815885983],[-.0016062295460975,-.0023395961498533, --2.4377362639479E-4]],[-255500,[33.901579321013,-14.9421228983498,-14.8664994855707],[.0017455105487563,.0020655068871494,1.169500065763E-4]],[-219E3,[13.3770189322702,44.4442211120183,9.8260227015847],[-.0021171882923251,1.3114714542921E-4,6.7884578840323E-4]],[-182500,[-14.1723844533379,-26.0054690135836,-3.8387026446526],[.0028419751785822,-.0015579441656564,-.001340841671106]],[-146E3,[40.9468572586403,25.9049735920209,-4.2563362404988],[-8.3652705194051E-4,.0018129497136404,8.156422827306E-4]], -[-109500,[-25.5839689598009,22.0699164999425,14.590202603678],[-.0013923977856331,-.0025442249745422,-3.7169906721828E-4]],[-73E3,[36.4035708396756,-11.7473067389593,-14.6304139635223],[.0015037714418941,.0021500325702247,2.1523781242948E-4]],[-36500,[10.2436041239517,44.5280986402285,10.8048664487066],[-.0021615839201823,-5.1418983893534E-5,6.368706075143E-4]],[0,[-9.8753695807739,-27.9789262247367,-5.7537118247043],[.0030287533248818,-.0011276087003636,-.0012651326732361]],[36500,[39.7009143866164, -28.4327664903825,-3.0906026170881],[-9.7720559866138E-4,.0017121518344796,8.2822409843551E-4]],[73E3,[-27.3620419812795,18.4265651225706,13.9975343005914],[-.001169093462134,-.0027143131627458,-4.9312695340367E-4]],[109500,[38.3556091850032,-8.7643800131842,-14.2951819118807],[.0012922798115839,.0022032141141126,2.9606522103424E-4]],[146E3,[7.3929490279056,44.3826789515344,11.6295002148543],[-.002193281545383,-2.1751799585364E-4,5.9556516201114E-4]],[182500,[-5.8649529029432,-29.1987619981354,-7.3502494912123], -[.0031339384323665,-7.4205968379701E-4,-.0011783357537604]],[219E3,[38.4269476345329,30.5667598351632,-2.0378379641214],[-.0010958945370084,.0016194885149659,8.3705272532546E-4]],[255500,[-28.6586488201636,15.0309000931701,13.3365724093667],[-9.4611899595408E-4,-.0028506813871559,-6.0508645822989E-4]],[292E3,[39.8319806717528,-6.0784057667647,-13.9098153586562],[.0011117769689167,.0022362097830152,3.6230548231153E-4]],[328500,[4.837152376403,44.072311954153,12.3146147867802],[-.0022164547537724,-3.6790365636785E-4, -5.5542723844616E-4]],[365E3,[-2.2619763759487,-29.8581508706765,-8.6502366418978],[.0031821176368396,-4.0915169873994E-4,-.0010895893040652]],[401500,[37.1576590087419,32.3528396259588,-1.0950381786229],[-.001198841260683,.0015356290902995,8.4339118209852E-4]],[438E3,[-29.5767402292299,11.8635359435865,12.6313230398719],[-7.2292830060955E-4,-.0029587820140709,-7.08242964503E-4]],[474500,[40.9541099577599,-3.658980594537,-13.499469956395],[9.5387298337127E-4,.0022572135462477,4.1826529781128E-4]], -[511E3,[2.4859523114116,43.6181887566155,12.8914184596699],[-.0022339745420393,-5.1034757181916E-4,5.1485330196245E-4]],[547500,[1.0594791441638,-30.1357921778687,-9.7458684762963],[.0031921591684898,-1.130531279615E-4,-9.9954096945965E-4]],[584E3,[35.8778640130144,33.8942263660709,-.2245246362769],[-.0012941245730845,.0014560427668319,8.4762160640137E-4]],[620500,[-30.2026537318923,8.7794211940578,11.8609238187578],[-4.9002221381806E-4,-.0030438768469137,-8.0605935262763E-4]],[657E3,[41.8536204011376, --1.3790965838042,-13.0624345337527],[8.0674627557124E-4,.0022702374399791,4.6832587475465E-4]],[693500,[.2468843977112,43.0303960481227,13.3909343344167],[-.0022436121787266,-6.5238074250728E-4,4.7172729553196E-4]],[73E4,[4.2432528370899,-30.1182016908248,-10.7074412313491],[.0031725847067411,1.609846120227E-4,-9.0672150593868E-4]]],E=function(a,b,c){this.x=a;this.y=b;this.z=c};E.prototype.ToAstroVector=function(a){return new D(this.x,this.y,this.z,a)};E.prototype.quadrature=function(){return this.x* -this.x+this.y*this.y+this.z*this.z};E.prototype.add=function(a){return new E(this.x+a.x,this.y+a.y,this.z+a.z)};E.prototype.sub=function(a){return new E(this.x-a.x,this.y-a.y,this.z-a.z)};E.prototype.incr=function(a){this.x+=a.x;this.y+=a.y;this.z+=a.z};E.prototype.decr=function(a){this.x-=a.x;this.y-=a.y;this.z-=a.z};E.prototype.mul=function(a){return new E(a*this.x,a*this.y,a*this.z)};E.prototype.div=function(a){return new E(this.x/a,this.y/a,this.z/a)};E.prototype.mean=function(a){return new E((this.x+ -a.x)/2,(this.y+a.y)/2,(this.z+a.z)/2)};var Ua=function(a,b,c){this.tt=a;this.r=b;this.v=c},Ca=function(a){var b=new Ua(a,new E(0,0,0),new E(0,0,0));this.Jupiter=Wa(b,a,r.Jupiter,2.825345909524226E-7);this.Saturn=Wa(b,a,r.Saturn,8.459715185680659E-8);this.Uranus=Wa(b,a,r.Uranus,1.292024916781969E-8);this.Neptune=Wa(b,a,r.Neptune,1.524358900784276E-8);this.Jupiter.r.decr(b.r);this.Jupiter.v.decr(b.v);this.Saturn.r.decr(b.r);this.Saturn.v.decr(b.v);this.Uranus.r.decr(b.r);this.Uranus.v.decr(b.v);this.Neptune.r.decr(b.r); -this.Neptune.v.decr(b.v);this.Sun=new Ua(a,b.r.mul(-1),b.v.mul(-1))};Ca.prototype.Acceleration=function(a){var b=Ba(a,2.959122082855911E-4,this.Sun.r);b.incr(Ba(a,2.825345909524226E-7,this.Jupiter.r));b.incr(Ba(a,8.459715185680659E-8,this.Saturn.r));b.incr(Ba(a,1.292024916781969E-8,this.Uranus.r));b.incr(Ba(a,1.524358900784276E-8,this.Neptune.r));return b};var Qb=function(a,b,c,d){this.tt=a;this.r=b;this.v=c;this.a=d},Rb=function(a,b){this.bary=a;this.grav=b},ob=[],Wc=new J([[.9994327653386544,-.03367710746976414, -0],[.030395942890628476,.902057912352809,.43054338854229507],[-.014499455966335291,-.43029916940910073,.902569881273754]]),Xc=[{mu:2.82489428433814E-7,al:[1.446213296021224,3.5515522861824],a:[[.0028210960212903,0,0]],l:[[-1.925258348666E-4,4.9369589722645,.01358483658305],[-9.70803596076E-5,4.3188796477322,.01303413843243],[-8.988174165E-5,1.9080016428617,.00305064867158],[-5.53101050262E-5,1.4936156681569,.01293892891155]],z:[[.0041510849668155,4.089939635545,-.01290686414666],[6.260521444113E-4, -1.446188898627,3.5515522949802],[3.52747346169E-5,2.1256287034578,1.2727416567E-4]],zeta:[[3.142172466014E-4,2.7964219722923,-.002315096098],[9.04169207946E-5,1.0477061879627,-5.6920638196E-4]]},{mu:2.82483274392893E-7,al:[-.3735263437471362,1.76932271112347],a:[[.0044871037804314,0,0],[4.324367498E-7,1.819645606291,1.7822295777568]],l:[[8.576433172936E-4,4.3188693178264,.01303413830805],[4.549582875086E-4,1.4936531751079,.01293892881962],[3.248939825174E-4,1.8196494533458,1.7822295777568],[-3.074250079334E-4, -4.9377037005911,.01358483286724],[1.982386144784E-4,1.907986905476,.00305101212869],[1.834063551804E-4,2.1402853388529,.00145009789338],[-1.434383188452E-4,5.622214036663,.89111478887838],[-7.71939140944E-5,4.300272437235,2.6733443704266]],z:[[-.0093589104136341,4.0899396509039,-.01290686414666],[2.988994545555E-4,5.9097265185595,1.7693227079462],[2.13903639035E-4,2.1256289300016,1.2727418407E-4],[1.980963564781E-4,2.743516829265,6.7797343009E-4],[1.210388158965E-4,5.5839943711203,3.20566149E-5], -[8.37042048393E-5,1.6094538368039,-.90402165808846],[8.23525166369E-5,1.4461887708689,3.5515522949802]],zeta:[[.0040404917832303,1.0477063169425,-5.692064054E-4],[2.200421034564E-4,3.3368857864364,-1.2491307307E-4],[1.662544744719E-4,2.4134862374711,0],[5.90282470983E-5,5.9719930968366,-3.056160225E-5]]},{mu:2.82498184184723E-7,al:[.2874089391143348,.878207923589328],a:[[.0071566594572575,0,0],[1.393029911E-6,1.1586745884981,2.6733443704266]],l:[[2.310797886226E-4,2.1402987195942,.00145009784384], -[-1.828635964118E-4,4.3188672736968,.01303413828263],[1.512378778204E-4,4.9373102372298,.01358483481252],[-1.163720969778E-4,4.300265986149,2.6733443704266],[-9.55478069846E-5,1.4936612842567,.01293892879857],[8.15246854464E-5,5.6222137132535,.89111478887838],[-8.01219679602E-5,1.2995922951532,1.0034433456729],[-6.07017260182E-5,.64978769669238,.50172167043264]],z:[[.0014289811307319,2.1256295942739,1.2727413029E-4],[7.71093122676E-4,5.5836330003496,3.20643411E-5],[5.925911780766E-4,4.0899396636448, --.01290686414666],[2.045597496146E-4,5.2713683670372,-.12523544076106],[1.785118648258E-4,.28743156721063,.8782079244252],[1.131999784893E-4,1.4462127277818,3.5515522949802],[-6.5877816921E-5,2.2702423990985,-1.7951364394537],[4.97058888328E-5,5.9096792204858,1.7693227129285]],zeta:[[.0015932721570848,3.3368862796665,-1.2491307058E-4],[8.533093128905E-4,2.4133881688166,0],[3.513347911037E-4,5.9720789850127,-3.056101771E-5],[-1.441929255483E-4,1.0477061764435,-5.6920632124E-4]]},{mu:2.82492144889909E-7, -al:[-.3620341291375704,.376486233433828],a:[[.0125879701715314,0,0],[3.595204947E-6,.64965776007116,.50172168165034],[2.7580210652E-6,1.808423578151,3.1750660413359]],l:[[5.586040123824E-4,2.1404207189815,.00145009793231],[-3.805813868176E-4,2.7358844897853,2.972965062E-5],[2.205152863262E-4,.649796525964,.5017216724358],[1.877895151158E-4,1.8084787604005,3.1750660413359],[7.66916975242E-5,6.2720114319755,1.3928364636651],[7.47056855106E-5,1.2995916202344,1.0034433456729]],z:[[.0073755808467977,5.5836071576084, -3.206509914E-5],[2.065924169942E-4,5.9209831565786,.37648624194703],[1.589869764021E-4,.28744006242623,.8782079244252],[-1.561131605348E-4,2.1257397865089,1.2727441285E-4],[1.486043380971E-4,1.4462134301023,3.5515522949802],[6.35073108731E-5,5.9096803285954,1.7693227129285],[5.99351698525E-5,4.1125517584798,-2.7985797954589],[5.40660842731E-5,5.5390350845569,.00286834082283],[-4.89596900866E-5,4.6218149483338,-.62695712529519]],zeta:[[.0038422977898495,2.4133922085557,0],[.0022453891791894,5.9721736773277, --3.056125525E-5],[-2.604479450559E-4,3.3368746306409,-1.2491309972E-4],[3.3211214323E-5,5.5604137742337,.00290037688507]]}],Dc=function(a){this.moon=a};e.JupiterMoonsInfo=Dc;e.JupiterMoons=function(a){a=new N(a);for(var b=[],c=$jscomp.makeIterator(Xc),d=c.next();!d.done;d=c.next()){var f=b,h=f.push;d=d.value;for(var l=a.tt+18262.5,k=[0,d.al[0]+l*d.al[1],0,0,0,0],g=$jscomp.makeIterator(d.a),m=g.next();!m.done;m=g.next()){var n=$jscomp.makeIterator(m.value);m=n.next().value;var p=n.next().value;n=n.next().value; -k[0]+=m*Math.cos(p+l*n)}g=$jscomp.makeIterator(d.l);for(m=g.next();!m.done;m=g.next())n=$jscomp.makeIterator(m.value),m=n.next().value,p=n.next().value,n=n.next().value,k[1]+=m*Math.sin(p+l*n);k[1]%=O;0>k[1]&&(k[1]+=O);g=$jscomp.makeIterator(d.z);for(m=g.next();!m.done;m=g.next())n=$jscomp.makeIterator(m.value),m=n.next().value,p=n.next().value,n=n.next().value,p+=l*n,k[2]+=m*Math.cos(p),k[3]+=m*Math.sin(p);g=$jscomp.makeIterator(d.zeta);for(m=g.next();!m.done;m=g.next())n=$jscomp.makeIterator(m.value), -m=n.next().value,p=n.next().value,n=n.next().value,p+=l*n,k[4]+=m*Math.cos(p),k[5]+=m*Math.sin(p);g=k[0];n=k[1];m=k[2];p=k[3];l=k[4];k=k[5];var u=Math.sqrt(d.mu/(g*g*g));d=n+m*Math.sin(n)-p*Math.cos(n);do{var w=Math.cos(d);var B=Math.sin(d);w=(n-d+m*B-p*w)/(1-m*w-p*B);d+=w}while(1E-12<=Math.abs(w));w=Math.cos(d);B=Math.sin(d);n=p*w-m*B;var z=-m*w-p*B,va=1/(1+z),ba=1/(1+Math.sqrt(1-m*m-p*p));d=g*(w-m-ba*p*n);n=g*(B-p+ba*m*n);p=u*va*g*(-B-ba*p*z);g=u*va*g*(+w+ba*m*z);m=2*Math.sqrt(1-l*l-k*k);u=1-2* -k*k;w=1-2*l*l;B=2*k*l;d=new na(d*u+n*B,d*B+n*w,(l*n-d*k)*m,p*u+g*B,p*B+g*w,(l*g-p*k)*m,a);d=hc(Wc,d);h.call(f,d)}return new Dc(b)};e.HelioVector=Da;e.HelioDistance=ha;e.GeoVector=X;e.BaryState=function(a,b){b=x(b);if(a==r.SSB)return new na(0,0,0,0,0,0,b);var c=new Ca(b.tt);switch(a){case r.Sun:return Ea(c.Sun,b);case r.Jupiter:return Ea(c.Jupiter,b);case r.Saturn:return Ea(c.Saturn,b);case r.Uranus:return Ea(c.Uranus,b);case r.Neptune:return Ea(c.Neptune,b)}if(a in H)return a=Pb(H[a],b.tt),new na(c.Sun.r.x+ -a.r.x,c.Sun.r.y+a.r.y,c.Sun.r.z+a.r.z,c.Sun.v.x+a.v.x,c.Sun.v.y+a.v.y,c.Sun.v.z+a.v.z,b);throw'BaryState: Unsupported body "'+a+'"';};e.Search=I;e.SearchSunLongitude=Ub;e.PairLongitude=pb;e.AngleFromSun=qa;e.EclipticLongitude=ia;var Vb=function(a,b,c,d,f,h,l,k){this.time=a;this.mag=b;this.phase_angle=c;this.helio_dist=d;this.geo_dist=f;this.gc=h;this.hc=l;this.ring_tilt=k;this.phase_fraction=(1+Math.cos(e.DEG2RAD*c))/2};e.IlluminationInfo=Vb;e.Illumination=Ya;e.SearchRelativeLongitude=ra;e.MoonPhase= -qb;e.SearchMoonPhase=Ga;var Xb=function(a,b){this.quarter=a;this.time=b};e.MoonQuarter=Xb;e.SearchMoonQuarter=Wb;e.NextMoonQuarter=function(a){a=new Date(a.time.date.getTime()+5184E5);return Wb(a)};e.SearchRiseSet=function(a,b,c,d,f){a:switch(a){case r.Sun:var h=Tc;break a;case r.Moon:h=Uc;break a;default:h=0}return Yb(a,b,c,d,f,function(l){var k=za(a,l,b,!0,!0);l=xa(l,b,k.ra,k.dec).altitude+h/k.dist*e.RAD2DEG+Vc;return c*l})};e.SearchAltitude=function(a,b,c,d,f,h){if(!Number.isFinite(h)||-90>h|| -90=++f;){var h=ia(a,b),l=ia(r.Earth,b),k=oa(h-l),g=h=l=void 0;k>=-d.s1&&k<+d.s1?(g=0,l=+d.s1,h=+d.s2):k>=+d.s2||k<-d.s2?(g=0,l=-d.s2,h=-d.s1):0<=k?(g=-Fa(a)/4,l=+d.s1,h=+d.s2):(g=-Fa(a)/4,l=-d.s2,h=-d.s1);k=b.AddDays(g);l=ra(a,l,k);h=ra(a,h,l);k=c(l);if(0<=k)throw"SearchMaxElongation: internal error: m1 = "+k;g=c(h);if(0>=g)throw"SearchMaxElongation: internal error: m2 = "+ -g;k=I(c,l,h,{init_f1:k,init_f2:g,dt_tolerance_seconds:10});if(!k)throw"SearchMaxElongation: failed search iter "+f+" (t1="+l.toString()+", t2="+h.toString()+")";if(k.tt>=b.tt)return $b(a,k);b=h.AddDays(1)}throw"SearchMaxElongation: failed to find event after 2 tries.";};e.SearchPeakMagnitude=function(a,b){function c(g){var m=g.AddDays(-.005);g=g.AddDays(.005);m=Ya(a,m).mag;return(Ya(a,g).mag-m)/.01}if(a!==r.Venus)throw"SearchPeakMagnitude currently works for Venus only.";b=x(b);for(var d=0;2>=++d;){var f= -ia(a,b),h=ia(r.Earth,b),l=oa(f-h),k=f=h=void 0;-10<=l&&10>l?(k=0,h=10,f=30):30<=l||-30>l?(k=0,h=-30,f=-10):0<=l?(k=-Fa(a)/4,h=10,f=30):(k=-Fa(a)/4,h=-30,f=-10);l=b.AddDays(k);h=ra(a,h,l);f=ra(a,f,h);l=c(h);if(0<=l)throw"SearchPeakMagnitude: internal error: m1 = "+l;k=c(f);if(0>=k)throw"SearchPeakMagnitude: internal error: m2 = "+k;l=I(c,h,f,{init_f1:l,init_f2:k,dt_tolerance_seconds:10});if(!l)throw"SearchPeakMagnitude: failed search iter "+d+" (t1="+h.toString()+", t2="+f.toString()+")";if(l.tt>= -b.tt)return Ya(a,l);b=f.AddDays(1)}throw"SearchPeakMagnitude: failed to find event after 2 tries.";};var Ia=function(a,b,c){this.time=a;this.kind=b;this.dist_au=c;this.dist_km=c*e.KM_PER_AU};e.Apsis=Ia;e.SearchLunarApsis=bc;e.NextLunarApsis=function(a){var b=bc(a.time.AddDays(11));if(1!==b.kind+a.kind)throw"NextLunarApsis INTERNAL ERROR: did not find alternating apogee/perigee: prev="+a.kind+" @ "+a.time.toString()+", next="+b.kind+" @ "+b.time.toString();return b};e.SearchPlanetApsis=dc;e.NextPlanetApsis= -function(a,b){if(0!==b.kind&&1!==b.kind)throw"Invalid apsis kind: "+b.kind;var c=b.time.AddDays(.25*Z[a].OrbitalPeriod);a=dc(a,c);if(1!==a.kind+b.kind)throw"Internal error: previous apsis was "+b.kind+", but found "+a.kind+" for next apsis.";return a};e.InverseRotation=sa;e.CombineRotation=ta;e.IdentityMatrix=function(){return new J([[1,0,0],[0,1,0],[0,0,1]])};e.Pivot=function(a,b,c){if(0!==b&&1!==b&&2!==b)throw"Invalid axis "+b+". Must be [0, 1, 2].";var d=v(c)*e.DEG2RAD;c=Math.cos(d);d=Math.sin(d); -var f=(b+1)%3,h=(b+2)%3,l=[[0,0,0],[0,0,0],[0,0,0]];l[f][f]=c*a.rot[f][f]-d*a.rot[f][h];l[f][h]=d*a.rot[f][f]+c*a.rot[f][h];l[f][b]=a.rot[f][b];l[h][f]=c*a.rot[h][f]-d*a.rot[h][h];l[h][h]=d*a.rot[h][f]+c*a.rot[h][h];l[h][b]=a.rot[h][b];l[b][f]=c*a.rot[b][f]-d*a.rot[b][h];l[b][h]=d*a.rot[b][f]+c*a.rot[b][h];l[b][b]=a.rot[b][b];return new J(l)};e.VectorFromSphere=rb;e.EquatorFromVector=ec;e.SphereFromVector=sb;e.HorizonFromVector=function(a,b){a=sb(a);a.lon=fc(a.lon);a.lat+=ya(b,a.lat);return a};e.VectorFromHorizon= -function(a,b,c){var d=fc(a.lon);c=a.lat+gc(c,a.lat);a=new Za(c,d,a.dist);return rb(a,b)};e.Refraction=ya;e.InverseRefraction=gc;e.RotateVector=Ja;e.RotateState=hc;e.Rotation_EQJ_ECL=ic;e.Rotation_ECL_EQJ=function(){return new J([[1,0,0],[0,.9174821430670688,.3977769691083922],[0,-.3977769691083922,.9174821430670688]])};e.Rotation_EQJ_EQD=tb;e.Rotation_EQD_EQJ=ub;e.Rotation_EQD_HOR=vb;e.Rotation_HOR_EQD=jc;e.Rotation_HOR_EQJ=kc;e.Rotation_EQJ_HOR=function(a,b){a=kc(a,b);return sa(a)};e.Rotation_EQD_ECL= -lc;e.Rotation_ECL_EQD=mc;e.Rotation_ECL_HOR=nc;e.Rotation_HOR_ECL=function(a,b){a=nc(a,b);return sa(a)};e.Rotation_EQJ_GAL=function(){return new J([[-.0548624779711344,.4941095946388765,-.8676668813529025],[-.8734572784246782,-.4447938112296831,-.1980677870294097],[-.483800052994852,.7470034631630423,.4559861124470794]])};e.Rotation_GAL_EQJ=function(){return new J([[-.0548624779711344,-.8734572784246782,-.483800052994852],[.4941095946388765,-.4447938112296831,.7470034631630423],[-.8676668813529025, --.1980677870294097,.4559861124470794]])};var Yc=[["And","Andromeda"],["Ant","Antila"],["Aps","Apus"],["Aql","Aquila"],["Aqr","Aquarius"],["Ara","Ara"],["Ari","Aries"],["Aur","Auriga"],["Boo","Bootes"],["Cae","Caelum"],["Cam","Camelopardis"],["Cap","Capricornus"],["Car","Carina"],["Cas","Cassiopeia"],["Cen","Centaurus"],["Cep","Cepheus"],["Cet","Cetus"],["Cha","Chamaeleon"],["Cir","Circinus"],["CMa","Canis Major"],["CMi","Canis Minor"],["Cnc","Cancer"],["Col","Columba"],["Com","Coma Berenices"],["CrA", -"Corona Australis"],["CrB","Corona Borealis"],["Crt","Crater"],["Cru","Crux"],["Crv","Corvus"],["CVn","Canes Venatici"],["Cyg","Cygnus"],["Del","Delphinus"],["Dor","Dorado"],["Dra","Draco"],["Equ","Equuleus"],["Eri","Eridanus"],["For","Fornax"],["Gem","Gemini"],["Gru","Grus"],["Her","Hercules"],["Hor","Horologium"],["Hya","Hydra"],["Hyi","Hydrus"],["Ind","Indus"],["Lac","Lacerta"],["Leo","Leo"],["Lep","Lepus"],["Lib","Libra"],["LMi","Leo Minor"],["Lup","Lupus"],["Lyn","Lynx"],["Lyr","Lyra"],["Men", -"Mensa"],["Mic","Microscopium"],["Mon","Monoceros"],["Mus","Musca"],["Nor","Norma"],["Oct","Octans"],["Oph","Ophiuchus"],["Ori","Orion"],["Pav","Pavo"],["Peg","Pegasus"],["Per","Perseus"],["Phe","Phoenix"],["Pic","Pictor"],["PsA","Pisces Austrinus"],["Psc","Pisces"],["Pup","Puppis"],["Pyx","Pyxis"],["Ret","Reticulum"],["Scl","Sculptor"],["Sco","Scorpius"],["Sct","Scutum"],["Ser","Serpens"],["Sex","Sextans"],["Sge","Sagitta"],["Sgr","Sagittarius"],["Tau","Taurus"],["Tel","Telescopium"],["TrA","Triangulum Australe"], -["Tri","Triangulum"],["Tuc","Tucana"],["UMa","Ursa Major"],["UMi","Ursa Minor"],["Vel","Vela"],["Vir","Virgo"],["Vol","Volans"],["Vul","Vulpecula"]],Zc=[[83,0,8640,2112],[83,2880,5220,2076],[83,7560,8280,2068],[83,6480,7560,2064],[15,0,2880,2040],[10,3300,3840,1968],[15,0,1800,1920],[10,3840,5220,1920],[83,6300,6480,1920],[33,7260,7560,1920],[15,0,1263,1848],[10,4140,4890,1848],[83,5952,6300,1800],[15,7260,7440,1800],[10,2868,3300,1764],[33,3300,4080,1764],[83,4680,5952,1680],[13,1116,1230,1632], -[33,7350,7440,1608],[33,4080,4320,1596],[15,0,120,1584],[83,5040,5640,1584],[15,8490,8640,1584],[33,4320,4860,1536],[33,4860,5190,1512],[15,8340,8490,1512],[10,2196,2520,1488],[33,7200,7350,1476],[15,7393.2,7416,1462],[10,2520,2868,1440],[82,2868,3030,1440],[33,7116,7200,1428],[15,7200,7393.2,1428],[15,8232,8340,1418],[13,0,876,1404],[33,6990,7116,1392],[13,612,687,1380],[13,876,1116,1368],[10,1116,1140,1368],[15,8034,8232,1350],[10,1800,2196,1344],[82,5052,5190,1332],[33,5190,6990,1332],[10,1140, -1200,1320],[15,7968,8034,1320],[15,7416,7908,1316],[13,0,612,1296],[50,2196,2340,1296],[82,4350,4860,1272],[33,5490,5670,1272],[15,7908,7968,1266],[10,1200,1800,1260],[13,8232,8400,1260],[33,5670,6120,1236],[62,735,906,1212],[33,6120,6564,1212],[13,0,492,1200],[62,492,600,1200],[50,2340,2448,1200],[13,8400,8640,1200],[82,4860,5052,1164],[13,0,402,1152],[13,8490,8640,1152],[39,6543,6564,1140],[33,6564,6870,1140],[30,6870,6900,1140],[62,600,735,1128],[82,3030,3300,1128],[13,60,312,1104],[82,4320,4350, -1080],[50,2448,2652,1068],[30,7887,7908,1056],[30,7875,7887,1050],[30,6900,6984,1044],[82,3300,3660,1008],[82,3660,3882,960],[8,5556,5670,960],[39,5670,5880,960],[50,3330,3450,954],[0,0,906,882],[62,906,924,882],[51,6969,6984,876],[62,1620,1689,864],[30,7824,7875,864],[44,7875,7920,864],[7,2352,2652,852],[50,2652,2790,852],[0,0,720,840],[44,7920,8214,840],[44,8214,8232,828],[0,8232,8460,828],[62,924,978,816],[82,3882,3960,816],[29,4320,4440,816],[50,2790,3330,804],[48,3330,3558,804],[0,258,507,792], -[8,5466,5556,792],[0,8460,8550,770],[29,4440,4770,768],[0,8550,8640,752],[29,5025,5052,738],[80,870,978,736],[62,978,1620,736],[7,1620,1710,720],[51,6543,6969,720],[82,3960,4320,696],[30,7080,7530,696],[7,1710,2118,684],[48,3558,3780,684],[29,4770,5025,684],[0,0,24,672],[80,507,600,672],[7,2118,2352,672],[37,2838,2880,672],[30,7530,7824,672],[30,6933,7080,660],[80,690,870,654],[25,5820,5880,648],[8,5430,5466,624],[25,5466,5820,624],[51,6612,6792,624],[48,3870,3960,612],[51,6792,6933,612],[80,600, -690,600],[66,258,306,570],[48,3780,3870,564],[87,7650,7710,564],[77,2052,2118,548],[0,24,51,528],[73,5730,5772,528],[37,2118,2238,516],[87,7140,7290,510],[87,6792,6930,506],[0,51,306,504],[87,7290,7404,492],[37,2811,2838,480],[87,7404,7650,468],[87,6930,7140,460],[6,1182,1212,456],[75,6792,6840,444],[59,2052,2076,432],[37,2238,2271,420],[75,6840,7140,388],[77,1788,1920,384],[39,5730,5790,384],[75,7140,7290,378],[77,1662,1788,372],[77,1920,2016,372],[23,4620,4860,360],[39,6210,6570,344],[23,4272,4620, -336],[37,2700,2811,324],[39,6030,6210,308],[61,0,51,300],[77,2016,2076,300],[37,2520,2700,300],[61,7602,7680,300],[37,2271,2496,288],[39,6570,6792,288],[31,7515,7578,284],[61,7578,7602,284],[45,4146,4272,264],[59,2247,2271,240],[37,2496,2520,240],[21,2811,2853,240],[61,8580,8640,240],[6,600,1182,238],[31,7251,7308,204],[8,4860,5430,192],[61,8190,8580,180],[21,2853,3330,168],[45,3330,3870,168],[58,6570,6718.4,150],[3,6718.4,6792,150],[31,7500,7515,144],[20,2520,2526,132],[73,6570,6633,108],[39,5790, -6030,96],[58,6570,6633,72],[61,7728,7800,66],[66,0,720,48],[73,6690,6792,48],[31,7308,7500,48],[34,7500,7680,48],[61,7680,7728,48],[61,7920,8190,48],[61,7800,7920,42],[20,2526,2592,36],[77,1290,1662,0],[59,1662,1680,0],[20,2592,2910,0],[85,5280,5430,0],[58,6420,6570,0],[16,954,1182,-42],[77,1182,1290,-42],[73,5430,5856,-78],[59,1680,1830,-96],[59,2100,2247,-96],[73,6420,6468,-96],[73,6570,6690,-96],[3,6690,6792,-96],[66,8190,8580,-96],[45,3870,4146,-144],[85,4146,4260,-144],[66,0,120,-168],[66,8580, -8640,-168],[85,5130,5280,-192],[58,5730,5856,-192],[3,7200,7392,-216],[4,7680,7872,-216],[58,6180,6468,-240],[54,2100,2910,-264],[35,1770,1830,-264],[59,1830,2100,-264],[41,2910,3012,-264],[74,3450,3870,-264],[85,4260,4620,-264],[58,6330,6360,-280],[3,6792,7200,-288.8],[35,1740,1770,-348],[4,7392,7680,-360],[73,6180,6570,-384],[72,6570,6792,-384],[41,3012,3090,-408],[58,5856,5895,-438],[41,3090,3270,-456],[26,3870,3900,-456],[71,5856,5895,-462],[47,5640,5730,-480],[28,4530,4620,-528],[85,4620,5130, --528],[41,3270,3510,-576],[16,600,954,-585.2],[35,954,1350,-585.2],[26,3900,4260,-588],[28,4260,4530,-588],[47,5130,5370,-588],[58,5856,6030,-590],[16,0,600,-612],[11,7680,7872,-612],[4,7872,8580,-612],[16,8580,8640,-612],[41,3510,3690,-636],[35,1692,1740,-654],[46,1740,2202,-654],[11,7200,7680,-672],[41,3690,3810,-700],[41,4530,5370,-708],[47,5370,5640,-708],[71,5640,5760,-708],[35,1650,1692,-720],[58,6030,6336,-720],[76,6336,6420,-720],[41,3810,3900,-748],[19,2202,2652,-792],[41,4410,4530,-792], -[41,3900,4410,-840],[36,1260,1350,-864],[68,3012,3372,-882],[35,1536,1650,-888],[76,6420,6900,-888],[65,7680,8280,-888],[70,8280,8400,-888],[36,1080,1260,-950],[1,3372,3960,-954],[70,0,600,-960],[36,600,1080,-960],[35,1392,1536,-960],[70,8400,8640,-960],[14,5100,5370,-1008],[49,5640,5760,-1008],[71,5760,5911.5,-1008],[9,1740,1800,-1032],[22,1800,2370,-1032],[67,2880,3012,-1032],[35,1230,1392,-1056],[71,5911.5,6420,-1092],[24,6420,6900,-1092],[76,6900,7320,-1092],[53,7320,7680,-1092],[35,1080,1230, --1104],[9,1620,1740,-1116],[49,5520,5640,-1152],[63,0,840,-1156],[35,960,1080,-1176],[40,1470,1536,-1176],[9,1536,1620,-1176],[38,7680,7920,-1200],[67,2160,2880,-1218],[84,2880,2940,-1218],[35,870,960,-1224],[40,1380,1470,-1224],[63,0,660,-1236],[12,2160,2220,-1260],[84,2940,3042,-1272],[40,1260,1380,-1276],[32,1380,1440,-1276],[63,0,570,-1284],[35,780,870,-1296],[64,1620,1800,-1296],[49,5418,5520,-1296],[84,3042,3180,-1308],[12,2220,2340,-1320],[14,4260,4620,-1320],[49,5100,5418,-1320],[56,5418, -5520,-1320],[32,1440,1560,-1356],[84,3180,3960,-1356],[14,3960,4050,-1356],[5,6300,6480,-1368],[78,6480,7320,-1368],[38,7920,8400,-1368],[40,1152,1260,-1380],[64,1800,1980,-1380],[12,2340,2460,-1392],[63,0,480,-1404],[35,480,780,-1404],[63,8400,8640,-1404],[32,1560,1650,-1416],[56,5520,5911.5,-1440],[43,7320,7680,-1440],[64,1980,2160,-1464],[18,5460,5520,-1464],[5,5911.5,5970,-1464],[18,5370,5460,-1526],[5,5970,6030,-1526],[64,2160,2460,-1536],[12,2460,3252,-1536],[14,4050,4260,-1536],[27,4260,4620, --1536],[14,4620,5232,-1536],[18,4860,4920,-1560],[5,6030,6060,-1560],[40,780,1152,-1620],[69,1152,1650,-1620],[18,5310,5370,-1620],[5,6060,6300,-1620],[60,6300,6480,-1620],[81,7920,8400,-1620],[32,1650,2370,-1680],[18,4920,5310,-1680],[79,5310,6120,-1680],[81,0,480,-1800],[42,1260,1650,-1800],[86,2370,3252,-1800],[12,3252,4050,-1800],[55,4050,4920,-1800],[60,6480,7680,-1800],[43,7680,8400,-1800],[81,8400,8640,-1800],[81,270,480,-1824],[42,0,1260,-1980],[17,2760,4920,-1980],[2,4920,6480,-1980],[52, -1260,2760,-2040],[57,0,8640,-2160]],Ab,Fc,Gc=function(a,b,c,d){this.symbol=a;this.name=b;this.ra1875=c;this.dec1875=d};e.ConstellationInfo=Gc;e.Constellation=function(a,b){v(a);v(b);if(-90>b||90a&&(a+=24);Ab||(Ab=tb(new N(-45655.74141261017)),Fc=new N(0));a=new Za(b,15*a,1);a=rb(a,Fc);a=Ja(Ab,a);a=ec(a);b=10/240;for(var c=b/15,d=$jscomp.makeIterator(Zc),f=d.next();!f.done;f=d.next()){f=f.value;var h=f[1]*c,l=f[2]*c;if(f[3]*b<=a.dec&&h<= -a.ra&&a.raa){c=0;var h=0=c;)c+=360;for(;180Math.abs(n))break;h-=n/(-42.69778487239616*((k-g)/l-g*k*-.006694397995865464/(-42.69778487239616*m))+d*f+a*b)}h*=e.RAD2DEG;l=6378.1366/l;d=Math.abs(f)>Math.abs(b)?d/f-.9933056020041345*l:a/b-l}return new ib(h,c,1E3*d)};e.ObserverGravity=function(a,b){a=Math.sin(a*e.DEG2RAD);a*=a;return 9.7803253359*(1+.00193185265241*a)/Math.sqrt(1-.00669437999013*a)*(1-(3.15704E-7-2.10269E-9*a)*b+7.37452E-14*b* +b)};e.Ecliptic=Aa;e.GeoMoon=Y;var fa=[[-73E4,[-26.1182072321076,-14.376168177825,3.3844025152995],[.0016339372163656,-.0027861699588508,-.0013585880229445]],[-693500,[43.6599275018261,15.7782921408811,-8.2269833881374],[-2.504304629586E-4,.0021163039457238,7.3466073583102E-4]],[-657E3,[-17.0086014985033,33.059074387642,15.4080189624259],[-.0019676551946049,-.001833770776677,2.0125441459959E-5]],[-620500,[26.9005106893171,-21.5285596810214,-14.7987712668075],[.0022939261196998,.0017431871970059,-1.4585639832643E-4]], +[-584E3,[20.2303809506997,43.2669666571891,7.3829660919234],[-.0019754081700585,5.3457141292226E-4,7.5929169129793E-4]],[-547500,[-22.5571440338751,-19.2958112538447,.7806423603826],[.0021494578646505,-.0024266772630044,-.0014013084013574]],[-511E3,[43.023623681036,19.6179542007347,-6.8406553041565],[-4.7729923671058E-4,.0020208979483877,7.7191815992131E-4]],[-474500,[-20.4245105862934,29.5157679318005,15.3408675727018],[-.0018003167284198,-.0021025226687937,-1.1262333332859E-4]],[-438E3,[30.7746921076872, +-18.2366370153037,-14.9455358798963],[.0020113162005465,.0019353827024189,-2.0937793168297E-6]],[-401500,[16.7235440456361,44.0505598318603,8.688611393944],[-.0020565226049264,3.2710694138777E-4,7.2006155046579E-4]],[-365E3,[-18.4891734360057,-23.1428732331142,-1.6436720878799],[.0025524223225832,-.0020035792463879,-.0013910737531294]],[-328500,[42.0853950560734,22.974253125952,-5.5131410205412],[-6.7105845193949E-4,.0019177289500465,7.9770011059534E-4]],[-292E3,[-23.2753639151193,25.8185142987694, +15.0553815885983],[-.0016062295460975,-.0023395961498533,-2.4377362639479E-4]],[-255500,[33.901579321013,-14.9421228983498,-14.8664994855707],[.0017455105487563,.0020655068871494,1.169500065763E-4]],[-219E3,[13.3770189322702,44.4442211120183,9.8260227015847],[-.0021171882923251,1.3114714542921E-4,6.7884578840323E-4]],[-182500,[-14.1723844533379,-26.0054690135836,-3.8387026446526],[.0028419751785822,-.0015579441656564,-.001340841671106]],[-146E3,[40.9468572586403,25.9049735920209,-4.2563362404988], +[-8.3652705194051E-4,.0018129497136404,8.156422827306E-4]],[-109500,[-25.5839689598009,22.0699164999425,14.590202603678],[-.0013923977856331,-.0025442249745422,-3.7169906721828E-4]],[-73E3,[36.4035708396756,-11.7473067389593,-14.6304139635223],[.0015037714418941,.0021500325702247,2.1523781242948E-4]],[-36500,[10.2436041239517,44.5280986402285,10.8048664487066],[-.0021615839201823,-5.1418983893534E-5,6.368706075143E-4]],[0,[-9.8753695807739,-27.9789262247367,-5.7537118247043],[.0030287533248818,-.0011276087003636, +-.0012651326732361]],[36500,[39.7009143866164,28.4327664903825,-3.0906026170881],[-9.7720559866138E-4,.0017121518344796,8.2822409843551E-4]],[73E3,[-27.3620419812795,18.4265651225706,13.9975343005914],[-.001169093462134,-.0027143131627458,-4.9312695340367E-4]],[109500,[38.3556091850032,-8.7643800131842,-14.2951819118807],[.0012922798115839,.0022032141141126,2.9606522103424E-4]],[146E3,[7.3929490279056,44.3826789515344,11.6295002148543],[-.002193281545383,-2.1751799585364E-4,5.9556516201114E-4]],[182500, +[-5.8649529029432,-29.1987619981354,-7.3502494912123],[.0031339384323665,-7.4205968379701E-4,-.0011783357537604]],[219E3,[38.4269476345329,30.5667598351632,-2.0378379641214],[-.0010958945370084,.0016194885149659,8.3705272532546E-4]],[255500,[-28.6586488201636,15.0309000931701,13.3365724093667],[-9.4611899595408E-4,-.0028506813871559,-6.0508645822989E-4]],[292E3,[39.8319806717528,-6.0784057667647,-13.9098153586562],[.0011117769689167,.0022362097830152,3.6230548231153E-4]],[328500,[4.837152376403,44.072311954153, +12.3146147867802],[-.0022164547537724,-3.6790365636785E-4,5.5542723844616E-4]],[365E3,[-2.2619763759487,-29.8581508706765,-8.6502366418978],[.0031821176368396,-4.0915169873994E-4,-.0010895893040652]],[401500,[37.1576590087419,32.3528396259588,-1.0950381786229],[-.001198841260683,.0015356290902995,8.4339118209852E-4]],[438E3,[-29.5767402292299,11.8635359435865,12.6313230398719],[-7.2292830060955E-4,-.0029587820140709,-7.08242964503E-4]],[474500,[40.9541099577599,-3.658980594537,-13.499469956395],[9.5387298337127E-4, +.0022572135462477,4.1826529781128E-4]],[511E3,[2.4859523114116,43.6181887566155,12.8914184596699],[-.0022339745420393,-5.1034757181916E-4,5.1485330196245E-4]],[547500,[1.0594791441638,-30.1357921778687,-9.7458684762963],[.0031921591684898,-1.130531279615E-4,-9.9954096945965E-4]],[584E3,[35.8778640130144,33.8942263660709,-.2245246362769],[-.0012941245730845,.0014560427668319,8.4762160640137E-4]],[620500,[-30.2026537318923,8.7794211940578,11.8609238187578],[-4.9002221381806E-4,-.0030438768469137,-8.0605935262763E-4]], +[657E3,[41.8536204011376,-1.3790965838042,-13.0624345337527],[8.0674627557124E-4,.0022702374399791,4.6832587475465E-4]],[693500,[.2468843977112,43.0303960481227,13.3909343344167],[-.0022436121787266,-6.5238074250728E-4,4.7172729553196E-4]],[73E4,[4.2432528370899,-30.1182016908248,-10.7074412313491],[.0031725847067411,1.609846120227E-4,-9.0672150593868E-4]]],E=function(a,b,c){this.x=a;this.y=b;this.z=c};E.prototype.ToAstroVector=function(a){return new D(this.x,this.y,this.z,a)};E.prototype.quadrature= +function(){return this.x*this.x+this.y*this.y+this.z*this.z};E.prototype.add=function(a){return new E(this.x+a.x,this.y+a.y,this.z+a.z)};E.prototype.sub=function(a){return new E(this.x-a.x,this.y-a.y,this.z-a.z)};E.prototype.incr=function(a){this.x+=a.x;this.y+=a.y;this.z+=a.z};E.prototype.decr=function(a){this.x-=a.x;this.y-=a.y;this.z-=a.z};E.prototype.mul=function(a){return new E(a*this.x,a*this.y,a*this.z)};E.prototype.div=function(a){return new E(this.x/a,this.y/a,this.z/a)};E.prototype.mean= +function(a){return new E((this.x+a.x)/2,(this.y+a.y)/2,(this.z+a.z)/2)};var Ua=function(a,b,c){this.tt=a;this.r=b;this.v=c},Ca=function(a){var b=new Ua(a,new E(0,0,0),new E(0,0,0));this.Jupiter=Wa(b,a,r.Jupiter,2.825345909524226E-7);this.Saturn=Wa(b,a,r.Saturn,8.459715185680659E-8);this.Uranus=Wa(b,a,r.Uranus,1.292024916781969E-8);this.Neptune=Wa(b,a,r.Neptune,1.524358900784276E-8);this.Jupiter.r.decr(b.r);this.Jupiter.v.decr(b.v);this.Saturn.r.decr(b.r);this.Saturn.v.decr(b.v);this.Uranus.r.decr(b.r); +this.Uranus.v.decr(b.v);this.Neptune.r.decr(b.r);this.Neptune.v.decr(b.v);this.Sun=new Ua(a,b.r.mul(-1),b.v.mul(-1))};Ca.prototype.Acceleration=function(a){var b=Ba(a,2.959122082855911E-4,this.Sun.r);b.incr(Ba(a,2.825345909524226E-7,this.Jupiter.r));b.incr(Ba(a,8.459715185680659E-8,this.Saturn.r));b.incr(Ba(a,1.292024916781969E-8,this.Uranus.r));b.incr(Ba(a,1.524358900784276E-8,this.Neptune.r));return b};var Qb=function(a,b,c,d){this.tt=a;this.r=b;this.v=c;this.a=d},Rb=function(a,b){this.bary=a;this.grav= +b},ob=[],Wc=new J([[.9994327653386544,-.03367710746976414,0],[.030395942890628476,.902057912352809,.43054338854229507],[-.014499455966335291,-.43029916940910073,.902569881273754]]),Xc=[{mu:2.82489428433814E-7,al:[1.446213296021224,3.5515522861824],a:[[.0028210960212903,0,0]],l:[[-1.925258348666E-4,4.9369589722645,.01358483658305],[-9.70803596076E-5,4.3188796477322,.01303413843243],[-8.988174165E-5,1.9080016428617,.00305064867158],[-5.53101050262E-5,1.4936156681569,.01293892891155]],z:[[.0041510849668155, +4.089939635545,-.01290686414666],[6.260521444113E-4,1.446188898627,3.5515522949802],[3.52747346169E-5,2.1256287034578,1.2727416567E-4]],zeta:[[3.142172466014E-4,2.7964219722923,-.002315096098],[9.04169207946E-5,1.0477061879627,-5.6920638196E-4]]},{mu:2.82483274392893E-7,al:[-.3735263437471362,1.76932271112347],a:[[.0044871037804314,0,0],[4.324367498E-7,1.819645606291,1.7822295777568]],l:[[8.576433172936E-4,4.3188693178264,.01303413830805],[4.549582875086E-4,1.4936531751079,.01293892881962],[3.248939825174E-4, +1.8196494533458,1.7822295777568],[-3.074250079334E-4,4.9377037005911,.01358483286724],[1.982386144784E-4,1.907986905476,.00305101212869],[1.834063551804E-4,2.1402853388529,.00145009789338],[-1.434383188452E-4,5.622214036663,.89111478887838],[-7.71939140944E-5,4.300272437235,2.6733443704266]],z:[[-.0093589104136341,4.0899396509039,-.01290686414666],[2.988994545555E-4,5.9097265185595,1.7693227079462],[2.13903639035E-4,2.1256289300016,1.2727418407E-4],[1.980963564781E-4,2.743516829265,6.7797343009E-4], +[1.210388158965E-4,5.5839943711203,3.20566149E-5],[8.37042048393E-5,1.6094538368039,-.90402165808846],[8.23525166369E-5,1.4461887708689,3.5515522949802]],zeta:[[.0040404917832303,1.0477063169425,-5.692064054E-4],[2.200421034564E-4,3.3368857864364,-1.2491307307E-4],[1.662544744719E-4,2.4134862374711,0],[5.90282470983E-5,5.9719930968366,-3.056160225E-5]]},{mu:2.82498184184723E-7,al:[.2874089391143348,.878207923589328],a:[[.0071566594572575,0,0],[1.393029911E-6,1.1586745884981,2.6733443704266]],l:[[2.310797886226E-4, +2.1402987195942,.00145009784384],[-1.828635964118E-4,4.3188672736968,.01303413828263],[1.512378778204E-4,4.9373102372298,.01358483481252],[-1.163720969778E-4,4.300265986149,2.6733443704266],[-9.55478069846E-5,1.4936612842567,.01293892879857],[8.15246854464E-5,5.6222137132535,.89111478887838],[-8.01219679602E-5,1.2995922951532,1.0034433456729],[-6.07017260182E-5,.64978769669238,.50172167043264]],z:[[.0014289811307319,2.1256295942739,1.2727413029E-4],[7.71093122676E-4,5.5836330003496,3.20643411E-5], +[5.925911780766E-4,4.0899396636448,-.01290686414666],[2.045597496146E-4,5.2713683670372,-.12523544076106],[1.785118648258E-4,.28743156721063,.8782079244252],[1.131999784893E-4,1.4462127277818,3.5515522949802],[-6.5877816921E-5,2.2702423990985,-1.7951364394537],[4.97058888328E-5,5.9096792204858,1.7693227129285]],zeta:[[.0015932721570848,3.3368862796665,-1.2491307058E-4],[8.533093128905E-4,2.4133881688166,0],[3.513347911037E-4,5.9720789850127,-3.056101771E-5],[-1.441929255483E-4,1.0477061764435,-5.6920632124E-4]]}, +{mu:2.82492144889909E-7,al:[-.3620341291375704,.376486233433828],a:[[.0125879701715314,0,0],[3.595204947E-6,.64965776007116,.50172168165034],[2.7580210652E-6,1.808423578151,3.1750660413359]],l:[[5.586040123824E-4,2.1404207189815,.00145009793231],[-3.805813868176E-4,2.7358844897853,2.972965062E-5],[2.205152863262E-4,.649796525964,.5017216724358],[1.877895151158E-4,1.8084787604005,3.1750660413359],[7.66916975242E-5,6.2720114319755,1.3928364636651],[7.47056855106E-5,1.2995916202344,1.0034433456729]], +z:[[.0073755808467977,5.5836071576084,3.206509914E-5],[2.065924169942E-4,5.9209831565786,.37648624194703],[1.589869764021E-4,.28744006242623,.8782079244252],[-1.561131605348E-4,2.1257397865089,1.2727441285E-4],[1.486043380971E-4,1.4462134301023,3.5515522949802],[6.35073108731E-5,5.9096803285954,1.7693227129285],[5.99351698525E-5,4.1125517584798,-2.7985797954589],[5.40660842731E-5,5.5390350845569,.00286834082283],[-4.89596900866E-5,4.6218149483338,-.62695712529519]],zeta:[[.0038422977898495,2.4133922085557, +0],[.0022453891791894,5.9721736773277,-3.056125525E-5],[-2.604479450559E-4,3.3368746306409,-1.2491309972E-4],[3.3211214323E-5,5.5604137742337,.00290037688507]]}],Dc=function(a){this.moon=a};e.JupiterMoonsInfo=Dc;e.JupiterMoons=function(a){a=new N(a);for(var b=[],c=$jscomp.makeIterator(Xc),d=c.next();!d.done;d=c.next()){var f=b,h=f.push;d=d.value;for(var l=a.tt+18262.5,k=[0,d.al[0]+l*d.al[1],0,0,0,0],g=$jscomp.makeIterator(d.a),m=g.next();!m.done;m=g.next()){var n=$jscomp.makeIterator(m.value);m=n.next().value; +var p=n.next().value;n=n.next().value;k[0]+=m*Math.cos(p+l*n)}g=$jscomp.makeIterator(d.l);for(m=g.next();!m.done;m=g.next())n=$jscomp.makeIterator(m.value),m=n.next().value,p=n.next().value,n=n.next().value,k[1]+=m*Math.sin(p+l*n);k[1]%=O;0>k[1]&&(k[1]+=O);g=$jscomp.makeIterator(d.z);for(m=g.next();!m.done;m=g.next())n=$jscomp.makeIterator(m.value),m=n.next().value,p=n.next().value,n=n.next().value,p+=l*n,k[2]+=m*Math.cos(p),k[3]+=m*Math.sin(p);g=$jscomp.makeIterator(d.zeta);for(m=g.next();!m.done;m= +g.next())n=$jscomp.makeIterator(m.value),m=n.next().value,p=n.next().value,n=n.next().value,p+=l*n,k[4]+=m*Math.cos(p),k[5]+=m*Math.sin(p);g=k[0];n=k[1];m=k[2];p=k[3];l=k[4];k=k[5];var u=Math.sqrt(d.mu/(g*g*g));d=n+m*Math.sin(n)-p*Math.cos(n);do{var w=Math.cos(d);var B=Math.sin(d);w=(n-d+m*B-p*w)/(1-m*w-p*B);d+=w}while(1E-12<=Math.abs(w));w=Math.cos(d);B=Math.sin(d);n=p*w-m*B;var z=-m*w-p*B,va=1/(1+z),ba=1/(1+Math.sqrt(1-m*m-p*p));d=g*(w-m-ba*p*n);n=g*(B-p+ba*m*n);p=u*va*g*(-B-ba*p*z);g=u*va*g*(+w+ +ba*m*z);m=2*Math.sqrt(1-l*l-k*k);u=1-2*k*k;w=1-2*l*l;B=2*k*l;d=new na(d*u+n*B,d*B+n*w,(l*n-d*k)*m,p*u+g*B,p*B+g*w,(l*g-p*k)*m,a);d=hc(Wc,d);h.call(f,d)}return new Dc(b)};e.HelioVector=Da;e.HelioDistance=ha;e.GeoVector=X;e.BaryState=function(a,b){b=x(b);if(a==r.SSB)return new na(0,0,0,0,0,0,b);var c=new Ca(b.tt);switch(a){case r.Sun:return Ea(c.Sun,b);case r.Jupiter:return Ea(c.Jupiter,b);case r.Saturn:return Ea(c.Saturn,b);case r.Uranus:return Ea(c.Uranus,b);case r.Neptune:return Ea(c.Neptune,b)}if(a in +H)return a=Pb(H[a],b.tt),new na(c.Sun.r.x+a.r.x,c.Sun.r.y+a.r.y,c.Sun.r.z+a.r.z,c.Sun.v.x+a.v.x,c.Sun.v.y+a.v.y,c.Sun.v.z+a.v.z,b);throw'BaryState: Unsupported body "'+a+'"';};e.Search=I;e.SearchSunLongitude=Ub;e.PairLongitude=pb;e.AngleFromSun=qa;e.EclipticLongitude=ia;var Vb=function(a,b,c,d,f,h,l,k){this.time=a;this.mag=b;this.phase_angle=c;this.helio_dist=d;this.geo_dist=f;this.gc=h;this.hc=l;this.ring_tilt=k;this.phase_fraction=(1+Math.cos(e.DEG2RAD*c))/2};e.IlluminationInfo=Vb;e.Illumination= +Ya;e.SearchRelativeLongitude=ra;e.MoonPhase=qb;e.SearchMoonPhase=Ga;var Xb=function(a,b){this.quarter=a;this.time=b};e.MoonQuarter=Xb;e.SearchMoonQuarter=Wb;e.NextMoonQuarter=function(a){a=new Date(a.time.date.getTime()+5184E5);return Wb(a)};e.SearchRiseSet=function(a,b,c,d,f){a:switch(a){case r.Sun:var h=Tc;break a;case r.Moon:h=Uc;break a;default:h=0}return Yb(a,b,c,d,f,function(l){var k=za(a,l,b,!0,!0);l=xa(l,b,k.ra,k.dec).altitude+h/k.dist*e.RAD2DEG+Vc;return c*l})};e.SearchAltitude=function(a, +b,c,d,f,h){if(!Number.isFinite(h)||-90>h||90=++f;){var h=ia(a,b),l=ia(r.Earth,b),k=oa(h-l),g=h=l=void 0;k>=-d.s1&&k<+d.s1?(g=0,l=+d.s1,h=+d.s2):k>=+d.s2||k<-d.s2?(g=0,l=-d.s2,h=-d.s1):0<=k?(g=-Fa(a)/4,l=+d.s1,h=+d.s2):(g=-Fa(a)/4,l=-d.s2,h=-d.s1);k=b.AddDays(g);l=ra(a,l,k);h=ra(a,h,l);k=c(l);if(0<=k)throw"SearchMaxElongation: internal error: m1 = "+ +k;g=c(h);if(0>=g)throw"SearchMaxElongation: internal error: m2 = "+g;k=I(c,l,h,{init_f1:k,init_f2:g,dt_tolerance_seconds:10});if(!k)throw"SearchMaxElongation: failed search iter "+f+" (t1="+l.toString()+", t2="+h.toString()+")";if(k.tt>=b.tt)return $b(a,k);b=h.AddDays(1)}throw"SearchMaxElongation: failed to find event after 2 tries.";};e.SearchPeakMagnitude=function(a,b){function c(g){var m=g.AddDays(-.005);g=g.AddDays(.005);m=Ya(a,m).mag;return(Ya(a,g).mag-m)/.01}if(a!==r.Venus)throw"SearchPeakMagnitude currently works for Venus only."; +b=x(b);for(var d=0;2>=++d;){var f=ia(a,b),h=ia(r.Earth,b),l=oa(f-h),k=f=h=void 0;-10<=l&&10>l?(k=0,h=10,f=30):30<=l||-30>l?(k=0,h=-30,f=-10):0<=l?(k=-Fa(a)/4,h=10,f=30):(k=-Fa(a)/4,h=-30,f=-10);l=b.AddDays(k);h=ra(a,h,l);f=ra(a,f,h);l=c(h);if(0<=l)throw"SearchPeakMagnitude: internal error: m1 = "+l;k=c(f);if(0>=k)throw"SearchPeakMagnitude: internal error: m2 = "+k;l=I(c,h,f,{init_f1:l,init_f2:k,dt_tolerance_seconds:10});if(!l)throw"SearchPeakMagnitude: failed search iter "+d+" (t1="+h.toString()+ +", t2="+f.toString()+")";if(l.tt>=b.tt)return Ya(a,l);b=f.AddDays(1)}throw"SearchPeakMagnitude: failed to find event after 2 tries.";};var Ia=function(a,b,c){this.time=a;this.kind=b;this.dist_au=c;this.dist_km=c*e.KM_PER_AU};e.Apsis=Ia;e.SearchLunarApsis=bc;e.NextLunarApsis=function(a){var b=bc(a.time.AddDays(11));if(1!==b.kind+a.kind)throw"NextLunarApsis INTERNAL ERROR: did not find alternating apogee/perigee: prev="+a.kind+" @ "+a.time.toString()+", next="+b.kind+" @ "+b.time.toString();return b}; +e.SearchPlanetApsis=dc;e.NextPlanetApsis=function(a,b){if(0!==b.kind&&1!==b.kind)throw"Invalid apsis kind: "+b.kind;var c=b.time.AddDays(.25*Z[a].OrbitalPeriod);a=dc(a,c);if(1!==a.kind+b.kind)throw"Internal error: previous apsis was "+b.kind+", but found "+a.kind+" for next apsis.";return a};e.InverseRotation=sa;e.CombineRotation=ta;e.IdentityMatrix=function(){return new J([[1,0,0],[0,1,0],[0,0,1]])};e.Pivot=function(a,b,c){if(0!==b&&1!==b&&2!==b)throw"Invalid axis "+b+". Must be [0, 1, 2].";var d= +v(c)*e.DEG2RAD;c=Math.cos(d);d=Math.sin(d);var f=(b+1)%3,h=(b+2)%3,l=[[0,0,0],[0,0,0],[0,0,0]];l[f][f]=c*a.rot[f][f]-d*a.rot[f][h];l[f][h]=d*a.rot[f][f]+c*a.rot[f][h];l[f][b]=a.rot[f][b];l[h][f]=c*a.rot[h][f]-d*a.rot[h][h];l[h][h]=d*a.rot[h][f]+c*a.rot[h][h];l[h][b]=a.rot[h][b];l[b][f]=c*a.rot[b][f]-d*a.rot[b][h];l[b][h]=d*a.rot[b][f]+c*a.rot[b][h];l[b][b]=a.rot[b][b];return new J(l)};e.VectorFromSphere=rb;e.EquatorFromVector=ec;e.SphereFromVector=sb;e.HorizonFromVector=function(a,b){a=sb(a);a.lon= +fc(a.lon);a.lat+=ya(b,a.lat);return a};e.VectorFromHorizon=function(a,b,c){var d=fc(a.lon);c=a.lat+gc(c,a.lat);a=new Za(c,d,a.dist);return rb(a,b)};e.Refraction=ya;e.InverseRefraction=gc;e.RotateVector=Ja;e.RotateState=hc;e.Rotation_EQJ_ECL=ic;e.Rotation_ECL_EQJ=function(){return new J([[1,0,0],[0,.9174821430670688,.3977769691083922],[0,-.3977769691083922,.9174821430670688]])};e.Rotation_EQJ_EQD=tb;e.Rotation_EQD_EQJ=ub;e.Rotation_EQD_HOR=vb;e.Rotation_HOR_EQD=jc;e.Rotation_HOR_EQJ=kc;e.Rotation_EQJ_HOR= +function(a,b){a=kc(a,b);return sa(a)};e.Rotation_EQD_ECL=lc;e.Rotation_ECL_EQD=mc;e.Rotation_ECL_HOR=nc;e.Rotation_HOR_ECL=function(a,b){a=nc(a,b);return sa(a)};e.Rotation_EQJ_GAL=function(){return new J([[-.0548624779711344,.4941095946388765,-.8676668813529025],[-.8734572784246782,-.4447938112296831,-.1980677870294097],[-.483800052994852,.7470034631630423,.4559861124470794]])};e.Rotation_GAL_EQJ=function(){return new J([[-.0548624779711344,-.8734572784246782,-.483800052994852],[.4941095946388765, +-.4447938112296831,.7470034631630423],[-.8676668813529025,-.1980677870294097,.4559861124470794]])};var Yc=[["And","Andromeda"],["Ant","Antila"],["Aps","Apus"],["Aql","Aquila"],["Aqr","Aquarius"],["Ara","Ara"],["Ari","Aries"],["Aur","Auriga"],["Boo","Bootes"],["Cae","Caelum"],["Cam","Camelopardis"],["Cap","Capricornus"],["Car","Carina"],["Cas","Cassiopeia"],["Cen","Centaurus"],["Cep","Cepheus"],["Cet","Cetus"],["Cha","Chamaeleon"],["Cir","Circinus"],["CMa","Canis Major"],["CMi","Canis Minor"],["Cnc", +"Cancer"],["Col","Columba"],["Com","Coma Berenices"],["CrA","Corona Australis"],["CrB","Corona Borealis"],["Crt","Crater"],["Cru","Crux"],["Crv","Corvus"],["CVn","Canes Venatici"],["Cyg","Cygnus"],["Del","Delphinus"],["Dor","Dorado"],["Dra","Draco"],["Equ","Equuleus"],["Eri","Eridanus"],["For","Fornax"],["Gem","Gemini"],["Gru","Grus"],["Her","Hercules"],["Hor","Horologium"],["Hya","Hydra"],["Hyi","Hydrus"],["Ind","Indus"],["Lac","Lacerta"],["Leo","Leo"],["Lep","Lepus"],["Lib","Libra"],["LMi","Leo Minor"], +["Lup","Lupus"],["Lyn","Lynx"],["Lyr","Lyra"],["Men","Mensa"],["Mic","Microscopium"],["Mon","Monoceros"],["Mus","Musca"],["Nor","Norma"],["Oct","Octans"],["Oph","Ophiuchus"],["Ori","Orion"],["Pav","Pavo"],["Peg","Pegasus"],["Per","Perseus"],["Phe","Phoenix"],["Pic","Pictor"],["PsA","Pisces Austrinus"],["Psc","Pisces"],["Pup","Puppis"],["Pyx","Pyxis"],["Ret","Reticulum"],["Scl","Sculptor"],["Sco","Scorpius"],["Sct","Scutum"],["Ser","Serpens"],["Sex","Sextans"],["Sge","Sagitta"],["Sgr","Sagittarius"], +["Tau","Taurus"],["Tel","Telescopium"],["TrA","Triangulum Australe"],["Tri","Triangulum"],["Tuc","Tucana"],["UMa","Ursa Major"],["UMi","Ursa Minor"],["Vel","Vela"],["Vir","Virgo"],["Vol","Volans"],["Vul","Vulpecula"]],Zc=[[83,0,8640,2112],[83,2880,5220,2076],[83,7560,8280,2068],[83,6480,7560,2064],[15,0,2880,2040],[10,3300,3840,1968],[15,0,1800,1920],[10,3840,5220,1920],[83,6300,6480,1920],[33,7260,7560,1920],[15,0,1263,1848],[10,4140,4890,1848],[83,5952,6300,1800],[15,7260,7440,1800],[10,2868,3300, +1764],[33,3300,4080,1764],[83,4680,5952,1680],[13,1116,1230,1632],[33,7350,7440,1608],[33,4080,4320,1596],[15,0,120,1584],[83,5040,5640,1584],[15,8490,8640,1584],[33,4320,4860,1536],[33,4860,5190,1512],[15,8340,8490,1512],[10,2196,2520,1488],[33,7200,7350,1476],[15,7393.2,7416,1462],[10,2520,2868,1440],[82,2868,3030,1440],[33,7116,7200,1428],[15,7200,7393.2,1428],[15,8232,8340,1418],[13,0,876,1404],[33,6990,7116,1392],[13,612,687,1380],[13,876,1116,1368],[10,1116,1140,1368],[15,8034,8232,1350],[10, +1800,2196,1344],[82,5052,5190,1332],[33,5190,6990,1332],[10,1140,1200,1320],[15,7968,8034,1320],[15,7416,7908,1316],[13,0,612,1296],[50,2196,2340,1296],[82,4350,4860,1272],[33,5490,5670,1272],[15,7908,7968,1266],[10,1200,1800,1260],[13,8232,8400,1260],[33,5670,6120,1236],[62,735,906,1212],[33,6120,6564,1212],[13,0,492,1200],[62,492,600,1200],[50,2340,2448,1200],[13,8400,8640,1200],[82,4860,5052,1164],[13,0,402,1152],[13,8490,8640,1152],[39,6543,6564,1140],[33,6564,6870,1140],[30,6870,6900,1140],[62, +600,735,1128],[82,3030,3300,1128],[13,60,312,1104],[82,4320,4350,1080],[50,2448,2652,1068],[30,7887,7908,1056],[30,7875,7887,1050],[30,6900,6984,1044],[82,3300,3660,1008],[82,3660,3882,960],[8,5556,5670,960],[39,5670,5880,960],[50,3330,3450,954],[0,0,906,882],[62,906,924,882],[51,6969,6984,876],[62,1620,1689,864],[30,7824,7875,864],[44,7875,7920,864],[7,2352,2652,852],[50,2652,2790,852],[0,0,720,840],[44,7920,8214,840],[44,8214,8232,828],[0,8232,8460,828],[62,924,978,816],[82,3882,3960,816],[29,4320, +4440,816],[50,2790,3330,804],[48,3330,3558,804],[0,258,507,792],[8,5466,5556,792],[0,8460,8550,770],[29,4440,4770,768],[0,8550,8640,752],[29,5025,5052,738],[80,870,978,736],[62,978,1620,736],[7,1620,1710,720],[51,6543,6969,720],[82,3960,4320,696],[30,7080,7530,696],[7,1710,2118,684],[48,3558,3780,684],[29,4770,5025,684],[0,0,24,672],[80,507,600,672],[7,2118,2352,672],[37,2838,2880,672],[30,7530,7824,672],[30,6933,7080,660],[80,690,870,654],[25,5820,5880,648],[8,5430,5466,624],[25,5466,5820,624],[51, +6612,6792,624],[48,3870,3960,612],[51,6792,6933,612],[80,600,690,600],[66,258,306,570],[48,3780,3870,564],[87,7650,7710,564],[77,2052,2118,548],[0,24,51,528],[73,5730,5772,528],[37,2118,2238,516],[87,7140,7290,510],[87,6792,6930,506],[0,51,306,504],[87,7290,7404,492],[37,2811,2838,480],[87,7404,7650,468],[87,6930,7140,460],[6,1182,1212,456],[75,6792,6840,444],[59,2052,2076,432],[37,2238,2271,420],[75,6840,7140,388],[77,1788,1920,384],[39,5730,5790,384],[75,7140,7290,378],[77,1662,1788,372],[77,1920, +2016,372],[23,4620,4860,360],[39,6210,6570,344],[23,4272,4620,336],[37,2700,2811,324],[39,6030,6210,308],[61,0,51,300],[77,2016,2076,300],[37,2520,2700,300],[61,7602,7680,300],[37,2271,2496,288],[39,6570,6792,288],[31,7515,7578,284],[61,7578,7602,284],[45,4146,4272,264],[59,2247,2271,240],[37,2496,2520,240],[21,2811,2853,240],[61,8580,8640,240],[6,600,1182,238],[31,7251,7308,204],[8,4860,5430,192],[61,8190,8580,180],[21,2853,3330,168],[45,3330,3870,168],[58,6570,6718.4,150],[3,6718.4,6792,150],[31, +7500,7515,144],[20,2520,2526,132],[73,6570,6633,108],[39,5790,6030,96],[58,6570,6633,72],[61,7728,7800,66],[66,0,720,48],[73,6690,6792,48],[31,7308,7500,48],[34,7500,7680,48],[61,7680,7728,48],[61,7920,8190,48],[61,7800,7920,42],[20,2526,2592,36],[77,1290,1662,0],[59,1662,1680,0],[20,2592,2910,0],[85,5280,5430,0],[58,6420,6570,0],[16,954,1182,-42],[77,1182,1290,-42],[73,5430,5856,-78],[59,1680,1830,-96],[59,2100,2247,-96],[73,6420,6468,-96],[73,6570,6690,-96],[3,6690,6792,-96],[66,8190,8580,-96], +[45,3870,4146,-144],[85,4146,4260,-144],[66,0,120,-168],[66,8580,8640,-168],[85,5130,5280,-192],[58,5730,5856,-192],[3,7200,7392,-216],[4,7680,7872,-216],[58,6180,6468,-240],[54,2100,2910,-264],[35,1770,1830,-264],[59,1830,2100,-264],[41,2910,3012,-264],[74,3450,3870,-264],[85,4260,4620,-264],[58,6330,6360,-280],[3,6792,7200,-288.8],[35,1740,1770,-348],[4,7392,7680,-360],[73,6180,6570,-384],[72,6570,6792,-384],[41,3012,3090,-408],[58,5856,5895,-438],[41,3090,3270,-456],[26,3870,3900,-456],[71,5856, +5895,-462],[47,5640,5730,-480],[28,4530,4620,-528],[85,4620,5130,-528],[41,3270,3510,-576],[16,600,954,-585.2],[35,954,1350,-585.2],[26,3900,4260,-588],[28,4260,4530,-588],[47,5130,5370,-588],[58,5856,6030,-590],[16,0,600,-612],[11,7680,7872,-612],[4,7872,8580,-612],[16,8580,8640,-612],[41,3510,3690,-636],[35,1692,1740,-654],[46,1740,2202,-654],[11,7200,7680,-672],[41,3690,3810,-700],[41,4530,5370,-708],[47,5370,5640,-708],[71,5640,5760,-708],[35,1650,1692,-720],[58,6030,6336,-720],[76,6336,6420, +-720],[41,3810,3900,-748],[19,2202,2652,-792],[41,4410,4530,-792],[41,3900,4410,-840],[36,1260,1350,-864],[68,3012,3372,-882],[35,1536,1650,-888],[76,6420,6900,-888],[65,7680,8280,-888],[70,8280,8400,-888],[36,1080,1260,-950],[1,3372,3960,-954],[70,0,600,-960],[36,600,1080,-960],[35,1392,1536,-960],[70,8400,8640,-960],[14,5100,5370,-1008],[49,5640,5760,-1008],[71,5760,5911.5,-1008],[9,1740,1800,-1032],[22,1800,2370,-1032],[67,2880,3012,-1032],[35,1230,1392,-1056],[71,5911.5,6420,-1092],[24,6420,6900, +-1092],[76,6900,7320,-1092],[53,7320,7680,-1092],[35,1080,1230,-1104],[9,1620,1740,-1116],[49,5520,5640,-1152],[63,0,840,-1156],[35,960,1080,-1176],[40,1470,1536,-1176],[9,1536,1620,-1176],[38,7680,7920,-1200],[67,2160,2880,-1218],[84,2880,2940,-1218],[35,870,960,-1224],[40,1380,1470,-1224],[63,0,660,-1236],[12,2160,2220,-1260],[84,2940,3042,-1272],[40,1260,1380,-1276],[32,1380,1440,-1276],[63,0,570,-1284],[35,780,870,-1296],[64,1620,1800,-1296],[49,5418,5520,-1296],[84,3042,3180,-1308],[12,2220, +2340,-1320],[14,4260,4620,-1320],[49,5100,5418,-1320],[56,5418,5520,-1320],[32,1440,1560,-1356],[84,3180,3960,-1356],[14,3960,4050,-1356],[5,6300,6480,-1368],[78,6480,7320,-1368],[38,7920,8400,-1368],[40,1152,1260,-1380],[64,1800,1980,-1380],[12,2340,2460,-1392],[63,0,480,-1404],[35,480,780,-1404],[63,8400,8640,-1404],[32,1560,1650,-1416],[56,5520,5911.5,-1440],[43,7320,7680,-1440],[64,1980,2160,-1464],[18,5460,5520,-1464],[5,5911.5,5970,-1464],[18,5370,5460,-1526],[5,5970,6030,-1526],[64,2160,2460, +-1536],[12,2460,3252,-1536],[14,4050,4260,-1536],[27,4260,4620,-1536],[14,4620,5232,-1536],[18,4860,4920,-1560],[5,6030,6060,-1560],[40,780,1152,-1620],[69,1152,1650,-1620],[18,5310,5370,-1620],[5,6060,6300,-1620],[60,6300,6480,-1620],[81,7920,8400,-1620],[32,1650,2370,-1680],[18,4920,5310,-1680],[79,5310,6120,-1680],[81,0,480,-1800],[42,1260,1650,-1800],[86,2370,3252,-1800],[12,3252,4050,-1800],[55,4050,4920,-1800],[60,6480,7680,-1800],[43,7680,8400,-1800],[81,8400,8640,-1800],[81,270,480,-1824], +[42,0,1260,-1980],[17,2760,4920,-1980],[2,4920,6480,-1980],[52,1260,2760,-2040],[57,0,8640,-2160]],Ab,Fc,Gc=function(a,b,c,d){this.symbol=a;this.name=b;this.ra1875=c;this.dec1875=d};e.ConstellationInfo=Gc;e.Constellation=function(a,b){v(a);v(b);if(-90>b||90a&&(a+=24);Ab||(Ab=tb(new N(-45655.74141261017)),Fc=new N(0));a=new Za(b,15*a,1);a=rb(a,Fc);a=Ja(Ab,a);a=ec(a);b=10/240;for(var c=b/15,d=$jscomp.makeIterator(Zc),f=d.next();!f.done;f= +d.next()){f=f.value;var h=f[1]*c,l=f[2]*c;if(f[3]*b<=a.dec&&h<=a.ra&&a.raa&&(a+=360);return a} function sidereal_time(a){var b=a.tt/36525,c=15*e_tilt(a).ee;a=era(a);b=((c+.014506+((((-3.68E-8*b-2.9956E-5)*b-4.4E-7)*b+1.3915817)*b+4612.156534)*b)/3600+a)%360/15;0>b&&(b+=24);return b} diff --git a/source/js/astronomy.ts b/source/js/astronomy.ts index 0f61a5f3..055425a1 100644 --- a/source/js/astronomy.ts +++ b/source/js/astronomy.ts @@ -1688,6 +1688,8 @@ function CalcMoon(time: AstroTime) { * Moon's geocentric ecliptic longitude. * @property {number} dist_km * Distance between the centers of the Earth and Moon in kilometers. + * @property {number} diam_deg + * The apparent angular diameter of the Moon, in degrees, as seen from the center of the Earth. */ export class LibrationInfo { constructor( @@ -1695,7 +1697,8 @@ export class LibrationInfo { public elon: number, public mlat: number, public mlon: number, - public dist_km: number + public dist_km: number, + public diam_deg: number ) {} } @@ -1712,8 +1715,9 @@ export class LibrationInfo { * in ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position. * * This function also returns the geocentric position of the Moon - * expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, and - * distance `dist_km` between the centers of the Earth and Moon expressed in kilometers. + * expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, the + * distance `dist_km` between the centers of the Earth and Moon expressed in kilometers, + * and the apparent angular diameter of the Moon `diam_deg`. * * @param {FlexibleDateTime} date * A Date object, a number of UTC days since the J2000 epoch (noon on January 1, 2000), @@ -1816,7 +1820,8 @@ export function Libration(date: FlexibleDateTime): LibrationInfo { const ldash2 = -tau + (rho*Math.cos(a) + sigma*Math.sin(a))*Math.tan(bdash); const bdash2 = sigma*Math.cos(a) - rho*Math.sin(a); - return new LibrationInfo(RAD2DEG*bdash + bdash2, ldash + ldash2, mlat, mlon, dist_km); + const diam_deg = 2.0 * RAD2DEG * Math.atan(MOON_MEAN_RADIUS_KM / Math.sqrt(dist_km*dist_km - MOON_MEAN_RADIUS_KM*MOON_MEAN_RADIUS_KM)); + return new LibrationInfo(RAD2DEG*bdash + bdash2, ldash + ldash2, mlat, mlon, dist_km, diam_deg); } function precession(pos: ArrayVector, time: AstroTime, dir: PrecessDirection): ArrayVector { diff --git a/source/js/esm/astronomy.js b/source/js/esm/astronomy.js index 0e11d386..1bbb9fb1 100644 --- a/source/js/esm/astronomy.js +++ b/source/js/esm/astronomy.js @@ -1573,14 +1573,17 @@ function CalcMoon(time) { * Moon's geocentric ecliptic longitude. * @property {number} dist_km * Distance between the centers of the Earth and Moon in kilometers. + * @property {number} diam_deg + * The apparent angular diameter of the Moon, in degrees, as seen from the center of the Earth. */ export class LibrationInfo { - constructor(elat, elon, mlat, mlon, dist_km) { + constructor(elat, elon, mlat, mlon, dist_km, diam_deg) { this.elat = elat; this.elon = elon; this.mlat = mlat; this.mlon = mlon; this.dist_km = dist_km; + this.diam_deg = diam_deg; } } /** @@ -1596,8 +1599,9 @@ export class LibrationInfo { * in ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position. * * This function also returns the geocentric position of the Moon - * expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, and - * distance `dist_km` between the centers of the Earth and Moon expressed in kilometers. + * expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, the + * distance `dist_km` between the centers of the Earth and Moon expressed in kilometers, + * and the apparent angular diameter of the Moon `diam_deg`. * * @param {FlexibleDateTime} date * A Date object, a number of UTC days since the J2000 epoch (noon on January 1, 2000), @@ -1681,7 +1685,8 @@ export function Libration(date) { +0.00011 * Math.sin(2 * mdash - 2 * m - 2 * d)); const ldash2 = -tau + (rho * Math.cos(a) + sigma * Math.sin(a)) * Math.tan(bdash); const bdash2 = sigma * Math.cos(a) - rho * Math.sin(a); - return new LibrationInfo(RAD2DEG * bdash + bdash2, ldash + ldash2, mlat, mlon, dist_km); + const diam_deg = 2.0 * RAD2DEG * Math.atan(MOON_MEAN_RADIUS_KM / Math.sqrt(dist_km * dist_km - MOON_MEAN_RADIUS_KM * MOON_MEAN_RADIUS_KM)); + return new LibrationInfo(RAD2DEG * bdash + bdash2, ldash + ldash2, mlat, mlon, dist_km, diam_deg); } function precession(pos, time, dir) { const r = precession_rot(time, dir); diff --git a/source/python/README.md b/source/python/README.md index 368c5f09..4c7bb090 100644 --- a/source/python/README.md +++ b/source/python/README.md @@ -476,6 +476,7 @@ for a given moment in time. See [`Libration`](#Libration) for more details. | `float` | `mlat` | Moon's geocentric ecliptic latitude. | | `float` | `mlon` | Moon's geocentric ecliptic longitude. | | `float` | `dist_km` | Distance between the centers of the Earth and Moon in kilometers. | +| `float` | `diam_deg` | The apparent angular diameter of the Moon as seen from the center of the Earth. | --- @@ -1516,8 +1517,9 @@ This function calculates a pair of perpendicular libration angles, one representing rotation of the Moon in eclitpic longitude `elon`, the other in ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position. This function also returns the geocentric position of the Moon -expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, and -distance `dist_km` between the centers of the Earth and Moon expressed in kilometers. +expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, the +distance `dist_km` between the centers of the Earth and Moon expressed in kilometers, +and the apparent angular diameter of the Moon `diam_deg`. | Type | Parameter | Description | | --- | --- | --- | diff --git a/source/python/astronomy.py b/source/python/astronomy.py index a9dfc8e9..bccba31f 100644 --- a/source/python/astronomy.py +++ b/source/python/astronomy.py @@ -8554,13 +8554,16 @@ class LibrationInfo: Moon's geocentric ecliptic longitude. dist_km : float Distance between the centers of the Earth and Moon in kilometers. + diam_deg : float + The apparent angular diameter of the Moon as seen from the center of the Earth. """ - def __init__(self, elat, elon, mlat, mlon, dist_km): + def __init__(self, elat, elon, mlat, mlon, dist_km, diam_deg): self.elat = elat self.elon = elon self.mlat = mlat self.mlon = mlon self.dist_km = dist_km + self.diam_deg = diam_deg def Libration(time): @@ -8576,8 +8579,9 @@ def Libration(time): in ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position. This function also returns the geocentric position of the Moon - expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, and - distance `dist_km` between the centers of the Earth and Moon expressed in kilometers. + expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, the + distance `dist_km` between the centers of the Earth and Moon expressed in kilometers, + and the apparent angular diameter of the Moon `diam_deg`. Parameters ---------- @@ -8596,6 +8600,7 @@ def Libration(time): mlon = moon.geo_eclip_lon mlat = moon.geo_eclip_lat dist_km = moon.distance_au * KM_PER_AU + diam_deg = 2.0 * math.degrees(math.atan(_MOON_MEAN_RADIUS_KM / math.sqrt(dist_km*dist_km - _MOON_MEAN_RADIUS_KM*_MOON_MEAN_RADIUS_KM))) # Inclination angle I = math.radians(1.54242) @@ -8682,4 +8687,4 @@ def Libration(time): ldash2 = -tau + (rho*math.cos(a) + sigma*math.sin(a))*math.tan(bdash) bdash = math.degrees(bdash) bdash2 = sigma*math.cos(a) - rho*math.sin(a) - return LibrationInfo(bdash + bdash2, ldash + ldash2, mlat, mlon, dist_km) + return LibrationInfo(bdash + bdash2, ldash + ldash2, mlat, mlon, dist_km, diam_deg) diff --git a/website/src/assets/documentation.json b/website/src/assets/documentation.json index 947ddf99..4c04c224 100644 --- a/website/src/assets/documentation.json +++ b/website/src/assets/documentation.json @@ -12835,14 +12835,14 @@ "scope": "global" }, { - "comment": "/**\n * @brief Lunar libration angles, returned by {@link Libration}.\n *\n * @property {number} elat\n * Sub-Earth libration ecliptic latitude angle, in degrees.\n * @property {number} elon\n * Sub-Earth libration ecliptic longitude angle, in degrees.\n * @property {number} mlat\n * Moon's geocentric ecliptic latitude.\n * @property {number} mlon\n * Moon's geocentric ecliptic longitude.\n * @property {number} dist_km\n * Distance between the centers of the Earth and Moon in kilometers.\n */", + "comment": "/**\n * @brief Lunar libration angles, returned by {@link Libration}.\n *\n * @property {number} elat\n * Sub-Earth libration ecliptic latitude angle, in degrees.\n * @property {number} elon\n * Sub-Earth libration ecliptic longitude angle, in degrees.\n * @property {number} mlat\n * Moon's geocentric ecliptic latitude.\n * @property {number} mlon\n * Moon's geocentric ecliptic longitude.\n * @property {number} dist_km\n * Distance between the centers of the Earth and Moon in kilometers.\n * @property {number} diam_deg\n * The apparent angular diameter of the Moon, in degrees, as seen from the center of the Earth.\n */", "meta": { "range": [ - 74227, - 74443 + 74359, + 74619 ], "filename": "astronomy.js", - "lineno": 1587, + "lineno": 1589, "columnno": 0, "code": { "id": "astnode100008548", @@ -12853,7 +12853,8 @@ "elon", "mlat", "mlon", - "dist_km" + "dist_km", + "diam_deg" ] } }, @@ -12910,6 +12911,15 @@ }, "description": "Distance between the centers of the Earth and Moon in kilometers.", "name": "dist_km" + }, + { + "type": { + "names": [ + "number" + ] + }, + "description": "The apparent angular diameter of the Moon, in degrees, as seen from the center of the Earth.", + "name": "diam_deg" } ], "name": "LibrationInfo", @@ -12922,11 +12932,11 @@ "comment": "", "meta": { "range": [ - 74253, - 74441 + 74385, + 74617 ], "filename": "astronomy.js", - "lineno": 1588, + "lineno": 1590, "columnno": 4, "code": { "id": "astnode100008551", @@ -12937,7 +12947,8 @@ "elon", "mlat", "mlon", - "dist_km" + "dist_km", + "diam_deg" ] }, "vars": { @@ -12952,14 +12963,14 @@ "params": [] }, { - "comment": "/**\n * @brief Lunar libration angles, returned by {@link Libration}.\n *\n * @property {number} elat\n * Sub-Earth libration ecliptic latitude angle, in degrees.\n * @property {number} elon\n * Sub-Earth libration ecliptic longitude angle, in degrees.\n * @property {number} mlat\n * Moon's geocentric ecliptic latitude.\n * @property {number} mlon\n * Moon's geocentric ecliptic longitude.\n * @property {number} dist_km\n * Distance between the centers of the Earth and Moon in kilometers.\n */", + "comment": "/**\n * @brief Lunar libration angles, returned by {@link Libration}.\n *\n * @property {number} elat\n * Sub-Earth libration ecliptic latitude angle, in degrees.\n * @property {number} elon\n * Sub-Earth libration ecliptic longitude angle, in degrees.\n * @property {number} mlat\n * Moon's geocentric ecliptic latitude.\n * @property {number} mlon\n * Moon's geocentric ecliptic longitude.\n * @property {number} dist_km\n * Distance between the centers of the Earth and Moon in kilometers.\n * @property {number} diam_deg\n * The apparent angular diameter of the Moon, in degrees, as seen from the center of the Earth.\n */", "meta": { "range": [ - 74227, - 74443 + 74359, + 74619 ], "filename": "astronomy.js", - "lineno": 1587, + "lineno": 1589, "columnno": 0, "code": { "id": "astnode100008548", @@ -12970,7 +12981,8 @@ "elon", "mlat", "mlon", - "dist_km" + "dist_km", + "diam_deg" ] } }, @@ -13031,6 +13043,15 @@ }, "description": "Distance between the centers of the Earth and Moon in kilometers.", "name": "dist_km" + }, + { + "type": { + "names": [ + "number" + ] + }, + "description": "The apparent angular diameter of the Moon, in degrees, as seen from the center of the Earth.", + "name": "diam_deg" } ] }, @@ -13038,14 +13059,14 @@ "comment": "", "meta": { "range": [ - 74308, - 74324 + 74450, + 74466 ], "filename": "astronomy.js", - "lineno": 1589, + "lineno": 1591, "columnno": 8, "code": { - "id": "astnode100008561", + "id": "astnode100008562", "name": "this.elat", "type": "Identifier", "value": "elat", @@ -13063,14 +13084,14 @@ "comment": "", "meta": { "range": [ - 74334, - 74350 + 74476, + 74492 ], "filename": "astronomy.js", - "lineno": 1590, + "lineno": 1592, "columnno": 8, "code": { - "id": "astnode100008567", + "id": "astnode100008568", "name": "this.elon", "type": "Identifier", "value": "elon", @@ -13088,14 +13109,14 @@ "comment": "", "meta": { "range": [ - 74360, - 74376 + 74502, + 74518 ], "filename": "astronomy.js", - "lineno": 1591, + "lineno": 1593, "columnno": 8, "code": { - "id": "astnode100008573", + "id": "astnode100008574", "name": "this.mlat", "type": "Identifier", "value": "mlat", @@ -13113,14 +13134,14 @@ "comment": "", "meta": { "range": [ - 74386, - 74402 + 74528, + 74544 ], "filename": "astronomy.js", - "lineno": 1592, + "lineno": 1594, "columnno": 8, "code": { - "id": "astnode100008579", + "id": "astnode100008580", "name": "this.mlon", "type": "Identifier", "value": "mlon", @@ -13138,14 +13159,14 @@ "comment": "", "meta": { "range": [ - 74412, - 74434 + 74554, + 74576 ], "filename": "astronomy.js", - "lineno": 1593, + "lineno": 1595, "columnno": 8, "code": { - "id": "astnode100008585", + "id": "astnode100008586", "name": "this.dist_km", "type": "Identifier", "value": "dist_km", @@ -13163,14 +13184,39 @@ "comment": "", "meta": { "range": [ - 74444, - 74481 + 74586, + 74610 ], "filename": "astronomy.js", "lineno": 1596, + "columnno": 8, + "code": { + "id": "astnode100008592", + "name": "this.diam_deg", + "type": "Identifier", + "value": "diam_deg", + "paramnames": [] + } + }, + "undocumented": true, + "name": "diam_deg", + "longname": "LibrationInfo#diam_deg", + "kind": "member", + "memberof": "LibrationInfo", + "scope": "instance" + }, + { + "comment": "", + "meta": { + "range": [ + 74620, + 74657 + ], + "filename": "astronomy.js", + "lineno": 1599, "columnno": 0, "code": { - "id": "astnode100008591", + "id": "astnode100008598", "name": "exports.LibrationInfo", "type": "Identifier", "value": "LibrationInfo", @@ -13184,17 +13230,17 @@ "scope": "global" }, { - "comment": "/**\n * @brief Calculates the Moon's libration angles at a given moment in time.\n *\n * Libration is an observed back-and-forth wobble of the portion of the\n * Moon visible from the Earth. It is caused by the imperfect tidal locking\n * of the Moon's fixed rotation rate, compared to its variable angular speed\n * of orbit around the Earth.\n *\n * This function calculates a pair of perpendicular libration angles,\n * one representing rotation of the Moon in eclitpic longitude `elon`, the other\n * in ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position.\n *\n * This function also returns the geocentric position of the Moon\n * expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, and\n * distance `dist_km` between the centers of the Earth and Moon expressed in kilometers.\n *\n * @param {FlexibleDateTime} date\n * A Date object, a number of UTC days since the J2000 epoch (noon on January 1, 2000),\n * or an AstroTime object.\n *\n * @returns {LibrationInfo}\n */", + "comment": "/**\n * @brief Calculates the Moon's libration angles at a given moment in time.\n *\n * Libration is an observed back-and-forth wobble of the portion of the\n * Moon visible from the Earth. It is caused by the imperfect tidal locking\n * of the Moon's fixed rotation rate, compared to its variable angular speed\n * of orbit around the Earth.\n *\n * This function calculates a pair of perpendicular libration angles,\n * one representing rotation of the Moon in eclitpic longitude `elon`, the other\n * in ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position.\n *\n * This function also returns the geocentric position of the Moon\n * expressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, the\n * distance `dist_km` between the centers of the Earth and Moon expressed in kilometers,\n * and the apparent angular diameter of the Moon `diam_deg`.\n *\n * @param {FlexibleDateTime} date\n * A Date object, a number of UTC days since the J2000 epoch (noon on January 1, 2000),\n * or an AstroTime object.\n *\n * @returns {LibrationInfo}\n */", "meta": { "range": [ - 75491, - 79382 + 75728, + 79781 ], "filename": "astronomy.js", - "lineno": 1619, + "lineno": 1623, "columnno": 0, "code": { - "id": "astnode100008596", + "id": "astnode100008603", "name": "Libration", "type": "FunctionDeclaration", "paramnames": [ @@ -13228,15 +13274,16 @@ "sigma": "Libration~sigma", "tau": "Libration~tau", "ldash2": "Libration~ldash2", - "bdash2": "Libration~bdash2" + "bdash2": "Libration~bdash2", + "diam_deg": "Libration~diam_deg" } }, "tags": [ { "originalTitle": "brief", "title": "brief", - "text": "Calculates the Moon's libration angles at a given moment in time.\n\nLibration is an observed back-and-forth wobble of the portion of the\nMoon visible from the Earth. It is caused by the imperfect tidal locking\nof the Moon's fixed rotation rate, compared to its variable angular speed\nof orbit around the Earth.\n\nThis function calculates a pair of perpendicular libration angles,\none representing rotation of the Moon in eclitpic longitude `elon`, the other\nin ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position.\n\nThis function also returns the geocentric position of the Moon\nexpressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, and\ndistance `dist_km` between the centers of the Earth and Moon expressed in kilometers.", - "value": "Calculates the Moon's libration angles at a given moment in time.\n\nLibration is an observed back-and-forth wobble of the portion of the\nMoon visible from the Earth. It is caused by the imperfect tidal locking\nof the Moon's fixed rotation rate, compared to its variable angular speed\nof orbit around the Earth.\n\nThis function calculates a pair of perpendicular libration angles,\none representing rotation of the Moon in eclitpic longitude `elon`, the other\nin ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position.\n\nThis function also returns the geocentric position of the Moon\nexpressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, and\ndistance `dist_km` between the centers of the Earth and Moon expressed in kilometers." + "text": "Calculates the Moon's libration angles at a given moment in time.\n\nLibration is an observed back-and-forth wobble of the portion of the\nMoon visible from the Earth. It is caused by the imperfect tidal locking\nof the Moon's fixed rotation rate, compared to its variable angular speed\nof orbit around the Earth.\n\nThis function calculates a pair of perpendicular libration angles,\none representing rotation of the Moon in eclitpic longitude `elon`, the other\nin ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position.\n\nThis function also returns the geocentric position of the Moon\nexpressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, the\ndistance `dist_km` between the centers of the Earth and Moon expressed in kilometers,\nand the apparent angular diameter of the Moon `diam_deg`.", + "value": "Calculates the Moon's libration angles at a given moment in time.\n\nLibration is an observed back-and-forth wobble of the portion of the\nMoon visible from the Earth. It is caused by the imperfect tidal locking\nof the Moon's fixed rotation rate, compared to its variable angular speed\nof orbit around the Earth.\n\nThis function calculates a pair of perpendicular libration angles,\none representing rotation of the Moon in eclitpic longitude `elon`, the other\nin ecliptic latitude `elat`, both relative to the Moon's mean Earth-facing position.\n\nThis function also returns the geocentric position of the Moon\nexpressed in ecliptic longitude `mlon`, ecliptic latitude `mlat`, the\ndistance `dist_km` between the centers of the Earth and Moon expressed in kilometers,\nand the apparent angular diameter of the Moon `diam_deg`." } ], "params": [ @@ -13268,14 +13315,14 @@ "comment": "", "meta": { "range": [ - 75528, - 75549 + 75765, + 75786 ], "filename": "astronomy.js", - "lineno": 1620, + "lineno": 1624, "columnno": 10, "code": { - "id": "astnode100008601", + "id": "astnode100008608", "name": "time", "type": "CallExpression", "value": "" @@ -13293,14 +13340,14 @@ "comment": "", "meta": { "range": [ - 75561, - 75582 + 75798, + 75819 ], "filename": "astronomy.js", - "lineno": 1621, + "lineno": 1625, "columnno": 10, "code": { - "id": "astnode100008607", + "id": "astnode100008614", "name": "t", "type": "BinaryExpression", "value": "" @@ -13318,14 +13365,14 @@ "comment": "", "meta": { "range": [ - 75594, - 75604 + 75831, + 75841 ], "filename": "astronomy.js", - "lineno": 1622, + "lineno": 1626, "columnno": 10, "code": { - "id": "astnode100008615", + "id": "astnode100008622", "name": "t2", "type": "BinaryExpression", "value": "" @@ -13343,14 +13390,14 @@ "comment": "", "meta": { "range": [ - 75616, - 75627 + 75853, + 75864 ], "filename": "astronomy.js", - "lineno": 1623, + "lineno": 1627, "columnno": 10, "code": { - "id": "astnode100008621", + "id": "astnode100008628", "name": "t3", "type": "BinaryExpression", "value": "" @@ -13368,14 +13415,14 @@ "comment": "", "meta": { "range": [ - 75639, - 75651 + 75876, + 75888 ], "filename": "astronomy.js", - "lineno": 1624, + "lineno": 1628, "columnno": 10, "code": { - "id": "astnode100008627", + "id": "astnode100008634", "name": "t4", "type": "BinaryExpression", "value": "" @@ -13393,14 +13440,14 @@ "comment": "", "meta": { "range": [ - 75663, - 75684 + 75900, + 75921 ], "filename": "astronomy.js", - "lineno": 1625, + "lineno": 1629, "columnno": 10, "code": { - "id": "astnode100008633", + "id": "astnode100008640", "name": "moon", "type": "CallExpression", "value": "" @@ -13418,14 +13465,14 @@ "comment": "", "meta": { "range": [ - 75696, - 75721 + 75933, + 75958 ], "filename": "astronomy.js", - "lineno": 1626, + "lineno": 1630, "columnno": 10, "code": { - "id": "astnode100008639", + "id": "astnode100008646", "name": "mlon", "type": "MemberExpression", "value": "moon.geo_eclip_lon" @@ -13443,14 +13490,14 @@ "comment": "", "meta": { "range": [ - 75733, - 75758 + 75970, + 75995 ], "filename": "astronomy.js", - "lineno": 1627, + "lineno": 1631, "columnno": 10, "code": { - "id": "astnode100008645", + "id": "astnode100008652", "name": "mlat", "type": "MemberExpression", "value": "moon.geo_eclip_lat" @@ -13468,14 +13515,14 @@ "comment": "", "meta": { "range": [ - 75770, - 75816 + 76007, + 76053 ], "filename": "astronomy.js", - "lineno": 1628, + "lineno": 1632, "columnno": 10, "code": { - "id": "astnode100008651", + "id": "astnode100008658", "name": "dist_km", "type": "BinaryExpression", "value": "" @@ -13493,14 +13540,14 @@ "comment": "", "meta": { "range": [ - 75853, - 75882 + 76090, + 76119 ], "filename": "astronomy.js", - "lineno": 1630, + "lineno": 1634, "columnno": 10, "code": { - "id": "astnode100008661", + "id": "astnode100008668", "name": "I", "type": "BinaryExpression", "value": "" @@ -13518,14 +13565,14 @@ "comment": "", "meta": { "range": [ - 75941, - 76063 + 76178, + 76300 ], "filename": "astronomy.js", - "lineno": 1632, + "lineno": 1636, "columnno": 10, "code": { - "id": "astnode100008669", + "id": "astnode100008676", "name": "f", "type": "BinaryExpression", "value": "" @@ -13543,14 +13590,14 @@ "comment": "", "meta": { "range": [ - 76133, - 76256 + 76370, + 76493 ], "filename": "astronomy.js", - "lineno": 1634, + "lineno": 1638, "columnno": 10, "code": { - "id": "astnode100008695", + "id": "astnode100008702", "name": "omega", "type": "BinaryExpression", "value": "" @@ -13568,14 +13615,14 @@ "comment": "", "meta": { "range": [ - 76295, - 76401 + 76532, + 76638 ], "filename": "astronomy.js", - "lineno": 1636, + "lineno": 1640, "columnno": 10, "code": { - "id": "astnode100008721", + "id": "astnode100008728", "name": "m", "type": "BinaryExpression", "value": "" @@ -13593,14 +13640,14 @@ "comment": "", "meta": { "range": [ - 76441, - 76565 + 76678, + 76802 ], "filename": "astronomy.js", - "lineno": 1638, + "lineno": 1642, "columnno": 10, "code": { - "id": "astnode100008743", + "id": "astnode100008750", "name": "mdash", "type": "BinaryExpression", "value": "" @@ -13618,14 +13665,14 @@ "comment": "", "meta": { "range": [ - 76608, - 76730 + 76845, + 76967 ], "filename": "astronomy.js", - "lineno": 1640, + "lineno": 1644, "columnno": 10, "code": { - "id": "astnode100008769", + "id": "astnode100008776", "name": "d", "type": "BinaryExpression", "value": "" @@ -13643,14 +13690,14 @@ "comment": "", "meta": { "range": [ - 76784, - 76823 + 77021, + 77060 ], "filename": "astronomy.js", - "lineno": 1642, + "lineno": 1646, "columnno": 10, "code": { - "id": "astnode100008795", + "id": "astnode100008802", "name": "e", "type": "BinaryExpression", "value": "" @@ -13668,14 +13715,14 @@ "comment": "", "meta": { "range": [ - 76861, - 76877 + 77098, + 77114 ], "filename": "astronomy.js", - "lineno": 1644, + "lineno": 1648, "columnno": 10, "code": { - "id": "astnode100008807", + "id": "astnode100008814", "name": "w", "type": "BinaryExpression", "value": "" @@ -13693,14 +13740,14 @@ "comment": "", "meta": { "range": [ - 76889, - 77008 + 77126, + 77245 ], "filename": "astronomy.js", - "lineno": 1645, + "lineno": 1649, "columnno": 10, "code": { - "id": "astnode100008813", + "id": "astnode100008820", "name": "a", "type": "CallExpression", "value": "" @@ -13718,14 +13765,14 @@ "comment": "", "meta": { "range": [ - 77020, - 77070 + 77257, + 77307 ], "filename": "astronomy.js", - "lineno": 1646, + "lineno": 1650, "columnno": 10, "code": { - "id": "astnode100008860", + "id": "astnode100008867", "name": "ldash", "type": "CallExpression", "value": "" @@ -13743,14 +13790,14 @@ "comment": "", "meta": { "range": [ - 77082, - 77175 + 77319, + 77412 ], "filename": "astronomy.js", - "lineno": 1647, + "lineno": 1651, "columnno": 10, "code": { - "id": "astnode100008872", + "id": "astnode100008879", "name": "bdash", "type": "CallExpression", "value": "" @@ -13768,14 +13815,14 @@ "comment": "", "meta": { "range": [ - 77214, - 77259 + 77451, + 77496 ], "filename": "astronomy.js", - "lineno": 1649, + "lineno": 1653, "columnno": 10, "code": { - "id": "astnode100008909", + "id": "astnode100008916", "name": "k1", "type": "BinaryExpression", "value": "" @@ -13793,14 +13840,14 @@ "comment": "", "meta": { "range": [ - 77271, - 77314 + 77508, + 77551 ], "filename": "astronomy.js", - "lineno": 1650, + "lineno": 1654, "columnno": 10, "code": { - "id": "astnode100008921", + "id": "astnode100008928", "name": "k2", "type": "BinaryExpression", "value": "" @@ -13818,14 +13865,14 @@ "comment": "", "meta": { "range": [ - 77326, - 77745 + 77563, + 77982 ], "filename": "astronomy.js", - "lineno": 1651, + "lineno": 1655, "columnno": 10, "code": { - "id": "astnode100008933", + "id": "astnode100008940", "name": "rho", "type": "BinaryExpression", "value": "" @@ -13843,14 +13890,14 @@ "comment": "", "meta": { "range": [ - 77757, - 78305 + 77994, + 78542 ], "filename": "astronomy.js", - "lineno": 1661, + "lineno": 1665, "columnno": 10, "code": { - "id": "astnode100009057", + "id": "astnode100009064", "name": "sigma", "type": "BinaryExpression", "value": "" @@ -13868,14 +13915,14 @@ "comment": "", "meta": { "range": [ - 78317, - 79131 + 78554, + 79368 ], "filename": "astronomy.js", - "lineno": 1674, + "lineno": 1678, "columnno": 10, "code": { - "id": "astnode100009216", + "id": "astnode100009223", "name": "tau", "type": "BinaryExpression", "value": "" @@ -13893,14 +13940,14 @@ "comment": "", "meta": { "range": [ - 79143, - 79218 + 79380, + 79455 ], "filename": "astronomy.js", - "lineno": 1693, + "lineno": 1697, "columnno": 10, "code": { - "id": "astnode100009455", + "id": "astnode100009462", "name": "ldash2", "type": "BinaryExpression", "value": "" @@ -13918,14 +13965,14 @@ "comment": "", "meta": { "range": [ - 79230, - 79278 + 79467, + 79515 ], "filename": "astronomy.js", - "lineno": 1694, + "lineno": 1698, "columnno": 10, "code": { - "id": "astnode100009482", + "id": "astnode100009489", "name": "bdash2", "type": "BinaryExpression", "value": "" @@ -13943,14 +13990,39 @@ "comment": "", "meta": { "range": [ - 79383, - 79412 + 79527, + 79667 ], "filename": "astronomy.js", - "lineno": 1697, + "lineno": 1699, + "columnno": 10, + "code": { + "id": "astnode100009507", + "name": "diam_deg", + "type": "BinaryExpression", + "value": "" + } + }, + "undocumented": true, + "name": "diam_deg", + "longname": "Libration~diam_deg", + "kind": "constant", + "memberof": "Libration", + "scope": "inner", + "params": [] + }, + { + "comment": "", + "meta": { + "range": [ + 79782, + 79811 + ], + "filename": "astronomy.js", + "lineno": 1702, "columnno": 0, "code": { - "id": "astnode100009516", + "id": "astnode100009550", "name": "exports.Libration", "type": "Identifier", "value": "Libration", @@ -13967,14 +14039,14 @@ "comment": "", "meta": { "range": [ - 79414, - 79741 + 79813, + 80140 ], "filename": "astronomy.js", - "lineno": 1698, + "lineno": 1703, "columnno": 0, "code": { - "id": "astnode100009521", + "id": "astnode100009555", "name": "precession", "type": "FunctionDeclaration", "paramnames": [ @@ -13998,14 +14070,14 @@ "comment": "", "meta": { "range": [ - 79462, - 79491 + 79861, + 79890 ], "filename": "astronomy.js", - "lineno": 1699, + "lineno": 1704, "columnno": 10, "code": { - "id": "astnode100009528", + "id": "astnode100009562", "name": "r", "type": "CallExpression", "value": "" @@ -14023,14 +14095,14 @@ "comment": "", "meta": { "range": [ - 79742, - 81556 + 80141, + 81955 ], "filename": "astronomy.js", - "lineno": 1706, + "lineno": 1711, "columnno": 0, "code": { - "id": "astnode100009641", + "id": "astnode100009675", "name": "precession_rot", "type": "FunctionDeclaration", "paramnames": [ @@ -14074,14 +14146,14 @@ "comment": "", "meta": { "range": [ - 79789, - 79808 + 80188, + 80207 ], "filename": "astronomy.js", - "lineno": 1707, + "lineno": 1712, "columnno": 10, "code": { - "id": "astnode100009647", + "id": "astnode100009681", "name": "t", "type": "BinaryExpression", "value": "" @@ -14099,14 +14171,14 @@ "comment": "", "meta": { "range": [ - 79818, - 79834 + 80217, + 80233 ], "filename": "astronomy.js", - "lineno": 1708, + "lineno": 1713, "columnno": 8, "code": { - "id": "astnode100009655", + "id": "astnode100009689", "name": "eps0", "type": "Literal", "value": 84381.406 @@ -14124,14 +14196,14 @@ "comment": "", "meta": { "range": [ - 79844, - 79979 + 80243, + 80378 ], "filename": "astronomy.js", - "lineno": 1709, + "lineno": 1714, "columnno": 8, "code": { - "id": "astnode100009659", + "id": "astnode100009693", "name": "psia", "type": "BinaryExpression", "value": "" @@ -14149,14 +14221,14 @@ "comment": "", "meta": { "range": [ - 79989, - 80130 + 80388, + 80529 ], "filename": "astronomy.js", - "lineno": 1714, + "lineno": 1719, "columnno": 8, "code": { - "id": "astnode100009682", + "id": "astnode100009716", "name": "omegaa", "type": "BinaryExpression", "value": "" @@ -14174,14 +14246,14 @@ "comment": "", "meta": { "range": [ - 80140, - 80273 + 80539, + 80672 ], "filename": "astronomy.js", - "lineno": 1719, + "lineno": 1724, "columnno": 8, "code": { - "id": "astnode100009707", + "id": "astnode100009741", "name": "chia", "type": "BinaryExpression", "value": "" @@ -14199,14 +14271,14 @@ "comment": "", "meta": { "range": [ - 80279, - 80295 + 80678, + 80694 ], "filename": "astronomy.js", - "lineno": 1724, + "lineno": 1729, "columnno": 4, "code": { - "id": "astnode100009730", + "id": "astnode100009764", "name": "eps0", "type": "Identifier", "funcscope": "precession_rot", @@ -14225,14 +14297,14 @@ "comment": "", "meta": { "range": [ - 80301, - 80317 + 80700, + 80716 ], "filename": "astronomy.js", - "lineno": 1725, + "lineno": 1730, "columnno": 4, "code": { - "id": "astnode100009734", + "id": "astnode100009768", "name": "psia", "type": "Identifier", "funcscope": "precession_rot", @@ -14251,14 +14323,14 @@ "comment": "", "meta": { "range": [ - 80323, - 80341 + 80722, + 80740 ], "filename": "astronomy.js", - "lineno": 1726, + "lineno": 1731, "columnno": 4, "code": { - "id": "astnode100009738", + "id": "astnode100009772", "name": "omegaa", "type": "Identifier", "funcscope": "precession_rot", @@ -14277,14 +14349,14 @@ "comment": "", "meta": { "range": [ - 80347, - 80363 + 80746, + 80762 ], "filename": "astronomy.js", - "lineno": 1727, + "lineno": 1732, "columnno": 4, "code": { - "id": "astnode100009742", + "id": "astnode100009776", "name": "chia", "type": "Identifier", "funcscope": "precession_rot", @@ -14303,14 +14375,14 @@ "comment": "", "meta": { "range": [ - 80375, - 80394 + 80774, + 80793 ], "filename": "astronomy.js", - "lineno": 1728, + "lineno": 1733, "columnno": 10, "code": { - "id": "astnode100009746", + "id": "astnode100009780", "name": "sa", "type": "CallExpression", "value": "" @@ -14328,14 +14400,14 @@ "comment": "", "meta": { "range": [ - 80406, - 80425 + 80805, + 80824 ], "filename": "astronomy.js", - "lineno": 1729, + "lineno": 1734, "columnno": 10, "code": { - "id": "astnode100009754", + "id": "astnode100009788", "name": "ca", "type": "CallExpression", "value": "" @@ -14353,14 +14425,14 @@ "comment": "", "meta": { "range": [ - 80437, - 80457 + 80836, + 80856 ], "filename": "astronomy.js", - "lineno": 1730, + "lineno": 1735, "columnno": 10, "code": { - "id": "astnode100009762", + "id": "astnode100009796", "name": "sb", "type": "CallExpression", "value": "" @@ -14378,14 +14450,14 @@ "comment": "", "meta": { "range": [ - 80469, - 80489 + 80868, + 80888 ], "filename": "astronomy.js", - "lineno": 1731, + "lineno": 1736, "columnno": 10, "code": { - "id": "astnode100009771", + "id": "astnode100009805", "name": "cb", "type": "CallExpression", "value": "" @@ -14403,14 +14475,14 @@ "comment": "", "meta": { "range": [ - 80501, - 80523 + 80900, + 80922 ], "filename": "astronomy.js", - "lineno": 1732, + "lineno": 1737, "columnno": 10, "code": { - "id": "astnode100009780", + "id": "astnode100009814", "name": "sc", "type": "CallExpression", "value": "" @@ -14428,14 +14500,14 @@ "comment": "", "meta": { "range": [ - 80535, - 80557 + 80934, + 80956 ], "filename": "astronomy.js", - "lineno": 1733, + "lineno": 1738, "columnno": 10, "code": { - "id": "astnode100009789", + "id": "astnode100009823", "name": "cc", "type": "CallExpression", "value": "" @@ -14453,14 +14525,14 @@ "comment": "", "meta": { "range": [ - 80569, - 80588 + 80968, + 80987 ], "filename": "astronomy.js", - "lineno": 1734, + "lineno": 1739, "columnno": 10, "code": { - "id": "astnode100009798", + "id": "astnode100009832", "name": "sd", "type": "CallExpression", "value": "" @@ -14478,14 +14550,14 @@ "comment": "", "meta": { "range": [ - 80600, - 80619 + 80999, + 81018 ], "filename": "astronomy.js", - "lineno": 1735, + "lineno": 1740, "columnno": 10, "code": { - "id": "astnode100009806", + "id": "astnode100009840", "name": "cd", "type": "CallExpression", "value": "" @@ -14503,14 +14575,14 @@ "comment": "", "meta": { "range": [ - 80631, - 80658 + 81030, + 81057 ], "filename": "astronomy.js", - "lineno": 1736, + "lineno": 1741, "columnno": 10, "code": { - "id": "astnode100009814", + "id": "astnode100009848", "name": "xx", "type": "BinaryExpression", "value": "" @@ -14528,14 +14600,14 @@ "comment": "", "meta": { "range": [ - 80670, - 80722 + 81069, + 81121 ], "filename": "astronomy.js", - "lineno": 1737, + "lineno": 1742, "columnno": 10, "code": { - "id": "astnode100009826", + "id": "astnode100009860", "name": "yx", "type": "BinaryExpression", "value": "" @@ -14553,14 +14625,14 @@ "comment": "", "meta": { "range": [ - 80734, - 80786 + 81133, + 81185 ], "filename": "astronomy.js", - "lineno": 1738, + "lineno": 1743, "columnno": 10, "code": { - "id": "astnode100009848", + "id": "astnode100009882", "name": "zx", "type": "BinaryExpression", "value": "" @@ -14578,14 +14650,14 @@ "comment": "", "meta": { "range": [ - 80798, - 80826 + 81197, + 81225 ], "filename": "astronomy.js", - "lineno": 1739, + "lineno": 1744, "columnno": 10, "code": { - "id": "astnode100009870", + "id": "astnode100009904", "name": "xy", "type": "BinaryExpression", "value": "" @@ -14603,14 +14675,14 @@ "comment": "", "meta": { "range": [ - 80838, - 80891 + 81237, + 81290 ], "filename": "astronomy.js", - "lineno": 1740, + "lineno": 1745, "columnno": 10, "code": { - "id": "astnode100009883", + "id": "astnode100009917", "name": "yy", "type": "BinaryExpression", "value": "" @@ -14628,14 +14700,14 @@ "comment": "", "meta": { "range": [ - 80903, - 80956 + 81302, + 81355 ], "filename": "astronomy.js", - "lineno": 1741, + "lineno": 1746, "columnno": 10, "code": { - "id": "astnode100009906", + "id": "astnode100009940", "name": "zy", "type": "BinaryExpression", "value": "" @@ -14653,14 +14725,14 @@ "comment": "", "meta": { "range": [ - 80968, - 80980 + 81367, + 81379 ], "filename": "astronomy.js", - "lineno": 1742, + "lineno": 1747, "columnno": 10, "code": { - "id": "astnode100009929", + "id": "astnode100009963", "name": "xz", "type": "BinaryExpression", "value": "" @@ -14678,14 +14750,14 @@ "comment": "", "meta": { "range": [ - 80992, - 81020 + 81391, + 81419 ], "filename": "astronomy.js", - "lineno": 1743, + "lineno": 1748, "columnno": 10, "code": { - "id": "astnode100009935", + "id": "astnode100009969", "name": "yz", "type": "BinaryExpression", "value": "" @@ -14703,14 +14775,14 @@ "comment": "", "meta": { "range": [ - 81032, - 81060 + 81431, + 81459 ], "filename": "astronomy.js", - "lineno": 1744, + "lineno": 1749, "columnno": 10, "code": { - "id": "astnode100009948", + "id": "astnode100009982", "name": "zz", "type": "BinaryExpression", "value": "" @@ -14728,14 +14800,14 @@ "comment": "", "meta": { "range": [ - 81557, - 81789 + 81956, + 82188 ], "filename": "astronomy.js", - "lineno": 1763, + "lineno": 1768, "columnno": 0, "code": { - "id": "astnode100010008", + "id": "astnode100010042", "name": "era", "type": "FunctionDeclaration", "paramnames": [ @@ -14759,14 +14831,14 @@ "comment": "", "meta": { "range": [ - 81588, - 81643 + 81987, + 82042 ], "filename": "astronomy.js", - "lineno": 1764, + "lineno": 1769, "columnno": 10, "code": { - "id": "astnode100010013", + "id": "astnode100010047", "name": "thet1", "type": "BinaryExpression", "value": "" @@ -14784,14 +14856,14 @@ "comment": "", "meta": { "range": [ - 81655, - 81674 + 82054, + 82073 ], "filename": "astronomy.js", - "lineno": 1765, + "lineno": 1770, "columnno": 10, "code": { - "id": "astnode100010023", + "id": "astnode100010057", "name": "thet3", "type": "BinaryExpression", "value": "" @@ -14809,14 +14881,14 @@ "comment": "", "meta": { "range": [ - 81684, - 81719 + 82083, + 82118 ], "filename": "astronomy.js", - "lineno": 1766, + "lineno": 1771, "columnno": 8, "code": { - "id": "astnode100010031", + "id": "astnode100010065", "name": "theta", "type": "BinaryExpression", "value": "" @@ -14834,14 +14906,14 @@ "comment": "", "meta": { "range": [ - 81750, - 81762 + 82149, + 82161 ], "filename": "astronomy.js", - "lineno": 1768, + "lineno": 1773, "columnno": 8, "code": { - "id": "astnode100010046", + "id": "astnode100010080", "name": "theta", "type": "Literal", "funcscope": "era", @@ -14860,14 +14932,14 @@ "comment": "", "meta": { "range": [ - 81790, - 82343 + 82189, + 82742 ], "filename": "astronomy.js", - "lineno": 1772, + "lineno": 1777, "columnno": 0, "code": { - "id": "astnode100010051", + "id": "astnode100010085", "name": "sidereal_time", "type": "FunctionDeclaration", "paramnames": [ @@ -14893,14 +14965,14 @@ "comment": "", "meta": { "range": [ - 81831, - 81850 + 82230, + 82249 ], "filename": "astronomy.js", - "lineno": 1773, + "lineno": 1778, "columnno": 10, "code": { - "id": "astnode100010056", + "id": "astnode100010090", "name": "t", "type": "BinaryExpression", "value": "" @@ -14918,14 +14990,14 @@ "comment": "", "meta": { "range": [ - 81860, - 81887 + 82259, + 82286 ], "filename": "astronomy.js", - "lineno": 1774, + "lineno": 1779, "columnno": 8, "code": { - "id": "astnode100010064", + "id": "astnode100010098", "name": "eqeq", "type": "BinaryExpression", "value": "" @@ -14943,14 +15015,14 @@ "comment": "", "meta": { "range": [ - 81971, - 81988 + 82370, + 82387 ], "filename": "astronomy.js", - "lineno": 1775, + "lineno": 1780, "columnno": 10, "code": { - "id": "astnode100010074", + "id": "astnode100010108", "name": "theta", "type": "CallExpression", "value": "" @@ -14968,14 +15040,14 @@ "comment": "", "meta": { "range": [ - 82000, - 82175 + 82399, + 82574 ], "filename": "astronomy.js", - "lineno": 1776, + "lineno": 1781, "columnno": 10, "code": { - "id": "astnode100010080", + "id": "astnode100010114", "name": "st", "type": "BinaryExpression", "value": "" @@ -14993,14 +15065,14 @@ "comment": "", "meta": { "range": [ - 82185, - 82223 + 82584, + 82622 ], "filename": "astronomy.js", - "lineno": 1782, + "lineno": 1787, "columnno": 8, "code": { - "id": "astnode100010107", + "id": "astnode100010141", "name": "gst", "type": "BinaryExpression", "value": "" @@ -15018,14 +15090,14 @@ "comment": "", "meta": { "range": [ - 82252, - 82261 + 82651, + 82660 ], "filename": "astronomy.js", - "lineno": 1784, + "lineno": 1789, "columnno": 8, "code": { - "id": "astnode100010124", + "id": "astnode100010158", "name": "gst", "type": "Literal", "funcscope": "sidereal_time", @@ -15044,14 +15116,14 @@ "comment": "", "meta": { "range": [ - 82344, - 84956 + 82743, + 85355 ], "filename": "astronomy.js", - "lineno": 1788, + "lineno": 1793, "columnno": 0, "code": { - "id": "astnode100010129", + "id": "astnode100010163", "name": "inverse_terra", "type": "FunctionDeclaration", "paramnames": [ @@ -15093,14 +15165,14 @@ "comment": "", "meta": { "range": [ - 82426, - 82457 + 82825, + 82856 ], "filename": "astronomy.js", - "lineno": 1790, + "lineno": 1795, "columnno": 10, "code": { - "id": "astnode100010135", + "id": "astnode100010169", "name": "x", "type": "BinaryExpression", "value": "" @@ -15118,14 +15190,14 @@ "comment": "", "meta": { "range": [ - 82469, - 82500 + 82868, + 82899 ], "filename": "astronomy.js", - "lineno": 1791, + "lineno": 1796, "columnno": 10, "code": { - "id": "astnode100010145", + "id": "astnode100010179", "name": "y", "type": "BinaryExpression", "value": "" @@ -15143,14 +15215,14 @@ "comment": "", "meta": { "range": [ - 82512, - 82543 + 82911, + 82942 ], "filename": "astronomy.js", - "lineno": 1792, + "lineno": 1797, "columnno": 10, "code": { - "id": "astnode100010155", + "id": "astnode100010189", "name": "z", "type": "BinaryExpression", "value": "" @@ -15168,14 +15240,14 @@ "comment": "", "meta": { "range": [ - 82555, - 82583 + 82954, + 82982 ], "filename": "astronomy.js", - "lineno": 1793, + "lineno": 1798, "columnno": 10, "code": { - "id": "astnode100010165", + "id": "astnode100010199", "name": "p", "type": "CallExpression", "value": "" @@ -15193,14 +15265,14 @@ "comment": "", "meta": { "range": [ - 82593, - 82600 + 82992, + 82999 ], "filename": "astronomy.js", - "lineno": 1794, + "lineno": 1799, "columnno": 8, "code": { - "id": "astnode100010179", + "id": "astnode100010213", "name": "lon_deg" } }, @@ -15216,14 +15288,14 @@ "comment": "", "meta": { "range": [ - 82602, - 82609 + 83001, + 83008 ], "filename": "astronomy.js", - "lineno": 1794, + "lineno": 1799, "columnno": 17, "code": { - "id": "astnode100010181", + "id": "astnode100010215", "name": "lat_deg" } }, @@ -15239,14 +15311,14 @@ "comment": "", "meta": { "range": [ - 82611, - 82620 + 83010, + 83019 ], "filename": "astronomy.js", - "lineno": 1794, + "lineno": 1799, "columnno": 26, "code": { - "id": "astnode100010183", + "id": "astnode100010217", "name": "height_km" } }, @@ -15262,14 +15334,14 @@ "comment": "", "meta": { "range": [ - 82786, - 82797 + 83185, + 83196 ], "filename": "astronomy.js", - "lineno": 1798, + "lineno": 1803, "columnno": 8, "code": { - "id": "astnode100010191", + "id": "astnode100010225", "name": "lon_deg", "type": "Literal", "funcscope": "inverse_terra", @@ -15288,14 +15360,14 @@ "comment": "", "meta": { "range": [ - 82807, - 82838 + 83206, + 83237 ], "filename": "astronomy.js", - "lineno": 1799, + "lineno": 1804, "columnno": 8, "code": { - "id": "astnode100010195", + "id": "astnode100010229", "name": "lat_deg", "type": "ConditionalExpression", "funcscope": "inverse_terra", @@ -15314,14 +15386,14 @@ "comment": "", "meta": { "range": [ - 82900, - 82947 + 83299, + 83346 ], "filename": "astronomy.js", - "lineno": 1801, + "lineno": 1806, "columnno": 8, "code": { - "id": "astnode100010206", + "id": "astnode100010240", "name": "height_km", "type": "BinaryExpression", "funcscope": "inverse_terra", @@ -15340,14 +15412,14 @@ "comment": "", "meta": { "range": [ - 82980, - 83005 + 83379, + 83404 ], "filename": "astronomy.js", - "lineno": 1804, + "lineno": 1809, "columnno": 14, "code": { - "id": "astnode100010217", + "id": "astnode100010251", "name": "stlocl", "type": "CallExpression", "value": "" @@ -15365,14 +15437,14 @@ "comment": "", "meta": { "range": [ - 83053, - 83103 + 83452, + 83502 ], "filename": "astronomy.js", - "lineno": 1806, + "lineno": 1811, "columnno": 8, "code": { - "id": "astnode100010226", + "id": "astnode100010260", "name": "lon_deg", "type": "BinaryExpression", "funcscope": "inverse_terra", @@ -15391,14 +15463,14 @@ "comment": "", "meta": { "range": [ - 83207, - 83221 + 83606, + 83620 ], "filename": "astronomy.js", - "lineno": 1809, + "lineno": 1814, "columnno": 12, "code": { - "id": "astnode100010243", + "id": "astnode100010277", "name": "lon_deg", "type": "Literal", "funcscope": "inverse_terra", @@ -15417,14 +15489,14 @@ "comment": "", "meta": { "range": [ - 83266, - 83280 + 83665, + 83679 ], "filename": "astronomy.js", - "lineno": 1811, + "lineno": 1816, "columnno": 12, "code": { - "id": "astnode100010252", + "id": "astnode100010286", "name": "lon_deg", "type": "Literal", "funcscope": "inverse_terra", @@ -15443,14 +15515,14 @@ "comment": "", "meta": { "range": [ - 83368, - 83407 + 83767, + 83806 ], "filename": "astronomy.js", - "lineno": 1813, + "lineno": 1818, "columnno": 14, "code": { - "id": "astnode100010256", + "id": "astnode100010290", "name": "F", "type": "BinaryExpression", "value": "" @@ -15468,14 +15540,14 @@ "comment": "", "meta": { "range": [ - 83498, - 83520 + 83897, + 83919 ], "filename": "astronomy.js", - "lineno": 1815, + "lineno": 1820, "columnno": 12, "code": { - "id": "astnode100010262", + "id": "astnode100010296", "name": "lat", "type": "CallExpression", "value": "" @@ -15493,14 +15565,14 @@ "comment": "", "meta": { "range": [ - 83534, - 83537 + 83933, + 83936 ], "filename": "astronomy.js", - "lineno": 1816, + "lineno": 1821, "columnno": 12, "code": { - "id": "astnode100010271", + "id": "astnode100010305", "name": "cos" } }, @@ -15516,14 +15588,14 @@ "comment": "", "meta": { "range": [ - 83539, - 83542 + 83938, + 83941 ], "filename": "astronomy.js", - "lineno": 1816, + "lineno": 1821, "columnno": 17, "code": { - "id": "astnode100010273", + "id": "astnode100010307", "name": "sin" } }, @@ -15539,14 +15611,14 @@ "comment": "", "meta": { "range": [ - 83544, - 83549 + 83943, + 83948 ], "filename": "astronomy.js", - "lineno": 1816, + "lineno": 1821, "columnno": 22, "code": { - "id": "astnode100010275", + "id": "astnode100010309", "name": "denom" } }, @@ -15562,14 +15634,14 @@ "comment": "", "meta": { "range": [ - 83709, - 83728 + 84108, + 84127 ], "filename": "astronomy.js", - "lineno": 1820, + "lineno": 1825, "columnno": 12, "code": { - "id": "astnode100010280", + "id": "astnode100010314", "name": "cos", "type": "CallExpression", "funcscope": "inverse_terra", @@ -15588,14 +15660,14 @@ "comment": "", "meta": { "range": [ - 83742, - 83761 + 84141, + 84160 ], "filename": "astronomy.js", - "lineno": 1821, + "lineno": 1826, "columnno": 12, "code": { - "id": "astnode100010288", + "id": "astnode100010322", "name": "sin", "type": "CallExpression", "funcscope": "inverse_terra", @@ -15614,14 +15686,14 @@ "comment": "", "meta": { "range": [ - 83781, - 83826 + 84180, + 84225 ], "filename": "astronomy.js", - "lineno": 1822, + "lineno": 1827, "columnno": 18, "code": { - "id": "astnode100010296", + "id": "astnode100010330", "name": "factor", "type": "BinaryExpression", "value": "" @@ -15639,14 +15711,14 @@ "comment": "", "meta": { "range": [ - 83846, - 83862 + 84245, + 84261 ], "filename": "astronomy.js", - "lineno": 1823, + "lineno": 1828, "columnno": 18, "code": { - "id": "astnode100010304", + "id": "astnode100010338", "name": "cos2", "type": "BinaryExpression", "value": "" @@ -15664,14 +15736,14 @@ "comment": "", "meta": { "range": [ - 83882, - 83898 + 84281, + 84297 ], "filename": "astronomy.js", - "lineno": 1824, + "lineno": 1829, "columnno": 18, "code": { - "id": "astnode100010310", + "id": "astnode100010344", "name": "sin2", "type": "BinaryExpression", "value": "" @@ -15689,14 +15761,14 @@ "comment": "", "meta": { "range": [ - 83918, - 83944 + 84317, + 84343 ], "filename": "astronomy.js", - "lineno": 1825, + "lineno": 1830, "columnno": 18, "code": { - "id": "astnode100010316", + "id": "astnode100010350", "name": "radicand", "type": "BinaryExpression", "value": "" @@ -15714,14 +15786,14 @@ "comment": "", "meta": { "range": [ - 83958, - 83985 + 84357, + 84384 ], "filename": "astronomy.js", - "lineno": 1826, + "lineno": 1831, "columnno": 12, "code": { - "id": "astnode100010324", + "id": "astnode100010358", "name": "denom", "type": "CallExpression", "funcscope": "inverse_terra", @@ -15740,14 +15812,14 @@ "comment": "", "meta": { "range": [ - 84005, - 84057 + 84404, + 84456 ], "filename": "astronomy.js", - "lineno": 1827, + "lineno": 1832, "columnno": 18, "code": { - "id": "astnode100010332", + "id": "astnode100010366", "name": "W", "type": "BinaryExpression", "value": "" @@ -15765,14 +15837,14 @@ "comment": "", "meta": { "range": [ - 84305, - 84407 + 84704, + 84806 ], "filename": "astronomy.js", - "lineno": 1832, + "lineno": 1837, "columnno": 18, "code": { - "id": "astnode100010359", + "id": "astnode100010393", "name": "D", "type": "BinaryExpression", "value": "" @@ -15790,14 +15862,14 @@ "comment": "", "meta": { "range": [ - 84421, - 84433 + 84820, + 84832 ], "filename": "astronomy.js", - "lineno": 1833, + "lineno": 1838, "columnno": 12, "code": { - "id": "astnode100010389", + "id": "astnode100010423", "name": "lat", "type": "BinaryExpression", "funcscope": "inverse_terra", @@ -15816,14 +15888,14 @@ "comment": "", "meta": { "range": [ - 84516, - 84547 + 84915, + 84946 ], "filename": "astronomy.js", - "lineno": 1836, + "lineno": 1841, "columnno": 8, "code": { - "id": "astnode100010395", + "id": "astnode100010429", "name": "lat_deg", "type": "BinaryExpression", "funcscope": "inverse_terra", @@ -15842,14 +15914,14 @@ "comment": "", "meta": { "range": [ - 84699, - 84742 + 85098, + 85141 ], "filename": "astronomy.js", - "lineno": 1839, + "lineno": 1844, "columnno": 14, "code": { - "id": "astnode100010403", + "id": "astnode100010437", "name": "adjust", "type": "BinaryExpression", "value": "" @@ -15867,14 +15939,14 @@ "comment": "", "meta": { "range": [ - 84799, - 84831 + 85198, + 85230 ], "filename": "astronomy.js", - "lineno": 1841, + "lineno": 1846, "columnno": 12, "code": { - "id": "astnode100010421", + "id": "astnode100010455", "name": "height_km", "type": "BinaryExpression", "funcscope": "inverse_terra", @@ -15893,14 +15965,14 @@ "comment": "", "meta": { "range": [ - 84858, - 84886 + 85257, + 85285 ], "filename": "astronomy.js", - "lineno": 1843, + "lineno": 1848, "columnno": 12, "code": { - "id": "astnode100010431", + "id": "astnode100010465", "name": "height_km", "type": "BinaryExpression", "funcscope": "inverse_terra", @@ -15919,14 +15991,14 @@ "comment": "", "meta": { "range": [ - 84957, - 85837 + 85356, + 86236 ], "filename": "astronomy.js", - "lineno": 1847, + "lineno": 1852, "columnno": 0, "code": { - "id": "astnode100010446", + "id": "astnode100010480", "name": "terra", "type": "FunctionDeclaration", "paramnames": [ @@ -15961,14 +16033,14 @@ "comment": "", "meta": { "range": [ - 84998, - 85024 + 85397, + 85423 ], "filename": "astronomy.js", - "lineno": 1848, + "lineno": 1853, "columnno": 10, "code": { - "id": "astnode100010452", + "id": "astnode100010486", "name": "df", "type": "BinaryExpression", "value": "" @@ -15986,14 +16058,14 @@ "comment": "", "meta": { "range": [ - 85063, - 85076 + 85462, + 85475 ], "filename": "astronomy.js", - "lineno": 1849, + "lineno": 1854, "columnno": 10, "code": { - "id": "astnode100010458", + "id": "astnode100010492", "name": "df2", "type": "BinaryExpression", "value": "" @@ -16011,14 +16083,14 @@ "comment": "", "meta": { "range": [ - 85088, - 85129 + 85487, + 85528 ], "filename": "astronomy.js", - "lineno": 1850, + "lineno": 1855, "columnno": 10, "code": { - "id": "astnode100010464", + "id": "astnode100010498", "name": "phi", "type": "BinaryExpression", "value": "" @@ -16036,14 +16108,14 @@ "comment": "", "meta": { "range": [ - 85141, - 85163 + 85540, + 85562 ], "filename": "astronomy.js", - "lineno": 1851, + "lineno": 1856, "columnno": 10, "code": { - "id": "astnode100010474", + "id": "astnode100010508", "name": "sinphi", "type": "CallExpression", "value": "" @@ -16061,14 +16133,14 @@ "comment": "", "meta": { "range": [ - 85175, - 85197 + 85574, + 85596 ], "filename": "astronomy.js", - "lineno": 1852, + "lineno": 1857, "columnno": 10, "code": { - "id": "astnode100010482", + "id": "astnode100010516", "name": "cosphi", "type": "CallExpression", "value": "" @@ -16086,14 +16158,14 @@ "comment": "", "meta": { "range": [ - 85209, - 85267 + 85608, + 85666 ], "filename": "astronomy.js", - "lineno": 1853, + "lineno": 1858, "columnno": 10, "code": { - "id": "astnode100010490", + "id": "astnode100010524", "name": "c", "type": "BinaryExpression", "value": "" @@ -16111,14 +16183,14 @@ "comment": "", "meta": { "range": [ - 85279, - 85290 + 85678, + 85689 ], "filename": "astronomy.js", - "lineno": 1854, + "lineno": 1859, "columnno": 10, "code": { - "id": "astnode100010508", + "id": "astnode100010542", "name": "s", "type": "BinaryExpression", "value": "" @@ -16136,14 +16208,14 @@ "comment": "", "meta": { "range": [ - 85302, - 85332 + 85701, + 85731 ], "filename": "astronomy.js", - "lineno": 1855, + "lineno": 1860, "columnno": 10, "code": { - "id": "astnode100010514", + "id": "astnode100010548", "name": "ht_km", "type": "BinaryExpression", "value": "" @@ -16161,14 +16233,14 @@ "comment": "", "meta": { "range": [ - 85344, - 85388 + 85743, + 85787 ], "filename": "astronomy.js", - "lineno": 1856, + "lineno": 1861, "columnno": 10, "code": { - "id": "astnode100010522", + "id": "astnode100010556", "name": "ach", "type": "BinaryExpression", "value": "" @@ -16186,14 +16258,14 @@ "comment": "", "meta": { "range": [ - 85400, - 85444 + 85799, + 85843 ], "filename": "astronomy.js", - "lineno": 1857, + "lineno": 1862, "columnno": 10, "code": { - "id": "astnode100010530", + "id": "astnode100010564", "name": "ash", "type": "BinaryExpression", "value": "" @@ -16211,14 +16283,14 @@ "comment": "", "meta": { "range": [ - 85456, - 85513 + 85855, + 85912 ], "filename": "astronomy.js", - "lineno": 1858, + "lineno": 1863, "columnno": 10, "code": { - "id": "astnode100010538", + "id": "astnode100010572", "name": "stlocl", "type": "BinaryExpression", "value": "" @@ -16236,14 +16308,14 @@ "comment": "", "meta": { "range": [ - 85525, - 85549 + 85924, + 85948 ], "filename": "astronomy.js", - "lineno": 1859, + "lineno": 1864, "columnno": 10, "code": { - "id": "astnode100010552", + "id": "astnode100010586", "name": "sinst", "type": "CallExpression", "value": "" @@ -16261,14 +16333,14 @@ "comment": "", "meta": { "range": [ - 85561, - 85585 + 85960, + 85984 ], "filename": "astronomy.js", - "lineno": 1860, + "lineno": 1865, "columnno": 10, "code": { - "id": "astnode100010560", + "id": "astnode100010594", "name": "cosst", "type": "CallExpression", "value": "" @@ -16286,14 +16358,14 @@ "comment": "", "meta": { "range": [ - 85608, - 85731 + 86007, + 86130 ], "filename": "astronomy.js", - "lineno": 1862, + "lineno": 1867, "columnno": 8, "code": { - "id": "astnode100010569", + "id": "astnode100010603", "name": "pos", "type": "ArrayExpression", "value": "[\"\",\"\",\"\"]" @@ -16309,14 +16381,14 @@ "comment": "", "meta": { "range": [ - 85741, - 85828 + 86140, + 86227 ], "filename": "astronomy.js", - "lineno": 1863, + "lineno": 1868, "columnno": 8, "code": { - "id": "astnode100010596", + "id": "astnode100010630", "name": "vel", "type": "ArrayExpression", "value": "[\"\",\"\",0]" @@ -16332,14 +16404,14 @@ "comment": "", "meta": { "range": [ - 85838, - 86161 + 86237, + 86560 ], "filename": "astronomy.js", - "lineno": 1866, + "lineno": 1871, "columnno": 0, "code": { - "id": "astnode100010618", + "id": "astnode100010652", "name": "nutation", "type": "FunctionDeclaration", "paramnames": [ @@ -16363,14 +16435,14 @@ "comment": "", "meta": { "range": [ - 85884, - 85911 + 86283, + 86310 ], "filename": "astronomy.js", - "lineno": 1867, + "lineno": 1872, "columnno": 10, "code": { - "id": "astnode100010625", + "id": "astnode100010659", "name": "r", "type": "CallExpression", "value": "" @@ -16388,14 +16460,14 @@ "comment": "", "meta": { "range": [ - 86162, - 87349 + 86561, + 87748 ], "filename": "astronomy.js", - "lineno": 1874, + "lineno": 1879, "columnno": 0, "code": { - "id": "astnode100010738", + "id": "astnode100010772", "name": "nutation_rot", "type": "FunctionDeclaration", "paramnames": [ @@ -16436,14 +16508,14 @@ "comment": "", "meta": { "range": [ - 86207, - 86226 + 86606, + 86625 ], "filename": "astronomy.js", - "lineno": 1875, + "lineno": 1880, "columnno": 10, "code": { - "id": "astnode100010744", + "id": "astnode100010778", "name": "tilt", "type": "CallExpression", "value": "" @@ -16461,14 +16533,14 @@ "comment": "", "meta": { "range": [ - 86238, - 86272 + 86637, + 86671 ], "filename": "astronomy.js", - "lineno": 1876, + "lineno": 1881, "columnno": 10, "code": { - "id": "astnode100010750", + "id": "astnode100010784", "name": "oblm", "type": "BinaryExpression", "value": "" @@ -16486,14 +16558,14 @@ "comment": "", "meta": { "range": [ - 86284, - 86318 + 86683, + 86717 ], "filename": "astronomy.js", - "lineno": 1877, + "lineno": 1882, "columnno": 10, "code": { - "id": "astnode100010760", + "id": "astnode100010794", "name": "oblt", "type": "BinaryExpression", "value": "" @@ -16511,14 +16583,14 @@ "comment": "", "meta": { "range": [ - 86330, - 86356 + 86729, + 86755 ], "filename": "astronomy.js", - "lineno": 1878, + "lineno": 1883, "columnno": 10, "code": { - "id": "astnode100010770", + "id": "astnode100010804", "name": "psi", "type": "BinaryExpression", "value": "" @@ -16536,14 +16608,14 @@ "comment": "", "meta": { "range": [ - 86368, - 86389 + 86767, + 86788 ], "filename": "astronomy.js", - "lineno": 1879, + "lineno": 1884, "columnno": 10, "code": { - "id": "astnode100010778", + "id": "astnode100010812", "name": "cobm", "type": "CallExpression", "value": "" @@ -16561,14 +16633,14 @@ "comment": "", "meta": { "range": [ - 86401, - 86422 + 86800, + 86821 ], "filename": "astronomy.js", - "lineno": 1880, + "lineno": 1885, "columnno": 10, "code": { - "id": "astnode100010786", + "id": "astnode100010820", "name": "sobm", "type": "CallExpression", "value": "" @@ -16586,14 +16658,14 @@ "comment": "", "meta": { "range": [ - 86434, - 86455 + 86833, + 86854 ], "filename": "astronomy.js", - "lineno": 1881, + "lineno": 1886, "columnno": 10, "code": { - "id": "astnode100010794", + "id": "astnode100010828", "name": "cobt", "type": "CallExpression", "value": "" @@ -16611,14 +16683,14 @@ "comment": "", "meta": { "range": [ - 86467, - 86488 + 86866, + 86887 ], "filename": "astronomy.js", - "lineno": 1882, + "lineno": 1887, "columnno": 10, "code": { - "id": "astnode100010802", + "id": "astnode100010836", "name": "sobt", "type": "CallExpression", "value": "" @@ -16636,14 +16708,14 @@ "comment": "", "meta": { "range": [ - 86500, - 86520 + 86899, + 86919 ], "filename": "astronomy.js", - "lineno": 1883, + "lineno": 1888, "columnno": 10, "code": { - "id": "astnode100010810", + "id": "astnode100010844", "name": "cpsi", "type": "CallExpression", "value": "" @@ -16661,14 +16733,14 @@ "comment": "", "meta": { "range": [ - 86532, - 86552 + 86931, + 86951 ], "filename": "astronomy.js", - "lineno": 1884, + "lineno": 1889, "columnno": 10, "code": { - "id": "astnode100010818", + "id": "astnode100010852", "name": "spsi", "type": "CallExpression", "value": "" @@ -16686,14 +16758,14 @@ "comment": "", "meta": { "range": [ - 86564, - 86573 + 86963, + 86972 ], "filename": "astronomy.js", - "lineno": 1885, + "lineno": 1890, "columnno": 10, "code": { - "id": "astnode100010826", + "id": "astnode100010860", "name": "xx", "type": "Identifier", "value": "cpsi" @@ -16711,14 +16783,14 @@ "comment": "", "meta": { "range": [ - 86585, - 86602 + 86984, + 87001 ], "filename": "astronomy.js", - "lineno": 1886, + "lineno": 1891, "columnno": 10, "code": { - "id": "astnode100010830", + "id": "astnode100010864", "name": "yx", "type": "BinaryExpression", "value": "" @@ -16736,14 +16808,14 @@ "comment": "", "meta": { "range": [ - 86614, - 86631 + 87013, + 87030 ], "filename": "astronomy.js", - "lineno": 1887, + "lineno": 1892, "columnno": 10, "code": { - "id": "astnode100010837", + "id": "astnode100010871", "name": "zx", "type": "BinaryExpression", "value": "" @@ -16761,14 +16833,14 @@ "comment": "", "meta": { "range": [ - 86643, - 86659 + 87042, + 87058 ], "filename": "astronomy.js", - "lineno": 1888, + "lineno": 1893, "columnno": 10, "code": { - "id": "astnode100010844", + "id": "astnode100010878", "name": "xy", "type": "BinaryExpression", "value": "" @@ -16786,14 +16858,14 @@ "comment": "", "meta": { "range": [ - 86671, - 86708 + 87070, + 87107 ], "filename": "astronomy.js", - "lineno": 1889, + "lineno": 1894, "columnno": 10, "code": { - "id": "astnode100010850", + "id": "astnode100010884", "name": "yy", "type": "BinaryExpression", "value": "" @@ -16811,14 +16883,14 @@ "comment": "", "meta": { "range": [ - 86720, - 86757 + 87119, + 87156 ], "filename": "astronomy.js", - "lineno": 1890, + "lineno": 1895, "columnno": 10, "code": { - "id": "astnode100010862", + "id": "astnode100010896", "name": "zy", "type": "BinaryExpression", "value": "" @@ -16836,14 +16908,14 @@ "comment": "", "meta": { "range": [ - 86769, - 86785 + 87168, + 87184 ], "filename": "astronomy.js", - "lineno": 1891, + "lineno": 1896, "columnno": 10, "code": { - "id": "astnode100010874", + "id": "astnode100010908", "name": "xz", "type": "BinaryExpression", "value": "" @@ -16861,14 +16933,14 @@ "comment": "", "meta": { "range": [ - 86797, - 86834 + 87196, + 87233 ], "filename": "astronomy.js", - "lineno": 1892, + "lineno": 1897, "columnno": 10, "code": { - "id": "astnode100010880", + "id": "astnode100010914", "name": "yz", "type": "BinaryExpression", "value": "" @@ -16886,14 +16958,14 @@ "comment": "", "meta": { "range": [ - 86846, - 86883 + 87245, + 87282 ], "filename": "astronomy.js", - "lineno": 1893, + "lineno": 1898, "columnno": 10, "code": { - "id": "astnode100010892", + "id": "astnode100010926", "name": "zz", "type": "BinaryExpression", "value": "" @@ -16911,14 +16983,14 @@ "comment": "", "meta": { "range": [ - 87350, - 87755 + 87749, + 88154 ], "filename": "astronomy.js", - "lineno": 1912, + "lineno": 1917, "columnno": 0, "code": { - "id": "astnode100010951", + "id": "astnode100010985", "name": "gyration", "type": "FunctionDeclaration", "paramnames": [ @@ -16939,14 +17011,14 @@ "comment": "", "meta": { "range": [ - 87756, - 87932 + 88155, + 88331 ], "filename": "astronomy.js", - "lineno": 1920, + "lineno": 1925, "columnno": 0, "code": { - "id": "astnode100010982", + "id": "astnode100011016", "name": "geo_pos", "type": "FunctionDeclaration", "paramnames": [ @@ -16970,14 +17042,14 @@ "comment": "", "meta": { "range": [ - 87801, - 87827 + 88200, + 88226 ], "filename": "astronomy.js", - "lineno": 1921, + "lineno": 1926, "columnno": 10, "code": { - "id": "astnode100010988", + "id": "astnode100011022", "name": "gast", "type": "CallExpression", "value": "" @@ -16995,14 +17067,14 @@ "comment": "", "meta": { "range": [ - 87839, - 87870 + 88238, + 88269 ], "filename": "astronomy.js", - "lineno": 1922, + "lineno": 1927, "columnno": 10, "code": { - "id": "astnode100010994", + "id": "astnode100011028", "name": "pos", "type": "MemberExpression", "value": ".pos" @@ -17020,14 +17092,14 @@ "comment": "/**\n * @brief A 3D Cartesian vector with a time attached to it.\n *\n * Holds the Cartesian coordinates of a vector in 3D space,\n * along with the time at which the vector is valid.\n *\n * @property {number} x The x-coordinate expressed in astronomical units (AU).\n * @property {number} y The y-coordinate expressed in astronomical units (AU).\n * @property {number} z The z-coordinate expressed in astronomical units (AU).\n * @property {AstroTime} t The time at which the vector is valid.\n */", "meta": { "range": [ - 88448, - 88789 + 88847, + 89188 ], "filename": "astronomy.js", - "lineno": 1936, + "lineno": 1941, "columnno": 0, "code": { - "id": "astnode100011010", + "id": "astnode100011044", "name": "Vector", "type": "ClassDeclaration", "paramnames": [ @@ -17094,14 +17166,14 @@ "comment": "", "meta": { "range": [ - 88467, - 88578 + 88866, + 88977 ], "filename": "astronomy.js", - "lineno": 1937, + "lineno": 1942, "columnno": 4, "code": { - "id": "astnode100011013", + "id": "astnode100011047", "name": "Vector", "type": "MethodDefinition", "paramnames": [ @@ -17126,14 +17198,14 @@ "comment": "/**\n * @brief A 3D Cartesian vector with a time attached to it.\n *\n * Holds the Cartesian coordinates of a vector in 3D space,\n * along with the time at which the vector is valid.\n *\n * @property {number} x The x-coordinate expressed in astronomical units (AU).\n * @property {number} y The y-coordinate expressed in astronomical units (AU).\n * @property {number} z The z-coordinate expressed in astronomical units (AU).\n * @property {AstroTime} t The time at which the vector is valid.\n */", "meta": { "range": [ - 88448, - 88789 + 88847, + 89188 ], "filename": "astronomy.js", - "lineno": 1936, + "lineno": 1941, "columnno": 0, "code": { - "id": "astnode100011010", + "id": "astnode100011044", "name": "Vector", "type": "ClassDeclaration", "paramnames": [ @@ -17199,14 +17271,14 @@ "comment": "", "meta": { "range": [ - 88501, - 88511 + 88900, + 88910 ], "filename": "astronomy.js", - "lineno": 1938, + "lineno": 1943, "columnno": 8, "code": { - "id": "astnode100011022", + "id": "astnode100011056", "name": "this.x", "type": "Identifier", "value": "x", @@ -17224,14 +17296,14 @@ "comment": "", "meta": { "range": [ - 88521, - 88531 + 88920, + 88930 ], "filename": "astronomy.js", - "lineno": 1939, + "lineno": 1944, "columnno": 8, "code": { - "id": "astnode100011028", + "id": "astnode100011062", "name": "this.y", "type": "Identifier", "value": "y", @@ -17249,14 +17321,14 @@ "comment": "", "meta": { "range": [ - 88541, - 88551 + 88940, + 88950 ], "filename": "astronomy.js", - "lineno": 1940, + "lineno": 1945, "columnno": 8, "code": { - "id": "astnode100011034", + "id": "astnode100011068", "name": "this.z", "type": "Identifier", "value": "z", @@ -17274,14 +17346,14 @@ "comment": "", "meta": { "range": [ - 88561, - 88571 + 88960, + 88970 ], "filename": "astronomy.js", - "lineno": 1941, + "lineno": 1946, "columnno": 8, "code": { - "id": "astnode100011040", + "id": "astnode100011074", "name": "this.t", "type": "Identifier", "value": "t", @@ -17299,14 +17371,14 @@ "comment": "/**\n * Returns the length of the vector in astronomical units (AU).\n * @returns {number}\n */", "meta": { "range": [ - 88692, - 88787 + 89091, + 89186 ], "filename": "astronomy.js", - "lineno": 1947, + "lineno": 1952, "columnno": 4, "code": { - "id": "astnode100011045", + "id": "astnode100011079", "name": "Vector#Length", "type": "MethodDefinition", "paramnames": [] @@ -17336,14 +17408,14 @@ "comment": "", "meta": { "range": [ - 88790, - 88813 + 89189, + 89212 ], "filename": "astronomy.js", - "lineno": 1951, + "lineno": 1956, "columnno": 0, "code": { - "id": "astnode100011078", + "id": "astnode100011112", "name": "exports.Vector", "type": "Identifier", "value": "Vector", @@ -17360,14 +17432,14 @@ "comment": "/**\n * @brief A combination of a position vector, a velocity vector, and a time.\n *\n * Holds the state vector of a body at a given time, including its position,\n * velocity, and the time they are valid.\n *\n * @property {number} x The position x-coordinate expressed in astronomical units (AU).\n * @property {number} y The position y-coordinate expressed in astronomical units (AU).\n * @property {number} z The position z-coordinate expressed in astronomical units (AU).\n * @property {number} vx The velocity x-coordinate expressed in AU/day.\n * @property {number} vy The velocity y-coordinate expressed in AU/day.\n * @property {number} vz The velocity z-coordinate expressed in AU/day.\n * @property {AstroTime} t The time at which the vector is valid.\n */", "meta": { "range": [ - 89614, - 89829 + 90013, + 90228 ], "filename": "astronomy.js", - "lineno": 1966, + "lineno": 1971, "columnno": 0, "code": { - "id": "astnode100011083", + "id": "astnode100011117", "name": "StateVector", "type": "ClassDeclaration", "paramnames": [ @@ -17464,14 +17536,14 @@ "comment": "", "meta": { "range": [ - 89638, - 89827 + 90037, + 90226 ], "filename": "astronomy.js", - "lineno": 1967, + "lineno": 1972, "columnno": 4, "code": { - "id": "astnode100011086", + "id": "astnode100011120", "name": "StateVector", "type": "MethodDefinition", "paramnames": [ @@ -17499,14 +17571,14 @@ "comment": "/**\n * @brief A combination of a position vector, a velocity vector, and a time.\n *\n * Holds the state vector of a body at a given time, including its position,\n * velocity, and the time they are valid.\n *\n * @property {number} x The position x-coordinate expressed in astronomical units (AU).\n * @property {number} y The position y-coordinate expressed in astronomical units (AU).\n * @property {number} z The position z-coordinate expressed in astronomical units (AU).\n * @property {number} vx The velocity x-coordinate expressed in AU/day.\n * @property {number} vy The velocity y-coordinate expressed in AU/day.\n * @property {number} vz The velocity z-coordinate expressed in AU/day.\n * @property {AstroTime} t The time at which the vector is valid.\n */", "meta": { "range": [ - 89614, - 89829 + 90013, + 90228 ], "filename": "astronomy.js", - "lineno": 1966, + "lineno": 1971, "columnno": 0, "code": { - "id": "astnode100011083", + "id": "astnode100011117", "name": "StateVector", "type": "ClassDeclaration", "paramnames": [ @@ -17602,14 +17674,14 @@ "comment": "", "meta": { "range": [ - 89684, - 89694 + 90083, + 90093 ], "filename": "astronomy.js", - "lineno": 1968, + "lineno": 1973, "columnno": 8, "code": { - "id": "astnode100011098", + "id": "astnode100011132", "name": "this.x", "type": "Identifier", "value": "x", @@ -17627,14 +17699,14 @@ "comment": "", "meta": { "range": [ - 89704, - 89714 + 90103, + 90113 ], "filename": "astronomy.js", - "lineno": 1969, + "lineno": 1974, "columnno": 8, "code": { - "id": "astnode100011104", + "id": "astnode100011138", "name": "this.y", "type": "Identifier", "value": "y", @@ -17652,14 +17724,14 @@ "comment": "", "meta": { "range": [ - 89724, - 89734 + 90123, + 90133 ], "filename": "astronomy.js", - "lineno": 1970, + "lineno": 1975, "columnno": 8, "code": { - "id": "astnode100011110", + "id": "astnode100011144", "name": "this.z", "type": "Identifier", "value": "z", @@ -17677,14 +17749,14 @@ "comment": "", "meta": { "range": [ - 89744, - 89756 + 90143, + 90155 ], "filename": "astronomy.js", - "lineno": 1971, + "lineno": 1976, "columnno": 8, "code": { - "id": "astnode100011116", + "id": "astnode100011150", "name": "this.vx", "type": "Identifier", "value": "vx", @@ -17702,14 +17774,14 @@ "comment": "", "meta": { "range": [ - 89766, - 89778 + 90165, + 90177 ], "filename": "astronomy.js", - "lineno": 1972, + "lineno": 1977, "columnno": 8, "code": { - "id": "astnode100011122", + "id": "astnode100011156", "name": "this.vy", "type": "Identifier", "value": "vy", @@ -17727,14 +17799,14 @@ "comment": "", "meta": { "range": [ - 89788, - 89800 + 90187, + 90199 ], "filename": "astronomy.js", - "lineno": 1973, + "lineno": 1978, "columnno": 8, "code": { - "id": "astnode100011128", + "id": "astnode100011162", "name": "this.vz", "type": "Identifier", "value": "vz", @@ -17752,14 +17824,14 @@ "comment": "", "meta": { "range": [ - 89810, - 89820 + 90209, + 90219 ], "filename": "astronomy.js", - "lineno": 1974, + "lineno": 1979, "columnno": 8, "code": { - "id": "astnode100011134", + "id": "astnode100011168", "name": "this.t", "type": "Identifier", "value": "t", @@ -17777,14 +17849,14 @@ "comment": "", "meta": { "range": [ - 89830, - 89863 + 90229, + 90262 ], "filename": "astronomy.js", - "lineno": 1977, + "lineno": 1982, "columnno": 0, "code": { - "id": "astnode100011140", + "id": "astnode100011174", "name": "exports.StateVector", "type": "Identifier", "value": "StateVector", @@ -17801,14 +17873,14 @@ "comment": "/**\n * @brief Holds spherical coordinates: latitude, longitude, distance.\n *\n * Spherical coordinates represent the location of\n * a point using two angles and a distance.\n *\n * @property {number} lat The latitude angle: -90..+90 degrees.\n * @property {number} lon The longitude angle: 0..360 degrees.\n * @property {number} dist Distance in AU.\n */", "meta": { "range": [ - 90231, - 90406 + 90630, + 90805 ], "filename": "astronomy.js", - "lineno": 1988, + "lineno": 1993, "columnno": 0, "code": { - "id": "astnode100011145", + "id": "astnode100011179", "name": "Spherical", "type": "ClassDeclaration", "paramnames": [ @@ -17865,14 +17937,14 @@ "comment": "", "meta": { "range": [ - 90253, - 90404 + 90652, + 90803 ], "filename": "astronomy.js", - "lineno": 1989, + "lineno": 1994, "columnno": 4, "code": { - "id": "astnode100011148", + "id": "astnode100011182", "name": "Spherical", "type": "MethodDefinition", "paramnames": [ @@ -17896,14 +17968,14 @@ "comment": "/**\n * @brief Holds spherical coordinates: latitude, longitude, distance.\n *\n * Spherical coordinates represent the location of\n * a point using two angles and a distance.\n *\n * @property {number} lat The latitude angle: -90..+90 degrees.\n * @property {number} lon The longitude angle: 0..360 degrees.\n * @property {number} dist Distance in AU.\n */", "meta": { "range": [ - 90231, - 90406 + 90630, + 90805 ], "filename": "astronomy.js", - "lineno": 1988, + "lineno": 1993, "columnno": 0, "code": { - "id": "astnode100011145", + "id": "astnode100011179", "name": "Spherical", "type": "ClassDeclaration", "paramnames": [ @@ -17959,14 +18031,14 @@ "comment": "", "meta": { "range": [ - 90291, - 90319 + 90690, + 90718 ], "filename": "astronomy.js", - "lineno": 1990, + "lineno": 1995, "columnno": 8, "code": { - "id": "astnode100011156", + "id": "astnode100011190", "name": "this.lat", "type": "CallExpression", "value": "", @@ -17984,14 +18056,14 @@ "comment": "", "meta": { "range": [ - 90329, - 90357 + 90728, + 90756 ], "filename": "astronomy.js", - "lineno": 1991, + "lineno": 1996, "columnno": 8, "code": { - "id": "astnode100011164", + "id": "astnode100011198", "name": "this.lon", "type": "CallExpression", "value": "", @@ -18009,14 +18081,14 @@ "comment": "", "meta": { "range": [ - 90367, - 90397 + 90766, + 90796 ], "filename": "astronomy.js", - "lineno": 1992, + "lineno": 1997, "columnno": 8, "code": { - "id": "astnode100011172", + "id": "astnode100011206", "name": "this.dist", "type": "CallExpression", "value": "", @@ -18034,14 +18106,14 @@ "comment": "", "meta": { "range": [ - 90407, - 90436 + 90806, + 90835 ], "filename": "astronomy.js", - "lineno": 1995, + "lineno": 2000, "columnno": 0, "code": { - "id": "astnode100011180", + "id": "astnode100011214", "name": "exports.Spherical", "type": "Identifier", "value": "Spherical", @@ -18058,14 +18130,14 @@ "comment": "/**\n * @brief Holds right ascension, declination, and distance of a celestial object.\n *\n * @property {number} ra\n * Right ascension in sidereal hours: [0, 24).\n *\n * @property {number} dec\n * Declination in degrees: [-90, +90].\n *\n * @property {number} dist\n * Distance to the celestial object expressed in\n * astronomical units (AU).\n *\n * @property {Vector} vec\n * The equatorial coordinates in cartesian form, using AU distance units.\n * x = direction of the March equinox,\n * y = direction of the June solstice,\n * z = north.\n */", "meta": { "range": [ - 91075, - 91288 + 91474, + 91687 ], "filename": "astronomy.js", - "lineno": 2015, + "lineno": 2020, "columnno": 0, "code": { - "id": "astnode100011185", + "id": "astnode100011219", "name": "EquatorialCoordinates", "type": "ClassDeclaration", "paramnames": [ @@ -18132,14 +18204,14 @@ "comment": "", "meta": { "range": [ - 91109, - 91286 + 91508, + 91685 ], "filename": "astronomy.js", - "lineno": 2016, + "lineno": 2021, "columnno": 4, "code": { - "id": "astnode100011188", + "id": "astnode100011222", "name": "EquatorialCoordinates", "type": "MethodDefinition", "paramnames": [ @@ -18164,14 +18236,14 @@ "comment": "/**\n * @brief Holds right ascension, declination, and distance of a celestial object.\n *\n * @property {number} ra\n * Right ascension in sidereal hours: [0, 24).\n *\n * @property {number} dec\n * Declination in degrees: [-90, +90].\n *\n * @property {number} dist\n * Distance to the celestial object expressed in\n * astronomical units (AU).\n *\n * @property {Vector} vec\n * The equatorial coordinates in cartesian form, using AU distance units.\n * x = direction of the March equinox,\n * y = direction of the June solstice,\n * z = north.\n */", "meta": { "range": [ - 91075, - 91288 + 91474, + 91687 ], "filename": "astronomy.js", - "lineno": 2015, + "lineno": 2020, "columnno": 0, "code": { - "id": "astnode100011185", + "id": "astnode100011219", "name": "EquatorialCoordinates", "type": "ClassDeclaration", "paramnames": [ @@ -18237,14 +18309,14 @@ "comment": "", "meta": { "range": [ - 91151, - 91177 + 91550, + 91576 ], "filename": "astronomy.js", - "lineno": 2017, + "lineno": 2022, "columnno": 8, "code": { - "id": "astnode100011197", + "id": "astnode100011231", "name": "this.ra", "type": "CallExpression", "value": "", @@ -18262,14 +18334,14 @@ "comment": "", "meta": { "range": [ - 91187, - 91215 + 91586, + 91614 ], "filename": "astronomy.js", - "lineno": 2018, + "lineno": 2023, "columnno": 8, "code": { - "id": "astnode100011205", + "id": "astnode100011239", "name": "this.dec", "type": "CallExpression", "value": "", @@ -18287,14 +18359,14 @@ "comment": "", "meta": { "range": [ - 91225, - 91255 + 91624, + 91654 ], "filename": "astronomy.js", - "lineno": 2019, + "lineno": 2024, "columnno": 8, "code": { - "id": "astnode100011213", + "id": "astnode100011247", "name": "this.dist", "type": "CallExpression", "value": "", @@ -18312,14 +18384,14 @@ "comment": "", "meta": { "range": [ - 91265, - 91279 + 91664, + 91678 ], "filename": "astronomy.js", - "lineno": 2020, + "lineno": 2025, "columnno": 8, "code": { - "id": "astnode100011221", + "id": "astnode100011255", "name": "this.vec", "type": "Identifier", "value": "vec", @@ -18337,14 +18409,14 @@ "comment": "", "meta": { "range": [ - 91289, - 91342 + 91688, + 91741 ], "filename": "astronomy.js", - "lineno": 2023, + "lineno": 2028, "columnno": 0, "code": { - "id": "astnode100011227", + "id": "astnode100011261", "name": "exports.EquatorialCoordinates", "type": "Identifier", "value": "EquatorialCoordinates", @@ -18361,14 +18433,14 @@ "comment": "", "meta": { "range": [ - 91344, - 91718 + 91743, + 92117 ], "filename": "astronomy.js", - "lineno": 2024, + "lineno": 2029, "columnno": 0, "code": { - "id": "astnode100011232", + "id": "astnode100011266", "name": "IsValidRotationArray", "type": "FunctionDeclaration", "paramnames": [ @@ -18391,14 +18463,14 @@ "comment": "", "meta": { "range": [ - 91471, - 91476 + 91870, + 91875 ], "filename": "astronomy.js", - "lineno": 2027, + "lineno": 2032, "columnno": 13, "code": { - "id": "astnode100011251", + "id": "astnode100011285", "name": "i", "type": "Literal", "value": 0 @@ -18416,14 +18488,14 @@ "comment": "", "meta": { "range": [ - 91600, - 91605 + 91999, + 92004 ], "filename": "astronomy.js", - "lineno": 2030, + "lineno": 2035, "columnno": 17, "code": { - "id": "astnode100011279", + "id": "astnode100011313", "name": "j", "type": "Literal", "value": 0 @@ -18441,14 +18513,14 @@ "comment": "/**\n * @brief Contains a rotation matrix that can be used to transform one coordinate system to another.\n *\n * @property {number[][]} rot\n * A normalized 3x3 rotation matrix. For example, the identity matrix is represented\n * as `[[1, 0, 0], [0, 1, 0], [0, 0, 1]]`.\n */", "meta": { "range": [ - 91999, - 92076 + 92398, + 92475 ], "filename": "astronomy.js", - "lineno": 2043, + "lineno": 2048, "columnno": 0, "code": { - "id": "astnode100011302", + "id": "astnode100011336", "name": "RotationMatrix", "type": "ClassDeclaration", "paramnames": [ @@ -18485,14 +18557,14 @@ "comment": "", "meta": { "range": [ - 92026, - 92074 + 92425, + 92473 ], "filename": "astronomy.js", - "lineno": 2044, + "lineno": 2049, "columnno": 4, "code": { - "id": "astnode100011305", + "id": "astnode100011339", "name": "RotationMatrix", "type": "MethodDefinition", "paramnames": [ @@ -18514,14 +18586,14 @@ "comment": "/**\n * @brief Contains a rotation matrix that can be used to transform one coordinate system to another.\n *\n * @property {number[][]} rot\n * A normalized 3x3 rotation matrix. For example, the identity matrix is represented\n * as `[[1, 0, 0], [0, 1, 0], [0, 0, 1]]`.\n */", "meta": { "range": [ - 91999, - 92076 + 92398, + 92475 ], "filename": "astronomy.js", - "lineno": 2043, + "lineno": 2048, "columnno": 0, "code": { - "id": "astnode100011302", + "id": "astnode100011336", "name": "RotationMatrix", "type": "ClassDeclaration", "paramnames": [ @@ -18557,14 +18629,14 @@ "comment": "", "meta": { "range": [ - 92053, - 92067 + 92452, + 92466 ], "filename": "astronomy.js", - "lineno": 2045, + "lineno": 2050, "columnno": 8, "code": { - "id": "astnode100011311", + "id": "astnode100011345", "name": "this.rot", "type": "Identifier", "value": "rot", @@ -18582,14 +18654,14 @@ "comment": "", "meta": { "range": [ - 92077, - 92116 + 92476, + 92515 ], "filename": "astronomy.js", - "lineno": 2048, + "lineno": 2053, "columnno": 0, "code": { - "id": "astnode100011317", + "id": "astnode100011351", "name": "exports.RotationMatrix", "type": "Identifier", "value": "RotationMatrix", @@ -18606,14 +18678,14 @@ "comment": "/**\n * @brief Creates a rotation matrix that can be used to transform one coordinate system to another.\n *\n * This function verifies that the `rot` parameter is of the correct format:\n * a number[3][3] array. It throws an exception if `rot` is not of that shape.\n * Otherwise it creates a new {@link RotationMatrix} object based on `rot`.\n *\n * @param {number[][]} rot\n * An array [3][3] of numbers. Defines a rotation matrix used to premultiply\n * a 3D vector to reorient it into another coordinate system.\n *\n * @returns {RotationMatrix}\n */", "meta": { "range": [ - 92672, - 92834 + 93071, + 93233 ], "filename": "astronomy.js", - "lineno": 2062, + "lineno": 2067, "columnno": 0, "code": { - "id": "astnode100011322", + "id": "astnode100011356", "name": "MakeRotation", "type": "FunctionDeclaration", "paramnames": [ @@ -18658,14 +18730,14 @@ "comment": "", "meta": { "range": [ - 92835, - 92870 + 93234, + 93269 ], "filename": "astronomy.js", - "lineno": 2067, + "lineno": 2072, "columnno": 0, "code": { - "id": "astnode100011338", + "id": "astnode100011372", "name": "exports.MakeRotation", "type": "Identifier", "value": "MakeRotation", @@ -18682,14 +18754,14 @@ "comment": "/**\n * @brief Represents the location of an object seen by an observer on the Earth.\n *\n * Holds azimuth (compass direction) and altitude (angle above/below the horizon)\n * of a celestial object as seen by an observer at a particular location on the Earth's surface.\n * Also holds right ascension and declination of the same object.\n * All of these coordinates are optionally adjusted for atmospheric refraction;\n * therefore the right ascension and declination values may not exactly match\n * those found inside a corresponding {@link EquatorialCoordinates} object.\n *\n * @property {number} azimuth\n * A horizontal compass direction angle in degrees measured starting at north\n * and increasing positively toward the east.\n * The value is in the range [0, 360).\n * North = 0, east = 90, south = 180, west = 270.\n *\n * @property {number} altitude\n * A vertical angle in degrees above (positive) or below (negative) the horizon.\n * The value is in the range [-90, +90].\n * The altitude angle is optionally adjusted upward due to atmospheric refraction.\n *\n * @property {number} ra\n * The right ascension of the celestial body in sidereal hours.\n * The value is in the reange [0, 24).\n * If `altitude` was adjusted for atmospheric reaction, `ra`\n * is likewise adjusted.\n *\n * @property {number} dec\n * The declination of of the celestial body in degrees.\n * The value in the range [-90, +90].\n * If `altitude` was adjusted for atmospheric reaction, `dec`\n * is likewise adjusted.\n */", "meta": { "range": [ - 94430, - 94681 + 94829, + 95080 ], "filename": "astronomy.js", - "lineno": 2101, + "lineno": 2106, "columnno": 0, "code": { - "id": "astnode100011343", + "id": "astnode100011377", "name": "HorizontalCoordinates", "type": "ClassDeclaration", "paramnames": [ @@ -18756,14 +18828,14 @@ "comment": "", "meta": { "range": [ - 94464, - 94679 + 94863, + 95078 ], "filename": "astronomy.js", - "lineno": 2102, + "lineno": 2107, "columnno": 4, "code": { - "id": "astnode100011346", + "id": "astnode100011380", "name": "HorizontalCoordinates", "type": "MethodDefinition", "paramnames": [ @@ -18788,14 +18860,14 @@ "comment": "/**\n * @brief Represents the location of an object seen by an observer on the Earth.\n *\n * Holds azimuth (compass direction) and altitude (angle above/below the horizon)\n * of a celestial object as seen by an observer at a particular location on the Earth's surface.\n * Also holds right ascension and declination of the same object.\n * All of these coordinates are optionally adjusted for atmospheric refraction;\n * therefore the right ascension and declination values may not exactly match\n * those found inside a corresponding {@link EquatorialCoordinates} object.\n *\n * @property {number} azimuth\n * A horizontal compass direction angle in degrees measured starting at north\n * and increasing positively toward the east.\n * The value is in the range [0, 360).\n * North = 0, east = 90, south = 180, west = 270.\n *\n * @property {number} altitude\n * A vertical angle in degrees above (positive) or below (negative) the horizon.\n * The value is in the range [-90, +90].\n * The altitude angle is optionally adjusted upward due to atmospheric refraction.\n *\n * @property {number} ra\n * The right ascension of the celestial body in sidereal hours.\n * The value is in the reange [0, 24).\n * If `altitude` was adjusted for atmospheric reaction, `ra`\n * is likewise adjusted.\n *\n * @property {number} dec\n * The declination of of the celestial body in degrees.\n * The value in the range [-90, +90].\n * If `altitude` was adjusted for atmospheric reaction, `dec`\n * is likewise adjusted.\n */", "meta": { "range": [ - 94430, - 94681 + 94829, + 95080 ], "filename": "astronomy.js", - "lineno": 2101, + "lineno": 2106, "columnno": 0, "code": { - "id": "astnode100011343", + "id": "astnode100011377", "name": "HorizontalCoordinates", "type": "ClassDeclaration", "paramnames": [ @@ -18861,14 +18933,14 @@ "comment": "", "meta": { "range": [ - 94514, - 94550 + 94913, + 94949 ], "filename": "astronomy.js", - "lineno": 2103, + "lineno": 2108, "columnno": 8, "code": { - "id": "astnode100011355", + "id": "astnode100011389", "name": "this.azimuth", "type": "CallExpression", "value": "", @@ -18886,14 +18958,14 @@ "comment": "", "meta": { "range": [ - 94560, - 94598 + 94959, + 94997 ], "filename": "astronomy.js", - "lineno": 2104, + "lineno": 2109, "columnno": 8, "code": { - "id": "astnode100011363", + "id": "astnode100011397", "name": "this.altitude", "type": "CallExpression", "value": "", @@ -18911,14 +18983,14 @@ "comment": "", "meta": { "range": [ - 94608, - 94634 + 95007, + 95033 ], "filename": "astronomy.js", - "lineno": 2105, + "lineno": 2110, "columnno": 8, "code": { - "id": "astnode100011371", + "id": "astnode100011405", "name": "this.ra", "type": "CallExpression", "value": "", @@ -18936,14 +19008,14 @@ "comment": "", "meta": { "range": [ - 94644, - 94672 + 95043, + 95071 ], "filename": "astronomy.js", - "lineno": 2106, + "lineno": 2111, "columnno": 8, "code": { - "id": "astnode100011379", + "id": "astnode100011413", "name": "this.dec", "type": "CallExpression", "value": "", @@ -18961,14 +19033,14 @@ "comment": "", "meta": { "range": [ - 94682, - 94735 + 95081, + 95134 ], "filename": "astronomy.js", - "lineno": 2109, + "lineno": 2114, "columnno": 0, "code": { - "id": "astnode100011387", + "id": "astnode100011421", "name": "exports.HorizontalCoordinates", "type": "Identifier", "value": "HorizontalCoordinates", @@ -18985,14 +19057,14 @@ "comment": "/**\n * @brief Ecliptic coordinates of a celestial body.\n *\n * The origin and date of the coordinate system may vary depending on the caller's usage.\n * In general, ecliptic coordinates are measured with respect to the mean plane of the Earth's\n * orbit around the Sun.\n * Includes Cartesian coordinates `(ex, ey, ez)` measured in\n * astronomical units (AU)\n * and spherical coordinates `(elon, elat)` measured in degrees.\n *\n * @property {Vector} vec\n * Ecliptic cartesian vector with components measured in astronomical units (AU).\n * The x-axis is within the ecliptic plane and is oriented in the direction of the\n * equinox.\n * The y-axis is within the ecliptic plane and is oriented 90 degrees\n * counterclockwise from the equinox, as seen from above the Sun's north pole.\n * The z-axis is oriented perpendicular to the ecliptic plane,\n * along the direction of the Sun's north pole.\n *\n * @property {number} elat\n * The ecliptic latitude of the body in degrees.\n * This is the angle north or south of the ecliptic plane.\n * The value is in the range [-90, +90].\n * Positive values are north and negative values are south.\n *\n * @property {number} elon\n * The ecliptic longitude of the body in degrees.\n * This is the angle measured counterclockwise around the ecliptic plane,\n * as seen from above the Sun's north pole.\n * This is the same direction that the Earth orbits around the Sun.\n * The angle is measured starting at 0 from the equinox and increases\n * up to 360 degrees.\n */", "meta": { "range": [ - 96449, - 96623 + 96848, + 97022 ], "filename": "astronomy.js", - "lineno": 2143, + "lineno": 2148, "columnno": 0, "code": { - "id": "astnode100011392", + "id": "astnode100011426", "name": "EclipticCoordinates", "type": "ClassDeclaration", "paramnames": [ @@ -19049,14 +19121,14 @@ "comment": "", "meta": { "range": [ - 96481, - 96621 + 96880, + 97020 ], "filename": "astronomy.js", - "lineno": 2144, + "lineno": 2149, "columnno": 4, "code": { - "id": "astnode100011395", + "id": "astnode100011429", "name": "EclipticCoordinates", "type": "MethodDefinition", "paramnames": [ @@ -19080,14 +19152,14 @@ "comment": "/**\n * @brief Ecliptic coordinates of a celestial body.\n *\n * The origin and date of the coordinate system may vary depending on the caller's usage.\n * In general, ecliptic coordinates are measured with respect to the mean plane of the Earth's\n * orbit around the Sun.\n * Includes Cartesian coordinates `(ex, ey, ez)` measured in\n * astronomical units (AU)\n * and spherical coordinates `(elon, elat)` measured in degrees.\n *\n * @property {Vector} vec\n * Ecliptic cartesian vector with components measured in astronomical units (AU).\n * The x-axis is within the ecliptic plane and is oriented in the direction of the\n * equinox.\n * The y-axis is within the ecliptic plane and is oriented 90 degrees\n * counterclockwise from the equinox, as seen from above the Sun's north pole.\n * The z-axis is oriented perpendicular to the ecliptic plane,\n * along the direction of the Sun's north pole.\n *\n * @property {number} elat\n * The ecliptic latitude of the body in degrees.\n * This is the angle north or south of the ecliptic plane.\n * The value is in the range [-90, +90].\n * Positive values are north and negative values are south.\n *\n * @property {number} elon\n * The ecliptic longitude of the body in degrees.\n * This is the angle measured counterclockwise around the ecliptic plane,\n * as seen from above the Sun's north pole.\n * This is the same direction that the Earth orbits around the Sun.\n * The angle is measured starting at 0 from the equinox and increases\n * up to 360 degrees.\n */", "meta": { "range": [ - 96449, - 96623 + 96848, + 97022 ], "filename": "astronomy.js", - "lineno": 2143, + "lineno": 2148, "columnno": 0, "code": { - "id": "astnode100011392", + "id": "astnode100011426", "name": "EclipticCoordinates", "type": "ClassDeclaration", "paramnames": [ @@ -19143,14 +19215,14 @@ "comment": "", "meta": { "range": [ - 96520, - 96534 + 96919, + 96933 ], "filename": "astronomy.js", - "lineno": 2145, + "lineno": 2150, "columnno": 8, "code": { - "id": "astnode100011403", + "id": "astnode100011437", "name": "this.vec", "type": "Identifier", "value": "vec", @@ -19168,14 +19240,14 @@ "comment": "", "meta": { "range": [ - 96544, - 96574 + 96943, + 96973 ], "filename": "astronomy.js", - "lineno": 2146, + "lineno": 2151, "columnno": 8, "code": { - "id": "astnode100011409", + "id": "astnode100011443", "name": "this.elat", "type": "CallExpression", "value": "", @@ -19193,14 +19265,14 @@ "comment": "", "meta": { "range": [ - 96584, - 96614 + 96983, + 97013 ], "filename": "astronomy.js", - "lineno": 2147, + "lineno": 2152, "columnno": 8, "code": { - "id": "astnode100011417", + "id": "astnode100011451", "name": "this.elon", "type": "CallExpression", "value": "", @@ -19218,14 +19290,14 @@ "comment": "", "meta": { "range": [ - 96624, - 96673 + 97023, + 97072 ], "filename": "astronomy.js", - "lineno": 2150, + "lineno": 2155, "columnno": 0, "code": { - "id": "astnode100011425", + "id": "astnode100011459", "name": "exports.EclipticCoordinates", "type": "Identifier", "value": "EclipticCoordinates", @@ -19242,14 +19314,14 @@ "comment": "", "meta": { "range": [ - 96675, - 96763 + 97074, + 97162 ], "filename": "astronomy.js", - "lineno": 2151, + "lineno": 2156, "columnno": 0, "code": { - "id": "astnode100011430", + "id": "astnode100011464", "name": "VectorFromArray", "type": "FunctionDeclaration", "paramnames": [ @@ -19269,14 +19341,14 @@ "comment": "", "meta": { "range": [ - 96764, - 97356 + 97163, + 97755 ], "filename": "astronomy.js", - "lineno": 2154, + "lineno": 2159, "columnno": 0, "code": { - "id": "astnode100011448", + "id": "astnode100011482", "name": "vector2radec", "type": "FunctionDeclaration", "paramnames": [ @@ -19303,14 +19375,14 @@ "comment": "", "meta": { "range": [ - 96809, - 96841 + 97208, + 97240 ], "filename": "astronomy.js", - "lineno": 2155, + "lineno": 2160, "columnno": 10, "code": { - "id": "astnode100011454", + "id": "astnode100011488", "name": "vec", "type": "CallExpression", "value": "" @@ -19328,14 +19400,14 @@ "comment": "", "meta": { "range": [ - 96853, - 96891 + 97252, + 97290 ], "filename": "astronomy.js", - "lineno": 2156, + "lineno": 2161, "columnno": 10, "code": { - "id": "astnode100011461", + "id": "astnode100011495", "name": "xyproj", "type": "BinaryExpression", "value": "" @@ -19353,14 +19425,14 @@ "comment": "", "meta": { "range": [ - 96903, - 96943 + 97302, + 97342 ], "filename": "astronomy.js", - "lineno": 2157, + "lineno": 2162, "columnno": 10, "code": { - "id": "astnode100011479", + "id": "astnode100011513", "name": "dist", "type": "CallExpression", "value": "" @@ -19378,14 +19450,14 @@ "comment": "", "meta": { "range": [ - 97140, - 97188 + 97539, + 97587 ], "filename": "astronomy.js", - "lineno": 2163, + "lineno": 2168, "columnno": 8, "code": { - "id": "astnode100011524", + "id": "astnode100011558", "name": "ra", "type": "BinaryExpression", "value": "" @@ -19403,14 +19475,14 @@ "comment": "", "meta": { "range": [ - 97214, - 97222 + 97613, + 97621 ], "filename": "astronomy.js", - "lineno": 2165, + "lineno": 2170, "columnno": 8, "code": { - "id": "astnode100011545", + "id": "astnode100011579", "name": "ra", "type": "Literal", "funcscope": "vector2radec", @@ -19429,14 +19501,14 @@ "comment": "", "meta": { "range": [ - 97234, - 97295 + 97633, + 97694 ], "filename": "astronomy.js", - "lineno": 2166, + "lineno": 2171, "columnno": 10, "code": { - "id": "astnode100011549", + "id": "astnode100011583", "name": "dec", "type": "BinaryExpression", "value": "" @@ -19454,14 +19526,14 @@ "comment": "", "meta": { "range": [ - 97357, - 97559 + 97756, + 97958 ], "filename": "astronomy.js", - "lineno": 2169, + "lineno": 2174, "columnno": 0, "code": { - "id": "astnode100011574", + "id": "astnode100011608", "name": "spin", "type": "FunctionDeclaration", "paramnames": [ @@ -19486,14 +19558,14 @@ "comment": "", "meta": { "range": [ - 97395, - 97425 + 97794, + 97824 ], "filename": "astronomy.js", - "lineno": 2170, + "lineno": 2175, "columnno": 10, "code": { - "id": "astnode100011580", + "id": "astnode100011614", "name": "angr", "type": "BinaryExpression", "value": "" @@ -19511,14 +19583,14 @@ "comment": "", "meta": { "range": [ - 97437, - 97455 + 97836, + 97854 ], "filename": "astronomy.js", - "lineno": 2171, + "lineno": 2176, "columnno": 10, "code": { - "id": "astnode100011588", + "id": "astnode100011622", "name": "c", "type": "CallExpression", "value": "" @@ -19536,14 +19608,14 @@ "comment": "", "meta": { "range": [ - 97467, - 97485 + 97866, + 97884 ], "filename": "astronomy.js", - "lineno": 2172, + "lineno": 2177, "columnno": 10, "code": { - "id": "astnode100011596", + "id": "astnode100011630", "name": "s", "type": "CallExpression", "value": "" @@ -19561,14 +19633,14 @@ "comment": "/**\n * @brief Converts equatorial coordinates to horizontal coordinates.\n *\n * Given a date and time, a geographic location of an observer on the Earth, and\n * equatorial coordinates (right ascension and declination) of a celestial body,\n * returns horizontal coordinates (azimuth and altitude angles) for that body\n * as seen by that observer. Allows optional correction for atmospheric refraction.\n *\n * @param {FlexibleDateTime} date\n * The date and time for which to find horizontal coordinates.\n *\n * @param {Observer} observer\n * The location of the observer for which to find horizontal coordinates.\n *\n * @param {number} ra\n * Right ascension in sidereal hours of the celestial object,\n * referred to the mean equinox of date for the J2000 epoch.\n *\n * @param {number} dec\n * Declination in degrees of the celestial object,\n * referred to the mean equator of date for the J2000 epoch.\n * Positive values are north of the celestial equator and negative values are south.\n *\n * @param {string} refraction\n * If omitted or has a false-like value (false, null, undefined, etc.)\n * the calculations are performed without any correction for atmospheric\n * refraction. If the value is the string `\"normal\"`,\n * uses the recommended refraction correction based on Meeus \"Astronomical Algorithms\"\n * with a linear taper more than 1 degree below the horizon. The linear\n * taper causes the refraction to linearly approach 0 as the altitude of the\n * body approaches the nadir (-90 degrees).\n * If the value is the string `\"jplhor\"`, uses a JPL Horizons\n * compatible formula. This is the same algorithm as `\"normal\"`,\n * only without linear tapering; this can result in physically impossible\n * altitudes of less than -90 degrees, which may cause problems for some applications.\n * (The `\"jplhor\"` option was created for unit testing against data\n * generated by JPL Horizons, and is otherwise not recommended for use.)\n *\n * @returns {HorizontalCoordinates}\n */", "meta": { "range": [ - 99621, - 104249 + 100020, + 104648 ], "filename": "astronomy.js", - "lineno": 2215, + "lineno": 2220, "columnno": 0, "code": { - "id": "astnode100011630", + "id": "astnode100011664", "name": "Horizon", "type": "FunctionDeclaration", "paramnames": [ @@ -19688,14 +19760,14 @@ "comment": "", "meta": { "range": [ - 99717, - 99738 + 100116, + 100137 ], "filename": "astronomy.js", - "lineno": 2217, + "lineno": 2222, "columnno": 8, "code": { - "id": "astnode100011639", + "id": "astnode100011673", "name": "time", "type": "CallExpression", "value": "" @@ -19713,14 +19785,14 @@ "comment": "", "meta": { "range": [ - 99825, - 99879 + 100224, + 100278 ], "filename": "astronomy.js", - "lineno": 2221, + "lineno": 2226, "columnno": 10, "code": { - "id": "astnode100011657", + "id": "astnode100011691", "name": "sinlat", "type": "CallExpression", "value": "" @@ -19738,14 +19810,14 @@ "comment": "", "meta": { "range": [ - 99891, - 99945 + 100290, + 100344 ], "filename": "astronomy.js", - "lineno": 2222, + "lineno": 2227, "columnno": 10, "code": { - "id": "astnode100011671", + "id": "astnode100011705", "name": "coslat", "type": "CallExpression", "value": "" @@ -19763,14 +19835,14 @@ "comment": "", "meta": { "range": [ - 99957, - 100012 + 100356, + 100411 ], "filename": "astronomy.js", - "lineno": 2223, + "lineno": 2228, "columnno": 10, "code": { - "id": "astnode100011685", + "id": "astnode100011719", "name": "sinlon", "type": "CallExpression", "value": "" @@ -19788,14 +19860,14 @@ "comment": "", "meta": { "range": [ - 100024, - 100079 + 100423, + 100478 ], "filename": "astronomy.js", - "lineno": 2224, + "lineno": 2229, "columnno": 10, "code": { - "id": "astnode100011699", + "id": "astnode100011733", "name": "coslon", "type": "CallExpression", "value": "" @@ -19813,14 +19885,14 @@ "comment": "", "meta": { "range": [ - 100091, - 100130 + 100490, + 100529 ], "filename": "astronomy.js", - "lineno": 2225, + "lineno": 2230, "columnno": 10, "code": { - "id": "astnode100011713", + "id": "astnode100011747", "name": "sindc", "type": "CallExpression", "value": "" @@ -19838,14 +19910,14 @@ "comment": "", "meta": { "range": [ - 100142, - 100181 + 100541, + 100580 ], "filename": "astronomy.js", - "lineno": 2226, + "lineno": 2231, "columnno": 10, "code": { - "id": "astnode100011725", + "id": "astnode100011759", "name": "cosdc", "type": "CallExpression", "value": "" @@ -19863,14 +19935,14 @@ "comment": "", "meta": { "range": [ - 100193, - 100232 + 100592, + 100631 ], "filename": "astronomy.js", - "lineno": 2227, + "lineno": 2232, "columnno": 10, "code": { - "id": "astnode100011737", + "id": "astnode100011771", "name": "sinra", "type": "CallExpression", "value": "" @@ -19888,14 +19960,14 @@ "comment": "", "meta": { "range": [ - 100244, - 100283 + 100643, + 100682 ], "filename": "astronomy.js", - "lineno": 2228, + "lineno": 2233, "columnno": 10, "code": { - "id": "astnode100011749", + "id": "astnode100011783", "name": "cosra", "type": "CallExpression", "value": "" @@ -19913,14 +19985,14 @@ "comment": "", "meta": { "range": [ - 101034, - 101082 + 101433, + 101481 ], "filename": "astronomy.js", - "lineno": 2242, + "lineno": 2247, "columnno": 8, "code": { - "id": "astnode100011761", + "id": "astnode100011795", "name": "uze", "type": "ArrayExpression", "value": "[\"\",\"\",\"sinlat\"]" @@ -19938,14 +20010,14 @@ "comment": "", "meta": { "range": [ - 101092, - 101142 + 101491, + 101541 ], "filename": "astronomy.js", - "lineno": 2243, + "lineno": 2248, "columnno": 8, "code": { - "id": "astnode100011772", + "id": "astnode100011806", "name": "une", "type": "ArrayExpression", "value": "[\"\",\"\",\"coslat\"]" @@ -19963,14 +20035,14 @@ "comment": "", "meta": { "range": [ - 101152, - 101178 + 101551, + 101577 ], "filename": "astronomy.js", - "lineno": 2244, + "lineno": 2249, "columnno": 8, "code": { - "id": "astnode100011785", + "id": "astnode100011819", "name": "uwe", "type": "ArrayExpression", "value": "[\"sinlon\",\"-coslon\",0]" @@ -19988,14 +20060,14 @@ "comment": "", "meta": { "range": [ - 101575, - 101613 + 101974, + 102012 ], "filename": "astronomy.js", - "lineno": 2250, + "lineno": 2255, "columnno": 10, "code": { - "id": "astnode100011793", + "id": "astnode100011827", "name": "spin_angle", "type": "BinaryExpression", "value": "" @@ -20013,14 +20085,14 @@ "comment": "", "meta": { "range": [ - 101623, - 101649 + 102022, + 102048 ], "filename": "astronomy.js", - "lineno": 2251, + "lineno": 2256, "columnno": 8, "code": { - "id": "astnode100011802", + "id": "astnode100011836", "name": "uz", "type": "CallExpression", "value": "" @@ -20038,14 +20110,14 @@ "comment": "", "meta": { "range": [ - 101659, - 101685 + 102058, + 102084 ], "filename": "astronomy.js", - "lineno": 2252, + "lineno": 2257, "columnno": 8, "code": { - "id": "astnode100011809", + "id": "astnode100011843", "name": "un", "type": "CallExpression", "value": "" @@ -20063,14 +20135,14 @@ "comment": "", "meta": { "range": [ - 101695, - 101721 + 102094, + 102120 ], "filename": "astronomy.js", - "lineno": 2253, + "lineno": 2258, "columnno": 8, "code": { - "id": "astnode100011816", + "id": "astnode100011850", "name": "uw", "type": "CallExpression", "value": "" @@ -20088,14 +20160,14 @@ "comment": "", "meta": { "range": [ - 101897, - 101938 + 102296, + 102337 ], "filename": "astronomy.js", - "lineno": 2257, + "lineno": 2262, "columnno": 8, "code": { - "id": "astnode100011823", + "id": "astnode100011857", "name": "p", "type": "ArrayExpression", "value": "[\"\",\"\",\"sindc\"]" @@ -20113,14 +20185,14 @@ "comment": "", "meta": { "range": [ - 102245, - 102292 + 102644, + 102691 ], "filename": "astronomy.js", - "lineno": 2264, + "lineno": 2269, "columnno": 10, "code": { - "id": "astnode100011834", + "id": "astnode100011868", "name": "pz", "type": "BinaryExpression", "value": "" @@ -20138,14 +20210,14 @@ "comment": "", "meta": { "range": [ - 102304, - 102351 + 102703, + 102750 ], "filename": "astronomy.js", - "lineno": 2265, + "lineno": 2270, "columnno": 10, "code": { - "id": "astnode100011860", + "id": "astnode100011894", "name": "pn", "type": "BinaryExpression", "value": "" @@ -20163,14 +20235,14 @@ "comment": "", "meta": { "range": [ - 102363, - 102410 + 102762, + 102809 ], "filename": "astronomy.js", - "lineno": 2266, + "lineno": 2271, "columnno": 10, "code": { - "id": "astnode100011886", + "id": "astnode100011920", "name": "pw", "type": "BinaryExpression", "value": "" @@ -20188,14 +20260,14 @@ "comment": "", "meta": { "range": [ - 102501, - 102536 + 102900, + 102935 ], "filename": "astronomy.js", - "lineno": 2268, + "lineno": 2273, "columnno": 8, "code": { - "id": "astnode100011912", + "id": "astnode100011946", "name": "proj", "type": "CallExpression", "value": "" @@ -20213,14 +20285,14 @@ "comment": "", "meta": { "range": [ - 102617, - 102619 + 103016, + 103018 ], "filename": "astronomy.js", - "lineno": 2270, + "lineno": 2275, "columnno": 8, "code": { - "id": "astnode100011926", + "id": "astnode100011960", "name": "az" } }, @@ -20236,14 +20308,14 @@ "comment": "", "meta": { "range": [ - 102792, - 102834 + 103191, + 103233 ], "filename": "astronomy.js", - "lineno": 2274, + "lineno": 2279, "columnno": 8, "code": { - "id": "astnode100011934", + "id": "astnode100011968", "name": "az", "type": "BinaryExpression", "funcscope": "Horizon", @@ -20262,14 +20334,14 @@ "comment": "", "meta": { "range": [ - 102868, - 102877 + 103267, + 103276 ], "filename": "astronomy.js", - "lineno": 2276, + "lineno": 2281, "columnno": 12, "code": { - "id": "astnode100011952", + "id": "astnode100011986", "name": "az", "type": "Literal", "funcscope": "Horizon", @@ -20288,14 +20360,14 @@ "comment": "", "meta": { "range": [ - 103030, - 103036 + 103429, + 103435 ], "filename": "astronomy.js", - "lineno": 2281, + "lineno": 2286, "columnno": 8, "code": { - "id": "astnode100011957", + "id": "astnode100011991", "name": "az", "type": "Literal", "funcscope": "Horizon", @@ -20314,14 +20386,14 @@ "comment": "", "meta": { "range": [ - 103131, - 103174 + 103530, + 103573 ], "filename": "astronomy.js", - "lineno": 2284, + "lineno": 2289, "columnno": 8, "code": { - "id": "astnode100011961", + "id": "astnode100011995", "name": "zd", "type": "BinaryExpression", "value": "" @@ -20339,14 +20411,14 @@ "comment": "", "meta": { "range": [ - 103184, - 103195 + 103583, + 103594 ], "filename": "astronomy.js", - "lineno": 2285, + "lineno": 2290, "columnno": 8, "code": { - "id": "astnode100011974", + "id": "astnode100012008", "name": "out_ra", "type": "Identifier", "value": "ra" @@ -20364,14 +20436,14 @@ "comment": "", "meta": { "range": [ - 103205, - 103218 + 103604, + 103617 ], "filename": "astronomy.js", - "lineno": 2286, + "lineno": 2291, "columnno": 8, "code": { - "id": "astnode100011978", + "id": "astnode100012012", "name": "out_dec", "type": "Identifier", "value": "dec" @@ -20389,14 +20461,14 @@ "comment": "", "meta": { "range": [ - 103254, - 103262 + 103653, + 103661 ], "filename": "astronomy.js", - "lineno": 2288, + "lineno": 2293, "columnno": 12, "code": { - "id": "astnode100011985", + "id": "astnode100012019", "name": "zd0", "type": "Identifier", "value": "zd" @@ -20414,14 +20486,14 @@ "comment": "", "meta": { "range": [ - 103276, - 103314 + 103675, + 103713 ], "filename": "astronomy.js", - "lineno": 2289, + "lineno": 2294, "columnno": 12, "code": { - "id": "astnode100011989", + "id": "astnode100012023", "name": "refr", "type": "CallExpression", "value": "" @@ -20439,14 +20511,14 @@ "comment": "", "meta": { "range": [ - 103324, - 103334 + 103723, + 103733 ], "filename": "astronomy.js", - "lineno": 2290, + "lineno": 2295, "columnno": 8, "code": { - "id": "astnode100011998", + "id": "astnode100012032", "name": "zd", "type": "Identifier", "funcscope": "Horizon", @@ -20465,14 +20537,14 @@ "comment": "", "meta": { "range": [ - 103395, - 103433 + 103794, + 103832 ], "filename": "astronomy.js", - "lineno": 2292, + "lineno": 2297, "columnno": 18, "code": { - "id": "astnode100012011", + "id": "astnode100012045", "name": "sinzd", "type": "CallExpression", "value": "" @@ -20490,14 +20562,14 @@ "comment": "", "meta": { "range": [ - 103453, - 103491 + 103852, + 103890 ], "filename": "astronomy.js", - "lineno": 2293, + "lineno": 2298, "columnno": 18, "code": { - "id": "astnode100012023", + "id": "astnode100012057", "name": "coszd", "type": "CallExpression", "value": "" @@ -20515,14 +20587,14 @@ "comment": "", "meta": { "range": [ - 103511, - 103551 + 103910, + 103950 ], "filename": "astronomy.js", - "lineno": 2294, + "lineno": 2299, "columnno": 18, "code": { - "id": "astnode100012035", + "id": "astnode100012069", "name": "sinzd0", "type": "CallExpression", "value": "" @@ -20540,14 +20612,14 @@ "comment": "", "meta": { "range": [ - 103571, - 103611 + 103970, + 104010 ], "filename": "astronomy.js", - "lineno": 2295, + "lineno": 2300, "columnno": 18, "code": { - "id": "astnode100012047", + "id": "astnode100012081", "name": "coszd0", "type": "CallExpression", "value": "" @@ -20565,14 +20637,14 @@ "comment": "", "meta": { "range": [ - 103629, - 103636 + 104028, + 104035 ], "filename": "astronomy.js", - "lineno": 2296, + "lineno": 2301, "columnno": 16, "code": { - "id": "astnode100012059", + "id": "astnode100012093", "name": "pr", "type": "ArrayExpression", "value": "[]" @@ -20590,14 +20662,14 @@ "comment": "", "meta": { "range": [ - 103659, - 103664 + 104058, + 104063 ], "filename": "astronomy.js", - "lineno": 2297, + "lineno": 2302, "columnno": 21, "code": { - "id": "astnode100012064", + "id": "astnode100012098", "name": "j", "type": "Literal", "value": 0 @@ -20615,14 +20687,14 @@ "comment": "", "meta": { "range": [ - 103791, - 103838 + 104190, + 104237 ], "filename": "astronomy.js", - "lineno": 2300, + "lineno": 2305, "columnno": 12, "code": { - "id": "astnode100012098", + "id": "astnode100012132", "name": "proj", "type": "CallExpression", "funcscope": "Horizon", @@ -20641,14 +20713,14 @@ "comment": "", "meta": { "range": [ - 103884, - 103936 + 104283, + 104335 ], "filename": "astronomy.js", - "lineno": 2302, + "lineno": 2307, "columnno": 16, "code": { - "id": "astnode100012125", + "id": "astnode100012159", "name": "out_ra", "type": "BinaryExpression", "funcscope": "Horizon", @@ -20667,14 +20739,14 @@ "comment": "", "meta": { "range": [ - 103992, - 104004 + 104391, + 104403 ], "filename": "astronomy.js", - "lineno": 2304, + "lineno": 2309, "columnno": 20, "code": { - "id": "astnode100012147", + "id": "astnode100012181", "name": "out_ra", "type": "Literal", "funcscope": "Horizon", @@ -20693,14 +20765,14 @@ "comment": "", "meta": { "range": [ - 104073, - 104083 + 104472, + 104482 ], "filename": "astronomy.js", - "lineno": 2308, + "lineno": 2313, "columnno": 16, "code": { - "id": "astnode100012152", + "id": "astnode100012186", "name": "out_ra", "type": "Literal", "funcscope": "Horizon", @@ -20719,14 +20791,14 @@ "comment": "", "meta": { "range": [ - 104111, - 104162 + 104510, + 104561 ], "filename": "astronomy.js", - "lineno": 2310, + "lineno": 2315, "columnno": 12, "code": { - "id": "astnode100012156", + "id": "astnode100012190", "name": "out_dec", "type": "BinaryExpression", "funcscope": "Horizon", @@ -20745,14 +20817,14 @@ "comment": "", "meta": { "range": [ - 104250, - 104275 + 104649, + 104674 ], "filename": "astronomy.js", - "lineno": 2315, + "lineno": 2320, "columnno": 0, "code": { - "id": "astnode100012180", + "id": "astnode100012214", "name": "exports.Horizon", "type": "Identifier", "value": "Horizon", @@ -20769,14 +20841,14 @@ "comment": "", "meta": { "range": [ - 104277, - 104712 + 104676, + 105111 ], "filename": "astronomy.js", - "lineno": 2316, + "lineno": 2321, "columnno": 0, "code": { - "id": "astnode100012185", + "id": "astnode100012219", "name": "VerifyObserver", "type": "FunctionDeclaration", "paramnames": [ @@ -20795,14 +20867,14 @@ "comment": "/**\n * @brief Represents the geographic location of an observer on the surface of the Earth.\n *\n * @property {number} latitude\n * The observer's geographic latitude in degrees north of the Earth's equator.\n * The value is negative for observers south of the equator.\n * Must be in the range -90 to +90.\n *\n * @property {number} longitude\n * The observer's geographic longitude in degrees east of the prime meridian\n * passing through Greenwich, England.\n * The value is negative for observers west of the prime meridian.\n * The value should be kept in the range -180 to +180 to minimize floating point errors.\n *\n * @property {number} height\n * The observer's elevation above mean sea level, expressed in meters.\n */", "meta": { "range": [ - 105470, - 105671 + 105869, + 106070 ], "filename": "astronomy.js", - "lineno": 2345, + "lineno": 2350, "columnno": 0, "code": { - "id": "astnode100012242", + "id": "astnode100012276", "name": "Observer", "type": "ClassDeclaration", "paramnames": [ @@ -20859,14 +20931,14 @@ "comment": "", "meta": { "range": [ - 105491, - 105669 + 105890, + 106068 ], "filename": "astronomy.js", - "lineno": 2346, + "lineno": 2351, "columnno": 4, "code": { - "id": "astnode100012245", + "id": "astnode100012279", "name": "Observer", "type": "MethodDefinition", "paramnames": [ @@ -20890,14 +20962,14 @@ "comment": "/**\n * @brief Represents the geographic location of an observer on the surface of the Earth.\n *\n * @property {number} latitude\n * The observer's geographic latitude in degrees north of the Earth's equator.\n * The value is negative for observers south of the equator.\n * Must be in the range -90 to +90.\n *\n * @property {number} longitude\n * The observer's geographic longitude in degrees east of the prime meridian\n * passing through Greenwich, England.\n * The value is negative for observers west of the prime meridian.\n * The value should be kept in the range -180 to +180 to minimize floating point errors.\n *\n * @property {number} height\n * The observer's elevation above mean sea level, expressed in meters.\n */", "meta": { "range": [ - 105470, - 105671 + 105869, + 106070 ], "filename": "astronomy.js", - "lineno": 2345, + "lineno": 2350, "columnno": 0, "code": { - "id": "astnode100012242", + "id": "astnode100012276", "name": "Observer", "type": "ClassDeclaration", "paramnames": [ @@ -20953,14 +21025,14 @@ "comment": "", "meta": { "range": [ - 105542, - 105566 + 105941, + 105965 ], "filename": "astronomy.js", - "lineno": 2347, + "lineno": 2352, "columnno": 8, "code": { - "id": "astnode100012253", + "id": "astnode100012287", "name": "this.latitude", "type": "Identifier", "value": "latitude", @@ -20978,14 +21050,14 @@ "comment": "", "meta": { "range": [ - 105576, - 105602 + 105975, + 106001 ], "filename": "astronomy.js", - "lineno": 2348, + "lineno": 2353, "columnno": 8, "code": { - "id": "astnode100012259", + "id": "astnode100012293", "name": "this.longitude", "type": "Identifier", "value": "longitude", @@ -21003,14 +21075,14 @@ "comment": "", "meta": { "range": [ - 105612, - 105632 + 106011, + 106031 ], "filename": "astronomy.js", - "lineno": 2349, + "lineno": 2354, "columnno": 8, "code": { - "id": "astnode100012265", + "id": "astnode100012299", "name": "this.height", "type": "Identifier", "value": "height", @@ -21028,14 +21100,14 @@ "comment": "", "meta": { "range": [ - 105672, - 105699 + 106071, + 106098 ], "filename": "astronomy.js", - "lineno": 2353, + "lineno": 2358, "columnno": 0, "code": { - "id": "astnode100012275", + "id": "astnode100012309", "name": "exports.Observer", "type": "Identifier", "value": "Observer", @@ -21052,14 +21124,14 @@ "comment": "/**\n * @brief Returns apparent geocentric true ecliptic coordinates of date for the Sun.\n *\n * This function is used for calculating the times of equinoxes and solstices.\n *\n * Geocentric means coordinates as the Sun would appear to a hypothetical observer\n * at the center of the Earth.\n * Ecliptic coordinates of date are measured along the plane of the Earth's mean\n * orbit around the Sun, using the\n * equinox\n * of the Earth as adjusted for precession and nutation of the Earth's\n * axis of rotation on the given date.\n *\n * @param {FlexibleDateTime} date\n * The date and time at which to calculate the Sun's apparent location as seen from\n * the center of the Earth.\n *\n * @returns {EclipticCoordinates}\n */", "meta": { "range": [ - 106516, - 107525 + 106915, + 107924 ], "filename": "astronomy.js", - "lineno": 2373, + "lineno": 2378, "columnno": 0, "code": { - "id": "astnode100012280", + "id": "astnode100012314", "name": "SunPosition", "type": "FunctionDeclaration", "paramnames": [ @@ -21115,14 +21187,14 @@ "comment": "", "meta": { "range": [ - 106762, - 106813 + 107161, + 107212 ], "filename": "astronomy.js", - "lineno": 2377, + "lineno": 2382, "columnno": 10, "code": { - "id": "astnode100012285", + "id": "astnode100012319", "name": "time", "type": "CallExpression", "value": "" @@ -21140,14 +21212,14 @@ "comment": "", "meta": { "range": [ - 106890, - 106928 + 107289, + 107327 ], "filename": "astronomy.js", - "lineno": 2379, + "lineno": 2384, "columnno": 10, "code": { - "id": "astnode100012300", + "id": "astnode100012334", "name": "earth2000", "type": "CallExpression", "value": "" @@ -21165,14 +21237,14 @@ "comment": "", "meta": { "range": [ - 106990, - 107042 + 107389, + 107441 ], "filename": "astronomy.js", - "lineno": 2381, + "lineno": 2386, "columnno": 10, "code": { - "id": "astnode100012309", + "id": "astnode100012343", "name": "sun2000", "type": "ArrayExpression", "value": "[\"-earth2000.x\",\"-earth2000.y\",\"-earth2000.z\"]" @@ -21190,14 +21262,14 @@ "comment": "", "meta": { "range": [ - 107247, - 107295 + 107646, + 107694 ], "filename": "astronomy.js", - "lineno": 2385, + "lineno": 2390, "columnno": 10, "code": { - "id": "astnode100012335", + "id": "astnode100012369", "name": "true_obliq", "type": "BinaryExpression", "value": "" @@ -21215,14 +21287,14 @@ "comment": "", "meta": { "range": [ - 107307, - 107336 + 107706, + 107735 ], "filename": "astronomy.js", - "lineno": 2386, + "lineno": 2391, "columnno": 10, "code": { - "id": "astnode100012347", + "id": "astnode100012381", "name": "cos_ob", "type": "CallExpression", "value": "" @@ -21240,14 +21312,14 @@ "comment": "", "meta": { "range": [ - 107348, - 107377 + 107747, + 107776 ], "filename": "astronomy.js", - "lineno": 2387, + "lineno": 2392, "columnno": 10, "code": { - "id": "astnode100012355", + "id": "astnode100012389", "name": "sin_ob", "type": "CallExpression", "value": "" @@ -21265,14 +21337,14 @@ "comment": "", "meta": { "range": [ - 107389, - 107423 + 107788, + 107822 ], "filename": "astronomy.js", - "lineno": 2388, + "lineno": 2393, "columnno": 10, "code": { - "id": "astnode100012363", + "id": "astnode100012397", "name": "vec", "type": "NewExpression", "value": "" @@ -21290,14 +21362,14 @@ "comment": "", "meta": { "range": [ - 107435, - 107497 + 107834, + 107896 ], "filename": "astronomy.js", - "lineno": 2389, + "lineno": 2394, "columnno": 10, "code": { - "id": "astnode100012372", + "id": "astnode100012406", "name": "sun_ecliptic", "type": "CallExpression", "value": "" @@ -21315,14 +21387,14 @@ "comment": "", "meta": { "range": [ - 107526, - 107559 + 107925, + 107958 ], "filename": "astronomy.js", - "lineno": 2392, + "lineno": 2397, "columnno": 0, "code": { - "id": "astnode100012382", + "id": "astnode100012416", "name": "exports.SunPosition", "type": "Identifier", "value": "SunPosition", @@ -21339,14 +21411,14 @@ "comment": "/**\n * @brief Calculates equatorial coordinates of a Solar System body at a given time.\n *\n * Returns topocentric equatorial coordinates (right ascension and declination)\n * in one of two different systems: J2000 or true-equator-of-date.\n * Allows optional correction for aberration.\n * Always corrects for light travel time (represents the object as seen by the observer\n * with light traveling to the Earth at finite speed, not where the object is right now).\n * Topocentric refers to a position as seen by an observer on the surface of the Earth.\n * This function corrects for\n * parallax\n * of the object between a geocentric observer and a topocentric observer.\n * This is most significant for the Moon, because it is so close to the Earth.\n * However, it can have a small effect on the apparent positions of other bodies.\n *\n * @param {Body} body\n * The body for which to find equatorial coordinates.\n * Not allowed to be `\"Earth\"`.\n *\n * @param {FlexibleDateTime} date\n * Specifies the date and time at which the body is to be observed.\n *\n * @param {Observer} observer\n * The location on the Earth of the observer.\n *\n * @param {bool} ofdate\n * Pass `true` to return equatorial coordinates of date,\n * i.e. corrected for precession and nutation at the given date.\n * This is needed to get correct horizontal coordinates when you call\n * {@link Horizon}.\n * Pass `false` to return equatorial coordinates in the J2000 system.\n *\n * @param {bool} aberration\n * Pass `true` to correct for\n * aberration,\n * or `false` to leave uncorrected.\n *\n * @returns {EquatorialCoordinates}\n * The topocentric coordinates of the body as adjusted for the given observer.\n */", "meta": { "range": [ - 109416, - 109988 + 109815, + 110387 ], "filename": "astronomy.js", - "lineno": 2433, + "lineno": 2438, "columnno": 0, "code": { - "id": "astnode100012387", + "id": "astnode100012421", "name": "Equator", "type": "FunctionDeclaration", "paramnames": [ @@ -21439,14 +21511,14 @@ "comment": "", "meta": { "range": [ - 109575, - 109596 + 109974, + 109995 ], "filename": "astronomy.js", - "lineno": 2437, + "lineno": 2442, "columnno": 10, "code": { - "id": "astnode100012408", + "id": "astnode100012442", "name": "time", "type": "CallExpression", "value": "" @@ -21464,14 +21536,14 @@ "comment": "", "meta": { "range": [ - 109608, - 109645 + 110007, + 110044 ], "filename": "astronomy.js", - "lineno": 2438, + "lineno": 2443, "columnno": 10, "code": { - "id": "astnode100012414", + "id": "astnode100012448", "name": "gc_observer", "type": "CallExpression", "value": "" @@ -21489,14 +21561,14 @@ "comment": "", "meta": { "range": [ - 109657, - 109695 + 110056, + 110094 ], "filename": "astronomy.js", - "lineno": 2439, + "lineno": 2444, "columnno": 10, "code": { - "id": "astnode100012421", + "id": "astnode100012455", "name": "gc", "type": "CallExpression", "value": "" @@ -21514,14 +21586,14 @@ "comment": "", "meta": { "range": [ - 109707, - 109814 + 110106, + 110213 ], "filename": "astronomy.js", - "lineno": 2440, + "lineno": 2445, "columnno": 10, "code": { - "id": "astnode100012429", + "id": "astnode100012463", "name": "j2000", "type": "ArrayExpression", "value": "[\"\",\"\",\"\"]" @@ -21539,14 +21611,14 @@ "comment": "", "meta": { "range": [ - 109885, - 109944 + 110284, + 110343 ], "filename": "astronomy.js", - "lineno": 2447, + "lineno": 2452, "columnno": 10, "code": { - "id": "astnode100012462", + "id": "astnode100012496", "name": "datevect", "type": "CallExpression", "value": "" @@ -21564,14 +21636,14 @@ "comment": "", "meta": { "range": [ - 109989, - 110014 + 110388, + 110413 ], "filename": "astronomy.js", - "lineno": 2450, + "lineno": 2455, "columnno": 0, "code": { - "id": "astnode100012477", + "id": "astnode100012511", "name": "exports.Equator", "type": "Identifier", "value": "Equator", @@ -21588,14 +21660,14 @@ "comment": "/**\n * @brief Calculates geocentric equatorial coordinates of an observer on the surface of the Earth.\n *\n * This function calculates a vector from the center of the Earth to\n * a point on or near the surface of the Earth, expressed in equatorial\n * coordinates. It takes into account the rotation of the Earth at the given\n * time, along with the given latitude, longitude, and elevation of the observer.\n *\n * The caller may pass `ofdate` as `true` to return coordinates relative to the Earth's\n * equator at the specified time, or `false` to use the J2000 equator.\n *\n * The returned vector has components expressed in astronomical units (AU).\n * To convert to kilometers, multiply the `x`, `y`, and `z` values by\n * the constant value {@link KM_PER_AU}.\n *\n * The inverse of this function is also available: {@link VectorObserver}.\n *\n * @param {FlexibleDateTime} date\n * The date and time for which to calculate the observer's position vector.\n *\n * @param {Observer} observer\n * The geographic location of a point on or near the surface of the Earth.\n *\n * @param {boolean} ofdate\n * Selects the date of the Earth's equator in which to express the equatorial coordinates.\n * The caller may pass `false` to use the orientation of the Earth's equator\n * at noon UTC on January 1, 2000, in which case this function corrects for precession\n * and nutation of the Earth as it was at the moment specified by the `time` parameter.\n * Or the caller may pass `true` to use the Earth's equator at `time`\n * as the orientation.\n *\n * @returns {Vector}\n * An equatorial vector from the center of the Earth to the specified location\n * on (or near) the Earth's surface.\n */", "meta": { "range": [ - 111733, - 112018 + 112132, + 112417 ], "filename": "astronomy.js", - "lineno": 2486, + "lineno": 2491, "columnno": 0, "code": { - "id": "astnode100012482", + "id": "astnode100012516", "name": "ObserverVector", "type": "FunctionDeclaration", "paramnames": [ @@ -21666,14 +21738,14 @@ "comment": "", "meta": { "range": [ - 111793, - 111814 + 112192, + 112213 ], "filename": "astronomy.js", - "lineno": 2487, + "lineno": 2492, "columnno": 10, "code": { - "id": "astnode100012489", + "id": "astnode100012523", "name": "time", "type": "CallExpression", "value": "" @@ -21691,14 +21763,14 @@ "comment": "", "meta": { "range": [ - 111826, - 111852 + 112225, + 112251 ], "filename": "astronomy.js", - "lineno": 2488, + "lineno": 2493, "columnno": 10, "code": { - "id": "astnode100012495", + "id": "astnode100012529", "name": "gast", "type": "CallExpression", "value": "" @@ -21716,14 +21788,14 @@ "comment": "", "meta": { "range": [ - 111862, - 111894 + 112261, + 112293 ], "filename": "astronomy.js", - "lineno": 2489, + "lineno": 2494, "columnno": 8, "code": { - "id": "astnode100012501", + "id": "astnode100012535", "name": "ovec", "type": "MemberExpression", "value": ".pos" @@ -21741,14 +21813,14 @@ "comment": "", "meta": { "range": [ - 111921, - 111975 + 112320, + 112374 ], "filename": "astronomy.js", - "lineno": 2491, + "lineno": 2496, "columnno": 8, "code": { - "id": "astnode100012513", + "id": "astnode100012547", "name": "ovec", "type": "CallExpression", "funcscope": "ObserverVector", @@ -21767,14 +21839,14 @@ "comment": "", "meta": { "range": [ - 112019, - 112058 + 112418, + 112457 ], "filename": "astronomy.js", - "lineno": 2494, + "lineno": 2499, "columnno": 0, "code": { - "id": "astnode100012528", + "id": "astnode100012562", "name": "exports.ObserverVector", "type": "Identifier", "value": "ObserverVector", @@ -21791,14 +21863,14 @@ "comment": "/**\n * @brief Calculates the geographic location corresponding to an equatorial vector.\n *\n * This is the inverse function of {@link ObserverVector}.\n * Given a geocentric equatorial vector, it returns the geographic\n * latitude, longitude, and elevation for that vector.\n *\n * @param {Vector} vector\n * The geocentric equatorial position vector for which to find geographic coordinates.\n * The components are expressed in Astronomical Units (AU).\n * You can calculate AU by dividing kilometers by the constant {@link KM_PER_AU}.\n * The time `vector.t` determines the Earth's rotation.\n *\n * @param {boolean} ofdate\n * Selects the date of the Earth's equator in which `vector` is expressed.\n * The caller may select `false` to use the orientation of the Earth's equator\n * at noon UTC on January 1, 2000, in which case this function corrects for precession\n * and nutation of the Earth as it was at the moment specified by `vector.t`.\n * Or the caller may select `true` to use the Earth's equator at `vector.t`\n * as the orientation.\n *\n * @returns {Observer}\n * The geographic latitude, longitude, and elevation above sea level\n * that corresponds to the given equatorial vector.\n */", "meta": { "range": [ - 113305, - 113638 + 113704, + 114037 ], "filename": "astronomy.js", - "lineno": 2520, + "lineno": 2525, "columnno": 0, "code": { - "id": "astnode100012533", + "id": "astnode100012567", "name": "VectorObserver", "type": "FunctionDeclaration", "paramnames": [ @@ -21858,14 +21930,14 @@ "comment": "", "meta": { "range": [ - 113357, - 113387 + 113756, + 113786 ], "filename": "astronomy.js", - "lineno": 2521, + "lineno": 2526, "columnno": 10, "code": { - "id": "astnode100012539", + "id": "astnode100012573", "name": "gast", "type": "CallExpression", "value": "" @@ -21883,14 +21955,14 @@ "comment": "", "meta": { "range": [ - 113397, - 113434 + 113796, + 113833 ], "filename": "astronomy.js", - "lineno": 2522, + "lineno": 2527, "columnno": 8, "code": { - "id": "astnode100012547", + "id": "astnode100012581", "name": "ovec", "type": "ArrayExpression", "value": "[\"vector.x\",\"vector.y\",\"vector.z\"]" @@ -21908,66 +21980,66 @@ "comment": "", "meta": { "range": [ - 113463, - 113523 - ], - "filename": "astronomy.js", - "lineno": 2524, - "columnno": 8, - "code": { - "id": "astnode100012564", - "name": "ovec", - "type": "CallExpression", - "funcscope": "VectorObserver", - "value": "", - "paramnames": [] - } - }, - "undocumented": true, - "name": "ovec", - "longname": "VectorObserver~ovec", - "kind": "member", - "memberof": "VectorObserver", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 113533, - 113591 - ], - "filename": "astronomy.js", - "lineno": 2525, - "columnno": 8, - "code": { - "id": "astnode100012576", - "name": "ovec", - "type": "CallExpression", - "funcscope": "VectorObserver", - "value": "", - "paramnames": [] - } - }, - "undocumented": true, - "name": "ovec", - "longname": "VectorObserver~ovec", - "kind": "member", - "memberof": "VectorObserver", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 113639, - 113678 + 113862, + 113922 ], "filename": "astronomy.js", "lineno": 2529, + "columnno": 8, + "code": { + "id": "astnode100012598", + "name": "ovec", + "type": "CallExpression", + "funcscope": "VectorObserver", + "value": "", + "paramnames": [] + } + }, + "undocumented": true, + "name": "ovec", + "longname": "VectorObserver~ovec", + "kind": "member", + "memberof": "VectorObserver", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 113932, + 113990 + ], + "filename": "astronomy.js", + "lineno": 2530, + "columnno": 8, + "code": { + "id": "astnode100012610", + "name": "ovec", + "type": "CallExpression", + "funcscope": "VectorObserver", + "value": "", + "paramnames": [] + } + }, + "undocumented": true, + "name": "ovec", + "longname": "VectorObserver~ovec", + "kind": "member", + "memberof": "VectorObserver", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 114038, + 114077 + ], + "filename": "astronomy.js", + "lineno": 2534, "columnno": 0, "code": { - "id": "astnode100012593", + "id": "astnode100012627", "name": "exports.VectorObserver", "type": "Identifier", "value": "VectorObserver", @@ -21984,14 +22056,14 @@ "comment": "/**\n * @brief Calculates the gravitational acceleration experienced by an observer on the Earth.\n *\n * This function implements the WGS 84 Ellipsoidal Gravity Formula.\n * The result is a combination of inward gravitational acceleration\n * with outward centrifugal acceleration, as experienced by an observer\n * in the Earth's rotating frame of reference.\n * The resulting value increases toward the Earth's poles and decreases\n * toward the equator, consistent with changes of the weight measured\n * by a spring scale of a fixed mass moved to different latitudes and heights\n * on the Earth.\n *\n * @param {number} latitude\n * The latitude of the observer in degrees north or south of the equator.\n * By formula symmetry, positive latitudes give the same answer as negative\n * latitudes, so the sign does not matter.\n *\n * @param {number} height\n * The height above the sea level geoid in meters.\n * No range checking is done; however, accuracy is only valid in the\n * range 0 to 100000 meters.\n *\n * @returns {number}\n * The effective gravitational acceleration expressed in meters per second squared [m/s^2].\n */", "meta": { "range": [ - 114829, - 115150 + 115228, + 115549 ], "filename": "astronomy.js", - "lineno": 2555, + "lineno": 2560, "columnno": 0, "code": { - "id": "astnode100012598", + "id": "astnode100012632", "name": "ObserverGravity", "type": "FunctionDeclaration", "paramnames": [ @@ -22052,14 +22124,14 @@ "comment": "", "meta": { "range": [ - 114884, - 114924 + 115283, + 115323 ], "filename": "astronomy.js", - "lineno": 2556, + "lineno": 2561, "columnno": 10, "code": { - "id": "astnode100012604", + "id": "astnode100012638", "name": "s", "type": "CallExpression", "value": "" @@ -22077,14 +22149,14 @@ "comment": "", "meta": { "range": [ - 114936, - 114946 + 115335, + 115345 ], "filename": "astronomy.js", - "lineno": 2557, + "lineno": 2562, "columnno": 10, "code": { - "id": "astnode100012616", + "id": "astnode100012650", "name": "s2", "type": "BinaryExpression", "value": "" @@ -22102,14 +22174,14 @@ "comment": "", "meta": { "range": [ - 114958, - 115048 + 115357, + 115447 ], "filename": "astronomy.js", - "lineno": 2558, + "lineno": 2563, "columnno": 10, "code": { - "id": "astnode100012622", + "id": "astnode100012656", "name": "g0", "type": "BinaryExpression", "value": "" @@ -22127,14 +22199,14 @@ "comment": "", "meta": { "range": [ - 115151, - 115192 + 115550, + 115591 ], "filename": "astronomy.js", - "lineno": 2561, + "lineno": 2566, "columnno": 0, "code": { - "id": "astnode100012660", + "id": "astnode100012694", "name": "exports.ObserverGravity", "type": "Identifier", "value": "ObserverGravity", @@ -22151,14 +22223,14 @@ "comment": "", "meta": { "range": [ - 115194, - 115782 + 115593, + 116181 ], "filename": "astronomy.js", - "lineno": 2562, + "lineno": 2567, "columnno": 0, "code": { - "id": "astnode100012665", + "id": "astnode100012699", "name": "RotateEquatorialToEcliptic", "type": "FunctionDeclaration", "paramnames": [ @@ -22188,14 +22260,14 @@ "comment": "", "meta": { "range": [ - 115322, - 115332 + 115721, + 115731 ], "filename": "astronomy.js", - "lineno": 2564, + "lineno": 2569, "columnno": 10, "code": { - "id": "astnode100012672", + "id": "astnode100012706", "name": "ex", "type": "MemberExpression", "value": "equ.x" @@ -22213,14 +22285,14 @@ "comment": "", "meta": { "range": [ - 115344, - 115380 + 115743, + 115779 ], "filename": "astronomy.js", - "lineno": 2565, + "lineno": 2570, "columnno": 10, "code": { - "id": "astnode100012678", + "id": "astnode100012712", "name": "ey", "type": "BinaryExpression", "value": "" @@ -22238,14 +22310,14 @@ "comment": "", "meta": { "range": [ - 115392, - 115429 + 115791, + 115828 ], "filename": "astronomy.js", - "lineno": 2566, + "lineno": 2571, "columnno": 10, "code": { - "id": "astnode100012692", + "id": "astnode100012726", "name": "ez", "type": "BinaryExpression", "value": "" @@ -22263,14 +22335,14 @@ "comment": "", "meta": { "range": [ - 115441, - 115478 + 115840, + 115877 ], "filename": "astronomy.js", - "lineno": 2567, + "lineno": 2572, "columnno": 10, "code": { - "id": "astnode100012707", + "id": "astnode100012741", "name": "xyproj", "type": "CallExpression", "value": "" @@ -22288,14 +22360,14 @@ "comment": "", "meta": { "range": [ - 115488, - 115496 + 115887, + 115895 ], "filename": "astronomy.js", - "lineno": 2568, + "lineno": 2573, "columnno": 8, "code": { - "id": "astnode100012721", + "id": "astnode100012755", "name": "elon", "type": "Literal", "value": 0 @@ -22313,14 +22385,14 @@ "comment": "", "meta": { "range": [ - 115528, - 115571 + 115927, + 115970 ], "filename": "astronomy.js", - "lineno": 2570, + "lineno": 2575, "columnno": 8, "code": { - "id": "astnode100012730", + "id": "astnode100012764", "name": "elon", "type": "BinaryExpression", "funcscope": "RotateEquatorialToEcliptic", @@ -22339,14 +22411,14 @@ "comment": "", "meta": { "range": [ - 115607, - 115618 + 116006, + 116017 ], "filename": "astronomy.js", - "lineno": 2572, + "lineno": 2577, "columnno": 12, "code": { - "id": "astnode100012747", + "id": "astnode100012781", "name": "elon", "type": "Literal", "funcscope": "RotateEquatorialToEcliptic", @@ -22365,14 +22437,14 @@ "comment": "", "meta": { "range": [ - 115634, - 115681 + 116033, + 116080 ], "filename": "astronomy.js", - "lineno": 2574, + "lineno": 2579, "columnno": 8, "code": { - "id": "astnode100012751", + "id": "astnode100012785", "name": "elat", "type": "BinaryExpression", "value": "" @@ -22390,14 +22462,14 @@ "comment": "", "meta": { "range": [ - 115691, - 115726 + 116090, + 116125 ], "filename": "astronomy.js", - "lineno": 2575, + "lineno": 2580, "columnno": 8, "code": { - "id": "astnode100012764", + "id": "astnode100012798", "name": "ecl", "type": "NewExpression", "value": "" @@ -22415,14 +22487,14 @@ "comment": "/**\n * @brief Converts equatorial Cartesian coordinates to ecliptic Cartesian and angular coordinates.\n *\n * Given J2000 equatorial Cartesian coordinates,\n * returns J2000 ecliptic latitude, longitude, and cartesian coordinates.\n * You can call {@link GeoVector} and pass the resulting vector to this function.\n *\n * @param {Vector} equ\n * A vector in the J2000 equatorial coordinate system.\n *\n * @returns {EclipticCoordinates}\n */", "meta": { "range": [ - 116221, - 116708 + 116620, + 117107 ], "filename": "astronomy.js", - "lineno": 2590, + "lineno": 2595, "columnno": 0, "code": { - "id": "astnode100012780", + "id": "astnode100012814", "name": "Ecliptic", "type": "FunctionDeclaration", "paramnames": [ @@ -22472,14 +22544,14 @@ "comment": "", "meta": { "range": [ - 116498, - 116553 + 116897, + 116952 ], "filename": "astronomy.js", - "lineno": 2595, + "lineno": 2600, "columnno": 8, "code": { - "id": "astnode100012790", + "id": "astnode100012824", "name": "ob2000", "type": "BinaryExpression", "funcscope": "Ecliptic", @@ -22498,14 +22570,14 @@ "comment": "", "meta": { "range": [ - 116563, - 116592 + 116962, + 116991 ], "filename": "astronomy.js", - "lineno": 2596, + "lineno": 2601, "columnno": 8, "code": { - "id": "astnode100012804", + "id": "astnode100012838", "name": "cos_ob2000", "type": "CallExpression", "funcscope": "Ecliptic", @@ -22524,14 +22596,14 @@ "comment": "", "meta": { "range": [ - 116602, - 116631 + 117001, + 117030 ], "filename": "astronomy.js", - "lineno": 2597, + "lineno": 2602, "columnno": 8, "code": { - "id": "astnode100012812", + "id": "astnode100012846", "name": "sin_ob2000", "type": "CallExpression", "funcscope": "Ecliptic", @@ -22550,14 +22622,14 @@ "comment": "", "meta": { "range": [ - 116709, - 116736 + 117108, + 117135 ], "filename": "astronomy.js", - "lineno": 2601, + "lineno": 2606, "columnno": 0, "code": { - "id": "astnode100012826", + "id": "astnode100012860", "name": "exports.Ecliptic", "type": "Identifier", "value": "Ecliptic", @@ -22574,14 +22646,14 @@ "comment": "/**\n * @brief Calculates the geocentric Cartesian coordinates for the Moon in the J2000 equatorial system.\n *\n * Based on the Nautical Almanac Office's Improved Lunar Ephemeris of 1954,\n * which in turn derives from E. W. Brown's lunar theories.\n * Adapted from Turbo Pascal code from the book\n * Astronomy on the Personal Computer\n * by Montenbruck and Pfleger.\n *\n * @param {FlexibleDateTime} date\n * The date and time for which to calculate the Moon's geocentric position.\n *\n * @returns {Vector}\n */", "meta": { "range": [ - 117315, - 118050 + 117714, + 118449 ], "filename": "astronomy.js", - "lineno": 2616, + "lineno": 2621, "columnno": 0, "code": { - "id": "astnode100012831", + "id": "astnode100012865", "name": "GeoMoon", "type": "FunctionDeclaration", "paramnames": [ @@ -22634,14 +22706,14 @@ "comment": "", "meta": { "range": [ - 117348, - 117369 + 117747, + 117768 ], "filename": "astronomy.js", - "lineno": 2617, + "lineno": 2622, "columnno": 8, "code": { - "id": "astnode100012836", + "id": "astnode100012870", "name": "time", "type": "CallExpression", "value": "" @@ -22659,14 +22731,14 @@ "comment": "", "meta": { "range": [ - 117379, - 117400 + 117778, + 117799 ], "filename": "astronomy.js", - "lineno": 2618, + "lineno": 2623, "columnno": 8, "code": { - "id": "astnode100012842", + "id": "astnode100012876", "name": "moon", "type": "CallExpression", "value": "" @@ -22684,14 +22756,14 @@ "comment": "", "meta": { "range": [ - 117483, - 117545 + 117882, + 117944 ], "filename": "astronomy.js", - "lineno": 2620, + "lineno": 2625, "columnno": 8, "code": { - "id": "astnode100012848", + "id": "astnode100012882", "name": "dist_cos_lat", "type": "BinaryExpression", "value": "" @@ -22709,14 +22781,14 @@ "comment": "", "meta": { "range": [ - 117555, - 117732 + 117954, + 118131 ], "filename": "astronomy.js", - "lineno": 2621, + "lineno": 2626, "columnno": 8, "code": { - "id": "astnode100012862", + "id": "astnode100012896", "name": "gepos", "type": "ArrayExpression", "value": "[\"\",\"\",\"\"]" @@ -22734,14 +22806,14 @@ "comment": "", "meta": { "range": [ - 117835, - 117867 + 118234, + 118266 ], "filename": "astronomy.js", - "lineno": 2627, + "lineno": 2632, "columnno": 8, "code": { - "id": "astnode100012895", + "id": "astnode100012929", "name": "mpos1", "type": "CallExpression", "value": "" @@ -22759,14 +22831,14 @@ "comment": "", "meta": { "range": [ - 117930, - 117988 + 118329, + 118387 ], "filename": "astronomy.js", - "lineno": 2629, + "lineno": 2634, "columnno": 8, "code": { - "id": "astnode100012902", + "id": "astnode100012936", "name": "mpos2", "type": "CallExpression", "value": "" @@ -22784,14 +22856,14 @@ "comment": "", "meta": { "range": [ - 118051, - 118076 + 118450, + 118475 ], "filename": "astronomy.js", - "lineno": 2632, + "lineno": 2637, "columnno": 0, "code": { - "id": "astnode100012925", + "id": "astnode100012959", "name": "exports.GeoMoon", "type": "Identifier", "value": "GeoMoon", @@ -22808,14 +22880,14 @@ "comment": "", "meta": { "range": [ - 118078, - 118543 + 118477, + 118942 ], "filename": "astronomy.js", - "lineno": 2633, + "lineno": 2638, "columnno": 0, "code": { - "id": "astnode100012930", + "id": "astnode100012964", "name": "VsopFormula", "type": "FunctionDeclaration", "paramnames": [ @@ -22844,14 +22916,14 @@ "comment": "", "meta": { "range": [ - 118134, - 118144 + 118533, + 118543 ], "filename": "astronomy.js", - "lineno": 2634, + "lineno": 2639, "columnno": 8, "code": { - "id": "astnode100012937", + "id": "astnode100012971", "name": "tpower", "type": "Literal", "value": 1 @@ -22869,14 +22941,14 @@ "comment": "", "meta": { "range": [ - 118154, - 118163 + 118553, + 118562 ], "filename": "astronomy.js", - "lineno": 2635, + "lineno": 2640, "columnno": 8, "code": { - "id": "astnode100012941", + "id": "astnode100012975", "name": "coord", "type": "Literal", "value": 0 @@ -22894,14 +22966,14 @@ "comment": "", "meta": { "range": [ - 118178, - 118184 + 118577, + 118583 ], "filename": "astronomy.js", - "lineno": 2636, + "lineno": 2641, "columnno": 13, "code": { - "id": "astnode100012946", + "id": "astnode100012980", "name": "series" } }, @@ -22917,14 +22989,14 @@ "comment": "", "meta": { "range": [ - 118211, - 118218 + 118610, + 118617 ], "filename": "astronomy.js", - "lineno": 2637, + "lineno": 2642, "columnno": 12, "code": { - "id": "astnode100012951", + "id": "astnode100012985", "name": "sum", "type": "Literal", "value": 0 @@ -22942,14 +23014,14 @@ "comment": "", "meta": { "range": [ - 118279, - 118320 + 118678, + 118719 ], "filename": "astronomy.js", - "lineno": 2639, + "lineno": 2644, "columnno": 12, "code": { - "id": "astnode100012960", + "id": "astnode100012994", "name": "sum", "type": "BinaryExpression", "funcscope": "VsopFormula", @@ -22968,14 +23040,14 @@ "comment": "", "meta": { "range": [ - 118334, - 118353 + 118733, + 118752 ], "filename": "astronomy.js", - "lineno": 2640, + "lineno": 2645, "columnno": 12, "code": { - "id": "astnode100012974", + "id": "astnode100013008", "name": "incr", "type": "BinaryExpression", "value": "" @@ -22993,14 +23065,14 @@ "comment": "", "meta": { "range": [ - 118392, - 118403 + 118791, + 118802 ], "filename": "astronomy.js", - "lineno": 2642, + "lineno": 2647, "columnno": 12, "code": { - "id": "astnode100012982", + "id": "astnode100013016", "name": "incr", "type": "Identifier", "funcscope": "VsopFormula", @@ -23019,14 +23091,14 @@ "comment": "", "meta": { "range": [ - 118482, - 118495 + 118881, + 118894 ], "filename": "astronomy.js", - "lineno": 2643, + "lineno": 2648, "columnno": 8, "code": { - "id": "astnode100012986", + "id": "astnode100013020", "name": "coord", "type": "Identifier", "funcscope": "VsopFormula", @@ -23045,14 +23117,14 @@ "comment": "", "meta": { "range": [ - 118505, - 118516 + 118904, + 118915 ], "filename": "astronomy.js", - "lineno": 2644, + "lineno": 2649, "columnno": 8, "code": { - "id": "astnode100012990", + "id": "astnode100013024", "name": "tpower", "type": "Identifier", "funcscope": "VsopFormula", @@ -23071,14 +23143,14 @@ "comment": "", "meta": { "range": [ - 118544, - 119129 + 118943, + 119528 ], "filename": "astronomy.js", - "lineno": 2648, + "lineno": 2653, "columnno": 0, "code": { - "id": "astnode100012995", + "id": "astnode100013029", "name": "VsopDeriv", "type": "FunctionDeclaration", "paramnames": [ @@ -23109,14 +23181,14 @@ "comment": "", "meta": { "range": [ - 118585, - 118595 + 118984, + 118994 ], "filename": "astronomy.js", - "lineno": 2649, + "lineno": 2654, "columnno": 8, "code": { - "id": "astnode100013001", + "id": "astnode100013035", "name": "tpower", "type": "Literal", "value": 1 @@ -23134,14 +23206,14 @@ "comment": "", "meta": { "range": [ - 118612, - 118622 + 119011, + 119021 ], "filename": "astronomy.js", - "lineno": 2650, + "lineno": 2655, "columnno": 8, "code": { - "id": "astnode100013005", + "id": "astnode100013039", "name": "dpower", "type": "Literal", "value": 0 @@ -23159,14 +23231,14 @@ "comment": "", "meta": { "range": [ - 118643, - 118652 + 119042, + 119051 ], "filename": "astronomy.js", - "lineno": 2651, + "lineno": 2656, "columnno": 8, "code": { - "id": "astnode100013009", + "id": "astnode100013043", "name": "deriv", "type": "Literal", "value": 0 @@ -23184,14 +23256,14 @@ "comment": "", "meta": { "range": [ - 118662, - 118667 + 119061, + 119066 ], "filename": "astronomy.js", - "lineno": 2652, + "lineno": 2657, "columnno": 8, "code": { - "id": "astnode100013013", + "id": "astnode100013047", "name": "s", "type": "Literal", "value": 0 @@ -23209,14 +23281,14 @@ "comment": "", "meta": { "range": [ - 118682, - 118688 + 119081, + 119087 ], "filename": "astronomy.js", - "lineno": 2653, + "lineno": 2658, "columnno": 13, "code": { - "id": "astnode100013018", + "id": "astnode100013052", "name": "series" } }, @@ -23232,14 +23304,14 @@ "comment": "", "meta": { "range": [ - 118715, - 118726 + 119114, + 119125 ], "filename": "astronomy.js", - "lineno": 2654, + "lineno": 2659, "columnno": 12, "code": { - "id": "astnode100013023", + "id": "astnode100013057", "name": "sin_sum", "type": "Literal", "value": 0 @@ -23257,14 +23329,14 @@ "comment": "", "meta": { "range": [ - 118740, - 118751 + 119139, + 119150 ], "filename": "astronomy.js", - "lineno": 2655, + "lineno": 2660, "columnno": 12, "code": { - "id": "astnode100013027", + "id": "astnode100013061", "name": "cos_sum", "type": "Literal", "value": 0 @@ -23282,14 +23354,14 @@ "comment": "", "meta": { "range": [ - 118818, - 118843 + 119217, + 119242 ], "filename": "astronomy.js", - "lineno": 2657, + "lineno": 2662, "columnno": 16, "code": { - "id": "astnode100013037", + "id": "astnode100013071", "name": "angle", "type": "BinaryExpression", "value": "" @@ -23307,14 +23379,14 @@ "comment": "", "meta": { "range": [ - 118857, - 118897 + 119256, + 119296 ], "filename": "astronomy.js", - "lineno": 2658, + "lineno": 2663, "columnno": 12, "code": { - "id": "astnode100013045", + "id": "astnode100013079", "name": "sin_sum", "type": "BinaryExpression", "funcscope": "VsopDeriv", @@ -23333,14 +23405,14 @@ "comment": "", "meta": { "range": [ - 118938, - 118971 + 119337, + 119370 ], "filename": "astronomy.js", - "lineno": 2660, + "lineno": 2665, "columnno": 16, "code": { - "id": "astnode100013061", + "id": "astnode100013095", "name": "cos_sum", "type": "BinaryExpression", "funcscope": "VsopDeriv", @@ -23359,14 +23431,14 @@ "comment": "", "meta": { "range": [ - 118991, - 119043 + 119390, + 119442 ], "filename": "astronomy.js", - "lineno": 2662, + "lineno": 2667, "columnno": 8, "code": { - "id": "astnode100013071", + "id": "astnode100013105", "name": "deriv", "type": "BinaryExpression", "funcscope": "VsopDeriv", @@ -23385,14 +23457,14 @@ "comment": "", "meta": { "range": [ - 119053, - 119068 + 119452, + 119467 ], "filename": "astronomy.js", - "lineno": 2663, + "lineno": 2668, "columnno": 8, "code": { - "id": "astnode100013083", + "id": "astnode100013117", "name": "dpower", "type": "Identifier", "funcscope": "VsopDeriv", @@ -23411,14 +23483,14 @@ "comment": "", "meta": { "range": [ - 119078, - 119089 + 119477, + 119488 ], "filename": "astronomy.js", - "lineno": 2664, + "lineno": 2669, "columnno": 8, "code": { - "id": "astnode100013087", + "id": "astnode100013121", "name": "tpower", "type": "Identifier", "funcscope": "VsopDeriv", @@ -23437,14 +23509,14 @@ "comment": "", "meta": { "range": [ - 119136, - 119164 + 119535, + 119563 ], "filename": "astronomy.js", - "lineno": 2669, + "lineno": 2674, "columnno": 6, "code": { - "id": "astnode100013096", + "id": "astnode100013130", "name": "DAYS_PER_MILLENNIUM", "type": "Literal", "value": 365250 @@ -23461,14 +23533,14 @@ "comment": "", "meta": { "range": [ - 119172, - 119185 + 119571, + 119584 ], "filename": "astronomy.js", - "lineno": 2670, + "lineno": 2675, "columnno": 6, "code": { - "id": "astnode100013100", + "id": "astnode100013134", "name": "LON_INDEX", "type": "Literal", "value": 0 @@ -23485,14 +23557,14 @@ "comment": "", "meta": { "range": [ - 119193, - 119206 + 119592, + 119605 ], "filename": "astronomy.js", - "lineno": 2671, + "lineno": 2676, "columnno": 6, "code": { - "id": "astnode100013104", + "id": "astnode100013138", "name": "LAT_INDEX", "type": "Literal", "value": 1 @@ -23509,14 +23581,14 @@ "comment": "", "meta": { "range": [ - 119214, - 119227 + 119613, + 119626 ], "filename": "astronomy.js", - "lineno": 2672, + "lineno": 2677, "columnno": 6, "code": { - "id": "astnode100013108", + "id": "astnode100013142", "name": "RAD_INDEX", "type": "Literal", "value": 2 @@ -23533,14 +23605,14 @@ "comment": "", "meta": { "range": [ - 119229, - 119575 + 119628, + 119974 ], "filename": "astronomy.js", - "lineno": 2673, + "lineno": 2678, "columnno": 0, "code": { - "id": "astnode100013111", + "id": "astnode100013145", "name": "VsopRotate", "type": "FunctionDeclaration", "paramnames": [ @@ -23559,14 +23631,14 @@ "comment": "", "meta": { "range": [ - 119576, - 119913 + 119975, + 120312 ], "filename": "astronomy.js", - "lineno": 2677, + "lineno": 2682, "columnno": 0, "code": { - "id": "astnode100013162", + "id": "astnode100013196", "name": "VsopSphereToRect", "type": "FunctionDeclaration", "paramnames": [ @@ -23592,14 +23664,14 @@ "comment": "", "meta": { "range": [ - 119704, - 119737 + 120103, + 120136 ], "filename": "astronomy.js", - "lineno": 2679, + "lineno": 2684, "columnno": 10, "code": { - "id": "astnode100013169", + "id": "astnode100013203", "name": "r_coslat", "type": "BinaryExpression", "value": "" @@ -23617,14 +23689,14 @@ "comment": "", "meta": { "range": [ - 119749, - 119771 + 120148, + 120170 ], "filename": "astronomy.js", - "lineno": 2680, + "lineno": 2685, "columnno": 10, "code": { - "id": "astnode100013179", + "id": "astnode100013213", "name": "coslon", "type": "CallExpression", "value": "" @@ -23642,14 +23714,14 @@ "comment": "", "meta": { "range": [ - 119783, - 119805 + 120182, + 120204 ], "filename": "astronomy.js", - "lineno": 2681, + "lineno": 2686, "columnno": 10, "code": { - "id": "astnode100013187", + "id": "astnode100013221", "name": "sinlon", "type": "CallExpression", "value": "" @@ -23667,14 +23739,14 @@ "comment": "", "meta": { "range": [ - 119914, - 120288 + 120313, + 120687 ], "filename": "astronomy.js", - "lineno": 2688, + "lineno": 2693, "columnno": 0, "code": { - "id": "astnode100013209", + "id": "astnode100013243", "name": "CalcVsop", "type": "FunctionDeclaration", "paramnames": [ @@ -23701,14 +23773,14 @@ "comment": "", "meta": { "range": [ - 119957, - 119990 + 120356, + 120389 ], "filename": "astronomy.js", - "lineno": 2689, + "lineno": 2694, "columnno": 10, "code": { - "id": "astnode100013215", + "id": "astnode100013249", "name": "t", "type": "BinaryExpression", "value": "" @@ -23726,14 +23798,14 @@ "comment": "", "meta": { "range": [ - 120026, - 120070 + 120425, + 120469 ], "filename": "astronomy.js", - "lineno": 2690, + "lineno": 2695, "columnno": 10, "code": { - "id": "astnode100013223", + "id": "astnode100013257", "name": "lon", "type": "CallExpression", "value": "" @@ -23751,14 +23823,14 @@ "comment": "", "meta": { "range": [ - 120082, - 120127 + 120481, + 120526 ], "filename": "astronomy.js", - "lineno": 2691, + "lineno": 2696, "columnno": 10, "code": { - "id": "astnode100013233", + "id": "astnode100013267", "name": "lat", "type": "CallExpression", "value": "" @@ -23776,14 +23848,14 @@ "comment": "", "meta": { "range": [ - 120139, - 120184 + 120538, + 120583 ], "filename": "astronomy.js", - "lineno": 2692, + "lineno": 2697, "columnno": 10, "code": { - "id": "astnode100013243", + "id": "astnode100013277", "name": "rad", "type": "CallExpression", "value": "" @@ -23801,14 +23873,14 @@ "comment": "", "meta": { "range": [ - 120196, - 120235 + 120595, + 120634 ], "filename": "astronomy.js", - "lineno": 2693, + "lineno": 2698, "columnno": 10, "code": { - "id": "astnode100013253", + "id": "astnode100013287", "name": "eclip", "type": "CallExpression", "value": "" @@ -23826,14 +23898,14 @@ "comment": "", "meta": { "range": [ - 120289, - 121839 + 120688, + 122238 ], "filename": "astronomy.js", - "lineno": 2696, + "lineno": 2701, "columnno": 0, "code": { - "id": "astnode100013268", + "id": "astnode100013302", "name": "CalcVsopPosVel", "type": "FunctionDeclaration", "paramnames": [ @@ -23873,14 +23945,14 @@ "comment": "", "meta": { "range": [ - 120336, - 120364 + 120735, + 120763 ], "filename": "astronomy.js", - "lineno": 2697, + "lineno": 2702, "columnno": 10, "code": { - "id": "astnode100013274", + "id": "astnode100013308", "name": "t", "type": "BinaryExpression", "value": "" @@ -23898,14 +23970,14 @@ "comment": "", "meta": { "range": [ - 120469, - 120513 + 120868, + 120912 ], "filename": "astronomy.js", - "lineno": 2699, + "lineno": 2704, "columnno": 10, "code": { - "id": "astnode100013280", + "id": "astnode100013314", "name": "lon", "type": "CallExpression", "value": "" @@ -23923,14 +23995,14 @@ "comment": "", "meta": { "range": [ - 120525, - 120570 + 120924, + 120969 ], "filename": "astronomy.js", - "lineno": 2700, + "lineno": 2705, "columnno": 10, "code": { - "id": "astnode100013290", + "id": "astnode100013324", "name": "lat", "type": "CallExpression", "value": "" @@ -23948,14 +24020,14 @@ "comment": "", "meta": { "range": [ - 120582, - 120627 + 120981, + 121026 ], "filename": "astronomy.js", - "lineno": 2701, + "lineno": 2706, "columnno": 10, "code": { - "id": "astnode100013300", + "id": "astnode100013334", "name": "rad", "type": "CallExpression", "value": "" @@ -23973,14 +24045,14 @@ "comment": "", "meta": { "range": [ - 120639, - 120679 + 121038, + 121078 ], "filename": "astronomy.js", - "lineno": 2702, + "lineno": 2707, "columnno": 10, "code": { - "id": "astnode100013310", + "id": "astnode100013344", "name": "dlon_dt", "type": "CallExpression", "value": "" @@ -23998,14 +24070,14 @@ "comment": "", "meta": { "range": [ - 120691, - 120731 + 121090, + 121130 ], "filename": "astronomy.js", - "lineno": 2703, + "lineno": 2708, "columnno": 10, "code": { - "id": "astnode100013319", + "id": "astnode100013353", "name": "dlat_dt", "type": "CallExpression", "value": "" @@ -24023,14 +24095,14 @@ "comment": "", "meta": { "range": [ - 120743, - 120783 + 121142, + 121182 ], "filename": "astronomy.js", - "lineno": 2704, + "lineno": 2709, "columnno": 10, "code": { - "id": "astnode100013328", + "id": "astnode100013362", "name": "drad_dt", "type": "CallExpression", "value": "" @@ -24048,14 +24120,14 @@ "comment": "", "meta": { "range": [ - 120917, - 120939 + 121316, + 121338 ], "filename": "astronomy.js", - "lineno": 2707, + "lineno": 2712, "columnno": 10, "code": { - "id": "astnode100013337", + "id": "astnode100013371", "name": "coslon", "type": "CallExpression", "value": "" @@ -24073,14 +24145,14 @@ "comment": "", "meta": { "range": [ - 120951, - 120973 + 121350, + 121372 ], "filename": "astronomy.js", - "lineno": 2708, + "lineno": 2713, "columnno": 10, "code": { - "id": "astnode100013345", + "id": "astnode100013379", "name": "sinlon", "type": "CallExpression", "value": "" @@ -24098,14 +24170,14 @@ "comment": "", "meta": { "range": [ - 120985, - 121007 + 121384, + 121406 ], "filename": "astronomy.js", - "lineno": 2709, + "lineno": 2714, "columnno": 10, "code": { - "id": "astnode100013353", + "id": "astnode100013387", "name": "coslat", "type": "CallExpression", "value": "" @@ -24123,14 +24195,14 @@ "comment": "", "meta": { "range": [ - 121019, - 121041 + 121418, + 121440 ], "filename": "astronomy.js", - "lineno": 2710, + "lineno": 2715, "columnno": 10, "code": { - "id": "astnode100013361", + "id": "astnode100013395", "name": "sinlat", "type": "CallExpression", "value": "" @@ -24148,14 +24220,14 @@ "comment": "", "meta": { "range": [ - 121053, - 121176 + 121452, + 121575 ], "filename": "astronomy.js", - "lineno": 2711, + "lineno": 2716, "columnno": 10, "code": { - "id": "astnode100013369", + "id": "astnode100013403", "name": "vx", "type": "BinaryExpression", "value": "" @@ -24173,14 +24245,14 @@ "comment": "", "meta": { "range": [ - 121188, - 121311 + 121587, + 121710 ], "filename": "astronomy.js", - "lineno": 2714, + "lineno": 2719, "columnno": 10, "code": { - "id": "astnode100013394", + "id": "astnode100013428", "name": "vy", "type": "BinaryExpression", "value": "" @@ -24198,14 +24270,14 @@ "comment": "", "meta": { "range": [ - 121323, - 121384 + 121722, + 121783 ], "filename": "astronomy.js", - "lineno": 2717, + "lineno": 2722, "columnno": 10, "code": { - "id": "astnode100013419", + "id": "astnode100013453", "name": "vz", "type": "BinaryExpression", "value": "" @@ -24223,14 +24295,14 @@ "comment": "", "meta": { "range": [ - 121396, - 121439 + 121795, + 121838 ], "filename": "astronomy.js", - "lineno": 2719, + "lineno": 2724, "columnno": 10, "code": { - "id": "astnode100013432", + "id": "astnode100013466", "name": "eclip_pos", "type": "CallExpression", "value": "" @@ -24248,14 +24320,14 @@ "comment": "", "meta": { "range": [ - 121512, - 121632 + 121911, + 122031 ], "filename": "astronomy.js", - "lineno": 2721, + "lineno": 2726, "columnno": 10, "code": { - "id": "astnode100013440", + "id": "astnode100013474", "name": "eclip_vel", "type": "ArrayExpression", "value": "[\"\",\"\",\"\"]" @@ -24273,14 +24345,14 @@ "comment": "", "meta": { "range": [ - 121711, - 121742 + 122110, + 122141 ], "filename": "astronomy.js", - "lineno": 2727, + "lineno": 2732, "columnno": 10, "code": { - "id": "astnode100013453", + "id": "astnode100013487", "name": "equ_pos", "type": "CallExpression", "value": "" @@ -24298,14 +24370,14 @@ "comment": "", "meta": { "range": [ - 121754, - 121785 + 122153, + 122184 ], "filename": "astronomy.js", - "lineno": 2728, + "lineno": 2733, "columnno": 10, "code": { - "id": "astnode100013459", + "id": "astnode100013493", "name": "equ_vel", "type": "CallExpression", "value": "" @@ -24323,14 +24395,14 @@ "comment": "", "meta": { "range": [ - 121840, - 122077 + 122239, + 122476 ], "filename": "astronomy.js", - "lineno": 2731, + "lineno": 2736, "columnno": 0, "code": { - "id": "astnode100013470", + "id": "astnode100013504", "name": "AdjustBarycenter", "type": "FunctionDeclaration", "paramnames": [ @@ -24359,14 +24431,14 @@ "comment": "", "meta": { "range": [ - 121902, - 121934 + 122301, + 122333 ], "filename": "astronomy.js", - "lineno": 2732, + "lineno": 2737, "columnno": 10, "code": { - "id": "astnode100013478", + "id": "astnode100013512", "name": "shift", "type": "BinaryExpression", "value": "" @@ -24384,14 +24456,14 @@ "comment": "", "meta": { "range": [ - 121946, - 121981 + 122345, + 122380 ], "filename": "astronomy.js", - "lineno": 2733, + "lineno": 2738, "columnno": 10, "code": { - "id": "astnode100013486", + "id": "astnode100013520", "name": "planet", "type": "CallExpression", "value": "" @@ -24409,14 +24481,14 @@ "comment": "", "meta": { "range": [ - 121987, - 122012 + 122386, + 122411 ], "filename": "astronomy.js", - "lineno": 2734, + "lineno": 2739, "columnno": 4, "code": { - "id": "astnode100013495", + "id": "astnode100013529", "name": "ssb.x", "type": "BinaryExpression", "value": "", @@ -24434,14 +24506,14 @@ "comment": "", "meta": { "range": [ - 122018, - 122043 + 122417, + 122442 ], "filename": "astronomy.js", - "lineno": 2735, + "lineno": 2740, "columnno": 4, "code": { - "id": "astnode100013505", + "id": "astnode100013539", "name": "ssb.y", "type": "BinaryExpression", "value": "", @@ -24459,14 +24531,14 @@ "comment": "", "meta": { "range": [ - 122049, - 122074 + 122448, + 122473 ], "filename": "astronomy.js", - "lineno": 2736, + "lineno": 2741, "columnno": 4, "code": { - "id": "astnode100013515", + "id": "astnode100013549", "name": "ssb.z", "type": "BinaryExpression", "value": "", @@ -24484,14 +24556,14 @@ "comment": "", "meta": { "range": [ - 122078, - 122419 + 122477, + 122818 ], "filename": "astronomy.js", - "lineno": 2738, + "lineno": 2743, "columnno": 0, "code": { - "id": "astnode100013524", + "id": "astnode100013558", "name": "CalcSolarSystemBarycenter", "type": "FunctionDeclaration", "paramnames": [ @@ -24513,14 +24585,14 @@ "comment": "", "meta": { "range": [ - 122131, - 122168 + 122530, + 122567 ], "filename": "astronomy.js", - "lineno": 2739, + "lineno": 2744, "columnno": 10, "code": { - "id": "astnode100013529", + "id": "astnode100013563", "name": "ssb", "type": "NewExpression", "value": "" @@ -24538,14 +24610,14 @@ "comment": "", "meta": { "range": [ - 122506, - 122527 + 122905, + 122926 ], "filename": "astronomy.js", - "lineno": 2747, + "lineno": 2752, "columnno": 6, "code": { - "id": "astnode100013576", + "id": "astnode100013610", "name": "PLUTO_NUM_STATES", "type": "Literal", "value": 41 @@ -24562,14 +24634,14 @@ "comment": "", "meta": { "range": [ - 122535, - 122558 + 122934, + 122957 ], "filename": "astronomy.js", - "lineno": 2748, + "lineno": 2753, "columnno": 6, "code": { - "id": "astnode100013580", + "id": "astnode100013614", "name": "PLUTO_TIME_STEP", "type": "Literal", "value": 36500 @@ -24586,14 +24658,14 @@ "comment": "", "meta": { "range": [ - 122566, - 128299 + 122965, + 128698 ], "filename": "astronomy.js", - "lineno": 2749, + "lineno": 2754, "columnno": 6, "code": { - "id": "astnode100013584", + "id": "astnode100013618", "name": "PlutoStateTable", "type": "ArrayExpression", "value": "[\"[-730000,\\\"[-26.1182072321076,-14.376168177825,3.3844025152995]\\\",\\\"[0.0016339372163656,-0.0027861699588508,-0.0013585880229445]\\\"]\",\"[-693500,\\\"[43.6599275018261,15.7782921408811,-8.2269833881374]\\\",\\\"[-0.0002504304629586,0.0021163039457238,0.00073466073583102]\\\"]\",\"[-657000,\\\"[-17.0086014985033,33.059074387642,15.4080189624259]\\\",\\\"[-0.0019676551946049,-0.001833770776677,0.000020125441459959]\\\"]\",\"[-620500,\\\"[26.9005106893171,-21.5285596810214,-14.7987712668075]\\\",\\\"[0.0022939261196998,0.0017431871970059,-0.00014585639832643]\\\"]\",\"[-584000,\\\"[20.2303809506997,43.2669666571891,7.3829660919234]\\\",\\\"[-0.0019754081700585,0.00053457141292226,0.00075929169129793]\\\"]\",\"[-547500,\\\"[-22.5571440338751,-19.2958112538447,0.7806423603826]\\\",\\\"[0.0021494578646505,-0.0024266772630044,-0.0014013084013574]\\\"]\",\"[-511000,\\\"[43.023623681036,19.6179542007347,-6.8406553041565]\\\",\\\"[-0.00047729923671058,0.0020208979483877,0.00077191815992131]\\\"]\",\"[-474500,\\\"[-20.4245105862934,29.5157679318005,15.3408675727018]\\\",\\\"[-0.0018003167284198,-0.0021025226687937,-0.00011262333332859]\\\"]\",\"[-438000,\\\"[30.7746921076872,-18.2366370153037,-14.9455358798963]\\\",\\\"[0.0020113162005465,0.0019353827024189,-0.0000020937793168297]\\\"]\",\"[-401500,\\\"[16.7235440456361,44.0505598318603,8.688611393944]\\\",\\\"[-0.0020565226049264,0.00032710694138777,0.00072006155046579]\\\"]\",\"[-365000,\\\"[-18.4891734360057,-23.1428732331142,-1.6436720878799]\\\",\\\"[0.0025524223225832,-0.0020035792463879,-0.0013910737531294]\\\"]\",\"[-328500,\\\"[42.0853950560734,22.974253125952,-5.5131410205412]\\\",\\\"[-0.00067105845193949,0.0019177289500465,0.00079770011059534]\\\"]\",\"[-292000,\\\"[-23.2753639151193,25.8185142987694,15.0553815885983]\\\",\\\"[-0.0016062295460975,-0.0023395961498533,-0.00024377362639479]\\\"]\",\"[-255500,\\\"[33.901579321013,-14.9421228983498,-14.8664994855707]\\\",\\\"[0.0017455105487563,0.0020655068871494,0.0001169500065763]\\\"]\",\"[-219000,\\\"[13.3770189322702,44.4442211120183,9.8260227015847]\\\",\\\"[-0.0021171882923251,0.00013114714542921,0.00067884578840323]\\\"]\",\"[-182500,\\\"[-14.1723844533379,-26.0054690135836,-3.8387026446526]\\\",\\\"[0.0028419751785822,-0.0015579441656564,-0.001340841671106]\\\"]\",\"[-146000,\\\"[40.9468572586403,25.9049735920209,-4.2563362404988]\\\",\\\"[-0.00083652705194051,0.0018129497136404,0.0008156422827306]\\\"]\",\"[-109500,\\\"[-25.5839689598009,22.0699164999425,14.590202603678]\\\",\\\"[-0.0013923977856331,-0.0025442249745422,-0.00037169906721828]\\\"]\",\"[-73000,\\\"[36.4035708396756,-11.7473067389593,-14.6304139635223]\\\",\\\"[0.0015037714418941,0.0021500325702247,0.00021523781242948]\\\"]\",\"[-36500,\\\"[10.2436041239517,44.5280986402285,10.8048664487066]\\\",\\\"[-0.0021615839201823,-0.000051418983893534,0.0006368706075143]\\\"]\",\"[0,\\\"[-9.8753695807739,-27.9789262247367,-5.7537118247043]\\\",\\\"[0.0030287533248818,-0.0011276087003636,-0.0012651326732361]\\\"]\",\"[36500,\\\"[39.7009143866164,28.4327664903825,-3.0906026170881]\\\",\\\"[-0.00097720559866138,0.0017121518344796,0.00082822409843551]\\\"]\",\"[73000,\\\"[-27.3620419812795,18.4265651225706,13.9975343005914]\\\",\\\"[-0.001169093462134,-0.0027143131627458,-0.00049312695340367]\\\"]\",\"[109500,\\\"[38.3556091850032,-8.7643800131842,-14.2951819118807]\\\",\\\"[0.0012922798115839,0.0022032141141126,0.00029606522103424]\\\"]\",\"[146000,\\\"[7.3929490279056,44.3826789515344,11.6295002148543]\\\",\\\"[-0.002193281545383,-0.00021751799585364,0.00059556516201114]\\\"]\",\"[182500,\\\"[-5.8649529029432,-29.1987619981354,-7.3502494912123]\\\",\\\"[0.0031339384323665,-0.00074205968379701,-0.0011783357537604]\\\"]\",\"[219000,\\\"[38.4269476345329,30.5667598351632,-2.0378379641214]\\\",\\\"[-0.0010958945370084,0.0016194885149659,0.00083705272532546]\\\"]\",\"[255500,\\\"[-28.6586488201636,15.0309000931701,13.3365724093667]\\\",\\\"[-0.00094611899595408,-0.0028506813871559,-0.00060508645822989]\\\"]\",\"[292000,\\\"[39.8319806717528,-6.0784057667647,-13.9098153586562]\\\",\\\"[0.0011117769689167,0.0022362097830152,0.00036230548231153]\\\"]\",\"[328500,\\\"[4.837152376403,44.072311954153,12.3146147867802]\\\",\\\"[-0.0022164547537724,-0.00036790365636785,0.00055542723844616]\\\"]\",\"[365000,\\\"[-2.2619763759487,-29.8581508706765,-8.6502366418978]\\\",\\\"[0.0031821176368396,-0.00040915169873994,-0.0010895893040652]\\\"]\",\"[401500,\\\"[37.1576590087419,32.3528396259588,-1.0950381786229]\\\",\\\"[-0.001198841260683,0.0015356290902995,0.00084339118209852]\\\"]\",\"[438000,\\\"[-29.5767402292299,11.8635359435865,12.6313230398719]\\\",\\\"[-0.00072292830060955,-0.0029587820140709,-0.000708242964503]\\\"]\",\"[474500,\\\"[40.9541099577599,-3.658980594537,-13.499469956395]\\\",\\\"[0.00095387298337127,0.0022572135462477,0.00041826529781128]\\\"]\",\"[511000,\\\"[2.4859523114116,43.6181887566155,12.8914184596699]\\\",\\\"[-0.0022339745420393,-0.00051034757181916,0.00051485330196245]\\\"]\",\"[547500,\\\"[1.0594791441638,-30.1357921778687,-9.7458684762963]\\\",\\\"[0.0031921591684898,-0.0001130531279615,-0.00099954096945965]\\\"]\",\"[584000,\\\"[35.8778640130144,33.8942263660709,-0.2245246362769]\\\",\\\"[-0.0012941245730845,0.0014560427668319,0.00084762160640137]\\\"]\",\"[620500,\\\"[-30.2026537318923,8.7794211940578,11.8609238187578]\\\",\\\"[-0.00049002221381806,-0.0030438768469137,-0.00080605935262763]\\\"]\",\"[657000,\\\"[41.8536204011376,-1.3790965838042,-13.0624345337527]\\\",\\\"[0.00080674627557124,0.0022702374399791,0.00046832587475465]\\\"]\",\"[693500,\\\"[0.2468843977112,43.0303960481227,13.3909343344167]\\\",\\\"[-0.0022436121787266,-0.00065238074250728,0.00047172729553196]\\\"]\",\"[730000,\\\"[4.2432528370899,-30.1182016908248,-10.7074412313491]\\\",\\\"[0.0031725847067411,0.0001609846120227,-0.00090672150593868]\\\"]\"]" @@ -24610,14 +24682,14 @@ "comment": "", "meta": { "range": [ - 128301, - 129361 + 128700, + 129760 ], "filename": "astronomy.js", - "lineno": 2792, + "lineno": 2797, "columnno": 0, "code": { - "id": "astnode100014135", + "id": "astnode100014169", "name": "TerseVector", "type": "ClassDeclaration", "paramnames": [ @@ -24637,14 +24709,14 @@ "comment": "", "meta": { "range": [ - 128325, - 128413 + 128724, + 128812 ], "filename": "astronomy.js", - "lineno": 2793, + "lineno": 2798, "columnno": 4, "code": { - "id": "astnode100014138", + "id": "astnode100014172", "name": "TerseVector", "type": "MethodDefinition", "paramnames": [ @@ -24668,14 +24740,14 @@ "comment": "", "meta": { "range": [ - 128356, - 128366 + 128755, + 128765 ], "filename": "astronomy.js", - "lineno": 2794, + "lineno": 2799, "columnno": 8, "code": { - "id": "astnode100014146", + "id": "astnode100014180", "name": "this.x", "type": "Identifier", "value": "x", @@ -24693,14 +24765,14 @@ "comment": "", "meta": { "range": [ - 128376, - 128386 + 128775, + 128785 ], "filename": "astronomy.js", - "lineno": 2795, + "lineno": 2800, "columnno": 8, "code": { - "id": "astnode100014152", + "id": "astnode100014186", "name": "this.y", "type": "Identifier", "value": "y", @@ -24718,14 +24790,14 @@ "comment": "", "meta": { "range": [ - 128396, - 128406 + 128795, + 128805 ], "filename": "astronomy.js", - "lineno": 2796, + "lineno": 2801, "columnno": 8, "code": { - "id": "astnode100014158", + "id": "astnode100014192", "name": "this.z", "type": "Identifier", "value": "z", @@ -24743,14 +24815,14 @@ "comment": "", "meta": { "range": [ - 128418, - 128496 + 128817, + 128895 ], "filename": "astronomy.js", - "lineno": 2798, + "lineno": 2803, "columnno": 4, "code": { - "id": "astnode100014163", + "id": "astnode100014197", "name": "TerseVector#ToAstroVector", "type": "MethodDefinition", "paramnames": [ @@ -24773,14 +24845,14 @@ "comment": "", "meta": { "range": [ - 128501, - 128589 + 128900, + 128988 ], "filename": "astronomy.js", - "lineno": 2801, + "lineno": 2806, "columnno": 4, "code": { - "id": "astnode100014181", + "id": "astnode100014215", "name": "TerseVector#quadrature", "type": "MethodDefinition", "paramnames": [] @@ -24801,14 +24873,14 @@ "comment": "", "meta": { "range": [ - 128594, - 128698 + 128993, + 129097 ], "filename": "astronomy.js", - "lineno": 2804, + "lineno": 2809, "columnno": 4, "code": { - "id": "astnode100014209", + "id": "astnode100014243", "name": "TerseVector#add", "type": "MethodDefinition", "paramnames": [ @@ -24831,14 +24903,14 @@ "comment": "", "meta": { "range": [ - 128703, - 128807 + 129102, + 129206 ], "filename": "astronomy.js", - "lineno": 2807, + "lineno": 2812, "columnno": 4, "code": { - "id": "astnode100014238", + "id": "astnode100014272", "name": "TerseVector#sub", "type": "MethodDefinition", "paramnames": [ @@ -24861,14 +24933,14 @@ "comment": "", "meta": { "range": [ - 128812, - 128912 + 129211, + 129311 ], "filename": "astronomy.js", - "lineno": 2810, + "lineno": 2815, "columnno": 4, "code": { - "id": "astnode100014267", + "id": "astnode100014301", "name": "TerseVector#incr", "type": "MethodDefinition", "paramnames": [ @@ -24891,14 +24963,14 @@ "comment": "", "meta": { "range": [ - 128834, - 128851 + 129233, + 129250 ], "filename": "astronomy.js", - "lineno": 2811, + "lineno": 2816, "columnno": 8, "code": { - "id": "astnode100014273", + "id": "astnode100014307", "name": "this.x", "type": "MemberExpression", "value": "other.x", @@ -24916,14 +24988,14 @@ "comment": "", "meta": { "range": [ - 128861, - 128878 + 129260, + 129277 ], "filename": "astronomy.js", - "lineno": 2812, + "lineno": 2817, "columnno": 8, "code": { - "id": "astnode100014281", + "id": "astnode100014315", "name": "this.y", "type": "MemberExpression", "value": "other.y", @@ -24941,14 +25013,14 @@ "comment": "", "meta": { "range": [ - 128888, - 128905 + 129287, + 129304 ], "filename": "astronomy.js", - "lineno": 2813, + "lineno": 2818, "columnno": 8, "code": { - "id": "astnode100014289", + "id": "astnode100014323", "name": "this.z", "type": "MemberExpression", "value": "other.z", @@ -24966,14 +25038,14 @@ "comment": "", "meta": { "range": [ - 128917, - 129017 + 129316, + 129416 ], "filename": "astronomy.js", - "lineno": 2815, + "lineno": 2820, "columnno": 4, "code": { - "id": "astnode100014296", + "id": "astnode100014330", "name": "TerseVector#decr", "type": "MethodDefinition", "paramnames": [ @@ -24996,14 +25068,14 @@ "comment": "", "meta": { "range": [ - 128939, - 128956 + 129338, + 129355 ], "filename": "astronomy.js", - "lineno": 2816, + "lineno": 2821, "columnno": 8, "code": { - "id": "astnode100014302", + "id": "astnode100014336", "name": "this.x", "type": "MemberExpression", "value": "other.x", @@ -25021,14 +25093,14 @@ "comment": "", "meta": { "range": [ - 128966, - 128983 + 129365, + 129382 ], "filename": "astronomy.js", - "lineno": 2817, + "lineno": 2822, "columnno": 8, "code": { - "id": "astnode100014310", + "id": "astnode100014344", "name": "this.y", "type": "MemberExpression", "value": "other.y", @@ -25046,14 +25118,14 @@ "comment": "", "meta": { "range": [ - 128993, - 129010 + 129392, + 129409 ], "filename": "astronomy.js", - "lineno": 2818, + "lineno": 2823, "columnno": 8, "code": { - "id": "astnode100014318", + "id": "astnode100014352", "name": "this.z", "type": "MemberExpression", "value": "other.z", @@ -25071,14 +25143,14 @@ "comment": "", "meta": { "range": [ - 129022, - 129124 + 129421, + 129523 ], "filename": "astronomy.js", - "lineno": 2820, + "lineno": 2825, "columnno": 4, "code": { - "id": "astnode100014325", + "id": "astnode100014359", "name": "TerseVector#mul", "type": "MethodDefinition", "paramnames": [ @@ -25101,14 +25173,14 @@ "comment": "", "meta": { "range": [ - 129129, - 129231 + 129528, + 129630 ], "filename": "astronomy.js", - "lineno": 2823, + "lineno": 2828, "columnno": 4, "code": { - "id": "astnode100014348", + "id": "astnode100014382", "name": "TerseVector#div", "type": "MethodDefinition", "paramnames": [ @@ -25131,14 +25203,14 @@ "comment": "", "meta": { "range": [ - 129236, - 129359 + 129635, + 129758 ], "filename": "astronomy.js", - "lineno": 2826, + "lineno": 2831, "columnno": 4, "code": { - "id": "astnode100014371", + "id": "astnode100014405", "name": "TerseVector#mean", "type": "MethodDefinition", "paramnames": [ @@ -25161,14 +25233,14 @@ "comment": "", "meta": { "range": [ - 129362, - 129480 + 129761, + 129879 ], "filename": "astronomy.js", - "lineno": 2830, + "lineno": 2835, "columnno": 0, "code": { - "id": "astnode100014406", + "id": "astnode100014440", "name": "body_state_t", "type": "ClassDeclaration", "paramnames": [ @@ -25188,14 +25260,14 @@ "comment": "", "meta": { "range": [ - 129387, - 129478 + 129786, + 129877 ], "filename": "astronomy.js", - "lineno": 2831, + "lineno": 2836, "columnno": 4, "code": { - "id": "astnode100014409", + "id": "astnode100014443", "name": "body_state_t", "type": "MethodDefinition", "paramnames": [ @@ -25219,14 +25291,14 @@ "comment": "", "meta": { "range": [ - 129419, - 129431 + 129818, + 129830 ], "filename": "astronomy.js", - "lineno": 2832, + "lineno": 2837, "columnno": 8, "code": { - "id": "astnode100014417", + "id": "astnode100014451", "name": "this.tt", "type": "Identifier", "value": "tt", @@ -25244,14 +25316,14 @@ "comment": "", "meta": { "range": [ - 129441, - 129451 + 129840, + 129850 ], "filename": "astronomy.js", - "lineno": 2833, + "lineno": 2838, "columnno": 8, "code": { - "id": "astnode100014423", + "id": "astnode100014457", "name": "this.r", "type": "Identifier", "value": "r", @@ -25269,14 +25341,14 @@ "comment": "", "meta": { "range": [ - 129461, - 129471 + 129860, + 129870 ], "filename": "astronomy.js", - "lineno": 2834, + "lineno": 2839, "columnno": 8, "code": { - "id": "astnode100014429", + "id": "astnode100014463", "name": "this.v", "type": "Identifier", "value": "v", @@ -25294,14 +25366,14 @@ "comment": "", "meta": { "range": [ - 129481, - 129660 + 129880, + 130059 ], "filename": "astronomy.js", - "lineno": 2837, + "lineno": 2842, "columnno": 0, "code": { - "id": "astnode100014434", + "id": "astnode100014468", "name": "BodyStateFromTable", "type": "FunctionDeclaration", "paramnames": [ @@ -25323,14 +25395,14 @@ "comment": "", "meta": { "range": [ - 129661, - 129918 + 130060, + 130317 ], "filename": "astronomy.js", - "lineno": 2841, + "lineno": 2846, "columnno": 0, "code": { - "id": "astnode100014458", + "id": "astnode100014492", "name": "AdjustBarycenterPosVel", "type": "FunctionDeclaration", "paramnames": [ @@ -25356,14 +25428,14 @@ "comment": "", "meta": { "range": [ - 129731, - 129771 + 130130, + 130170 ], "filename": "astronomy.js", - "lineno": 2842, + "lineno": 2847, "columnno": 10, "code": { - "id": "astnode100014466", + "id": "astnode100014500", "name": "shift", "type": "BinaryExpression", "value": "" @@ -25381,14 +25453,14 @@ "comment": "", "meta": { "range": [ - 129783, - 129822 + 130182, + 130221 ], "filename": "astronomy.js", - "lineno": 2843, + "lineno": 2848, "columnno": 10, "code": { - "id": "astnode100014474", + "id": "astnode100014508", "name": "planet", "type": "CallExpression", "value": "" @@ -25406,14 +25478,14 @@ "comment": "", "meta": { "range": [ - 129919, - 130107 + 130318, + 130506 ], "filename": "astronomy.js", - "lineno": 2848, + "lineno": 2853, "columnno": 0, "code": { - "id": "astnode100014512", + "id": "astnode100014546", "name": "AccelerationIncrement", "type": "FunctionDeclaration", "paramnames": [ @@ -25438,14 +25510,14 @@ "comment": "", "meta": { "range": [ - 129988, - 130020 + 130387, + 130419 ], "filename": "astronomy.js", - "lineno": 2849, + "lineno": 2854, "columnno": 10, "code": { - "id": "astnode100014519", + "id": "astnode100014553", "name": "delta", "type": "CallExpression", "value": "" @@ -25463,14 +25535,14 @@ "comment": "", "meta": { "range": [ - 130032, - 130055 + 130431, + 130454 ], "filename": "astronomy.js", - "lineno": 2850, + "lineno": 2855, "columnno": 10, "code": { - "id": "astnode100014527", + "id": "astnode100014561", "name": "r2", "type": "CallExpression", "value": "" @@ -25488,14 +25560,14 @@ "comment": "", "meta": { "range": [ - 130108, - 131695 + 130507, + 132094 ], "filename": "astronomy.js", - "lineno": 2853, + "lineno": 2858, "columnno": 0, "code": { - "id": "astnode100014547", + "id": "astnode100014581", "name": "major_bodies_t", "type": "ClassDeclaration", "paramnames": [ @@ -25513,14 +25585,14 @@ "comment": "", "meta": { "range": [ - 130135, - 131124 + 130534, + 131523 ], "filename": "astronomy.js", - "lineno": 2854, + "lineno": 2859, "columnno": 4, "code": { - "id": "astnode100014550", + "id": "astnode100014584", "name": "major_bodies_t", "type": "MethodDefinition", "paramnames": [ @@ -25542,14 +25614,14 @@ "comment": "", "meta": { "range": [ - 130225, - 130303 + 130624, + 130702 ], "filename": "astronomy.js", - "lineno": 2856, + "lineno": 2861, "columnno": 12, "code": { - "id": "astnode100014556", + "id": "astnode100014590", "name": "ssb", "type": "NewExpression", "value": "" @@ -25567,14 +25639,14 @@ "comment": "", "meta": { "range": [ - 130313, - 130385 + 130712, + 130784 ], "filename": "astronomy.js", - "lineno": 2857, + "lineno": 2862, "columnno": 8, "code": { - "id": "astnode100014572", + "id": "astnode100014606", "name": "this.Jupiter", "type": "CallExpression", "value": "", @@ -25592,14 +25664,14 @@ "comment": "", "meta": { "range": [ - 130395, - 130464 + 130794, + 130863 ], "filename": "astronomy.js", - "lineno": 2858, + "lineno": 2863, "columnno": 8, "code": { - "id": "astnode100014585", + "id": "astnode100014619", "name": "this.Saturn", "type": "CallExpression", "value": "", @@ -25617,14 +25689,14 @@ "comment": "", "meta": { "range": [ - 130474, - 130543 + 130873, + 130942 ], "filename": "astronomy.js", - "lineno": 2859, + "lineno": 2864, "columnno": 8, "code": { - "id": "astnode100014598", + "id": "astnode100014632", "name": "this.Uranus", "type": "CallExpression", "value": "", @@ -25642,14 +25714,14 @@ "comment": "", "meta": { "range": [ - 130553, - 130625 + 130952, + 131024 ], "filename": "astronomy.js", - "lineno": 2860, + "lineno": 2865, "columnno": 8, "code": { - "id": "astnode100014611", + "id": "astnode100014645", "name": "this.Neptune", "type": "CallExpression", "value": "", @@ -25667,14 +25739,14 @@ "comment": "", "meta": { "range": [ - 131056, - 131117 + 131455, + 131516 ], "filename": "astronomy.js", - "lineno": 2871, + "lineno": 2876, "columnno": 8, "code": { - "id": "astnode100014720", + "id": "astnode100014754", "name": "this.Sun", "type": "NewExpression", "value": "", @@ -25692,14 +25764,14 @@ "comment": "", "meta": { "range": [ - 131129, - 131693 + 131528, + 132092 ], "filename": "astronomy.js", - "lineno": 2873, + "lineno": 2878, "columnno": 4, "code": { - "id": "astnode100014743", + "id": "astnode100014777", "name": "major_bodies_t#Acceleration", "type": "MethodDefinition", "paramnames": [ @@ -25722,14 +25794,14 @@ "comment": "", "meta": { "range": [ - 131322, - 131374 + 131721, + 131773 ], "filename": "astronomy.js", - "lineno": 2876, + "lineno": 2881, "columnno": 12, "code": { - "id": "astnode100014749", + "id": "astnode100014783", "name": "acc", "type": "CallExpression", "value": "" @@ -25747,14 +25819,14 @@ "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": [ - 132216, - 132361 + 132615, + 132760 ], "filename": "astronomy.js", - "lineno": 2905, + "lineno": 2910, "columnno": 0, "code": { - "id": "astnode100014818", + "id": "astnode100014852", "name": "body_grav_calc_t", "type": "ClassDeclaration", "paramnames": [ @@ -25802,14 +25874,14 @@ "comment": "", "meta": { "range": [ - 132245, - 132359 + 132644, + 132758 ], "filename": "astronomy.js", - "lineno": 2906, + "lineno": 2911, "columnno": 4, "code": { - "id": "astnode100014821", + "id": "astnode100014855", "name": "body_grav_calc_t", "type": "MethodDefinition", "paramnames": [ @@ -25834,14 +25906,14 @@ "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": [ - 132216, - 132361 + 132615, + 132760 ], "filename": "astronomy.js", - "lineno": 2905, + "lineno": 2910, "columnno": 0, "code": { - "id": "astnode100014818", + "id": "astnode100014852", "name": "body_grav_calc_t", "type": "ClassDeclaration", "paramnames": [ @@ -25888,14 +25960,14 @@ "comment": "", "meta": { "range": [ - 132280, - 132292 + 132679, + 132691 ], "filename": "astronomy.js", - "lineno": 2907, + "lineno": 2912, "columnno": 8, "code": { - "id": "astnode100014830", + "id": "astnode100014864", "name": "this.tt", "type": "Identifier", "value": "tt", @@ -25913,14 +25985,14 @@ "comment": "", "meta": { "range": [ - 132302, - 132312 + 132701, + 132711 ], "filename": "astronomy.js", - "lineno": 2908, + "lineno": 2913, "columnno": 8, "code": { - "id": "astnode100014836", + "id": "astnode100014870", "name": "this.r", "type": "Identifier", "value": "r", @@ -25938,14 +26010,14 @@ "comment": "", "meta": { "range": [ - 132322, - 132332 + 132721, + 132731 ], "filename": "astronomy.js", - "lineno": 2909, + "lineno": 2914, "columnno": 8, "code": { - "id": "astnode100014842", + "id": "astnode100014876", "name": "this.v", "type": "Identifier", "value": "v", @@ -25963,14 +26035,14 @@ "comment": "", "meta": { "range": [ - 132342, - 132352 + 132741, + 132751 ], "filename": "astronomy.js", - "lineno": 2910, + "lineno": 2915, "columnno": 8, "code": { - "id": "astnode100014848", + "id": "astnode100014882", "name": "this.a", "type": "Identifier", "value": "a", @@ -25988,14 +26060,14 @@ "comment": "", "meta": { "range": [ - 132362, - 132470 + 132761, + 132869 ], "filename": "astronomy.js", - "lineno": 2913, + "lineno": 2918, "columnno": 0, "code": { - "id": "astnode100014853", + "id": "astnode100014887", "name": "grav_sim_t", "type": "ClassDeclaration", "paramnames": [ @@ -26014,14 +26086,14 @@ "comment": "", "meta": { "range": [ - 132385, - 132468 + 132784, + 132867 ], "filename": "astronomy.js", - "lineno": 2914, + "lineno": 2919, "columnno": 4, "code": { - "id": "astnode100014856", + "id": "astnode100014890", "name": "grav_sim_t", "type": "MethodDefinition", "paramnames": [ @@ -26044,14 +26116,14 @@ "comment": "", "meta": { "range": [ - 132419, - 132435 + 132818, + 132834 ], "filename": "astronomy.js", - "lineno": 2915, + "lineno": 2920, "columnno": 8, "code": { - "id": "astnode100014863", + "id": "astnode100014897", "name": "this.bary", "type": "Identifier", "value": "bary", @@ -26069,14 +26141,14 @@ "comment": "", "meta": { "range": [ - 132445, - 132461 + 132844, + 132860 ], "filename": "astronomy.js", - "lineno": 2916, + "lineno": 2921, "columnno": 8, "code": { - "id": "astnode100014869", + "id": "astnode100014903", "name": "this.grav", "type": "Identifier", "value": "grav", @@ -26094,14 +26166,14 @@ "comment": "", "meta": { "range": [ - 132471, - 132638 + 132870, + 133037 ], "filename": "astronomy.js", - "lineno": 2919, + "lineno": 2924, "columnno": 0, "code": { - "id": "astnode100014874", + "id": "astnode100014908", "name": "UpdatePosition", "type": "FunctionDeclaration", "paramnames": [ @@ -26123,14 +26195,14 @@ "comment": "", "meta": { "range": [ - 132639, - 133556 + 133038, + 133955 ], "filename": "astronomy.js", - "lineno": 2922, + "lineno": 2927, "columnno": 0, "code": { - "id": "astnode100014935", + "id": "astnode100014969", "name": "GravSim", "type": "FunctionDeclaration", "paramnames": [ @@ -26160,14 +26232,14 @@ "comment": "", "meta": { "range": [ - 132680, - 132699 + 133079, + 133098 ], "filename": "astronomy.js", - "lineno": 2923, + "lineno": 2928, "columnno": 10, "code": { - "id": "astnode100014941", + "id": "astnode100014975", "name": "dt", "type": "BinaryExpression", "value": "" @@ -26185,14 +26257,14 @@ "comment": "", "meta": { "range": [ - 132792, - 132823 + 133191, + 133222 ], "filename": "astronomy.js", - "lineno": 2925, + "lineno": 2930, "columnno": 10, "code": { - "id": "astnode100014949", + "id": "astnode100014983", "name": "bary2", "type": "NewExpression", "value": "" @@ -26210,14 +26282,14 @@ "comment": "", "meta": { "range": [ - 132941, - 132999 + 133340, + 133398 ], "filename": "astronomy.js", - "lineno": 2927, + "lineno": 2932, "columnno": 10, "code": { - "id": "astnode100014955", + "id": "astnode100014989", "name": "approx_pos", "type": "CallExpression", "value": "" @@ -26235,14 +26307,14 @@ "comment": "", "meta": { "range": [ - 133164, - 133219 + 133563, + 133618 ], "filename": "astronomy.js", - "lineno": 2930, + "lineno": 2935, "columnno": 10, "code": { - "id": "astnode100014970", + "id": "astnode100015004", "name": "mean_acc", "type": "CallExpression", "value": "" @@ -26260,14 +26332,14 @@ "comment": "", "meta": { "range": [ - 133314, - 133366 + 133713, + 133765 ], "filename": "astronomy.js", - "lineno": 2932, + "lineno": 2937, "columnno": 10, "code": { - "id": "astnode100014984", + "id": "astnode100015018", "name": "pos", "type": "CallExpression", "value": "" @@ -26285,14 +26357,14 @@ "comment": "", "meta": { "range": [ - 133378, - 133413 + 133777, + 133812 ], "filename": "astronomy.js", - "lineno": 2933, + "lineno": 2938, "columnno": 10, "code": { - "id": "astnode100014997", + "id": "astnode100015031", "name": "vel", "type": "CallExpression", "value": "" @@ -26310,14 +26382,14 @@ "comment": "", "meta": { "range": [ - 133425, - 133454 + 133824, + 133853 ], "filename": "astronomy.js", - "lineno": 2934, + "lineno": 2939, "columnno": 10, "code": { - "id": "astnode100015011", + "id": "astnode100015045", "name": "acc", "type": "CallExpression", "value": "" @@ -26335,14 +26407,14 @@ "comment": "", "meta": { "range": [ - 133466, - 133513 + 133865, + 133912 ], "filename": "astronomy.js", - "lineno": 2935, + "lineno": 2940, "columnno": 10, "code": { - "id": "astnode100015019", + "id": "astnode100015053", "name": "grav", "type": "NewExpression", "value": "" @@ -26360,14 +26432,14 @@ "comment": "", "meta": { "range": [ - 133563, - 133577 + 133962, + 133976 ], "filename": "astronomy.js", - "lineno": 2938, + "lineno": 2943, "columnno": 6, "code": { - "id": "astnode100015033", + "id": "astnode100015067", "name": "PLUTO_DT", "type": "Literal", "value": 250 @@ -26384,14 +26456,14 @@ "comment": "", "meta": { "range": [ - 133585, - 133632 + 133984, + 134031 ], "filename": "astronomy.js", - "lineno": 2939, + "lineno": 2944, "columnno": 6, "code": { - "id": "astnode100015037", + "id": "astnode100015071", "name": "PLUTO_NSTEPS", "type": "BinaryExpression", "value": "" @@ -26408,14 +26480,14 @@ "comment": "", "meta": { "range": [ - 133640, - 133656 + 134039, + 134055 ], "filename": "astronomy.js", - "lineno": 2940, + "lineno": 2945, "columnno": 6, "code": { - "id": "astnode100015045", + "id": "astnode100015079", "name": "pluto_cache", "type": "ArrayExpression", "value": "[]" @@ -26432,14 +26504,14 @@ "comment": "", "meta": { "range": [ - 133658, - 133838 + 134057, + 134237 ], "filename": "astronomy.js", - "lineno": 2941, + "lineno": 2946, "columnno": 0, "code": { - "id": "astnode100015048", + "id": "astnode100015082", "name": "ClampIndex", "type": "FunctionDeclaration", "paramnames": [ @@ -26462,14 +26534,14 @@ "comment": "", "meta": { "range": [ - 133704, - 133728 + 134103, + 134127 ], "filename": "astronomy.js", - "lineno": 2942, + "lineno": 2947, "columnno": 10, "code": { - "id": "astnode100015054", + "id": "astnode100015088", "name": "index", "type": "CallExpression", "value": "" @@ -26487,14 +26559,14 @@ "comment": "", "meta": { "range": [ - 133839, - 134175 + 134238, + 134574 ], "filename": "astronomy.js", - "lineno": 2949, + "lineno": 2954, "columnno": 0, "code": { - "id": "astnode100015077", + "id": "astnode100015111", "name": "GravFromState", "type": "FunctionDeclaration", "paramnames": [ @@ -26521,14 +26593,14 @@ "comment": "", "meta": { "range": [ - 133881, - 133914 + 134280, + 134313 ], "filename": "astronomy.js", - "lineno": 2950, + "lineno": 2955, "columnno": 10, "code": { - "id": "astnode100015082", + "id": "astnode100015116", "name": "state", "type": "CallExpression", "value": "" @@ -26546,14 +26618,14 @@ "comment": "", "meta": { "range": [ - 133926, - 133961 + 134325, + 134360 ], "filename": "astronomy.js", - "lineno": 2951, + "lineno": 2956, "columnno": 10, "code": { - "id": "astnode100015088", + "id": "astnode100015122", "name": "bary", "type": "NewExpression", "value": "" @@ -26571,14 +26643,14 @@ "comment": "", "meta": { "range": [ - 133973, - 134000 + 134372, + 134399 ], "filename": "astronomy.js", - "lineno": 2952, + "lineno": 2957, "columnno": 10, "code": { - "id": "astnode100015096", + "id": "astnode100015130", "name": "r", "type": "CallExpression", "value": "" @@ -26596,14 +26668,14 @@ "comment": "", "meta": { "range": [ - 134012, - 134039 + 134411, + 134438 ], "filename": "astronomy.js", - "lineno": 2953, + "lineno": 2958, "columnno": 10, "code": { - "id": "astnode100015110", + "id": "astnode100015144", "name": "v", "type": "CallExpression", "value": "" @@ -26621,14 +26693,14 @@ "comment": "", "meta": { "range": [ - 134051, - 134075 + 134450, + 134474 ], "filename": "astronomy.js", - "lineno": 2954, + "lineno": 2959, "columnno": 10, "code": { - "id": "astnode100015124", + "id": "astnode100015158", "name": "a", "type": "CallExpression", "value": "" @@ -26646,14 +26718,14 @@ "comment": "", "meta": { "range": [ - 134087, - 134133 + 134486, + 134532 ], "filename": "astronomy.js", - "lineno": 2955, + "lineno": 2960, "columnno": 10, "code": { - "id": "astnode100015132", + "id": "astnode100015166", "name": "grav", "type": "NewExpression", "value": "" @@ -26671,14 +26743,14 @@ "comment": "", "meta": { "range": [ - 134176, - 135752 + 134575, + 136151 ], "filename": "astronomy.js", - "lineno": 2958, + "lineno": 2963, "columnno": 0, "code": { - "id": "astnode100015147", + "id": "astnode100015181", "name": "GetSegment", "type": "FunctionDeclaration", "paramnames": [ @@ -26714,14 +26786,14 @@ "comment": "", "meta": { "range": [ - 134219, - 134245 + 134618, + 134644 ], "filename": "astronomy.js", - "lineno": 2959, + "lineno": 2964, "columnno": 10, "code": { - "id": "astnode100015153", + "id": "astnode100015187", "name": "t0", "type": "MemberExpression", "value": "PlutoStateTable[0][0]" @@ -26739,14 +26811,14 @@ "comment": "", "meta": { "range": [ - 134451, - 134524 + 134850, + 134923 ], "filename": "astronomy.js", - "lineno": 2964, + "lineno": 2969, "columnno": 10, "code": { - "id": "astnode100015178", + "id": "astnode100015212", "name": "seg_index", "type": "CallExpression", "value": "" @@ -26764,14 +26836,14 @@ "comment": "", "meta": { "range": [ - 134569, - 134596 + 134968, + 134995 ], "filename": "astronomy.js", - "lineno": 2966, + "lineno": 2971, "columnno": 14, "code": { - "id": "astnode100015197", + "id": "astnode100015231", "name": "seg", "type": "AssignmentExpression", "value": "cache[undefined]" @@ -26789,14 +26861,14 @@ "comment": "", "meta": { "range": [ - 134575, - 134596 + 134974, + 134995 ], "filename": "astronomy.js", - "lineno": 2966, + "lineno": 2971, "columnno": 20, "code": { - "id": "astnode100015199", + "id": "astnode100015233", "name": "cache[undefined]", "type": "ArrayExpression", "value": "[]", @@ -26813,14 +26885,14 @@ "comment": "", "meta": { "range": [ - 134641, - 134696 + 135040, + 135095 ], "filename": "astronomy.js", - "lineno": 2968, + "lineno": 2973, "columnno": 8, "code": { - "id": "astnode100015205", + "id": "astnode100015239", "name": "seg[0]", "type": "MemberExpression", "funcscope": "GetSegment", @@ -26839,14 +26911,14 @@ "comment": "", "meta": { "range": [ - 134706, - 134780 + 135105, + 135179 ], "filename": "astronomy.js", - "lineno": 2969, + "lineno": 2974, "columnno": 8, "code": { - "id": "astnode100015217", + "id": "astnode100015251", "name": "seg[undefined]", "type": "MemberExpression", "funcscope": "GetSegment", @@ -26865,14 +26937,14 @@ "comment": "", "meta": { "range": [ - 134850, - 134851 + 135249, + 135250 ], "filename": "astronomy.js", - "lineno": 2971, + "lineno": 2976, "columnno": 12, "code": { - "id": "astnode100015233", + "id": "astnode100015267", "name": "i" } }, @@ -26888,14 +26960,14 @@ "comment": "", "meta": { "range": [ - 134865, - 134884 + 135264, + 135283 ], "filename": "astronomy.js", - "lineno": 2972, + "lineno": 2977, "columnno": 12, "code": { - "id": "astnode100015236", + "id": "astnode100015270", "name": "step_tt", "type": "MemberExpression", "value": "seg[0].tt" @@ -26913,14 +26985,14 @@ "comment": "", "meta": { "range": [ - 134899, - 134904 + 135298, + 135303 ], "filename": "astronomy.js", - "lineno": 2973, + "lineno": 2978, "columnno": 13, "code": { - "id": "astnode100015244", + "id": "astnode100015278", "name": "i", "type": "Literal", "funcscope": "GetSegment", @@ -26939,14 +27011,14 @@ "comment": "", "meta": { "range": [ - 134945, - 134999 + 135344, + 135398 ], "filename": "astronomy.js", - "lineno": 2974, + "lineno": 2979, "columnno": 12, "code": { - "id": "astnode100015255", + "id": "astnode100015289", "name": "seg[undefined]", "type": "MemberExpression", "funcscope": "GetSegment", @@ -26965,14 +27037,14 @@ "comment": "", "meta": { "range": [ - 134962, - 134981 + 135361, + 135380 ], "filename": "astronomy.js", - "lineno": 2974, + "lineno": 2979, "columnno": 29, "code": { - "id": "astnode100015262", + "id": "astnode100015296", "name": "step_tt", "type": "Identifier", "funcscope": "GetSegment", @@ -26991,14 +27063,14 @@ "comment": "", "meta": { "range": [ - 135066, - 135100 + 135465, + 135499 ], "filename": "astronomy.js", - "lineno": 2976, + "lineno": 2981, "columnno": 8, "code": { - "id": "astnode100015272", + "id": "astnode100015306", "name": "step_tt", "type": "MemberExpression", "funcscope": "GetSegment", @@ -27017,14 +27089,14 @@ "comment": "", "meta": { "range": [ - 135114, - 135126 + 135513, + 135525 ], "filename": "astronomy.js", - "lineno": 2977, + "lineno": 2982, "columnno": 12, "code": { - "id": "astnode100015282", + "id": "astnode100015316", "name": "reverse", "type": "ArrayExpression", "value": "[]" @@ -27042,14 +27114,14 @@ "comment": "", "meta": { "range": [ - 135136, - 135185 + 135535, + 135584 ], "filename": "astronomy.js", - "lineno": 2978, + "lineno": 2983, "columnno": 8, "code": { - "id": "astnode100015286", + "id": "astnode100015320", "name": "reverse[undefined]", "type": "MemberExpression", "funcscope": "GetSegment", @@ -27068,14 +27140,14 @@ "comment": "", "meta": { "range": [ - 135200, - 135220 + 135599, + 135619 ], "filename": "astronomy.js", - "lineno": 2979, + "lineno": 2984, "columnno": 13, "code": { - "id": "astnode100015298", + "id": "astnode100015332", "name": "i", "type": "BinaryExpression", "funcscope": "GetSegment", @@ -27094,14 +27166,14 @@ "comment": "", "meta": { "range": [ - 135246, - 135308 + 135645, + 135707 ], "filename": "astronomy.js", - "lineno": 2980, + "lineno": 2985, "columnno": 12, "code": { - "id": "astnode100015309", + "id": "astnode100015343", "name": "reverse[undefined]", "type": "MemberExpression", "funcscope": "GetSegment", @@ -27120,14 +27192,14 @@ "comment": "", "meta": { "range": [ - 135267, - 135286 + 135666, + 135685 ], "filename": "astronomy.js", - "lineno": 2980, + "lineno": 2985, "columnno": 33, "code": { - "id": "astnode100015316", + "id": "astnode100015350", "name": "step_tt", "type": "Identifier", "funcscope": "GetSegment", @@ -27146,14 +27218,14 @@ "comment": "", "meta": { "range": [ - 135396, - 135416 + 135795, + 135815 ], "filename": "astronomy.js", - "lineno": 2982, + "lineno": 2987, "columnno": 13, "code": { - "id": "astnode100015326", + "id": "astnode100015360", "name": "i", "type": "BinaryExpression", "funcscope": "GetSegment", @@ -27172,14 +27244,14 @@ "comment": "", "meta": { "range": [ - 135450, - 135479 + 135849, + 135878 ], "filename": "astronomy.js", - "lineno": 2983, + "lineno": 2988, "columnno": 18, "code": { - "id": "astnode100015338", + "id": "astnode100015372", "name": "ramp", "type": "BinaryExpression", "value": "" @@ -27197,14 +27269,14 @@ "comment": "", "meta": { "range": [ - 135493, - 135554 + 135892, + 135953 ], "filename": "astronomy.js", - "lineno": 2984, + "lineno": 2989, "columnno": 12, "code": { - "id": "astnode100015346", + "id": "astnode100015380", "name": "seg[undefined].r", "type": "CallExpression", "funcscope": "GetSegment", @@ -27223,14 +27295,14 @@ "comment": "", "meta": { "range": [ - 135568, - 135629 + 135967, + 136028 ], "filename": "astronomy.js", - "lineno": 2985, + "lineno": 2990, "columnno": 12, "code": { - "id": "astnode100015376", + "id": "astnode100015410", "name": "seg[undefined].v", "type": "CallExpression", "funcscope": "GetSegment", @@ -27249,14 +27321,14 @@ "comment": "", "meta": { "range": [ - 135643, - 135704 + 136042, + 136103 ], "filename": "astronomy.js", - "lineno": 2986, + "lineno": 2991, "columnno": 12, "code": { - "id": "astnode100015406", + "id": "astnode100015440", "name": "seg[undefined].a", "type": "CallExpression", "funcscope": "GetSegment", @@ -27275,14 +27347,14 @@ "comment": "", "meta": { "range": [ - 135753, - 136025 + 136152, + 136424 ], "filename": "astronomy.js", - "lineno": 2991, + "lineno": 2996, "columnno": 0, "code": { - "id": "astnode100015439", + "id": "astnode100015473", "name": "CalcPlutoOneWay", "type": "FunctionDeclaration", "paramnames": [ @@ -27308,14 +27380,14 @@ "comment": "", "meta": { "range": [ - 135810, - 135836 + 136209, + 136235 ], "filename": "astronomy.js", - "lineno": 2992, + "lineno": 2997, "columnno": 8, "code": { - "id": "astnode100015446", + "id": "astnode100015480", "name": "sim", "type": "CallExpression", "value": "" @@ -27333,14 +27405,14 @@ "comment": "", "meta": { "range": [ - 135848, - 135893 + 136247, + 136292 ], "filename": "astronomy.js", - "lineno": 2993, + "lineno": 2998, "columnno": 10, "code": { - "id": "astnode100015452", + "id": "astnode100015486", "name": "n", "type": "CallExpression", "value": "" @@ -27358,14 +27430,14 @@ "comment": "", "meta": { "range": [ - 135908, - 135913 + 136307, + 136312 ], "filename": "astronomy.js", - "lineno": 2994, + "lineno": 2999, "columnno": 13, "code": { - "id": "astnode100015469", + "id": "astnode100015503", "name": "i", "type": "Literal", "value": 0 @@ -27383,14 +27455,14 @@ "comment": "", "meta": { "range": [ - 135935, - 136006 + 136334, + 136405 ], "filename": "astronomy.js", - "lineno": 2995, + "lineno": 3000, "columnno": 8, "code": { - "id": "astnode100015478", + "id": "astnode100015512", "name": "sim", "type": "CallExpression", "funcscope": "CalcPlutoOneWay", @@ -27409,14 +27481,14 @@ "comment": "", "meta": { "range": [ - 136026, - 137524 + 136425, + 137923 ], "filename": "astronomy.js", - "lineno": 2998, + "lineno": 3003, "columnno": 0, "code": { - "id": "astnode100015501", + "id": "astnode100015535", "name": "CalcPluto", "type": "FunctionDeclaration", "paramnames": [ @@ -27448,14 +27520,14 @@ "comment": "", "meta": { "range": [ - 136061, - 136062 + 136460, + 136461 ], "filename": "astronomy.js", - "lineno": 2999, + "lineno": 3004, "columnno": 8, "code": { - "id": "astnode100015506", + "id": "astnode100015540", "name": "r" } }, @@ -27471,14 +27543,14 @@ "comment": "", "meta": { "range": [ - 136064, - 136068 + 136463, + 136467 ], "filename": "astronomy.js", - "lineno": 2999, + "lineno": 3004, "columnno": 11, "code": { - "id": "astnode100015508", + "id": "astnode100015542", "name": "bary" } }, @@ -27494,14 +27566,14 @@ "comment": "", "meta": { "range": [ - 136080, - 136118 + 136479, + 136517 ], "filename": "astronomy.js", - "lineno": 3000, + "lineno": 3005, "columnno": 10, "code": { - "id": "astnode100015511", + "id": "astnode100015545", "name": "seg", "type": "CallExpression", "value": "" @@ -27519,14 +27591,14 @@ "comment": "", "meta": { "range": [ - 136383, - 136386 + 136782, + 136785 ], "filename": "astronomy.js", - "lineno": 3005, + "lineno": 3010, "columnno": 12, "code": { - "id": "astnode100015524", + "id": "astnode100015558", "name": "sim" } }, @@ -27542,14 +27614,14 @@ "comment": "", "meta": { "range": [ - 136445, - 136506 + 136844, + 136905 ], "filename": "astronomy.js", - "lineno": 3007, + "lineno": 3012, "columnno": 12, "code": { - "id": "astnode100015537", + "id": "astnode100015571", "name": "sim", "type": "CallExpression", "funcscope": "CalcPluto", @@ -27568,14 +27640,14 @@ "comment": "", "meta": { "range": [ - 136533, - 136613 + 136932, + 137012 ], "filename": "astronomy.js", - "lineno": 3009, + "lineno": 3014, "columnno": 12, "code": { - "id": "astnode100015550", + "id": "astnode100015584", "name": "sim", "type": "CallExpression", "funcscope": "CalcPluto", @@ -27594,14 +27666,14 @@ "comment": "", "meta": { "range": [ - 136623, - 136637 + 137022, + 137036 ], "filename": "astronomy.js", - "lineno": 3010, + "lineno": 3015, "columnno": 8, "code": { - "id": "astnode100015565", + "id": "astnode100015599", "name": "r", "type": "MemberExpression", "funcscope": "CalcPluto", @@ -27620,14 +27692,14 @@ "comment": "", "meta": { "range": [ - 136647, - 136662 + 137046, + 137061 ], "filename": "astronomy.js", - "lineno": 3011, + "lineno": 3016, "columnno": 8, "code": { - "id": "astnode100015573", + "id": "astnode100015607", "name": "bary", "type": "MemberExpression", "funcscope": "CalcPluto", @@ -27646,14 +27718,14 @@ "comment": "", "meta": { "range": [ - 136695, - 136764 + 137094, + 137163 ], "filename": "astronomy.js", - "lineno": 3014, + "lineno": 3019, "columnno": 14, "code": { - "id": "astnode100015580", + "id": "astnode100015614", "name": "left", "type": "CallExpression", "value": "" @@ -27671,14 +27743,14 @@ "comment": "", "meta": { "range": [ - 136780, - 136794 + 137179, + 137193 ], "filename": "astronomy.js", - "lineno": 3015, + "lineno": 3020, "columnno": 14, "code": { - "id": "astnode100015599", + "id": "astnode100015633", "name": "s1", "type": "MemberExpression", "value": "seg[undefined]" @@ -27696,14 +27768,14 @@ "comment": "", "meta": { "range": [ - 136810, - 136828 + 137209, + 137227 ], "filename": "astronomy.js", - "lineno": 3016, + "lineno": 3021, "columnno": 14, "code": { - "id": "astnode100015605", + "id": "astnode100015639", "name": "s2", "type": "MemberExpression", "value": "seg[undefined]" @@ -27721,14 +27793,14 @@ "comment": "", "meta": { "range": [ - 136904, - 136925 + 137303, + 137324 ], "filename": "astronomy.js", - "lineno": 3018, + "lineno": 3023, "columnno": 14, "code": { - "id": "astnode100015613", + "id": "astnode100015647", "name": "acc", "type": "CallExpression", "value": "" @@ -27746,14 +27818,14 @@ "comment": "", "meta": { "range": [ - 137036, - 137089 + 137435, + 137488 ], "filename": "astronomy.js", - "lineno": 3020, + "lineno": 3025, "columnno": 14, "code": { - "id": "astnode100015625", + "id": "astnode100015659", "name": "ra", "type": "CallExpression", "value": "" @@ -27771,14 +27843,14 @@ "comment": "", "meta": { "range": [ - 137200, - 137253 + 137599, + 137652 ], "filename": "astronomy.js", - "lineno": 3022, + "lineno": 3027, "columnno": 14, "code": { - "id": "astnode100015644", + "id": "astnode100015678", "name": "rb", "type": "CallExpression", "value": "" @@ -27796,14 +27868,14 @@ "comment": "", "meta": { "range": [ - 137338, - 137373 + 137737, + 137772 ], "filename": "astronomy.js", - "lineno": 3024, + "lineno": 3029, "columnno": 14, "code": { - "id": "astnode100015663", + "id": "astnode100015697", "name": "ramp", "type": "BinaryExpression", "value": "" @@ -27821,14 +27893,14 @@ "comment": "", "meta": { "range": [ - 137383, - 137421 + 137782, + 137820 ], "filename": "astronomy.js", - "lineno": 3025, + "lineno": 3030, "columnno": 8, "code": { - "id": "astnode100015675", + "id": "astnode100015709", "name": "r", "type": "CallExpression", "funcscope": "CalcPluto", @@ -27847,14 +27919,14 @@ "comment": "", "meta": { "range": [ - 137431, - 137465 + 137830, + 137864 ], "filename": "astronomy.js", - "lineno": 3026, + "lineno": 3031, "columnno": 8, "code": { - "id": "astnode100015693", + "id": "astnode100015727", "name": "bary", "type": "NewExpression", "funcscope": "CalcPluto", @@ -27873,14 +27945,14 @@ "comment": "", "meta": { "range": [ - 137533, - 137811 + 137932, + 138210 ], "filename": "astronomy.js", - "lineno": 3031, + "lineno": 3036, "columnno": 6, "code": { - "id": "astnode100015716", + "id": "astnode100015750", "name": "Rotation_JUP_EQJ", "type": "NewExpression", "value": "" @@ -27897,14 +27969,14 @@ "comment": "", "meta": { "range": [ - 137819, - 144921 + 138218, + 145320 ], "filename": "astronomy.js", - "lineno": 3036, + "lineno": 3041, "columnno": 6, "code": { - "id": "astnode100015737", + "id": "astnode100015771", "name": "JupiterMoonModel", "type": "ArrayExpression", "value": "[\"{\\\"mu\\\":2.82489428433814e-7,\\\"al\\\":\\\"\\\",\\\"a\\\":\\\"\\\",\\\"l\\\":\\\"\\\",\\\"z\\\":\\\"\\\",\\\"zeta\\\":\\\"\\\"}\",\"{\\\"mu\\\":2.82483274392893e-7,\\\"al\\\":\\\"\\\",\\\"a\\\":\\\"\\\",\\\"l\\\":\\\"\\\",\\\"z\\\":\\\"\\\",\\\"zeta\\\":\\\"\\\"}\",\"{\\\"mu\\\":2.82498184184723e-7,\\\"al\\\":\\\"\\\",\\\"a\\\":\\\"\\\",\\\"l\\\":\\\"\\\",\\\"z\\\":\\\"\\\",\\\"zeta\\\":\\\"\\\"}\",\"{\\\"mu\\\":2.82492144889909e-7,\\\"al\\\":\\\"\\\",\\\"a\\\":\\\"\\\",\\\"l\\\":\\\"\\\",\\\"z\\\":\\\"\\\",\\\"zeta\\\":\\\"\\\"}\"]" @@ -27921,14 +27993,14 @@ "comment": "", "meta": { "range": [ - 137868, - 137894 + 138267, + 138293 ], "filename": "astronomy.js", - "lineno": 3039, + "lineno": 3044, "columnno": 8, "code": { - "id": "astnode100015741", + "id": "astnode100015775", "name": "mu", "type": "Literal", "value": 2.82489428433814e-7 @@ -27944,14 +28016,14 @@ "comment": "", "meta": { "range": [ - 137904, - 137956 + 138303, + 138355 ], "filename": "astronomy.js", - "lineno": 3040, + "lineno": 3045, "columnno": 8, "code": { - "id": "astnode100015743", + "id": "astnode100015777", "name": "al", "type": "ArrayExpression", "value": "[1.446213296021224,3.5515522861824]" @@ -27967,14 +28039,14 @@ "comment": "", "meta": { "range": [ - 137966, - 138061 + 138365, + 138460 ], "filename": "astronomy.js", - "lineno": 3041, + "lineno": 3046, "columnno": 8, "code": { - "id": "astnode100015747", + "id": "astnode100015781", "name": "a", "type": "ArrayExpression", "value": "[\"[0.0028210960212903,0,0]\"]" @@ -27990,14 +28062,14 @@ "comment": "", "meta": { "range": [ - 138071, - 138416 + 138470, + 138815 ], "filename": "astronomy.js", - "lineno": 3044, + "lineno": 3049, "columnno": 8, "code": { - "id": "astnode100015753", + "id": "astnode100015787", "name": "l", "type": "ArrayExpression", "value": "[\"[-0.0001925258348666,4.9369589722645,0.01358483658305]\",\"[-0.0000970803596076,4.3188796477322,0.01303413843243]\",\"[-0.00008988174165,1.9080016428617,0.00305064867158]\",\"[-0.0000553101050262,1.4936156681569,0.01293892891155]\"]" @@ -28013,14 +28085,14 @@ "comment": "", "meta": { "range": [ - 138426, - 138686 + 138825, + 139085 ], "filename": "astronomy.js", - "lineno": 3050, + "lineno": 3055, "columnno": 8, "code": { - "id": "astnode100015775", + "id": "astnode100015809", "name": "z", "type": "ArrayExpression", "value": "[\"[0.0041510849668155,4.089939635545,-0.01290686414666]\",\"[0.0006260521444113,1.446188898627,3.5515522949802]\",\"[0.0000352747346169,2.1256287034578,0.00012727416567]\"]" @@ -28036,14 +28108,14 @@ "comment": "", "meta": { "range": [ - 138696, - 138878 + 139095, + 139277 ], "filename": "astronomy.js", - "lineno": 3055, + "lineno": 3060, "columnno": 8, "code": { - "id": "astnode100015790", + "id": "astnode100015824", "name": "zeta", "type": "ArrayExpression", "value": "[\"[0.0003142172466014,2.7964219722923,-0.002315096098]\",\"[0.0000904169207946,1.0477061879627,-0.00056920638196]\"]" @@ -28059,14 +28131,14 @@ "comment": "", "meta": { "range": [ - 138918, - 138944 + 139317, + 139343 ], "filename": "astronomy.js", - "lineno": 3062, + "lineno": 3067, "columnno": 8, "code": { - "id": "astnode100015803", + "id": "astnode100015837", "name": "mu", "type": "Literal", "value": 2.82483274392893e-7 @@ -28082,14 +28154,14 @@ "comment": "", "meta": { "range": [ - 138954, - 139007 + 139353, + 139406 ], "filename": "astronomy.js", - "lineno": 3063, + "lineno": 3068, "columnno": 8, "code": { - "id": "astnode100015805", + "id": "astnode100015839", "name": "al", "type": "ArrayExpression", "value": "[-0.3735263437471362,1.76932271112347]" @@ -28105,14 +28177,14 @@ "comment": "", "meta": { "range": [ - 139017, - 139194 + 139416, + 139593 ], "filename": "astronomy.js", - "lineno": 3064, + "lineno": 3069, "columnno": 8, "code": { - "id": "astnode100015810", + "id": "astnode100015844", "name": "a", "type": "ArrayExpression", "value": "[\"[0.0044871037804314,0,0]\",\"[4.324367498e-7,1.819645606291,1.7822295777568]\"]" @@ -28128,14 +28200,14 @@ "comment": "", "meta": { "range": [ - 139204, - 139876 + 139603, + 140275 ], "filename": "astronomy.js", - "lineno": 3068, + "lineno": 3073, "columnno": 8, "code": { - "id": "astnode100015820", + "id": "astnode100015854", "name": "l", "type": "ArrayExpression", "value": "[\"[0.0008576433172936,4.3188693178264,0.01303413830805]\",\"[0.0004549582875086,1.4936531751079,0.01293892881962]\",\"[0.0003248939825174,1.8196494533458,1.7822295777568]\",\"[-0.0003074250079334,4.9377037005911,0.01358483286724]\",\"[0.0001982386144784,1.907986905476,0.00305101212869]\",\"[0.0001834063551804,2.1402853388529,0.00145009789338]\",\"[-0.0001434383188452,5.622214036663,0.89111478887838]\",\"[-0.0000771939140944,4.300272437235,2.6733443704266]\"]" @@ -28151,14 +28223,14 @@ "comment": "", "meta": { "range": [ - 139886, - 140476 + 140285, + 140875 ], "filename": "astronomy.js", - "lineno": 3078, + "lineno": 3083, "columnno": 8, "code": { - "id": "astnode100015857", + "id": "astnode100015891", "name": "z", "type": "ArrayExpression", "value": "[\"[-0.0093589104136341,4.0899396509039,-0.01290686414666]\",\"[0.0002988994545555,5.9097265185595,1.7693227079462]\",\"[0.000213903639035,2.1256289300016,0.00012727418407]\",\"[0.0001980963564781,2.743516829265,0.00067797343009]\",\"[0.0001210388158965,5.5839943711203,0.0000320566149]\",\"[0.0000837042048393,1.6094538368039,-0.90402165808846]\",\"[0.0000823525166369,1.4461887708689,3.5515522949802]\"]" @@ -28174,14 +28246,14 @@ "comment": "", "meta": { "range": [ - 140486, - 140833 + 140885, + 141232 ], "filename": "astronomy.js", - "lineno": 3087, + "lineno": 3092, "columnno": 8, "code": { - "id": "astnode100015890", + "id": "astnode100015924", "name": "zeta", "type": "ArrayExpression", "value": "[\"[0.0040404917832303,1.0477063169425,-0.0005692064054]\",\"[0.0002200421034564,3.3368857864364,-0.00012491307307]\",\"[0.0001662544744719,2.4134862374711,0]\",\"[0.0000590282470983,5.9719930968366,-0.00003056160225]\"]" @@ -28197,14 +28269,14 @@ "comment": "", "meta": { "range": [ - 140875, - 140901 + 141274, + 141300 ], "filename": "astronomy.js", - "lineno": 3096, + "lineno": 3101, "columnno": 8, "code": { - "id": "astnode100015912", + "id": "astnode100015946", "name": "mu", "type": "Literal", "value": 2.82498184184723e-7 @@ -28220,14 +28292,14 @@ "comment": "", "meta": { "range": [ - 140911, - 140963 + 141310, + 141362 ], "filename": "astronomy.js", - "lineno": 3097, + "lineno": 3102, "columnno": 8, "code": { - "id": "astnode100015914", + "id": "astnode100015948", "name": "al", "type": "ArrayExpression", "value": "[0.2874089391143348,0.878207923589328]" @@ -28243,14 +28315,14 @@ "comment": "", "meta": { "range": [ - 140973, - 141150 + 141372, + 141549 ], "filename": "astronomy.js", - "lineno": 3098, + "lineno": 3103, "columnno": 8, "code": { - "id": "astnode100015918", + "id": "astnode100015952", "name": "a", "type": "ArrayExpression", "value": "[\"[0.0071566594572575,0,0]\",\"[0.000001393029911,1.1586745884981,2.6733443704266]\"]" @@ -28266,14 +28338,14 @@ "comment": "", "meta": { "range": [ - 141160, - 141834 + 141559, + 142233 ], "filename": "astronomy.js", - "lineno": 3102, + "lineno": 3107, "columnno": 8, "code": { - "id": "astnode100015928", + "id": "astnode100015962", "name": "l", "type": "ArrayExpression", "value": "[\"[0.0002310797886226,2.1402987195942,0.00145009784384]\",\"[-0.0001828635964118,4.3188672736968,0.01303413828263]\",\"[0.0001512378778204,4.9373102372298,0.01358483481252]\",\"[-0.0001163720969778,4.300265986149,2.6733443704266]\",\"[-0.0000955478069846,1.4936612842567,0.01293892879857]\",\"[0.0000815246854464,5.6222137132535,0.89111478887838]\",\"[-0.0000801219679602,1.2995922951532,1.0034433456729]\",\"[-0.0000607017260182,0.64978769669238,0.50172167043264]\"]" @@ -28289,14 +28361,14 @@ "comment": "", "meta": { "range": [ - 141844, - 142517 + 142243, + 142916 ], "filename": "astronomy.js", - "lineno": 3112, + "lineno": 3117, "columnno": 8, "code": { - "id": "astnode100015967", + "id": "astnode100016001", "name": "z", "type": "ArrayExpression", "value": "[\"[0.0014289811307319,2.1256295942739,0.00012727413029]\",\"[0.000771093122676,5.5836330003496,0.0000320643411]\",\"[0.0005925911780766,4.0899396636448,-0.01290686414666]\",\"[0.0002045597496146,5.2713683670372,-0.12523544076106]\",\"[0.0001785118648258,0.28743156721063,0.8782079244252]\",\"[0.0001131999784893,1.4462127277818,3.5515522949802]\",\"[-0.000065877816921,2.2702423990985,-1.7951364394537]\",\"[0.0000497058888328,5.9096792204858,1.7693227129285]\"]" @@ -28312,14 +28384,14 @@ "comment": "", "meta": { "range": [ - 142527, - 142875 + 142926, + 143274 ], "filename": "astronomy.js", - "lineno": 3122, + "lineno": 3127, "columnno": 8, "code": { - "id": "astnode100016005", + "id": "astnode100016039", "name": "zeta", "type": "ArrayExpression", "value": "[\"[0.0015932721570848,3.3368862796665,-0.00012491307058]\",\"[0.0008533093128905,2.4133881688166,0]\",\"[0.0003513347911037,5.9720789850127,-0.00003056101771]\",\"[-0.0001441929255483,1.0477061764435,-0.00056920632124]\"]" @@ -28335,14 +28407,14 @@ "comment": "", "meta": { "range": [ - 142917, - 142943 + 143316, + 143342 ], "filename": "astronomy.js", - "lineno": 3131, + "lineno": 3136, "columnno": 8, "code": { - "id": "astnode100016028", + "id": "astnode100016062", "name": "mu", "type": "Literal", "value": 2.82492144889909e-7 @@ -28358,14 +28430,14 @@ "comment": "", "meta": { "range": [ - 142953, - 143006 + 143352, + 143405 ], "filename": "astronomy.js", - "lineno": 3132, + "lineno": 3137, "columnno": 8, "code": { - "id": "astnode100016030", + "id": "astnode100016064", "name": "al", "type": "ArrayExpression", "value": "[-0.3620341291375704,0.376486233433828]" @@ -28381,14 +28453,14 @@ "comment": "", "meta": { "range": [ - 143016, - 143275 + 143415, + 143674 ], "filename": "astronomy.js", - "lineno": 3133, + "lineno": 3138, "columnno": 8, "code": { - "id": "astnode100016035", + "id": "astnode100016069", "name": "a", "type": "ArrayExpression", "value": "[\"[0.0125879701715314,0,0]\",\"[0.000003595204947,0.64965776007116,0.50172168165034]\",\"[0.0000027580210652,1.808423578151,3.1750660413359]\"]" @@ -28404,14 +28476,14 @@ "comment": "", "meta": { "range": [ - 143285, - 143791 + 143684, + 144190 ], "filename": "astronomy.js", - "lineno": 3138, + "lineno": 3143, "columnno": 8, "code": { - "id": "astnode100016049", + "id": "astnode100016083", "name": "l", "type": "ArrayExpression", "value": "[\"[0.0005586040123824,2.1404207189815,0.00145009793231]\",\"[-0.0003805813868176,2.7358844897853,0.00002972965062]\",\"[0.0002205152863262,0.649796525964,0.5017216724358]\",\"[0.0001877895151158,1.8084787604005,3.1750660413359]\",\"[0.0000766916975242,6.2720114319755,1.3928364636651]\",\"[0.0000747056855106,1.2995916202344,1.0034433456729]\"]" @@ -28427,14 +28499,14 @@ "comment": "", "meta": { "range": [ - 143801, - 144556 + 144200, + 144955 ], "filename": "astronomy.js", - "lineno": 3146, + "lineno": 3151, "columnno": 8, "code": { - "id": "astnode100016076", + "id": "astnode100016110", "name": "z", "type": "ArrayExpression", "value": "[\"[0.0073755808467977,5.5836071576084,0.00003206509914]\",\"[0.0002065924169942,5.9209831565786,0.37648624194703]\",\"[0.0001589869764021,0.28744006242623,0.8782079244252]\",\"[-0.0001561131605348,2.1257397865089,0.00012727441285]\",\"[0.0001486043380971,1.4462134301023,3.5515522949802]\",\"[0.0000635073108731,5.9096803285954,1.7693227129285]\",\"[0.0000599351698525,4.1125517584798,-2.7985797954589]\",\"[0.0000540660842731,5.5390350845569,0.00286834082283]\",\"[-0.0000489596900866,4.6218149483338,-0.62695712529519]\"]" @@ -28450,14 +28522,14 @@ "comment": "", "meta": { "range": [ - 144566, - 144913 + 144965, + 145312 ], "filename": "astronomy.js", - "lineno": 3157, + "lineno": 3162, "columnno": 8, "code": { - "id": "astnode100016118", + "id": "astnode100016152", "name": "zeta", "type": "ArrayExpression", "value": "[\"[0.0038422977898495,2.4133922085557,0]\",\"[0.0022453891791894,5.9721736773277,-0.00003056125525]\",\"[-0.0002604479450559,3.3368746306409,-0.00012491309972]\",\"[0.000033211214323,5.5604137742337,0.00290037688507]\"]" @@ -28473,14 +28545,14 @@ "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": [ - 145648, - 145730 + 146047, + 146129 ], "filename": "astronomy.js", - "lineno": 3180, + "lineno": 3185, "columnno": 0, "code": { - "id": "astnode100016139", + "id": "astnode100016173", "name": "JupiterMoonsInfo", "type": "ClassDeclaration", "paramnames": [ @@ -28517,14 +28589,14 @@ "comment": "", "meta": { "range": [ - 145677, - 145728 + 146076, + 146127 ], "filename": "astronomy.js", - "lineno": 3181, + "lineno": 3186, "columnno": 4, "code": { - "id": "astnode100016142", + "id": "astnode100016176", "name": "JupiterMoonsInfo", "type": "MethodDefinition", "paramnames": [ @@ -28546,14 +28618,14 @@ "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": [ - 145648, - 145730 + 146047, + 146129 ], "filename": "astronomy.js", - "lineno": 3180, + "lineno": 3185, "columnno": 0, "code": { - "id": "astnode100016139", + "id": "astnode100016173", "name": "JupiterMoonsInfo", "type": "ClassDeclaration", "paramnames": [ @@ -28589,14 +28661,14 @@ "comment": "", "meta": { "range": [ - 145705, - 145721 + 146104, + 146120 ], "filename": "astronomy.js", - "lineno": 3182, + "lineno": 3187, "columnno": 8, "code": { - "id": "astnode100016148", + "id": "astnode100016182", "name": "this.moon", "type": "Identifier", "value": "moon", @@ -28614,14 +28686,14 @@ "comment": "", "meta": { "range": [ - 145731, - 145774 + 146130, + 146173 ], "filename": "astronomy.js", - "lineno": 3185, + "lineno": 3190, "columnno": 0, "code": { - "id": "astnode100016154", + "id": "astnode100016188", "name": "exports.JupiterMoonsInfo", "type": "Identifier", "value": "JupiterMoonsInfo", @@ -28638,14 +28710,14 @@ "comment": "", "meta": { "range": [ - 145776, - 147137 + 146175, + 147536 ], "filename": "astronomy.js", - "lineno": 3186, + "lineno": 3191, "columnno": 0, "code": { - "id": "astnode100016159", + "id": "astnode100016193", "name": "JupiterMoon_elem2pv", "type": "FunctionDeclaration", "paramnames": [ @@ -28692,14 +28764,14 @@ "comment": "", "meta": { "range": [ - 145950, - 145961 + 146349, + 146360 ], "filename": "astronomy.js", - "lineno": 3189, + "lineno": 3194, "columnno": 10, "code": { - "id": "astnode100016166", + "id": "astnode100016200", "name": "A", "type": "MemberExpression", "value": "elem[0]" @@ -28717,14 +28789,14 @@ "comment": "", "meta": { "range": [ - 145973, - 145985 + 146372, + 146384 ], "filename": "astronomy.js", - "lineno": 3190, + "lineno": 3195, "columnno": 10, "code": { - "id": "astnode100016172", + "id": "astnode100016206", "name": "AL", "type": "MemberExpression", "value": "elem[1]" @@ -28742,14 +28814,14 @@ "comment": "", "meta": { "range": [ - 145997, - 146008 + 146396, + 146407 ], "filename": "astronomy.js", - "lineno": 3191, + "lineno": 3196, "columnno": 10, "code": { - "id": "astnode100016178", + "id": "astnode100016212", "name": "K", "type": "MemberExpression", "value": "elem[2]" @@ -28767,14 +28839,14 @@ "comment": "", "meta": { "range": [ - 146020, - 146031 + 146419, + 146430 ], "filename": "astronomy.js", - "lineno": 3192, + "lineno": 3197, "columnno": 10, "code": { - "id": "astnode100016184", + "id": "astnode100016218", "name": "H", "type": "MemberExpression", "value": "elem[3]" @@ -28792,14 +28864,14 @@ "comment": "", "meta": { "range": [ - 146043, - 146054 + 146442, + 146453 ], "filename": "astronomy.js", - "lineno": 3193, + "lineno": 3198, "columnno": 10, "code": { - "id": "astnode100016190", + "id": "astnode100016224", "name": "Q", "type": "MemberExpression", "value": "elem[4]" @@ -28817,14 +28889,14 @@ "comment": "", "meta": { "range": [ - 146066, - 146077 + 146465, + 146476 ], "filename": "astronomy.js", - "lineno": 3194, + "lineno": 3199, "columnno": 10, "code": { - "id": "astnode100016196", + "id": "astnode100016230", "name": "P", "type": "MemberExpression", "value": "elem[5]" @@ -28842,14 +28914,14 @@ "comment": "", "meta": { "range": [ - 146089, - 146121 + 146488, + 146520 ], "filename": "astronomy.js", - "lineno": 3195, + "lineno": 3200, "columnno": 10, "code": { - "id": "astnode100016202", + "id": "astnode100016236", "name": "AN", "type": "CallExpression", "value": "" @@ -28867,14 +28939,14 @@ "comment": "", "meta": { "range": [ - 146131, - 146133 + 146530, + 146532 ], "filename": "astronomy.js", - "lineno": 3196, + "lineno": 3201, "columnno": 8, "code": { - "id": "astnode100016216", + "id": "astnode100016250", "name": "CE" } }, @@ -28890,14 +28962,14 @@ "comment": "", "meta": { "range": [ - 146135, - 146137 + 146534, + 146536 ], "filename": "astronomy.js", - "lineno": 3196, + "lineno": 3201, "columnno": 12, "code": { - "id": "astnode100016218", + "id": "astnode100016252", "name": "SE" } }, @@ -28913,14 +28985,14 @@ "comment": "", "meta": { "range": [ - 146139, - 146141 + 146538, + 146540 ], "filename": "astronomy.js", - "lineno": 3196, + "lineno": 3201, "columnno": 16, "code": { - "id": "astnode100016220", + "id": "astnode100016254", "name": "DE" } }, @@ -28936,14 +29008,14 @@ "comment": "", "meta": { "range": [ - 146151, - 146196 + 146550, + 146595 ], "filename": "astronomy.js", - "lineno": 3197, + "lineno": 3202, "columnno": 8, "code": { - "id": "astnode100016223", + "id": "astnode100016257", "name": "EE", "type": "BinaryExpression", "value": "" @@ -28961,14 +29033,14 @@ "comment": "", "meta": { "range": [ - 146215, - 146232 + 146614, + 146631 ], "filename": "astronomy.js", - "lineno": 3199, + "lineno": 3204, "columnno": 8, "code": { - "id": "astnode100016252", + "id": "astnode100016286", "name": "CE", "type": "CallExpression", "funcscope": "JupiterMoon_elem2pv", @@ -28987,14 +29059,14 @@ "comment": "", "meta": { "range": [ - 146242, - 146259 + 146641, + 146658 ], "filename": "astronomy.js", - "lineno": 3200, + "lineno": 3205, "columnno": 8, "code": { - "id": "astnode100016260", + "id": "astnode100016294", "name": "SE", "type": "CallExpression", "funcscope": "JupiterMoon_elem2pv", @@ -29013,14 +29085,14 @@ "comment": "", "meta": { "range": [ - 146269, - 146327 + 146668, + 146726 ], "filename": "astronomy.js", - "lineno": 3201, + "lineno": 3206, "columnno": 8, "code": { - "id": "astnode100016268", + "id": "astnode100016302", "name": "DE", "type": "BinaryExpression", "funcscope": "JupiterMoon_elem2pv", @@ -29039,14 +29111,14 @@ "comment": "", "meta": { "range": [ - 146337, - 146345 + 146736, + 146744 ], "filename": "astronomy.js", - "lineno": 3202, + "lineno": 3207, "columnno": 8, "code": { - "id": "astnode100016292", + "id": "astnode100016326", "name": "EE", "type": "Identifier", "funcscope": "JupiterMoon_elem2pv", @@ -29065,14 +29137,14 @@ "comment": "", "meta": { "range": [ - 146390, - 146407 + 146789, + 146806 ], "filename": "astronomy.js", - "lineno": 3204, + "lineno": 3209, "columnno": 4, "code": { - "id": "astnode100016296", + "id": "astnode100016330", "name": "CE", "type": "CallExpression", "funcscope": "JupiterMoon_elem2pv", @@ -29091,14 +29163,14 @@ "comment": "", "meta": { "range": [ - 146413, - 146430 + 146812, + 146829 ], "filename": "astronomy.js", - "lineno": 3205, + "lineno": 3210, "columnno": 4, "code": { - "id": "astnode100016304", + "id": "astnode100016338", "name": "SE", "type": "CallExpression", "funcscope": "JupiterMoon_elem2pv", @@ -29117,14 +29189,14 @@ "comment": "", "meta": { "range": [ - 146442, - 146463 + 146841, + 146862 ], "filename": "astronomy.js", - "lineno": 3206, + "lineno": 3211, "columnno": 10, "code": { - "id": "astnode100016312", + "id": "astnode100016346", "name": "DLE", "type": "BinaryExpression", "value": "" @@ -29142,14 +29214,14 @@ "comment": "", "meta": { "range": [ - 146475, - 146499 + 146874, + 146898 ], "filename": "astronomy.js", - "lineno": 3207, + "lineno": 3212, "columnno": 10, "code": { - "id": "astnode100016322", + "id": "astnode100016356", "name": "RSAM1", "type": "BinaryExpression", "value": "" @@ -29167,14 +29239,14 @@ "comment": "", "meta": { "range": [ - 146511, - 146536 + 146910, + 146935 ], "filename": "astronomy.js", - "lineno": 3208, + "lineno": 3213, "columnno": 10, "code": { - "id": "astnode100016333", + "id": "astnode100016367", "name": "ASR", "type": "BinaryExpression", "value": "" @@ -29192,14 +29264,14 @@ "comment": "", "meta": { "range": [ - 146548, - 146584 + 146947, + 146983 ], "filename": "astronomy.js", - "lineno": 3209, + "lineno": 3214, "columnno": 10, "code": { - "id": "astnode100016341", + "id": "astnode100016375", "name": "PHI", "type": "CallExpression", "value": "" @@ -29217,14 +29289,14 @@ "comment": "", "meta": { "range": [ - 146596, - 146619 + 146995, + 147018 ], "filename": "astronomy.js", - "lineno": 3210, + "lineno": 3215, "columnno": 10, "code": { - "id": "astnode100016357", + "id": "astnode100016391", "name": "PSI", "type": "BinaryExpression", "value": "" @@ -29242,14 +29314,14 @@ "comment": "", "meta": { "range": [ - 146631, - 146664 + 147030, + 147063 ], "filename": "astronomy.js", - "lineno": 3211, + "lineno": 3216, "columnno": 10, "code": { - "id": "astnode100016365", + "id": "astnode100016399", "name": "X1", "type": "BinaryExpression", "value": "" @@ -29267,14 +29339,14 @@ "comment": "", "meta": { "range": [ - 146676, - 146709 + 147075, + 147108 ], "filename": "astronomy.js", - "lineno": 3212, + "lineno": 3217, "columnno": 10, "code": { - "id": "astnode100016379", + "id": "astnode100016413", "name": "Y1", "type": "BinaryExpression", "value": "" @@ -29292,14 +29364,14 @@ "comment": "", "meta": { "range": [ - 146721, - 146765 + 147120, + 147164 ], "filename": "astronomy.js", - "lineno": 3213, + "lineno": 3218, "columnno": 10, "code": { - "id": "astnode100016393", + "id": "astnode100016427", "name": "VX1", "type": "BinaryExpression", "value": "" @@ -29317,14 +29389,14 @@ "comment": "", "meta": { "range": [ - 146777, - 146821 + 147176, + 147220 ], "filename": "astronomy.js", - "lineno": 3214, + "lineno": 3219, "columnno": 10, "code": { - "id": "astnode100016410", + "id": "astnode100016444", "name": "VY1", "type": "BinaryExpression", "value": "" @@ -29342,14 +29414,14 @@ "comment": "", "meta": { "range": [ - 146833, - 146874 + 147232, + 147273 ], "filename": "astronomy.js", - "lineno": 3215, + "lineno": 3220, "columnno": 10, "code": { - "id": "astnode100016427", + "id": "astnode100016461", "name": "F2", "type": "BinaryExpression", "value": "" @@ -29367,14 +29439,14 @@ "comment": "", "meta": { "range": [ - 146886, - 146908 + 147285, + 147307 ], "filename": "astronomy.js", - "lineno": 3216, + "lineno": 3221, "columnno": 10, "code": { - "id": "astnode100016445", + "id": "astnode100016479", "name": "P2", "type": "BinaryExpression", "value": "" @@ -29392,14 +29464,14 @@ "comment": "", "meta": { "range": [ - 146920, - 146942 + 147319, + 147341 ], "filename": "astronomy.js", - "lineno": 3217, + "lineno": 3222, "columnno": 10, "code": { - "id": "astnode100016455", + "id": "astnode100016489", "name": "Q2", "type": "BinaryExpression", "value": "" @@ -29417,14 +29489,14 @@ "comment": "", "meta": { "range": [ - 146954, - 146970 + 147353, + 147369 ], "filename": "astronomy.js", - "lineno": 3218, + "lineno": 3223, "columnno": 10, "code": { - "id": "astnode100016465", + "id": "astnode100016499", "name": "PQ", "type": "BinaryExpression", "value": "" @@ -29442,14 +29514,14 @@ "comment": "", "meta": { "range": [ - 147138, - 148518 + 147537, + 148917 ], "filename": "astronomy.js", - "lineno": 3221, + "lineno": 3226, "columnno": 0, "code": { - "id": "astnode100016522", + "id": "astnode100016556", "name": "CalcJupiterMoon", "type": "FunctionDeclaration", "paramnames": [ @@ -29482,14 +29554,14 @@ "comment": "", "meta": { "range": [ - 147322, - 147343 + 147721, + 147742 ], "filename": "astronomy.js", - "lineno": 3224, + "lineno": 3229, "columnno": 10, "code": { - "id": "astnode100016528", + "id": "astnode100016562", "name": "t", "type": "BinaryExpression", "value": "" @@ -29507,14 +29579,14 @@ "comment": "", "meta": { "range": [ - 147456, - 147503 + 147855, + 147902 ], "filename": "astronomy.js", - "lineno": 3226, + "lineno": 3231, "columnno": 10, "code": { - "id": "astnode100016536", + "id": "astnode100016570", "name": "elem", "type": "ArrayExpression", "value": "[0,\"\",0,0,0,0]" @@ -29532,14 +29604,14 @@ "comment": "", "meta": { "range": [ - 147564, - 147620 + 147963, + 148019 ], "filename": "astronomy.js", - "lineno": 3228, + "lineno": 3233, "columnno": 8, "code": { - "id": "astnode100016565", + "id": "astnode100016599", "name": "elem[0]", "type": "BinaryExpression", "funcscope": "CalcJupiterMoon", @@ -29558,14 +29630,14 @@ "comment": "", "meta": { "range": [ - 147681, - 147737 + 148080, + 148136 ], "filename": "astronomy.js", - "lineno": 3230, + "lineno": 3235, "columnno": 8, "code": { - "id": "astnode100016588", + "id": "astnode100016622", "name": "elem[1]", "type": "BinaryExpression", "funcscope": "CalcJupiterMoon", @@ -29584,14 +29656,14 @@ "comment": "", "meta": { "range": [ - 147743, - 147757 + 148142, + 148156 ], "filename": "astronomy.js", - "lineno": 3231, + "lineno": 3236, "columnno": 4, "code": { - "id": "astnode100016604", + "id": "astnode100016638", "name": "elem[1]", "type": "Identifier", "funcscope": "CalcJupiterMoon", @@ -29610,14 +29682,14 @@ "comment": "", "meta": { "range": [ - 147788, - 147802 + 148187, + 148201 ], "filename": "astronomy.js", - "lineno": 3233, + "lineno": 3238, "columnno": 8, "code": { - "id": "astnode100016616", + "id": "astnode100016650", "name": "elem[1]", "type": "Identifier", "funcscope": "CalcJupiterMoon", @@ -29636,14 +29708,14 @@ "comment": "", "meta": { "range": [ - 147871, - 147900 + 148270, + 148299 ], "filename": "astronomy.js", - "lineno": 3235, + "lineno": 3240, "columnno": 14, "code": { - "id": "astnode100016630", + "id": "astnode100016664", "name": "arg", "type": "BinaryExpression", "value": "" @@ -29661,14 +29733,14 @@ "comment": "", "meta": { "range": [ - 147910, - 147946 + 148309, + 148345 ], "filename": "astronomy.js", - "lineno": 3236, + "lineno": 3241, "columnno": 8, "code": { - "id": "astnode100016638", + "id": "astnode100016672", "name": "elem[2]", "type": "BinaryExpression", "funcscope": "CalcJupiterMoon", @@ -29687,14 +29759,14 @@ "comment": "", "meta": { "range": [ - 147956, - 147992 + 148355, + 148391 ], "filename": "astronomy.js", - "lineno": 3237, + "lineno": 3242, "columnno": 8, "code": { - "id": "astnode100016650", + "id": "astnode100016684", "name": "elem[3]", "type": "BinaryExpression", "funcscope": "CalcJupiterMoon", @@ -29713,14 +29785,14 @@ "comment": "", "meta": { "range": [ - 148070, - 148099 + 148469, + 148498 ], "filename": "astronomy.js", - "lineno": 3240, + "lineno": 3245, "columnno": 14, "code": { - "id": "astnode100016670", + "id": "astnode100016704", "name": "arg", "type": "BinaryExpression", "value": "" @@ -29738,14 +29810,14 @@ "comment": "", "meta": { "range": [ - 148109, - 148145 + 148508, + 148544 ], "filename": "astronomy.js", - "lineno": 3241, + "lineno": 3246, "columnno": 8, "code": { - "id": "astnode100016678", + "id": "astnode100016712", "name": "elem[4]", "type": "BinaryExpression", "funcscope": "CalcJupiterMoon", @@ -29764,14 +29836,14 @@ "comment": "", "meta": { "range": [ - 148155, - 148191 + 148554, + 148590 ], "filename": "astronomy.js", - "lineno": 3242, + "lineno": 3247, "columnno": 8, "code": { - "id": "astnode100016690", + "id": "astnode100016724", "name": "elem[5]", "type": "BinaryExpression", "funcscope": "CalcJupiterMoon", @@ -29790,14 +29862,14 @@ "comment": "", "meta": { "range": [ - 148308, - 148353 + 148707, + 148752 ], "filename": "astronomy.js", - "lineno": 3245, + "lineno": 3250, "columnno": 10, "code": { - "id": "astnode100016702", + "id": "astnode100016736", "name": "state", "type": "CallExpression", "value": "" @@ -29815,14 +29887,14 @@ "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": [ - 149453, - 149679 + 149852, + 150078 ], "filename": "astronomy.js", - "lineno": 3267, + "lineno": 3272, "columnno": 0, "code": { - "id": "astnode100016716", + "id": "astnode100016750", "name": "JupiterMoons", "type": "FunctionDeclaration", "paramnames": [ @@ -29873,14 +29945,14 @@ "comment": "", "meta": { "range": [ - 149493, - 149519 + 149892, + 149918 ], "filename": "astronomy.js", - "lineno": 3268, + "lineno": 3273, "columnno": 10, "code": { - "id": "astnode100016721", + "id": "astnode100016755", "name": "time", "type": "NewExpression", "value": "" @@ -29898,14 +29970,14 @@ "comment": "", "meta": { "range": [ - 149529, - 149542 + 149928, + 149941 ], "filename": "astronomy.js", - "lineno": 3269, + "lineno": 3274, "columnno": 8, "code": { - "id": "astnode100016727", + "id": "astnode100016761", "name": "infolist", "type": "ArrayExpression", "value": "[]" @@ -29923,14 +29995,14 @@ "comment": "", "meta": { "range": [ - 149557, - 149561 + 149956, + 149960 ], "filename": "astronomy.js", - "lineno": 3270, + "lineno": 3275, "columnno": 13, "code": { - "id": "astnode100016732", + "id": "astnode100016766", "name": "moon" } }, @@ -29946,14 +30018,14 @@ "comment": "", "meta": { "range": [ - 149680, - 149715 + 150079, + 150114 ], "filename": "astronomy.js", - "lineno": 3274, + "lineno": 3279, "columnno": 0, "code": { - "id": "astnode100016749", + "id": "astnode100016783", "name": "exports.JupiterMoons", "type": "Identifier", "value": "JupiterMoons", @@ -29970,14 +30042,14 @@ "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": [ - 150509, - 151333 + 150908, + 151732 ], "filename": "astronomy.js", - "lineno": 3295, + "lineno": 3300, "columnno": 0, "code": { - "id": "astnode100016754", + "id": "astnode100016788", "name": "HelioVector", "type": "FunctionDeclaration", "paramnames": [ @@ -30038,14 +30110,14 @@ "comment": "", "meta": { "range": [ - 150552, - 150573 + 150951, + 150972 ], "filename": "astronomy.js", - "lineno": 3296, + "lineno": 3301, "columnno": 8, "code": { - "id": "astnode100016760", + "id": "astnode100016794", "name": "time", "type": "CallExpression", "value": "" @@ -30063,64 +30135,64 @@ "comment": "", "meta": { "range": [ - 150812, - 150842 - ], - "filename": "astronomy.js", - "lineno": 3304, - "columnno": 12, - "code": { - "id": "astnode100016807", - "name": "e", - "type": "CallExpression", - "value": "" - } - }, - "undocumented": true, - "name": "e", - "longname": "HelioVector~e", - "kind": "member", - "memberof": "HelioVector", - "scope": "inner", - "params": [] - }, - { - "comment": "", - "meta": { - "range": [ - 150856, - 150873 - ], - "filename": "astronomy.js", - "lineno": 3305, - "columnno": 12, - "code": { - "id": "astnode100016816", - "name": "m", - "type": "CallExpression", - "value": "" - } - }, - "undocumented": true, - "name": "m", - "longname": "HelioVector~m", - "kind": "member", - "memberof": "HelioVector", - "scope": "inner", - "params": [] - }, - { - "comment": "", - "meta": { - "range": [ - 150990, - 151020 + 151211, + 151241 ], "filename": "astronomy.js", "lineno": 3309, + "columnno": 12, + "code": { + "id": "astnode100016841", + "name": "e", + "type": "CallExpression", + "value": "" + } + }, + "undocumented": true, + "name": "e", + "longname": "HelioVector~e", + "kind": "member", + "memberof": "HelioVector", + "scope": "inner", + "params": [] + }, + { + "comment": "", + "meta": { + "range": [ + 151255, + 151272 + ], + "filename": "astronomy.js", + "lineno": 3310, + "columnno": 12, + "code": { + "id": "astnode100016850", + "name": "m", + "type": "CallExpression", + "value": "" + } + }, + "undocumented": true, + "name": "m", + "longname": "HelioVector~m", + "kind": "member", + "memberof": "HelioVector", + "scope": "inner", + "params": [] + }, + { + "comment": "", + "meta": { + "range": [ + 151389, + 151419 + ], + "filename": "astronomy.js", + "lineno": 3314, "columnno": 14, "code": { - "id": "astnode100016854", + "id": "astnode100016888", "name": "e", "type": "CallExpression", "value": "" @@ -30138,14 +30210,14 @@ "comment": "", "meta": { "range": [ - 151036, - 151053 + 151435, + 151452 ], "filename": "astronomy.js", - "lineno": 3310, + "lineno": 3315, "columnno": 14, "code": { - "id": "astnode100016863", + "id": "astnode100016897", "name": "m", "type": "CallExpression", "value": "" @@ -30163,14 +30235,14 @@ "comment": "", "meta": { "range": [ - 151069, - 151104 + 151468, + 151503 ], "filename": "astronomy.js", - "lineno": 3311, + "lineno": 3316, "columnno": 14, "code": { - "id": "astnode100016869", + "id": "astnode100016903", "name": "denom", "type": "BinaryExpression", "value": "" @@ -30188,14 +30260,14 @@ "comment": "", "meta": { "range": [ - 151334, - 151367 + 151733, + 151766 ], "filename": "astronomy.js", - "lineno": 3318, + "lineno": 3323, "columnno": 0, "code": { - "id": "astnode100016921", + "id": "astnode100016955", "name": "exports.HelioVector", "type": "Identifier", "value": "HelioVector", @@ -30212,14 +30284,14 @@ "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": [ - 152079, - 152306 + 152478, + 152705 ], "filename": "astronomy.js", - "lineno": 3339, + "lineno": 3344, "columnno": 0, "code": { - "id": "astnode100016927", + "id": "astnode100016961", "name": "HelioDistance", "type": "FunctionDeclaration", "paramnames": [ @@ -30278,14 +30350,14 @@ "comment": "", "meta": { "range": [ - 152126, - 152147 + 152525, + 152546 ], "filename": "astronomy.js", - "lineno": 3340, + "lineno": 3345, "columnno": 10, "code": { - "id": "astnode100016933", + "id": "astnode100016967", "name": "time", "type": "CallExpression", "value": "" @@ -30303,14 +30375,14 @@ "comment": "", "meta": { "range": [ - 152307, - 152344 + 152706, + 152743 ], "filename": "astronomy.js", - "lineno": 3345, + "lineno": 3350, "columnno": 0, "code": { - "id": "astnode100016965", + "id": "astnode100016999", "name": "exports.HelioDistance", "type": "Identifier", "value": "HelioDistance", @@ -30327,14 +30399,14 @@ "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": [ - 153600, - 155600 + 153999, + 155999 ], "filename": "astronomy.js", - "lineno": 3375, + "lineno": 3380, "columnno": 0, "code": { - "id": "astnode100016970", + "id": "astnode100017004", "name": "GeoVector", "type": "FunctionDeclaration", "paramnames": [ @@ -30409,14 +30481,14 @@ "comment": "", "meta": { "range": [ - 153686, - 153707 + 154085, + 154106 ], "filename": "astronomy.js", - "lineno": 3377, + "lineno": 3382, "columnno": 10, "code": { - "id": "astnode100016981", + "id": "astnode100017015", "name": "time", "type": "CallExpression", "value": "" @@ -30434,14 +30506,14 @@ "comment": "", "meta": { "range": [ - 153846, - 153858 + 154245, + 154257 ], "filename": "astronomy.js", - "lineno": 3382, + "lineno": 3387, "columnno": 8, "code": { - "id": "astnode100017010", + "id": "astnode100017044", "name": "earth", "type": "Literal", "value": null @@ -30459,14 +30531,14 @@ "comment": "", "meta": { "range": [ - 153868, - 153869 + 154267, + 154268 ], "filename": "astronomy.js", - "lineno": 3383, + "lineno": 3388, "columnno": 8, "code": { - "id": "astnode100017014", + "id": "astnode100017048", "name": "h" } }, @@ -30482,14 +30554,14 @@ "comment": "", "meta": { "range": [ - 153879, - 153882 + 154278, + 154281 ], "filename": "astronomy.js", - "lineno": 3384, + "lineno": 3389, "columnno": 8, "code": { - "id": "astnode100017017", + "id": "astnode100017051", "name": "geo" } }, @@ -30505,14 +30577,14 @@ "comment": "", "meta": { "range": [ - 153892, - 153898 + 154291, + 154297 ], "filename": "astronomy.js", - "lineno": 3385, + "lineno": 3390, "columnno": 8, "code": { - "id": "astnode100017020", + "id": "astnode100017054", "name": "dt", "type": "Literal", "value": 0 @@ -30530,14 +30602,14 @@ "comment": "", "meta": { "range": [ - 153908, - 153920 + 154307, + 154319 ], "filename": "astronomy.js", - "lineno": 3386, + "lineno": 3391, "columnno": 8, "code": { - "id": "astnode100017024", + "id": "astnode100017058", "name": "ltime", "type": "Identifier", "value": "time" @@ -30555,14 +30627,14 @@ "comment": "", "meta": { "range": [ - 154026, - 154034 + 154425, + 154433 ], "filename": "astronomy.js", - "lineno": 3388, + "lineno": 3393, "columnno": 13, "code": { - "id": "astnode100017029", + "id": "astnode100017063", "name": "iter", "type": "Literal", "value": 0 @@ -30580,14 +30652,14 @@ "comment": "", "meta": { "range": [ - 154065, - 154093 + 154464, + 154492 ], "filename": "astronomy.js", - "lineno": 3389, + "lineno": 3394, "columnno": 8, "code": { - "id": "astnode100017039", + "id": "astnode100017073", "name": "h", "type": "CallExpression", "funcscope": "GeoVector", @@ -30606,40 +30678,14 @@ "comment": "", "meta": { "range": [ - 155003, - 155038 - ], - "filename": "astronomy.js", - "lineno": 3404, - "columnno": 12, - "code": { - "id": "astnode100017049", - "name": "earth", - "type": "CallExpression", - "funcscope": "GeoVector", - "value": "", - "paramnames": [] - } - }, - "undocumented": true, - "name": "earth", - "longname": "GeoVector~earth", - "kind": "member", - "memberof": "GeoVector", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 155205, - 155239 + 155402, + 155437 ], "filename": "astronomy.js", "lineno": 3409, - "columnno": 16, + "columnno": 12, "code": { - "id": "astnode100017063", + "id": "astnode100017083", "name": "earth", "type": "CallExpression", "funcscope": "GeoVector", @@ -30658,14 +30704,40 @@ "comment": "", "meta": { "range": [ - 155273, - 155340 + 155604, + 155638 ], "filename": "astronomy.js", - "lineno": 3412, + "lineno": 3414, + "columnno": 16, + "code": { + "id": "astnode100017097", + "name": "earth", + "type": "CallExpression", + "funcscope": "GeoVector", + "value": "", + "paramnames": [] + } + }, + "undocumented": true, + "name": "earth", + "longname": "GeoVector~earth", + "kind": "member", + "memberof": "GeoVector", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 155672, + 155739 + ], + "filename": "astronomy.js", + "lineno": 3417, "columnno": 8, "code": { - "id": "astnode100017072", + "id": "astnode100017106", "name": "geo", "type": "NewExpression", "funcscope": "GeoVector", @@ -30684,14 +30756,14 @@ "comment": "", "meta": { "range": [ - 155354, - 155408 + 155753, + 155807 ], "filename": "astronomy.js", - "lineno": 3413, + "lineno": 3418, "columnno": 12, "code": { - "id": "astnode100017099", + "id": "astnode100017133", "name": "ltime2", "type": "CallExpression", "value": "" @@ -30709,14 +30781,14 @@ "comment": "", "meta": { "range": [ - 155418, - 155453 + 155817, + 155852 ], "filename": "astronomy.js", - "lineno": 3414, + "lineno": 3419, "columnno": 8, "code": { - "id": "astnode100017115", + "id": "astnode100017149", "name": "dt", "type": "CallExpression", "funcscope": "GeoVector", @@ -30735,14 +30807,14 @@ "comment": "", "meta": { "range": [ - 155512, - 155526 + 155911, + 155925 ], "filename": "astronomy.js", - "lineno": 3417, + "lineno": 3422, "columnno": 8, "code": { - "id": "astnode100017135", + "id": "astnode100017169", "name": "ltime", "type": "Identifier", "funcscope": "GeoVector", @@ -30761,14 +30833,14 @@ "comment": "", "meta": { "range": [ - 155601, - 155630 + 156000, + 156029 ], "filename": "astronomy.js", - "lineno": 3421, + "lineno": 3426, "columnno": 0, "code": { - "id": "astnode100017144", + "id": "astnode100017178", "name": "exports.GeoVector", "type": "Identifier", "value": "GeoVector", @@ -30785,14 +30857,14 @@ "comment": "", "meta": { "range": [ - 155632, - 155769 + 156031, + 156168 ], "filename": "astronomy.js", - "lineno": 3422, + "lineno": 3427, "columnno": 0, "code": { - "id": "astnode100017149", + "id": "astnode100017183", "name": "ExportState", "type": "FunctionDeclaration", "paramnames": [ @@ -30812,14 +30884,14 @@ "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.SSB`, and all planets except Pluto:\n * `Body.Mercury`, `Body.Venus`, `Body.Earth`, `Body.Mars`, `Body.Jupiter`,\n * `Body.Saturn`, `Body.Uranus`, `Body.Neptune`.\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": [ - 156592, - 158110 + 156991, + 158509 ], "filename": "astronomy.js", - "lineno": 3442, + "lineno": 3447, "columnno": 0, "code": { - "id": "astnode100017188", + "id": "astnode100017222", "name": "BaryState", "type": "FunctionDeclaration", "paramnames": [ @@ -30880,14 +30952,14 @@ "comment": "", "meta": { "range": [ - 156635, - 156656 + 157034, + 157055 ], "filename": "astronomy.js", - "lineno": 3443, + "lineno": 3448, "columnno": 10, "code": { - "id": "astnode100017194", + "id": "astnode100017228", "name": "time", "type": "CallExpression", "value": "" @@ -30905,14 +30977,14 @@ "comment": "", "meta": { "range": [ - 156942, - 156976 + 157341, + 157375 ], "filename": "astronomy.js", - "lineno": 3450, + "lineno": 3455, "columnno": 10, "code": { - "id": "astnode100017217", + "id": "astnode100017251", "name": "bary", "type": "NewExpression", "value": "" @@ -30930,14 +31002,14 @@ "comment": "", "meta": { "range": [ - 157735, - 157779 + 158134, + 158178 ], "filename": "astronomy.js", - "lineno": 3464, + "lineno": 3469, "columnno": 14, "code": { - "id": "astnode100017287", + "id": "astnode100017321", "name": "planet", "type": "CallExpression", "value": "" @@ -30955,14 +31027,14 @@ "comment": "", "meta": { "range": [ - 158111, - 158140 + 158510, + 158539 ], "filename": "astronomy.js", - "lineno": 3470, + "lineno": 3475, "columnno": 0, "code": { - "id": "astnode100017385", + "id": "astnode100017419", "name": "exports.BaryState", "type": "Identifier", "value": "BaryState", @@ -30979,14 +31051,14 @@ "comment": "", "meta": { "range": [ - 158142, - 159169 + 158541, + 159568 ], "filename": "astronomy.js", - "lineno": 3471, + "lineno": 3476, "columnno": 0, "code": { - "id": "astnode100017390", + "id": "astnode100017424", "name": "QuadInterp", "type": "FunctionDeclaration", "paramnames": [ @@ -31021,14 +31093,14 @@ "comment": "", "meta": { "range": [ - 158192, - 158214 + 158591, + 158613 ], "filename": "astronomy.js", - "lineno": 3472, + "lineno": 3477, "columnno": 8, "code": { - "id": "astnode100017399", + "id": "astnode100017433", "name": "Q", "type": "BinaryExpression", "value": "" @@ -31046,14 +31118,14 @@ "comment": "", "meta": { "range": [ - 158224, - 158241 + 158623, + 158640 ], "filename": "astronomy.js", - "lineno": 3473, + "lineno": 3478, "columnno": 8, "code": { - "id": "astnode100017409", + "id": "astnode100017443", "name": "R", "type": "BinaryExpression", "value": "" @@ -31071,14 +31143,14 @@ "comment": "", "meta": { "range": [ - 158251, - 158257 + 158650, + 158656 ], "filename": "astronomy.js", - "lineno": 3474, + "lineno": 3479, "columnno": 8, "code": { - "id": "astnode100017417", + "id": "astnode100017451", "name": "S", "type": "Identifier", "value": "fm" @@ -31096,14 +31168,14 @@ "comment": "", "meta": { "range": [ - 158267, - 158268 + 158666, + 158667 ], "filename": "astronomy.js", - "lineno": 3475, + "lineno": 3480, "columnno": 8, "code": { - "id": "astnode100017421", + "id": "astnode100017455", "name": "x" } }, @@ -31119,14 +31191,14 @@ "comment": "", "meta": { "range": [ - 158461, - 158471 + 158860, + 158870 ], "filename": "astronomy.js", - "lineno": 3482, + "lineno": 3487, "columnno": 8, "code": { - "id": "astnode100017436", + "id": "astnode100017470", "name": "x", "type": "BinaryExpression", "funcscope": "QuadInterp", @@ -31145,14 +31217,14 @@ "comment": "", "meta": { "range": [ - 158629, - 158650 + 159028, + 159049 ], "filename": "astronomy.js", - "lineno": 3488, + "lineno": 3493, "columnno": 12, "code": { - "id": "astnode100017456", + "id": "astnode100017490", "name": "u", "type": "BinaryExpression", "value": "" @@ -31170,14 +31242,14 @@ "comment": "", "meta": { "range": [ - 158709, - 158726 + 159108, + 159125 ], "filename": "astronomy.js", - "lineno": 3491, + "lineno": 3496, "columnno": 12, "code": { - "id": "astnode100017474", + "id": "astnode100017508", "name": "ru", "type": "CallExpression", "value": "" @@ -31195,14 +31267,14 @@ "comment": "", "meta": { "range": [ - 158740, - 158764 + 159139, + 159163 ], "filename": "astronomy.js", - "lineno": 3492, + "lineno": 3497, "columnno": 12, "code": { - "id": "astnode100017482", + "id": "astnode100017516", "name": "x1", "type": "BinaryExpression", "value": "" @@ -31220,14 +31292,14 @@ "comment": "", "meta": { "range": [ - 158778, - 158802 + 159177, + 159201 ], "filename": "astronomy.js", - "lineno": 3493, + "lineno": 3498, "columnno": 12, "code": { - "id": "astnode100017493", + "id": "astnode100017527", "name": "x2", "type": "BinaryExpression", "value": "" @@ -31245,14 +31317,14 @@ "comment": "", "meta": { "range": [ - 158919, - 158925 + 159318, + 159324 ], "filename": "astronomy.js", - "lineno": 3497, + "lineno": 3502, "columnno": 12, "code": { - "id": "astnode100017527", + "id": "astnode100017561", "name": "x", "type": "Identifier", "funcscope": "QuadInterp", @@ -31271,14 +31343,14 @@ "comment": "", "meta": { "range": [ - 158990, - 158996 + 159389, + 159395 ], "filename": "astronomy.js", - "lineno": 3500, + "lineno": 3505, "columnno": 12, "code": { - "id": "astnode100017542", + "id": "astnode100017576", "name": "x", "type": "Identifier", "funcscope": "QuadInterp", @@ -31297,14 +31369,14 @@ "comment": "", "meta": { "range": [ - 159072, - 159087 + 159471, + 159486 ], "filename": "astronomy.js", - "lineno": 3506, + "lineno": 3511, "columnno": 8, "code": { - "id": "astnode100017549", + "id": "astnode100017583", "name": "t", "type": "BinaryExpression", "value": "" @@ -31322,14 +31394,14 @@ "comment": "", "meta": { "range": [ - 159097, - 159125 + 159496, + 159524 ], "filename": "astronomy.js", - "lineno": 3507, + "lineno": 3512, "columnno": 8, "code": { - "id": "astnode100017557", + "id": "astnode100017591", "name": "df_dt", "type": "BinaryExpression", "value": "" @@ -31347,14 +31419,14 @@ "comment": "", "meta": { "range": [ - 159140, - 159144 + 159539, + 159543 ], "filename": "astronomy.js", - "lineno": 3508, + "lineno": 3513, "columnno": 13, "code": { - "id": "astnode100017570", + "id": "astnode100017604", "name": "x", "type": "Identifier", "value": "x" @@ -31370,14 +31442,14 @@ "comment": "", "meta": { "range": [ - 159146, - 159150 + 159545, + 159549 ], "filename": "astronomy.js", - "lineno": 3508, + "lineno": 3513, "columnno": 19, "code": { - "id": "astnode100017572", + "id": "astnode100017606", "name": "t", "type": "Identifier", "value": "t" @@ -31393,14 +31465,14 @@ "comment": "", "meta": { "range": [ - 159152, - 159164 + 159551, + 159563 ], "filename": "astronomy.js", - "lineno": 3508, + "lineno": 3513, "columnno": 25, "code": { - "id": "astnode100017574", + "id": "astnode100017608", "name": "df_dt", "type": "Identifier", "value": "df_dt" @@ -31416,7 +31488,7 @@ "comment": "/**\n * @brief Options for the {@link Search} function.\n *\n * @typedef {object} SearchOptions\n *\n * @property {number | undefined} dt_tolerance_seconds\n * The number of seconds for a time window smaller than which the search\n * is considered successful. Using too large a tolerance can result in\n * an inaccurate time estimate. Using too small a tolerance can cause\n * excessive computation, or can even cause the search to fail because of\n * limited floating-point resolution. Defaults to 1 second.\n *\n * @property {number | undefined} init_f1\n * As an optimization, if the caller of {@link Search}\n * has already calculated the value of the function being searched (the parameter `func`)\n * at the time coordinate `t1`, it can pass in that value as `init_f1`.\n * For very expensive calculations, this can measurably improve performance.\n *\n * @property {number | undefined} init_f2\n * The same as `init_f1`, except this is the optional initial value of `func(t2)`\n * instead of `func(t1)`.\n *\n * @property {number | undefined} iter_limit\n */", "meta": { "filename": "astronomy.js", - "lineno": 3510, + "lineno": 3515, "columnno": 0, "code": {} }, @@ -31483,14 +31555,14 @@ "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": [ - 161759, - 164751 + 162158, + 165150 ], "filename": "astronomy.js", - "lineno": 3567, + "lineno": 3572, "columnno": 0, "code": { - "id": "astnode100017576", + "id": "astnode100017610", "name": "Search", "type": "FunctionDeclaration", "paramnames": [ @@ -31590,14 +31662,14 @@ "comment": "", "meta": { "range": [ - 161807, - 161890 + 162206, + 162289 ], "filename": "astronomy.js", - "lineno": 3568, + "lineno": 3573, "columnno": 10, "code": { - "id": "astnode100017584", + "id": "astnode100017618", "name": "dt_tolerance_seconds", "type": "CallExpression", "value": "" @@ -31615,14 +31687,14 @@ "comment": "", "meta": { "range": [ - 161902, - 161960 + 162301, + 162359 ], "filename": "astronomy.js", - "lineno": 3569, + "lineno": 3574, "columnno": 10, "code": { - "id": "astnode100017596", + "id": "astnode100017630", "name": "dt_days", "type": "CallExpression", "value": "" @@ -31640,14 +31712,14 @@ "comment": "", "meta": { "range": [ - 161970, - 162012 + 162369, + 162411 ], "filename": "astronomy.js", - "lineno": 3570, + "lineno": 3575, "columnno": 8, "code": { - "id": "astnode100017606", + "id": "astnode100017640", "name": "f1", "type": "LogicalExpression", "value": "" @@ -31665,14 +31737,14 @@ "comment": "", "meta": { "range": [ - 162022, - 162064 + 162421, + 162463 ], "filename": "astronomy.js", - "lineno": 3571, + "lineno": 3576, "columnno": 8, "code": { - "id": "astnode100017618", + "id": "astnode100017652", "name": "f2", "type": "LogicalExpression", "value": "" @@ -31690,14 +31762,14 @@ "comment": "", "meta": { "range": [ - 162074, - 162084 + 162473, + 162483 ], "filename": "astronomy.js", - "lineno": 3572, + "lineno": 3577, "columnno": 8, "code": { - "id": "astnode100017630", + "id": "astnode100017664", "name": "fmid", "type": "Identifier", "value": "NaN" @@ -31715,14 +31787,14 @@ "comment": "", "meta": { "range": [ - 162094, - 162102 + 162493, + 162501 ], "filename": "astronomy.js", - "lineno": 3573, + "lineno": 3578, "columnno": 8, "code": { - "id": "astnode100017634", + "id": "astnode100017668", "name": "iter", "type": "Literal", "value": 0 @@ -31740,14 +31812,14 @@ "comment": "", "meta": { "range": [ - 162112, - 162162 + 162511, + 162561 ], "filename": "astronomy.js", - "lineno": 3574, + "lineno": 3579, "columnno": 8, "code": { - "id": "astnode100017638", + "id": "astnode100017672", "name": "iter_limit", "type": "LogicalExpression", "value": "" @@ -31765,14 +31837,14 @@ "comment": "", "meta": { "range": [ - 162172, - 162188 + 162571, + 162587 ], "filename": "astronomy.js", - "lineno": 3575, + "lineno": 3580, "columnno": 8, "code": { - "id": "astnode100017648", + "id": "astnode100017682", "name": "calc_fmid", "type": "Literal", "value": true @@ -31790,14 +31862,14 @@ "comment": "", "meta": { "range": [ - 162307, - 162342 + 162706, + 162741 ], "filename": "astronomy.js", - "lineno": 3579, + "lineno": 3584, "columnno": 12, "code": { - "id": "astnode100017663", + "id": "astnode100017697", "name": "tmid", "type": "CallExpression", "value": "" @@ -31815,14 +31887,14 @@ "comment": "", "meta": { "range": [ - 162356, - 162376 + 162755, + 162775 ], "filename": "astronomy.js", - "lineno": 3580, + "lineno": 3585, "columnno": 12, "code": { - "id": "astnode100017671", + "id": "astnode100017705", "name": "dt", "type": "BinaryExpression", "value": "" @@ -31840,14 +31912,14 @@ "comment": "", "meta": { "range": [ - 162554, - 162568 + 162953, + 162967 ], "filename": "astronomy.js", - "lineno": 3586, + "lineno": 3591, "columnno": 12, "code": { - "id": "astnode100017694", + "id": "astnode100017728", "name": "fmid", "type": "CallExpression", "funcscope": "Search", @@ -31866,14 +31938,14 @@ "comment": "", "meta": { "range": [ - 162595, - 162611 + 162994, + 163010 ], "filename": "astronomy.js", - "lineno": 3588, + "lineno": 3593, "columnno": 12, "code": { - "id": "astnode100017700", + "id": "astnode100017734", "name": "calc_fmid", "type": "Literal", "funcscope": "Search", @@ -31892,14 +31964,14 @@ "comment": "", "meta": { "range": [ - 162855, - 162909 + 163254, + 163308 ], "filename": "astronomy.js", - "lineno": 3592, + "lineno": 3597, "columnno": 12, "code": { - "id": "astnode100017704", + "id": "astnode100017738", "name": "q", "type": "CallExpression", "value": "" @@ -31917,14 +31989,14 @@ "comment": "", "meta": { "range": [ - 163061, - 163079 + 163460, + 163478 ], "filename": "astronomy.js", - "lineno": 3596, + "lineno": 3601, "columnno": 16, "code": { - "id": "astnode100017725", + "id": "astnode100017759", "name": "tq", "type": "CallExpression", "value": "" @@ -31942,14 +32014,14 @@ "comment": "", "meta": { "range": [ - 163097, - 163107 + 163496, + 163506 ], "filename": "astronomy.js", - "lineno": 3597, + "lineno": 3602, "columnno": 16, "code": { - "id": "astnode100017733", + "id": "astnode100017767", "name": "fq", "type": "CallExpression", "value": "" @@ -31967,14 +32039,14 @@ "comment": "", "meta": { "range": [ - 163446, - 163485 + 163845, + 163884 ], "filename": "astronomy.js", - "lineno": 3604, + "lineno": 3609, "columnno": 20, "code": { - "id": "astnode100017761", + "id": "astnode100017795", "name": "dt_guess", "type": "BinaryExpression", "value": "" @@ -31992,14 +32064,14 @@ "comment": "", "meta": { "range": [ - 163553, - 163582 + 163952, + 163981 ], "filename": "astronomy.js", - "lineno": 3606, + "lineno": 3611, "columnno": 24, "code": { - "id": "astnode100017782", + "id": "astnode100017816", "name": "tleft", "type": "CallExpression", "value": "" @@ -32017,14 +32089,14 @@ "comment": "", "meta": { "range": [ - 163608, - 163638 + 164007, + 164037 ], "filename": "astronomy.js", - "lineno": 3607, + "lineno": 3612, "columnno": 24, "code": { - "id": "astnode100017791", + "id": "astnode100017825", "name": "tright", "type": "CallExpression", "value": "" @@ -32042,14 +32114,14 @@ "comment": "", "meta": { "range": [ - 163820, - 163836 + 164219, + 164235 ], "filename": "astronomy.js", - "lineno": 3610, + "lineno": 3615, "columnno": 32, "code": { - "id": "astnode100017838", + "id": "astnode100017872", "name": "fleft", "type": "CallExpression", "value": "" @@ -32067,14 +32139,14 @@ "comment": "", "meta": { "range": [ - 163870, - 163888 + 164269, + 164287 ], "filename": "astronomy.js", - "lineno": 3611, + "lineno": 3616, "columnno": 32, "code": { - "id": "astnode100017844", + "id": "astnode100017878", "name": "fright", "type": "CallExpression", "value": "" @@ -32092,14 +32164,14 @@ "comment": "", "meta": { "range": [ - 163982, - 163992 + 164381, + 164391 ], "filename": "astronomy.js", - "lineno": 3613, + "lineno": 3618, "columnno": 32, "code": { - "id": "astnode100017859", + "id": "astnode100017893", "name": "f1", "type": "Identifier", "funcscope": "Search", @@ -32118,14 +32190,14 @@ "comment": "", "meta": { "range": [ - 164026, - 164037 + 164425, + 164436 ], "filename": "astronomy.js", - "lineno": 3614, + "lineno": 3619, "columnno": 32, "code": { - "id": "astnode100017863", + "id": "astnode100017897", "name": "f2", "type": "Identifier", "funcscope": "Search", @@ -32144,14 +32216,14 @@ "comment": "", "meta": { "range": [ - 164071, - 164081 + 164470, + 164480 ], "filename": "astronomy.js", - "lineno": 3615, + "lineno": 3620, "columnno": 32, "code": { - "id": "astnode100017867", + "id": "astnode100017901", "name": "t1", "type": "Identifier", "funcscope": "Search", @@ -32170,14 +32242,14 @@ "comment": "", "meta": { "range": [ - 164115, - 164126 + 164514, + 164525 ], "filename": "astronomy.js", - "lineno": 3616, + "lineno": 3621, "columnno": 32, "code": { - "id": "astnode100017871", + "id": "astnode100017905", "name": "t2", "type": "Identifier", "funcscope": "Search", @@ -32196,14 +32268,14 @@ "comment": "", "meta": { "range": [ - 164160, - 164169 + 164559, + 164568 ], "filename": "astronomy.js", - "lineno": 3617, + "lineno": 3622, "columnno": 32, "code": { - "id": "astnode100017875", + "id": "astnode100017909", "name": "fmid", "type": "Identifier", "funcscope": "Search", @@ -32222,14 +32294,14 @@ "comment": "", "meta": { "range": [ - 164203, - 164220 + 164602, + 164619 ], "filename": "astronomy.js", - "lineno": 3618, + "lineno": 3623, "columnno": 32, "code": { - "id": "astnode100017879", + "id": "astnode100017913", "name": "calc_fmid", "type": "Literal", "funcscope": "Search", @@ -32248,14 +32320,14 @@ "comment": "", "meta": { "range": [ - 164431, - 164440 + 164830, + 164839 ], "filename": "astronomy.js", - "lineno": 3627, + "lineno": 3632, "columnno": 12, "code": { - "id": "astnode100017893", + "id": "astnode100017927", "name": "t2", "type": "Identifier", "funcscope": "Search", @@ -32274,14 +32346,14 @@ "comment": "", "meta": { "range": [ - 164454, - 164463 + 164853, + 164862 ], "filename": "astronomy.js", - "lineno": 3628, + "lineno": 3633, "columnno": 12, "code": { - "id": "astnode100017897", + "id": "astnode100017931", "name": "f2", "type": "Identifier", "funcscope": "Search", @@ -32300,14 +32372,14 @@ "comment": "", "meta": { "range": [ - 164544, - 164553 + 164943, + 164952 ], "filename": "astronomy.js", - "lineno": 3632, + "lineno": 3637, "columnno": 12, "code": { - "id": "astnode100017911", + "id": "astnode100017945", "name": "t1", "type": "Identifier", "funcscope": "Search", @@ -32326,14 +32398,14 @@ "comment": "", "meta": { "range": [ - 164567, - 164576 + 164966, + 164975 ], "filename": "astronomy.js", - "lineno": 3633, + "lineno": 3638, "columnno": 12, "code": { - "id": "astnode100017915", + "id": "astnode100017949", "name": "f1", "type": "Identifier", "funcscope": "Search", @@ -32352,14 +32424,14 @@ "comment": "", "meta": { "range": [ - 164752, - 164775 + 165151, + 165174 ], "filename": "astronomy.js", - "lineno": 3641, + "lineno": 3646, "columnno": 0, "code": { - "id": "astnode100017922", + "id": "astnode100017956", "name": "exports.Search", "type": "Identifier", "value": "Search", @@ -32376,14 +32448,14 @@ "comment": "", "meta": { "range": [ - 164777, - 164951 + 165176, + 165350 ], "filename": "astronomy.js", - "lineno": 3642, + "lineno": 3647, "columnno": 0, "code": { - "id": "astnode100017927", + "id": "astnode100017961", "name": "LongitudeOffset", "type": "FunctionDeclaration", "paramnames": [ @@ -32405,14 +32477,14 @@ "comment": "", "meta": { "range": [ - 164818, - 164831 + 165217, + 165230 ], "filename": "astronomy.js", - "lineno": 3643, + "lineno": 3648, "columnno": 8, "code": { - "id": "astnode100017932", + "id": "astnode100017966", "name": "offset", "type": "Identifier", "value": "diff" @@ -32430,66 +32502,66 @@ "comment": "", "meta": { "range": [ - 164868, - 164881 - ], - "filename": "astronomy.js", - "lineno": 3645, - "columnno": 8, - "code": { - "id": "astnode100017941", - "name": "offset", - "type": "Literal", - "funcscope": "LongitudeOffset", - "value": 360, - "paramnames": [] - } - }, - "undocumented": true, - "name": "offset", - "longname": "LongitudeOffset~offset", - "kind": "member", - "memberof": "LongitudeOffset", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 164916, - 164929 - ], - "filename": "astronomy.js", - "lineno": 3647, - "columnno": 8, - "code": { - "id": "astnode100017949", - "name": "offset", - "type": "Literal", - "funcscope": "LongitudeOffset", - "value": 360, - "paramnames": [] - } - }, - "undocumented": true, - "name": "offset", - "longname": "LongitudeOffset~offset", - "kind": "member", - "memberof": "LongitudeOffset", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 164952, - 165087 + 165267, + 165280 ], "filename": "astronomy.js", "lineno": 3650, + "columnno": 8, + "code": { + "id": "astnode100017975", + "name": "offset", + "type": "Literal", + "funcscope": "LongitudeOffset", + "value": 360, + "paramnames": [] + } + }, + "undocumented": true, + "name": "offset", + "longname": "LongitudeOffset~offset", + "kind": "member", + "memberof": "LongitudeOffset", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 165315, + 165328 + ], + "filename": "astronomy.js", + "lineno": 3652, + "columnno": 8, + "code": { + "id": "astnode100017983", + "name": "offset", + "type": "Literal", + "funcscope": "LongitudeOffset", + "value": 360, + "paramnames": [] + } + }, + "undocumented": true, + "name": "offset", + "longname": "LongitudeOffset~offset", + "kind": "member", + "memberof": "LongitudeOffset", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 165351, + 165486 + ], + "filename": "astronomy.js", + "lineno": 3655, "columnno": 0, "code": { - "id": "astnode100017954", + "id": "astnode100017988", "name": "NormalizeLongitude", "type": "FunctionDeclaration", "paramnames": [ @@ -32511,14 +32583,14 @@ "comment": "", "meta": { "range": [ - 165015, - 165025 + 165414, + 165424 ], "filename": "astronomy.js", - "lineno": 3652, + "lineno": 3657, "columnno": 8, "code": { - "id": "astnode100017963", + "id": "astnode100017997", "name": "lon", "type": "Literal", "funcscope": "NormalizeLongitude", @@ -32537,14 +32609,14 @@ "comment": "", "meta": { "range": [ - 165058, - 165068 + 165457, + 165467 ], "filename": "astronomy.js", - "lineno": 3654, + "lineno": 3659, "columnno": 8, "code": { - "id": "astnode100017971", + "id": "astnode100018005", "name": "lon", "type": "Literal", "funcscope": "NormalizeLongitude", @@ -32563,14 +32635,14 @@ "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": [ - 167480, - 167834 + 167879, + 168233 ], "filename": "astronomy.js", - "lineno": 3703, + "lineno": 3708, "columnno": 0, "code": { - "id": "astnode100017976", + "id": "astnode100018010", "name": "SearchSunLongitude", "type": "FunctionDeclaration", "paramnames": [ @@ -32642,14 +32714,14 @@ "comment": "", "meta": { "range": [ - 167547, - 167665 + 167946, + 168064 ], "filename": "astronomy.js", - "lineno": 3704, + "lineno": 3709, "columnno": 4, "code": { - "id": "astnode100017982", + "id": "astnode100018016", "name": "sun_offset", "type": "FunctionDeclaration", "paramnames": [ @@ -32672,14 +32744,14 @@ "comment": "", "meta": { "range": [ - 167584, - 167604 + 167983, + 168003 ], "filename": "astronomy.js", - "lineno": 3705, + "lineno": 3710, "columnno": 12, "code": { - "id": "astnode100017987", + "id": "astnode100018021", "name": "pos", "type": "CallExpression", "value": "" @@ -32697,14 +32769,14 @@ "comment": "", "meta": { "range": [ - 167732, - 167756 + 168131, + 168155 ], "filename": "astronomy.js", - "lineno": 3710, + "lineno": 3715, "columnno": 8, "code": { - "id": "astnode100018009", + "id": "astnode100018043", "name": "t1", "type": "CallExpression", "value": "" @@ -32722,14 +32794,14 @@ "comment": "", "meta": { "range": [ - 167766, - 167792 + 168165, + 168191 ], "filename": "astronomy.js", - "lineno": 3711, + "lineno": 3716, "columnno": 8, "code": { - "id": "astnode100018015", + "id": "astnode100018049", "name": "t2", "type": "CallExpression", "value": "" @@ -32747,14 +32819,14 @@ "comment": "", "meta": { "range": [ - 167835, - 167882 + 168234, + 168281 ], "filename": "astronomy.js", - "lineno": 3714, + "lineno": 3719, "columnno": 0, "code": { - "id": "astnode100018029", + "id": "astnode100018063", "name": "exports.SearchSunLongitude", "type": "Identifier", "value": "SearchSunLongitude", @@ -32771,14 +32843,14 @@ "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": [ - 169241, - 169684 + 169640, + 170083 ], "filename": "astronomy.js", - "lineno": 3747, + "lineno": 3752, "columnno": 0, "code": { - "id": "astnode100018034", + "id": "astnode100018068", "name": "PairLongitude", "type": "FunctionDeclaration", "paramnames": [ @@ -32851,14 +32923,14 @@ "comment": "", "meta": { "range": [ - 169424, - 169445 + 169823, + 169844 ], "filename": "astronomy.js", - "lineno": 3750, + "lineno": 3755, "columnno": 10, "code": { - "id": "astnode100018055", + "id": "astnode100018089", "name": "time", "type": "CallExpression", "value": "" @@ -32876,14 +32948,14 @@ "comment": "", "meta": { "range": [ - 169457, - 169496 + 169856, + 169895 ], "filename": "astronomy.js", - "lineno": 3751, + "lineno": 3756, "columnno": 10, "code": { - "id": "astnode100018061", + "id": "astnode100018095", "name": "vector1", "type": "CallExpression", "value": "" @@ -32901,14 +32973,14 @@ "comment": "", "meta": { "range": [ - 169508, - 169534 + 169907, + 169933 ], "filename": "astronomy.js", - "lineno": 3752, + "lineno": 3757, "columnno": 10, "code": { - "id": "astnode100018069", + "id": "astnode100018103", "name": "eclip1", "type": "CallExpression", "value": "" @@ -32926,14 +32998,14 @@ "comment": "", "meta": { "range": [ - 169546, - 169585 + 169945, + 169984 ], "filename": "astronomy.js", - "lineno": 3753, + "lineno": 3758, "columnno": 10, "code": { - "id": "astnode100018075", + "id": "astnode100018109", "name": "vector2", "type": "CallExpression", "value": "" @@ -32951,14 +33023,14 @@ "comment": "", "meta": { "range": [ - 169597, - 169623 + 169996, + 170022 ], "filename": "astronomy.js", - "lineno": 3754, + "lineno": 3759, "columnno": 10, "code": { - "id": "astnode100018083", + "id": "astnode100018117", "name": "eclip2", "type": "CallExpression", "value": "" @@ -32976,14 +33048,14 @@ "comment": "", "meta": { "range": [ - 169685, - 169722 + 170084, + 170121 ], "filename": "astronomy.js", - "lineno": 3757, + "lineno": 3762, "columnno": 0, "code": { - "id": "astnode100018099", + "id": "astnode100018133", "name": "exports.PairLongitude", "type": "Identifier", "value": "PairLongitude", @@ -33000,14 +33072,14 @@ "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": [ - 170396, - 170715 + 170795, + 171114 ], "filename": "astronomy.js", - "lineno": 3777, + "lineno": 3782, "columnno": 0, "code": { - "id": "astnode100018104", + "id": "astnode100018138", "name": "AngleFromSun", "type": "FunctionDeclaration", "paramnames": [ @@ -33069,14 +33141,14 @@ "comment": "", "meta": { "range": [ - 170541, - 170562 + 170940, + 170961 ], "filename": "astronomy.js", - "lineno": 3780, + "lineno": 3785, "columnno": 10, "code": { - "id": "astnode100018118", + "id": "astnode100018152", "name": "time", "type": "CallExpression", "value": "" @@ -33094,14 +33166,14 @@ "comment": "", "meta": { "range": [ - 170574, - 170610 + 170973, + 171009 ], "filename": "astronomy.js", - "lineno": 3781, + "lineno": 3786, "columnno": 10, "code": { - "id": "astnode100018124", + "id": "astnode100018158", "name": "sv", "type": "CallExpression", "value": "" @@ -33119,14 +33191,14 @@ "comment": "", "meta": { "range": [ - 170622, - 170654 + 171021, + 171053 ], "filename": "astronomy.js", - "lineno": 3782, + "lineno": 3787, "columnno": 10, "code": { - "id": "astnode100018134", + "id": "astnode100018168", "name": "bv", "type": "CallExpression", "value": "" @@ -33144,14 +33216,14 @@ "comment": "", "meta": { "range": [ - 170666, - 170694 + 171065, + 171093 ], "filename": "astronomy.js", - "lineno": 3783, + "lineno": 3788, "columnno": 10, "code": { - "id": "astnode100018142", + "id": "astnode100018176", "name": "angle", "type": "CallExpression", "value": "" @@ -33169,14 +33241,14 @@ "comment": "", "meta": { "range": [ - 170716, - 170751 + 171115, + 171150 ], "filename": "astronomy.js", - "lineno": 3786, + "lineno": 3791, "columnno": 0, "code": { - "id": "astnode100018151", + "id": "astnode100018185", "name": "exports.AngleFromSun", "type": "Identifier", "value": "AngleFromSun", @@ -33193,14 +33265,14 @@ "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": [ - 171511, - 171744 + 171910, + 172143 ], "filename": "astronomy.js", - "lineno": 3804, + "lineno": 3809, "columnno": 0, "code": { - "id": "astnode100018156", + "id": "astnode100018190", "name": "EclipticLongitude", "type": "FunctionDeclaration", "paramnames": [ @@ -33260,14 +33332,14 @@ "comment": "", "meta": { "range": [ - 171658, - 171686 + 172057, + 172085 ], "filename": "astronomy.js", - "lineno": 3807, + "lineno": 3812, "columnno": 10, "code": { - "id": "astnode100018170", + "id": "astnode100018204", "name": "hv", "type": "CallExpression", "value": "" @@ -33285,14 +33357,14 @@ "comment": "", "meta": { "range": [ - 171698, - 171718 + 172097, + 172117 ], "filename": "astronomy.js", - "lineno": 3808, + "lineno": 3813, "columnno": 10, "code": { - "id": "astnode100018177", + "id": "astnode100018211", "name": "eclip", "type": "CallExpression", "value": "" @@ -33310,14 +33382,14 @@ "comment": "", "meta": { "range": [ - 171745, - 171790 + 172144, + 172189 ], "filename": "astronomy.js", - "lineno": 3811, + "lineno": 3816, "columnno": 0, "code": { - "id": "astnode100018187", + "id": "astnode100018221", "name": "exports.EclipticLongitude", "type": "Identifier", "value": "EclipticLongitude", @@ -33334,14 +33406,14 @@ "comment": "", "meta": { "range": [ - 171792, - 173086 + 172191, + 173485 ], "filename": "astronomy.js", - "lineno": 3812, + "lineno": 3817, "columnno": 0, "code": { - "id": "astnode100018192", + "id": "astnode100018226", "name": "VisualMagnitude", "type": "FunctionDeclaration", "paramnames": [ @@ -33371,14 +33443,14 @@ "comment": "", "meta": { "range": [ - 171948, - 171950 + 172347, + 172349 ], "filename": "astronomy.js", - "lineno": 3814, + "lineno": 3819, "columnno": 8, "code": { - "id": "astnode100018200", + "id": "astnode100018234", "name": "c0" } }, @@ -33394,14 +33466,14 @@ "comment": "", "meta": { "range": [ - 171952, - 171958 + 172351, + 172357 ], "filename": "astronomy.js", - "lineno": 3814, + "lineno": 3819, "columnno": 12, "code": { - "id": "astnode100018202", + "id": "astnode100018236", "name": "c1", "type": "Literal", "value": 0 @@ -33419,14 +33491,14 @@ "comment": "", "meta": { "range": [ - 171960, - 171966 + 172359, + 172365 ], "filename": "astronomy.js", - "lineno": 3814, + "lineno": 3819, "columnno": 20, "code": { - "id": "astnode100018205", + "id": "astnode100018239", "name": "c2", "type": "Literal", "value": 0 @@ -33444,14 +33516,14 @@ "comment": "", "meta": { "range": [ - 171968, - 171974 + 172367, + 172373 ], "filename": "astronomy.js", - "lineno": 3814, + "lineno": 3819, "columnno": 28, "code": { - "id": "astnode100018208", + "id": "astnode100018242", "name": "c3", "type": "Literal", "value": 0 @@ -33469,14 +33541,14 @@ "comment": "", "meta": { "range": [ - 172035, - 172045 + 172434, + 172444 ], "filename": "astronomy.js", - "lineno": 3817, + "lineno": 3822, "columnno": 12, "code": { - "id": "astnode100018218", + "id": "astnode100018252", "name": "c0", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -33495,14 +33567,14 @@ "comment": "", "meta": { "range": [ - 172059, - 172069 + 172458, + 172468 ], "filename": "astronomy.js", - "lineno": 3818, + "lineno": 3823, "columnno": 12, "code": { - "id": "astnode100018223", + "id": "astnode100018257", "name": "c1", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -33521,14 +33593,14 @@ "comment": "", "meta": { "range": [ - 172083, - 172093 + 172482, + 172492 ], "filename": "astronomy.js", - "lineno": 3819, + "lineno": 3824, "columnno": 12, "code": { - "id": "astnode100018228", + "id": "astnode100018262", "name": "c2", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -33547,14 +33619,14 @@ "comment": "", "meta": { "range": [ - 172107, - 172117 + 172506, + 172516 ], "filename": "astronomy.js", - "lineno": 3820, + "lineno": 3825, "columnno": 12, "code": { - "id": "astnode100018233", + "id": "astnode100018267", "name": "c3", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -33573,14 +33645,14 @@ "comment": "", "meta": { "range": [ - 172212, - 172222 + 172611, + 172621 ], "filename": "astronomy.js", - "lineno": 3824, + "lineno": 3829, "columnno": 16, "code": { - "id": "astnode100018248", + "id": "astnode100018282", "name": "c0", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -33599,14 +33671,14 @@ "comment": "", "meta": { "range": [ - 172240, - 172250 + 172639, + 172649 ], "filename": "astronomy.js", - "lineno": 3825, + "lineno": 3830, "columnno": 16, "code": { - "id": "astnode100018253", + "id": "astnode100018287", "name": "c1", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -33625,14 +33697,14 @@ "comment": "", "meta": { "range": [ - 172268, - 172278 + 172667, + 172677 ], "filename": "astronomy.js", - "lineno": 3826, + "lineno": 3831, "columnno": 16, "code": { - "id": "astnode100018258", + "id": "astnode100018292", "name": "c2", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -33651,14 +33723,14 @@ "comment": "", "meta": { "range": [ - 172296, - 172306 + 172695, + 172705 ], "filename": "astronomy.js", - "lineno": 3827, + "lineno": 3832, "columnno": 16, "code": { - "id": "astnode100018263", + "id": "astnode100018297", "name": "c3", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -33677,14 +33749,14 @@ "comment": "", "meta": { "range": [ - 172357, - 172366 + 172756, + 172765 ], "filename": "astronomy.js", - "lineno": 3830, + "lineno": 3835, "columnno": 16, "code": { - "id": "astnode100018269", + "id": "astnode100018303", "name": "c0", "type": "Literal", "funcscope": "VisualMagnitude", @@ -33703,14 +33775,14 @@ "comment": "", "meta": { "range": [ - 172384, - 172394 + 172783, + 172793 ], "filename": "astronomy.js", - "lineno": 3831, + "lineno": 3836, "columnno": 16, "code": { - "id": "astnode100018273", + "id": "astnode100018307", "name": "c1", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -33729,14 +33801,14 @@ "comment": "", "meta": { "range": [ - 172465, - 172475 + 172864, + 172874 ], "filename": "astronomy.js", - "lineno": 3835, + "lineno": 3840, "columnno": 12, "code": { - "id": "astnode100018283", + "id": "astnode100018317", "name": "c0", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -33755,14 +33827,14 @@ "comment": "", "meta": { "range": [ - 172489, - 172499 + 172888, + 172898 ], "filename": "astronomy.js", - "lineno": 3836, + "lineno": 3841, "columnno": 12, "code": { - "id": "astnode100018288", + "id": "astnode100018322", "name": "c1", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -33781,14 +33853,14 @@ "comment": "", "meta": { "range": [ - 172559, - 172569 + 172958, + 172968 ], "filename": "astronomy.js", - "lineno": 3839, + "lineno": 3844, "columnno": 12, "code": { - "id": "astnode100018298", + "id": "astnode100018332", "name": "c0", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -33807,14 +33879,14 @@ "comment": "", "meta": { "range": [ - 172583, - 172593 + 172982, + 172992 ], "filename": "astronomy.js", - "lineno": 3840, + "lineno": 3845, "columnno": 12, "code": { - "id": "astnode100018303", + "id": "astnode100018337", "name": "c1", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -33833,14 +33905,14 @@ "comment": "", "meta": { "range": [ - 172652, - 172662 + 173051, + 173061 ], "filename": "astronomy.js", - "lineno": 3843, + "lineno": 3848, "columnno": 12, "code": { - "id": "astnode100018313", + "id": "astnode100018347", "name": "c0", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -33859,14 +33931,14 @@ "comment": "", "meta": { "range": [ - 172676, - 172686 + 173075, + 173085 ], "filename": "astronomy.js", - "lineno": 3844, + "lineno": 3849, "columnno": 12, "code": { - "id": "astnode100018318", + "id": "astnode100018352", "name": "c1", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -33885,14 +33957,14 @@ "comment": "", "meta": { "range": [ - 172746, - 172756 + 173145, + 173155 ], "filename": "astronomy.js", - "lineno": 3847, + "lineno": 3852, "columnno": 12, "code": { - "id": "astnode100018328", + "id": "astnode100018362", "name": "c0", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -33911,14 +33983,14 @@ "comment": "", "meta": { "range": [ - 172814, - 172824 + 173213, + 173223 ], "filename": "astronomy.js", - "lineno": 3850, + "lineno": 3855, "columnno": 12, "code": { - "id": "astnode100018338", + "id": "astnode100018372", "name": "c0", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -33937,14 +34009,14 @@ "comment": "", "meta": { "range": [ - 172838, - 172848 + 173237, + 173247 ], "filename": "astronomy.js", - "lineno": 3851, + "lineno": 3856, "columnno": 12, "code": { - "id": "astnode100018343", + "id": "astnode100018377", "name": "c1", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -33963,14 +34035,14 @@ "comment": "", "meta": { "range": [ - 172953, - 172968 + 173352, + 173367 ], "filename": "astronomy.js", - "lineno": 3855, + "lineno": 3860, "columnno": 10, "code": { - "id": "astnode100018355", + "id": "astnode100018389", "name": "x", "type": "BinaryExpression", "value": "" @@ -33988,14 +34060,14 @@ "comment": "", "meta": { "range": [ - 172978, - 173017 + 173377, + 173416 ], "filename": "astronomy.js", - "lineno": 3856, + "lineno": 3861, "columnno": 8, "code": { - "id": "astnode100018361", + "id": "astnode100018395", "name": "mag", "type": "BinaryExpression", "value": "" @@ -34013,14 +34085,14 @@ "comment": "", "meta": { "range": [ - 173023, - 173067 + 173422, + 173466 ], "filename": "astronomy.js", - "lineno": 3857, + "lineno": 3862, "columnno": 4, "code": { - "id": "astnode100018377", + "id": "astnode100018411", "name": "mag", "type": "BinaryExpression", "funcscope": "VisualMagnitude", @@ -34039,14 +34111,14 @@ "comment": "", "meta": { "range": [ - 173087, - 174137 + 173486, + 174536 ], "filename": "astronomy.js", - "lineno": 3860, + "lineno": 3865, "columnno": 0, "code": { - "id": "astnode100018390", + "id": "astnode100018424", "name": "SaturnMagnitude", "type": "FunctionDeclaration", "paramnames": [ @@ -34079,14 +34151,14 @@ "comment": "", "meta": { "range": [ - 173409, - 173429 + 173808, + 173828 ], "filename": "astronomy.js", - "lineno": 3865, + "lineno": 3870, "columnno": 10, "code": { - "id": "astnode100018399", + "id": "astnode100018433", "name": "eclip", "type": "CallExpression", "value": "" @@ -34104,14 +34176,14 @@ "comment": "", "meta": { "range": [ - 173441, - 173469 + 173840, + 173868 ], "filename": "astronomy.js", - "lineno": 3866, + "lineno": 3871, "columnno": 10, "code": { - "id": "astnode100018405", + "id": "astnode100018439", "name": "ir", "type": "BinaryExpression", "value": "" @@ -34129,14 +34201,14 @@ "comment": "", "meta": { "range": [ - 173535, - 173588 + 173934, + 173987 ], "filename": "astronomy.js", - "lineno": 3867, + "lineno": 3872, "columnno": 10, "code": { - "id": "astnode100018413", + "id": "astnode100018447", "name": "Nr", "type": "BinaryExpression", "value": "" @@ -34154,14 +34226,14 @@ "comment": "", "meta": { "range": [ - 173704, - 173738 + 174103, + 174137 ], "filename": "astronomy.js", - "lineno": 3869, + "lineno": 3874, "columnno": 10, "code": { - "id": "astnode100018427", + "id": "astnode100018461", "name": "lat", "type": "BinaryExpression", "value": "" @@ -34179,14 +34251,14 @@ "comment": "", "meta": { "range": [ - 173750, - 173784 + 174149, + 174183 ], "filename": "astronomy.js", - "lineno": 3870, + "lineno": 3875, "columnno": 10, "code": { - "id": "astnode100018437", + "id": "astnode100018471", "name": "lon", "type": "BinaryExpression", "value": "" @@ -34204,14 +34276,14 @@ "comment": "", "meta": { "range": [ - 173796, - 173894 + 174195, + 174293 ], "filename": "astronomy.js", - "lineno": 3871, + "lineno": 3876, "columnno": 10, "code": { - "id": "astnode100018447", + "id": "astnode100018481", "name": "tilt", "type": "CallExpression", "value": "" @@ -34229,14 +34301,14 @@ "comment": "", "meta": { "range": [ - 173906, - 173941 + 174305, + 174340 ], "filename": "astronomy.js", - "lineno": 3872, + "lineno": 3877, "columnno": 10, "code": { - "id": "astnode100018485", + "id": "astnode100018519", "name": "sin_tilt", "type": "CallExpression", "value": "" @@ -34254,14 +34326,14 @@ "comment": "", "meta": { "range": [ - 173951, - 173977 + 174350, + 174376 ], "filename": "astronomy.js", - "lineno": 3873, + "lineno": 3878, "columnno": 8, "code": { - "id": "astnode100018497", + "id": "astnode100018531", "name": "mag", "type": "BinaryExpression", "value": "" @@ -34279,14 +34351,14 @@ "comment": "", "meta": { "range": [ - 173983, - 174024 + 174382, + 174423 ], "filename": "astronomy.js", - "lineno": 3874, + "lineno": 3879, "columnno": 4, "code": { - "id": "astnode100018506", + "id": "astnode100018540", "name": "mag", "type": "BinaryExpression", "funcscope": "SaturnMagnitude", @@ -34305,14 +34377,14 @@ "comment": "", "meta": { "range": [ - 174030, - 174074 + 174429, + 174473 ], "filename": "astronomy.js", - "lineno": 3875, + "lineno": 3880, "columnno": 4, "code": { - "id": "astnode100018517", + "id": "astnode100018551", "name": "mag", "type": "BinaryExpression", "funcscope": "SaturnMagnitude", @@ -34331,14 +34403,14 @@ "comment": "", "meta": { "range": [ - 174089, - 174097 + 174488, + 174496 ], "filename": "astronomy.js", - "lineno": 3876, + "lineno": 3881, "columnno": 13, "code": { - "id": "astnode100018530", + "id": "astnode100018564", "name": "mag", "type": "Identifier", "value": "mag" @@ -34354,14 +34426,14 @@ "comment": "", "meta": { "range": [ - 174099, - 174132 + 174498, + 174531 ], "filename": "astronomy.js", - "lineno": 3876, + "lineno": 3881, "columnno": 23, "code": { - "id": "astnode100018532", + "id": "astnode100018566", "name": "ring_tilt", "type": "BinaryExpression", "value": "" @@ -34377,14 +34449,14 @@ "comment": "", "meta": { "range": [ - 174138, - 174660 + 174537, + 175059 ], "filename": "astronomy.js", - "lineno": 3878, + "lineno": 3883, "columnno": 0, "code": { - "id": "astnode100018538", + "id": "astnode100018572", "name": "MoonMagnitude", "type": "FunctionDeclaration", "paramnames": [ @@ -34413,14 +34485,14 @@ "comment": "", "meta": { "range": [ - 174333, - 174362 + 174732, + 174761 ], "filename": "astronomy.js", - "lineno": 3880, + "lineno": 3885, "columnno": 8, "code": { - "id": "astnode100018545", + "id": "astnode100018579", "name": "rad", "type": "BinaryExpression", "value": "" @@ -34438,14 +34510,14 @@ "comment": "", "meta": { "range": [ - 174372, - 174388 + 174771, + 174787 ], "filename": "astronomy.js", - "lineno": 3881, + "lineno": 3886, "columnno": 8, "code": { - "id": "astnode100018553", + "id": "astnode100018587", "name": "rad2", "type": "BinaryExpression", "value": "" @@ -34463,14 +34535,14 @@ "comment": "", "meta": { "range": [ - 174398, - 174416 + 174797, + 174815 ], "filename": "astronomy.js", - "lineno": 3882, + "lineno": 3887, "columnno": 8, "code": { - "id": "astnode100018559", + "id": "astnode100018593", "name": "rad4", "type": "BinaryExpression", "value": "" @@ -34488,14 +34560,14 @@ "comment": "", "meta": { "range": [ - 174426, - 174478 + 174825, + 174877 ], "filename": "astronomy.js", - "lineno": 3883, + "lineno": 3888, "columnno": 8, "code": { - "id": "astnode100018565", + "id": "astnode100018599", "name": "mag", "type": "BinaryExpression", "value": "" @@ -34513,14 +34585,14 @@ "comment": "", "meta": { "range": [ - 174490, - 174542 + 174889, + 174941 ], "filename": "astronomy.js", - "lineno": 3884, + "lineno": 3889, "columnno": 10, "code": { - "id": "astnode100018582", + "id": "astnode100018616", "name": "moon_mean_distance_au", "type": "BinaryExpression", "value": "" @@ -34538,14 +34610,14 @@ "comment": "", "meta": { "range": [ - 174552, - 174593 + 174951, + 174992 ], "filename": "astronomy.js", - "lineno": 3885, + "lineno": 3890, "columnno": 8, "code": { - "id": "astnode100018590", + "id": "astnode100018624", "name": "geo_au", "type": "BinaryExpression", "value": "" @@ -34563,14 +34635,14 @@ "comment": "", "meta": { "range": [ - 174599, - 174641 + 174998, + 175040 ], "filename": "astronomy.js", - "lineno": 3886, + "lineno": 3891, "columnno": 4, "code": { - "id": "astnode100018596", + "id": "astnode100018630", "name": "mag", "type": "BinaryExpression", "funcscope": "MoonMagnitude", @@ -34589,14 +34661,14 @@ "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": [ - 177609, - 178047 + 178008, + 178446 ], "filename": "astronomy.js", - "lineno": 3942, + "lineno": 3947, "columnno": 0, "code": { - "id": "astnode100018609", + "id": "astnode100018643", "name": "IlluminationInfo", "type": "ClassDeclaration", "paramnames": [ @@ -34713,14 +34785,14 @@ "comment": "", "meta": { "range": [ - 177638, - 178045 + 178037, + 178444 ], "filename": "astronomy.js", - "lineno": 3943, + "lineno": 3948, "columnno": 4, "code": { - "id": "astnode100018612", + "id": "astnode100018646", "name": "IlluminationInfo", "type": "MethodDefinition", "paramnames": [ @@ -34749,14 +34821,14 @@ "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": [ - 177609, - 178047 + 178008, + 178446 ], "filename": "astronomy.js", - "lineno": 3942, + "lineno": 3947, "columnno": 0, "code": { - "id": "astnode100018609", + "id": "astnode100018643", "name": "IlluminationInfo", "type": "ClassDeclaration", "paramnames": [ @@ -34872,14 +34944,14 @@ "comment": "", "meta": { "range": [ - 177725, - 177741 + 178124, + 178140 ], "filename": "astronomy.js", - "lineno": 3944, + "lineno": 3949, "columnno": 8, "code": { - "id": "astnode100018625", + "id": "astnode100018659", "name": "this.time", "type": "Identifier", "value": "time", @@ -34897,14 +34969,14 @@ "comment": "", "meta": { "range": [ - 177751, - 177765 + 178150, + 178164 ], "filename": "astronomy.js", - "lineno": 3945, + "lineno": 3950, "columnno": 8, "code": { - "id": "astnode100018631", + "id": "astnode100018665", "name": "this.mag", "type": "Identifier", "value": "mag", @@ -34922,14 +34994,14 @@ "comment": "", "meta": { "range": [ - 177775, - 177805 + 178174, + 178204 ], "filename": "astronomy.js", - "lineno": 3946, + "lineno": 3951, "columnno": 8, "code": { - "id": "astnode100018637", + "id": "astnode100018671", "name": "this.phase_angle", "type": "Identifier", "value": "phase_angle", @@ -34947,14 +35019,14 @@ "comment": "", "meta": { "range": [ - 177815, - 177843 + 178214, + 178242 ], "filename": "astronomy.js", - "lineno": 3947, + "lineno": 3952, "columnno": 8, "code": { - "id": "astnode100018643", + "id": "astnode100018677", "name": "this.helio_dist", "type": "Identifier", "value": "helio_dist", @@ -34972,14 +35044,14 @@ "comment": "", "meta": { "range": [ - 177853, - 177877 + 178252, + 178276 ], "filename": "astronomy.js", - "lineno": 3948, + "lineno": 3953, "columnno": 8, "code": { - "id": "astnode100018649", + "id": "astnode100018683", "name": "this.geo_dist", "type": "Identifier", "value": "geo_dist", @@ -34997,14 +35069,14 @@ "comment": "", "meta": { "range": [ - 177887, - 177899 + 178286, + 178298 ], "filename": "astronomy.js", - "lineno": 3949, + "lineno": 3954, "columnno": 8, "code": { - "id": "astnode100018655", + "id": "astnode100018689", "name": "this.gc", "type": "Identifier", "value": "gc", @@ -35022,14 +35094,14 @@ "comment": "", "meta": { "range": [ - 177909, - 177921 + 178308, + 178320 ], "filename": "astronomy.js", - "lineno": 3950, + "lineno": 3955, "columnno": 8, "code": { - "id": "astnode100018661", + "id": "astnode100018695", "name": "this.hc", "type": "Identifier", "value": "hc", @@ -35047,14 +35119,14 @@ "comment": "", "meta": { "range": [ - 177931, - 177957 + 178330, + 178356 ], "filename": "astronomy.js", - "lineno": 3951, + "lineno": 3956, "columnno": 8, "code": { - "id": "astnode100018667", + "id": "astnode100018701", "name": "this.ring_tilt", "type": "Identifier", "value": "ring_tilt", @@ -35072,14 +35144,14 @@ "comment": "", "meta": { "range": [ - 177967, - 178038 + 178366, + 178437 ], "filename": "astronomy.js", - "lineno": 3952, + "lineno": 3957, "columnno": 8, "code": { - "id": "astnode100018673", + "id": "astnode100018707", "name": "this.phase_fraction", "type": "BinaryExpression", "value": "", @@ -35097,14 +35169,14 @@ "comment": "", "meta": { "range": [ - 178048, - 178091 + 178447, + 178490 ], "filename": "astronomy.js", - "lineno": 3955, + "lineno": 3960, "columnno": 0, "code": { - "id": "astnode100018691", + "id": "astnode100018725", "name": "exports.IlluminationInfo", "type": "Identifier", "value": "IlluminationInfo", @@ -35121,14 +35193,14 @@ "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": [ - 178619, - 180556 + 179018, + 180955 ], "filename": "astronomy.js", - "lineno": 3972, + "lineno": 3977, "columnno": 0, "code": { - "id": "astnode100018696", + "id": "astnode100018730", "name": "Illumination", "type": "FunctionDeclaration", "paramnames": [ @@ -35195,14 +35267,14 @@ "comment": "", "meta": { "range": [ - 178757, - 178778 + 179156, + 179177 ], "filename": "astronomy.js", - "lineno": 3975, + "lineno": 3980, "columnno": 10, "code": { - "id": "astnode100018711", + "id": "astnode100018745", "name": "time", "type": "CallExpression", "value": "" @@ -35220,14 +35292,14 @@ "comment": "", "meta": { "range": [ - 178790, - 178824 + 179189, + 179223 ], "filename": "astronomy.js", - "lineno": 3976, + "lineno": 3981, "columnno": 10, "code": { - "id": "astnode100018717", + "id": "astnode100018751", "name": "earth", "type": "CallExpression", "value": "" @@ -35245,14 +35317,14 @@ "comment": "", "meta": { "range": [ - 178834, - 178839 + 179233, + 179238 ], "filename": "astronomy.js", - "lineno": 3977, + "lineno": 3982, "columnno": 8, "code": { - "id": "astnode100018726", + "id": "astnode100018760", "name": "phase" } }, @@ -35268,14 +35340,14 @@ "comment": "", "meta": { "range": [ - 178915, - 178917 + 179314, + 179316 ], "filename": "astronomy.js", - "lineno": 3978, + "lineno": 3983, "columnno": 8, "code": { - "id": "astnode100018729", + "id": "astnode100018763", "name": "hc" } }, @@ -35291,14 +35363,14 @@ "comment": "", "meta": { "range": [ - 178954, - 178956 + 179353, + 179355 ], "filename": "astronomy.js", - "lineno": 3979, + "lineno": 3984, "columnno": 8, "code": { - "id": "astnode100018732", + "id": "astnode100018766", "name": "gc" } }, @@ -35314,14 +35386,14 @@ "comment": "", "meta": { "range": [ - 178995, - 178998 + 179394, + 179397 ], "filename": "astronomy.js", - "lineno": 3980, + "lineno": 3985, "columnno": 8, "code": { - "id": "astnode100018735", + "id": "astnode100018769", "name": "mag" } }, @@ -35337,14 +35409,14 @@ "comment": "", "meta": { "range": [ - 179057, - 179108 + 179456, + 179507 ], "filename": "astronomy.js", - "lineno": 3982, + "lineno": 3987, "columnno": 8, "code": { - "id": "astnode100018745", + "id": "astnode100018779", "name": "gc", "type": "NewExpression", "funcscope": "Illumination", @@ -35363,14 +35435,14 @@ "comment": "", "meta": { "range": [ - 179118, - 179148 + 179517, + 179547 ], "filename": "astronomy.js", - "lineno": 3983, + "lineno": 3988, "columnno": 8, "code": { - "id": "astnode100018763", + "id": "astnode100018797", "name": "hc", "type": "NewExpression", "funcscope": "Illumination", @@ -35389,14 +35461,14 @@ "comment": "", "meta": { "range": [ - 179158, - 179167 + 179557, + 179566 ], "filename": "astronomy.js", - "lineno": 3984, + "lineno": 3989, "columnno": 8, "code": { - "id": "astnode100018772", + "id": "astnode100018806", "name": "phase", "type": "Literal", "funcscope": "Illumination", @@ -35415,66 +35487,66 @@ "comment": "", "meta": { "range": [ - 179429, - 179447 - ], - "filename": "astronomy.js", - "lineno": 3989, - "columnno": 12, - "code": { - "id": "astnode100018784", - "name": "gc", - "type": "CallExpression", - "funcscope": "Illumination", - "value": "", - "paramnames": [] - } - }, - "undocumented": true, - "name": "gc", - "longname": "Illumination~gc", - "kind": "member", - "memberof": "Illumination", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 179461, - 179530 - ], - "filename": "astronomy.js", - "lineno": 3990, - "columnno": 12, - "code": { - "id": "astnode100018790", - "name": "hc", - "type": "NewExpression", - "funcscope": "Illumination", - "value": "", - "paramnames": [] - } - }, - "undocumented": true, - "name": "hc", - "longname": "Illumination~hc", - "kind": "member", - "memberof": "Illumination", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 179646, - 179674 + 179828, + 179846 ], "filename": "astronomy.js", "lineno": 3994, "columnno": 12, "code": { "id": "astnode100018818", + "name": "gc", + "type": "CallExpression", + "funcscope": "Illumination", + "value": "", + "paramnames": [] + } + }, + "undocumented": true, + "name": "gc", + "longname": "Illumination~gc", + "kind": "member", + "memberof": "Illumination", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 179860, + 179929 + ], + "filename": "astronomy.js", + "lineno": 3995, + "columnno": 12, + "code": { + "id": "astnode100018824", + "name": "hc", + "type": "NewExpression", + "funcscope": "Illumination", + "value": "", + "paramnames": [] + } + }, + "undocumented": true, + "name": "hc", + "longname": "Illumination~hc", + "kind": "member", + "memberof": "Illumination", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 180045, + 180073 + ], + "filename": "astronomy.js", + "lineno": 3999, + "columnno": 12, + "code": { + "id": "astnode100018852", "name": "hc", "type": "CallExpression", "funcscope": "Illumination", @@ -35493,14 +35565,14 @@ "comment": "", "meta": { "range": [ - 179688, - 179757 + 180087, + 180156 ], "filename": "astronomy.js", - "lineno": 3995, + "lineno": 4000, "columnno": 12, "code": { - "id": "astnode100018825", + "id": "astnode100018859", "name": "gc", "type": "NewExpression", "funcscope": "Illumination", @@ -35519,14 +35591,14 @@ "comment": "", "meta": { "range": [ - 179777, - 179805 + 180176, + 180204 ], "filename": "astronomy.js", - "lineno": 3997, + "lineno": 4002, "columnno": 8, "code": { - "id": "astnode100018852", + "id": "astnode100018886", "name": "phase", "type": "CallExpression", "funcscope": "Illumination", @@ -35545,14 +35617,14 @@ "comment": "", "meta": { "range": [ - 179821, - 179843 + 180220, + 180242 ], "filename": "astronomy.js", - "lineno": 3999, + "lineno": 4004, "columnno": 8, "code": { - "id": "astnode100018859", + "id": "astnode100018893", "name": "geo_dist", "type": "CallExpression", "value": "" @@ -35570,14 +35642,14 @@ "comment": "", "meta": { "range": [ - 179894, - 179918 + 180293, + 180317 ], "filename": "astronomy.js", - "lineno": 4000, + "lineno": 4005, "columnno": 8, "code": { - "id": "astnode100018866", + "id": "astnode100018900", "name": "helio_dist", "type": "CallExpression", "value": "" @@ -35595,14 +35667,14 @@ "comment": "", "meta": { "range": [ - 179967, - 179976 + 180366, + 180375 ], "filename": "astronomy.js", - "lineno": 4001, + "lineno": 4006, "columnno": 8, "code": { - "id": "astnode100018873", + "id": "astnode100018907", "name": "ring_tilt" } }, @@ -35618,14 +35690,14 @@ "comment": "", "meta": { "range": [ - 180043, - 180087 + 180442, + 180486 ], "filename": "astronomy.js", - "lineno": 4003, + "lineno": 4008, "columnno": 8, "code": { - "id": "astnode100018883", + "id": "astnode100018917", "name": "mag", "type": "BinaryExpression", "funcscope": "Illumination", @@ -35644,14 +35716,14 @@ "comment": "", "meta": { "range": [ - 180138, - 180186 + 180537, + 180585 ], "filename": "astronomy.js", - "lineno": 4006, + "lineno": 4011, "columnno": 8, "code": { - "id": "astnode100018902", + "id": "astnode100018936", "name": "mag", "type": "CallExpression", "funcscope": "Illumination", @@ -35670,14 +35742,14 @@ "comment": "", "meta": { "range": [ - 180245, - 180308 + 180644, + 180707 ], "filename": "astronomy.js", - "lineno": 4009, + "lineno": 4014, "columnno": 14, "code": { - "id": "astnode100018917", + "id": "astnode100018951", "name": "saturn", "type": "CallExpression", "value": "" @@ -35695,14 +35767,14 @@ "comment": "", "meta": { "range": [ - 180318, - 180334 + 180717, + 180733 ], "filename": "astronomy.js", - "lineno": 4010, + "lineno": 4015, "columnno": 8, "code": { - "id": "astnode100018927", + "id": "astnode100018961", "name": "mag", "type": "MemberExpression", "funcscope": "Illumination", @@ -35721,14 +35793,14 @@ "comment": "", "meta": { "range": [ - 180344, - 180372 + 180743, + 180771 ], "filename": "astronomy.js", - "lineno": 4011, + "lineno": 4016, "columnno": 8, "code": { - "id": "astnode100018933", + "id": "astnode100018967", "name": "ring_tilt", "type": "MemberExpression", "funcscope": "Illumination", @@ -35747,14 +35819,14 @@ "comment": "", "meta": { "range": [ - 180399, - 180455 + 180798, + 180854 ], "filename": "astronomy.js", - "lineno": 4014, + "lineno": 4019, "columnno": 8, "code": { - "id": "astnode100018940", + "id": "astnode100018974", "name": "mag", "type": "CallExpression", "funcscope": "Illumination", @@ -35773,14 +35845,14 @@ "comment": "", "meta": { "range": [ - 180557, - 180592 + 180956, + 180991 ], "filename": "astronomy.js", - "lineno": 4018, + "lineno": 4023, "columnno": 0, "code": { - "id": "astnode100018960", + "id": "astnode100018994", "name": "exports.Illumination", "type": "Identifier", "value": "Illumination", @@ -35797,14 +35869,14 @@ "comment": "", "meta": { "range": [ - 180594, - 181505 + 180993, + 181904 ], "filename": "astronomy.js", - "lineno": 4019, + "lineno": 4024, "columnno": 0, "code": { - "id": "astnode100018965", + "id": "astnode100018999", "name": "SynodicPeriod", "type": "FunctionDeclaration", "paramnames": [ @@ -35829,14 +35901,14 @@ "comment": "", "meta": { "range": [ - 181126, - 181147 + 181525, + 181546 ], "filename": "astronomy.js", - "lineno": 4028, + "lineno": 4033, "columnno": 8, "code": { - "id": "astnode100018986", + "id": "astnode100019020", "name": "planet", "type": "MemberExpression", "value": "Planet[undefined]" @@ -35854,14 +35926,14 @@ "comment": "", "meta": { "range": [ - 181352, - 181383 + 181751, + 181782 ], "filename": "astronomy.js", - "lineno": 4033, + "lineno": 4038, "columnno": 10, "code": { - "id": "astnode100019000", + "id": "astnode100019034", "name": "Te", "type": "MemberExpression", "value": "Planet.Earth.OrbitalPeriod" @@ -35879,14 +35951,14 @@ "comment": "", "meta": { "range": [ - 181395, - 181420 + 181794, + 181819 ], "filename": "astronomy.js", - "lineno": 4034, + "lineno": 4039, "columnno": 10, "code": { - "id": "astnode100019008", + "id": "astnode100019042", "name": "Tp", "type": "MemberExpression", "value": "planet.OrbitalPeriod" @@ -35904,14 +35976,14 @@ "comment": "", "meta": { "range": [ - 181432, - 181476 + 181831, + 181875 ], "filename": "astronomy.js", - "lineno": 4035, + "lineno": 4040, "columnno": 10, "code": { - "id": "astnode100019014", + "id": "astnode100019048", "name": "synodicPeriod", "type": "CallExpression", "value": "" @@ -35929,14 +36001,14 @@ "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": [ - 182911, - 185153 + 183310, + 185552 ], "filename": "astronomy.js", - "lineno": 4066, + "lineno": 4071, "columnno": 0, "code": { - "id": "astnode100019029", + "id": "astnode100019063", "name": "SearchRelativeLongitude", "type": "FunctionDeclaration", "paramnames": [ @@ -36014,14 +36086,14 @@ "comment": "", "meta": { "range": [ - 183019, - 183040 + 183418, + 183439 ], "filename": "astronomy.js", - "lineno": 4068, + "lineno": 4073, "columnno": 10, "code": { - "id": "astnode100019040", + "id": "astnode100019074", "name": "planet", "type": "MemberExpression", "value": "Planet[undefined]" @@ -36039,14 +36111,14 @@ "comment": "", "meta": { "range": [ - 183381, - 183454 + 183780, + 183853 ], "filename": "astronomy.js", - "lineno": 4075, + "lineno": 4080, "columnno": 10, "code": { - "id": "astnode100019062", + "id": "astnode100019096", "name": "direction", "type": "ConditionalExpression", "value": "" @@ -36064,14 +36136,14 @@ "comment": "", "meta": { "range": [ - 183460, - 183691 + 183859, + 184090 ], "filename": "astronomy.js", - "lineno": 4076, + "lineno": 4081, "columnno": 4, "code": { - "id": "astnode100019078", + "id": "astnode100019112", "name": "offset", "type": "FunctionDeclaration", "paramnames": [ @@ -36096,14 +36168,14 @@ "comment": "", "meta": { "range": [ - 183495, - 183528 + 183894, + 183927 ], "filename": "astronomy.js", - "lineno": 4077, + "lineno": 4082, "columnno": 14, "code": { - "id": "astnode100019083", + "id": "astnode100019117", "name": "plon", "type": "CallExpression", "value": "" @@ -36121,14 +36193,14 @@ "comment": "", "meta": { "range": [ - 183544, - 183583 + 183943, + 183982 ], "filename": "astronomy.js", - "lineno": 4078, + "lineno": 4083, "columnno": 14, "code": { - "id": "astnode100019090", + "id": "astnode100019124", "name": "elon", "type": "CallExpression", "value": "" @@ -36146,14 +36218,14 @@ "comment": "", "meta": { "range": [ - 183599, - 183631 + 183998, + 184030 ], "filename": "astronomy.js", - "lineno": 4079, + "lineno": 4084, "columnno": 14, "code": { - "id": "astnode100019099", + "id": "astnode100019133", "name": "diff", "type": "BinaryExpression", "value": "" @@ -36171,14 +36243,14 @@ "comment": "", "meta": { "range": [ - 183700, - 183725 + 184099, + 184124 ], "filename": "astronomy.js", - "lineno": 4082, + "lineno": 4087, "columnno": 8, "code": { - "id": "astnode100019113", + "id": "astnode100019147", "name": "syn", "type": "CallExpression", "value": "" @@ -36196,14 +36268,14 @@ "comment": "", "meta": { "range": [ - 183735, - 183761 + 184134, + 184160 ], "filename": "astronomy.js", - "lineno": 4083, + "lineno": 4088, "columnno": 8, "code": { - "id": "astnode100019119", + "id": "astnode100019153", "name": "time", "type": "CallExpression", "value": "" @@ -36221,14 +36293,14 @@ "comment": "", "meta": { "range": [ - 183966, - 183992 + 184365, + 184391 ], "filename": "astronomy.js", - "lineno": 4087, + "lineno": 4092, "columnno": 8, "code": { - "id": "astnode100019125", + "id": "astnode100019159", "name": "error_angle", "type": "CallExpression", "value": "" @@ -36246,14 +36318,14 @@ "comment": "", "meta": { "range": [ - 184027, - 184045 + 184426, + 184444 ], "filename": "astronomy.js", - "lineno": 4089, + "lineno": 4094, "columnno": 8, "code": { - "id": "astnode100019135", + "id": "astnode100019169", "name": "error_angle", "type": "Literal", "funcscope": "SearchRelativeLongitude", @@ -36272,14 +36344,14 @@ "comment": "", "meta": { "range": [ - 184095, - 184103 + 184494, + 184502 ], "filename": "astronomy.js", - "lineno": 4090, + "lineno": 4095, "columnno": 13, "code": { - "id": "astnode100019140", + "id": "astnode100019174", "name": "iter", "type": "Literal", "value": 0 @@ -36297,14 +36369,14 @@ "comment": "", "meta": { "range": [ - 184290, - 184329 + 184689, + 184728 ], "filename": "astronomy.js", - "lineno": 4093, + "lineno": 4098, "columnno": 12, "code": { - "id": "astnode100019150", + "id": "astnode100019184", "name": "day_adjust", "type": "BinaryExpression", "value": "" @@ -36322,14 +36394,14 @@ "comment": "", "meta": { "range": [ - 184339, - 184370 + 184738, + 184769 ], "filename": "astronomy.js", - "lineno": 4094, + "lineno": 4099, "columnno": 8, "code": { - "id": "astnode100019159", + "id": "astnode100019193", "name": "time", "type": "CallExpression", "funcscope": "SearchRelativeLongitude", @@ -36348,14 +36420,14 @@ "comment": "", "meta": { "range": [ - 184465, - 184489 + 184864, + 184888 ], "filename": "astronomy.js", - "lineno": 4097, + "lineno": 4102, "columnno": 12, "code": { - "id": "astnode100019179", + "id": "astnode100019213", "name": "prev_angle", "type": "Identifier", "value": "error_angle" @@ -36373,14 +36445,14 @@ "comment": "", "meta": { "range": [ - 184499, - 184525 + 184898, + 184924 ], "filename": "astronomy.js", - "lineno": 4098, + "lineno": 4103, "columnno": 8, "code": { - "id": "astnode100019183", + "id": "astnode100019217", "name": "error_angle", "type": "CallExpression", "funcscope": "SearchRelativeLongitude", @@ -36399,14 +36471,14 @@ "comment": "", "meta": { "range": [ - 184865, - 184912 + 185264, + 185311 ], "filename": "astronomy.js", - "lineno": 4104, + "lineno": 4109, "columnno": 20, "code": { - "id": "astnode100019203", + "id": "astnode100019237", "name": "ratio", "type": "BinaryExpression", "value": "" @@ -36424,14 +36496,14 @@ "comment": "", "meta": { "range": [ - 184982, - 184994 + 185381, + 185393 ], "filename": "astronomy.js", - "lineno": 4106, + "lineno": 4111, "columnno": 20, "code": { - "id": "astnode100019219", + "id": "astnode100019253", "name": "syn", "type": "Identifier", "funcscope": "SearchRelativeLongitude", @@ -36450,14 +36522,14 @@ "comment": "", "meta": { "range": [ - 185154, - 185211 + 185553, + 185610 ], "filename": "astronomy.js", - "lineno": 4112, + "lineno": 4117, "columnno": 0, "code": { - "id": "astnode100019235", + "id": "astnode100019269", "name": "exports.SearchRelativeLongitude", "type": "Identifier", "value": "SearchRelativeLongitude", @@ -36474,14 +36546,14 @@ "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": [ - 185773, - 185854 + 186172, + 186253 ], "filename": "astronomy.js", - "lineno": 4130, + "lineno": 4135, "columnno": 0, "code": { - "id": "astnode100019240", + "id": "astnode100019274", "name": "MoonPhase", "type": "FunctionDeclaration", "paramnames": [ @@ -36527,14 +36599,14 @@ "comment": "", "meta": { "range": [ - 185855, - 185884 + 186254, + 186283 ], "filename": "astronomy.js", - "lineno": 4133, + "lineno": 4138, "columnno": 0, "code": { - "id": "astnode100019255", + "id": "astnode100019289", "name": "exports.MoonPhase", "type": "Identifier", "value": "MoonPhase", @@ -36551,14 +36623,14 @@ "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": [ - 187398, - 188852 + 187797, + 189251 ], "filename": "astronomy.js", - "lineno": 4168, + "lineno": 4173, "columnno": 0, "code": { - "id": "astnode100019260", + "id": "astnode100019294", "name": "SearchMoonPhase", "type": "FunctionDeclaration", "paramnames": [ @@ -36636,14 +36708,14 @@ "comment": "", "meta": { "range": [ - 187462, - 187576 + 187861, + 187975 ], "filename": "astronomy.js", - "lineno": 4169, + "lineno": 4174, "columnno": 4, "code": { - "id": "astnode100019266", + "id": "astnode100019300", "name": "moon_offset", "type": "FunctionDeclaration", "paramnames": [ @@ -36666,14 +36738,14 @@ "comment": "", "meta": { "range": [ - 187500, - 187519 + 187899, + 187918 ], "filename": "astronomy.js", - "lineno": 4170, + "lineno": 4175, "columnno": 12, "code": { - "id": "astnode100019271", + "id": "astnode100019305", "name": "mlon", "type": "CallExpression", "value": "" @@ -36691,14 +36763,14 @@ "comment": "", "meta": { "range": [ - 188326, - 188343 + 188725, + 188742 ], "filename": "astronomy.js", - "lineno": 4185, + "lineno": 4190, "columnno": 10, "code": { - "id": "astnode100019291", + "id": "astnode100019325", "name": "uncertainty", "type": "Literal", "value": 1.5 @@ -36716,14 +36788,14 @@ "comment": "", "meta": { "range": [ - 188353, - 188377 + 188752, + 188776 ], "filename": "astronomy.js", - "lineno": 4186, + "lineno": 4191, "columnno": 8, "code": { - "id": "astnode100019295", + "id": "astnode100019329", "name": "ta", "type": "CallExpression", "value": "" @@ -36741,14 +36813,14 @@ "comment": "", "meta": { "range": [ - 188387, - 188407 + 188786, + 188806 ], "filename": "astronomy.js", - "lineno": 4187, + "lineno": 4192, "columnno": 8, "code": { - "id": "astnode100019301", + "id": "astnode100019335", "name": "ya", "type": "CallExpression", "value": "" @@ -36766,14 +36838,14 @@ "comment": "", "meta": { "range": [ - 188433, - 188442 + 188832, + 188841 ], "filename": "astronomy.js", - "lineno": 4189, + "lineno": 4194, "columnno": 8, "code": { - "id": "astnode100019311", + "id": "astnode100019345", "name": "ya", "type": "Literal", "funcscope": "SearchMoonPhase", @@ -36792,14 +36864,14 @@ "comment": "", "meta": { "range": [ - 188501, - 188542 + 188900, + 188941 ], "filename": "astronomy.js", - "lineno": 4190, + "lineno": 4195, "columnno": 8, "code": { - "id": "astnode100019315", + "id": "astnode100019349", "name": "est_dt", "type": "BinaryExpression", "value": "" @@ -36817,14 +36889,14 @@ "comment": "", "meta": { "range": [ - 188552, - 188578 + 188951, + 188977 ], "filename": "astronomy.js", - "lineno": 4191, + "lineno": 4196, "columnno": 8, "code": { - "id": "astnode100019324", + "id": "astnode100019358", "name": "dt1", "type": "BinaryExpression", "value": "" @@ -36842,14 +36914,14 @@ "comment": "", "meta": { "range": [ - 188702, - 188749 + 189101, + 189148 ], "filename": "astronomy.js", - "lineno": 4194, + "lineno": 4199, "columnno": 8, "code": { - "id": "astnode100019336", + "id": "astnode100019370", "name": "dt2", "type": "CallExpression", "value": "" @@ -36867,14 +36939,14 @@ "comment": "", "meta": { "range": [ - 188759, - 188779 + 189158, + 189178 ], "filename": "astronomy.js", - "lineno": 4195, + "lineno": 4200, "columnno": 8, "code": { - "id": "astnode100019347", + "id": "astnode100019381", "name": "t1", "type": "CallExpression", "value": "" @@ -36892,14 +36964,14 @@ "comment": "", "meta": { "range": [ - 188789, - 188809 + 189188, + 189208 ], "filename": "astronomy.js", - "lineno": 4196, + "lineno": 4201, "columnno": 8, "code": { - "id": "astnode100019355", + "id": "astnode100019389", "name": "t2", "type": "CallExpression", "value": "" @@ -36917,14 +36989,14 @@ "comment": "", "meta": { "range": [ - 188853, - 188894 + 189252, + 189293 ], "filename": "astronomy.js", - "lineno": 4199, + "lineno": 4204, "columnno": 0, "code": { - "id": "astnode100019369", + "id": "astnode100019403", "name": "exports.SearchMoonPhase", "type": "Identifier", "value": "SearchMoonPhase", @@ -36941,14 +37013,14 @@ "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": [ - 189214, - 189332 + 189613, + 189731 ], "filename": "astronomy.js", - "lineno": 4213, + "lineno": 4218, "columnno": 0, "code": { - "id": "astnode100019374", + "id": "astnode100019408", "name": "MoonQuarter", "type": "ClassDeclaration", "paramnames": [ @@ -36995,14 +37067,14 @@ "comment": "", "meta": { "range": [ - 189238, - 189330 + 189637, + 189729 ], "filename": "astronomy.js", - "lineno": 4214, + "lineno": 4219, "columnno": 4, "code": { - "id": "astnode100019377", + "id": "astnode100019411", "name": "MoonQuarter", "type": "MethodDefinition", "paramnames": [ @@ -37025,14 +37097,14 @@ "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": [ - 189214, - 189332 + 189613, + 189731 ], "filename": "astronomy.js", - "lineno": 4213, + "lineno": 4218, "columnno": 0, "code": { - "id": "astnode100019374", + "id": "astnode100019408", "name": "MoonQuarter", "type": "ClassDeclaration", "paramnames": [ @@ -37078,14 +37150,14 @@ "comment": "", "meta": { "range": [ - 189275, - 189297 + 189674, + 189696 ], "filename": "astronomy.js", - "lineno": 4215, + "lineno": 4220, "columnno": 8, "code": { - "id": "astnode100019384", + "id": "astnode100019418", "name": "this.quarter", "type": "Identifier", "value": "quarter", @@ -37103,14 +37175,14 @@ "comment": "", "meta": { "range": [ - 189307, - 189323 + 189706, + 189722 ], "filename": "astronomy.js", - "lineno": 4216, + "lineno": 4221, "columnno": 8, "code": { - "id": "astnode100019390", + "id": "astnode100019424", "name": "this.time", "type": "Identifier", "value": "time", @@ -37128,14 +37200,14 @@ "comment": "", "meta": { "range": [ - 189333, - 189366 + 189732, + 189765 ], "filename": "astronomy.js", - "lineno": 4219, + "lineno": 4224, "columnno": 0, "code": { - "id": "astnode100019396", + "id": "astnode100019430", "name": "exports.MoonQuarter", "type": "Identifier", "value": "MoonQuarter", @@ -37152,14 +37224,14 @@ "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": [ - 189970, - 190363 + 190369, + 190762 ], "filename": "astronomy.js", - "lineno": 4234, + "lineno": 4239, "columnno": 0, "code": { - "id": "astnode100019401", + "id": "astnode100019435", "name": "SearchMoonQuarter", "type": "FunctionDeclaration", "paramnames": [ @@ -37210,14 +37282,14 @@ "comment": "", "meta": { "range": [ - 190072, - 190105 + 190471, + 190504 ], "filename": "astronomy.js", - "lineno": 4236, + "lineno": 4241, "columnno": 8, "code": { - "id": "astnode100019406", + "id": "astnode100019440", "name": "phaseStart", "type": "CallExpression", "value": "" @@ -37235,14 +37307,14 @@ "comment": "", "meta": { "range": [ - 190115, - 190157 + 190514, + 190556 ], "filename": "astronomy.js", - "lineno": 4237, + "lineno": 4242, "columnno": 8, "code": { - "id": "astnode100019412", + "id": "astnode100019446", "name": "quarterStart", "type": "CallExpression", "value": "" @@ -37260,14 +37332,14 @@ "comment": "", "meta": { "range": [ - 190167, - 190199 + 190566, + 190598 ], "filename": "astronomy.js", - "lineno": 4238, + "lineno": 4243, "columnno": 8, "code": { - "id": "astnode100019422", + "id": "astnode100019456", "name": "quarter", "type": "BinaryExpression", "value": "" @@ -37285,14 +37357,14 @@ "comment": "", "meta": { "range": [ - 190209, - 190260 + 190608, + 190659 ], "filename": "astronomy.js", - "lineno": 4239, + "lineno": 4244, "columnno": 8, "code": { - "id": "astnode100019430", + "id": "astnode100019464", "name": "time", "type": "CallExpression", "value": "" @@ -37310,14 +37382,14 @@ "comment": "", "meta": { "range": [ - 190364, - 190409 + 190763, + 190808 ], "filename": "astronomy.js", - "lineno": 4244, + "lineno": 4249, "columnno": 0, "code": { - "id": "astnode100019450", + "id": "astnode100019484", "name": "exports.SearchMoonQuarter", "type": "Identifier", "value": "SearchMoonQuarter", @@ -37334,14 +37406,14 @@ "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": [ - 190756, - 191113 + 191155, + 191512 ], "filename": "astronomy.js", - "lineno": 4255, + "lineno": 4260, "columnno": 0, "code": { - "id": "astnode100019455", + "id": "astnode100019489", "name": "NextMoonQuarter", "type": "FunctionDeclaration", "paramnames": [ @@ -37380,14 +37452,14 @@ "comment": "", "meta": { "range": [ - 191014, - 191074 + 191413, + 191473 ], "filename": "astronomy.js", - "lineno": 4259, + "lineno": 4264, "columnno": 8, "code": { - "id": "astnode100019460", + "id": "astnode100019494", "name": "date", "type": "NewExpression", "value": "" @@ -37405,14 +37477,14 @@ "comment": "", "meta": { "range": [ - 191114, - 191155 + 191513, + 191554 ], "filename": "astronomy.js", - "lineno": 4262, + "lineno": 4267, "columnno": 0, "code": { - "id": "astnode100019481", + "id": "astnode100019515", "name": "exports.NextMoonQuarter", "type": "Identifier", "value": "NextMoonQuarter", @@ -37429,14 +37501,14 @@ "comment": "", "meta": { "range": [ - 191157, - 191558 + 191556, + 191957 ], "filename": "astronomy.js", - "lineno": 4263, + "lineno": 4268, "columnno": 0, "code": { - "id": "astnode100019486", + "id": "astnode100019520", "name": "BodyRadiusAu", "type": "FunctionDeclaration", "paramnames": [ @@ -37455,14 +37527,14 @@ "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": [ - 192850, - 193897 + 193249, + 194296 ], "filename": "astronomy.js", - "lineno": 4306, + "lineno": 4311, "columnno": 0, "code": { - "id": "astnode100019507", + "id": "astnode100019541", "name": "SearchRiseSet", "type": "FunctionDeclaration", "paramnames": [ @@ -37553,14 +37625,14 @@ "comment": "", "meta": { "range": [ - 192932, - 192967 + 193331, + 193366 ], "filename": "astronomy.js", - "lineno": 4307, + "lineno": 4312, "columnno": 8, "code": { - "id": "astnode100019516", + "id": "astnode100019550", "name": "body_radius_au", "type": "CallExpression", "value": "" @@ -37578,14 +37650,14 @@ "comment": "", "meta": { "range": [ - 192973, - 193796 + 193372, + 194195 ], "filename": "astronomy.js", - "lineno": 4308, + "lineno": 4313, "columnno": 4, "code": { - "id": "astnode100019521", + "id": "astnode100019555", "name": "peak_altitude", "type": "FunctionDeclaration", "paramnames": [ @@ -37610,14 +37682,14 @@ "comment": "", "meta": { "range": [ - 193534, - 193581 + 193933, + 193980 ], "filename": "astronomy.js", - "lineno": 4317, + "lineno": 4322, "columnno": 14, "code": { - "id": "astnode100019526", + "id": "astnode100019560", "name": "ofdate", "type": "CallExpression", "value": "" @@ -37635,14 +37707,14 @@ "comment": "", "meta": { "range": [ - 193597, - 193646 + 193996, + 194045 ], "filename": "astronomy.js", - "lineno": 4318, + "lineno": 4323, "columnno": 14, "code": { - "id": "astnode100019536", + "id": "astnode100019570", "name": "hor", "type": "CallExpression", "value": "" @@ -37660,14 +37732,14 @@ "comment": "", "meta": { "range": [ - 193662, - 193757 + 194061, + 194156 ], "filename": "astronomy.js", - "lineno": 4319, + "lineno": 4324, "columnno": 14, "code": { - "id": "astnode100019549", + "id": "astnode100019583", "name": "alt", "type": "BinaryExpression", "value": "" @@ -37685,14 +37757,14 @@ "comment": "", "meta": { "range": [ - 193898, - 193935 + 194297, + 194334 ], "filename": "astronomy.js", - "lineno": 4324, + "lineno": 4329, "columnno": 0, "code": { - "id": "astnode100019580", + "id": "astnode100019614", "name": "exports.SearchRiseSet", "type": "Identifier", "value": "SearchRiseSet", @@ -37709,14 +37781,14 @@ "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": [ - 196053, - 196585 + 196452, + 196984 ], "filename": "astronomy.js", - "lineno": 4372, + "lineno": 4377, "columnno": 0, "code": { - "id": "astnode100019585", + "id": "astnode100019619", "name": "SearchAltitude", "type": "FunctionDeclaration", "paramnames": [ @@ -37816,14 +37888,14 @@ "comment": "", "meta": { "range": [ - 196267, - 196483 + 196666, + 196882 ], "filename": "astronomy.js", - "lineno": 4375, + "lineno": 4380, "columnno": 4, "code": { - "id": "astnode100019616", + "id": "astnode100019650", "name": "altitude_error", "type": "FunctionDeclaration", "paramnames": [ @@ -37847,14 +37919,14 @@ "comment": "", "meta": { "range": [ - 196310, - 196357 + 196709, + 196756 ], "filename": "astronomy.js", - "lineno": 4376, + "lineno": 4381, "columnno": 14, "code": { - "id": "astnode100019621", + "id": "astnode100019655", "name": "ofdate", "type": "CallExpression", "value": "" @@ -37872,14 +37944,14 @@ "comment": "", "meta": { "range": [ - 196373, - 196422 + 196772, + 196821 ], "filename": "astronomy.js", - "lineno": 4377, + "lineno": 4382, "columnno": 14, "code": { - "id": "astnode100019631", + "id": "astnode100019665", "name": "hor", "type": "CallExpression", "value": "" @@ -37897,14 +37969,14 @@ "comment": "", "meta": { "range": [ - 196586, - 196625 + 196985, + 197024 ], "filename": "astronomy.js", - "lineno": 4382, + "lineno": 4387, "columnno": 0, "code": { - "id": "astnode100019661", + "id": "astnode100019695", "name": "exports.SearchAltitude", "type": "Identifier", "value": "SearchAltitude", @@ -37921,14 +37993,14 @@ "comment": "", "meta": { "range": [ - 196627, - 199670 + 197026, + 200069 ], "filename": "astronomy.js", - "lineno": 4383, + "lineno": 4388, "columnno": 0, "code": { - "id": "astnode100019666", + "id": "astnode100019700", "name": "InternalSearchAltitude", "type": "FunctionDeclaration", "paramnames": [ @@ -37963,14 +38035,14 @@ "comment": "", "meta": { "range": [ - 197546, - 197555 + 197945, + 197954 ], "filename": "astronomy.js", - "lineno": 4398, + "lineno": 4403, "columnno": 8, "code": { - "id": "astnode100019701", + "id": "astnode100019735", "name": "ha_before" } }, @@ -37986,14 +38058,14 @@ "comment": "", "meta": { "range": [ - 197557, - 197565 + 197956, + 197964 ], "filename": "astronomy.js", - "lineno": 4398, + "lineno": 4403, "columnno": 19, "code": { - "id": "astnode100019703", + "id": "astnode100019737", "name": "ha_after" } }, @@ -38009,92 +38081,92 @@ "comment": "", "meta": { "range": [ - 197603, - 197617 - ], - "filename": "astronomy.js", - "lineno": 4400, - "columnno": 8, - "code": { - "id": "astnode100019712", - "name": "ha_before", - "type": "Literal", - "funcscope": "InternalSearchAltitude", - "value": 12, - "paramnames": [] - } - }, - "undocumented": true, - "name": "ha_before", - "longname": "InternalSearchAltitude~ha_before", - "kind": "member", - "memberof": "InternalSearchAltitude", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 197687, - 197699 - ], - "filename": "astronomy.js", - "lineno": 4401, - "columnno": 8, - "code": { - "id": "astnode100019716", - "name": "ha_after", - "type": "Literal", - "funcscope": "InternalSearchAltitude", - "value": 0, - "paramnames": [] - } - }, - "undocumented": true, - "name": "ha_after", - "longname": "InternalSearchAltitude~ha_after", - "kind": "member", - "memberof": "InternalSearchAltitude", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 197812, - 197825 - ], - "filename": "astronomy.js", - "lineno": 4404, - "columnno": 8, - "code": { - "id": "astnode100019726", - "name": "ha_before", - "type": "Literal", - "funcscope": "InternalSearchAltitude", - "value": 0, - "paramnames": [] - } - }, - "undocumented": true, - "name": "ha_before", - "longname": "InternalSearchAltitude~ha_before", - "kind": "member", - "memberof": "InternalSearchAltitude", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 197880, - 197893 + 198002, + 198016 ], "filename": "astronomy.js", "lineno": 4405, "columnno": 8, "code": { - "id": "astnode100019730", + "id": "astnode100019746", + "name": "ha_before", + "type": "Literal", + "funcscope": "InternalSearchAltitude", + "value": 12, + "paramnames": [] + } + }, + "undocumented": true, + "name": "ha_before", + "longname": "InternalSearchAltitude~ha_before", + "kind": "member", + "memberof": "InternalSearchAltitude", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 198086, + 198098 + ], + "filename": "astronomy.js", + "lineno": 4406, + "columnno": 8, + "code": { + "id": "astnode100019750", + "name": "ha_after", + "type": "Literal", + "funcscope": "InternalSearchAltitude", + "value": 0, + "paramnames": [] + } + }, + "undocumented": true, + "name": "ha_after", + "longname": "InternalSearchAltitude~ha_after", + "kind": "member", + "memberof": "InternalSearchAltitude", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 198211, + 198224 + ], + "filename": "astronomy.js", + "lineno": 4409, + "columnno": 8, + "code": { + "id": "astnode100019760", + "name": "ha_before", + "type": "Literal", + "funcscope": "InternalSearchAltitude", + "value": 0, + "paramnames": [] + } + }, + "undocumented": true, + "name": "ha_before", + "longname": "InternalSearchAltitude~ha_before", + "kind": "member", + "memberof": "InternalSearchAltitude", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 198279, + 198292 + ], + "filename": "astronomy.js", + "lineno": 4410, + "columnno": 8, + "code": { + "id": "astnode100019764", "name": "ha_after", "type": "Literal", "funcscope": "InternalSearchAltitude", @@ -38113,14 +38185,14 @@ "comment": "", "meta": { "range": [ - 198043, - 198075 + 198442, + 198474 ], "filename": "astronomy.js", - "lineno": 4410, + "lineno": 4415, "columnno": 8, "code": { - "id": "astnode100019740", + "id": "astnode100019774", "name": "time_start", "type": "CallExpression", "value": "" @@ -38138,14 +38210,14 @@ "comment": "", "meta": { "range": [ - 198085, - 198096 + 198484, + 198495 ], "filename": "astronomy.js", - "lineno": 4411, + "lineno": 4416, "columnno": 8, "code": { - "id": "astnode100019746", + "id": "astnode100019780", "name": "time_before" } }, @@ -38161,14 +38233,14 @@ "comment": "", "meta": { "range": [ - 198106, - 198116 + 198505, + 198515 ], "filename": "astronomy.js", - "lineno": 4412, + "lineno": 4417, "columnno": 8, "code": { - "id": "astnode100019749", + "id": "astnode100019783", "name": "evt_before" } }, @@ -38184,14 +38256,14 @@ "comment": "", "meta": { "range": [ - 198126, - 198135 + 198525, + 198534 ], "filename": "astronomy.js", - "lineno": 4413, + "lineno": 4418, "columnno": 8, "code": { - "id": "astnode100019752", + "id": "astnode100019786", "name": "evt_after" } }, @@ -38207,14 +38279,14 @@ "comment": "", "meta": { "range": [ - 198145, - 198186 + 198544, + 198585 ], "filename": "astronomy.js", - "lineno": 4414, + "lineno": 4419, "columnno": 8, "code": { - "id": "astnode100019755", + "id": "astnode100019789", "name": "error_before", "type": "CallExpression", "value": "" @@ -38232,14 +38304,14 @@ "comment": "", "meta": { "range": [ - 198196, - 198207 + 198595, + 198606 ], "filename": "astronomy.js", - "lineno": 4415, + "lineno": 4420, "columnno": 8, "code": { - "id": "astnode100019761", + "id": "astnode100019795", "name": "error_after" } }, @@ -38255,14 +38327,14 @@ "comment": "", "meta": { "range": [ - 198348, - 198415 + 198747, + 198814 ], "filename": "astronomy.js", - "lineno": 4418, + "lineno": 4423, "columnno": 8, "code": { - "id": "astnode100019769", + "id": "astnode100019803", "name": "evt_before", "type": "CallExpression", "funcscope": "InternalSearchAltitude", @@ -38281,14 +38353,14 @@ "comment": "", "meta": { "range": [ - 198425, - 198454 + 198824, + 198853 ], "filename": "astronomy.js", - "lineno": 4419, + "lineno": 4424, "columnno": 8, "code": { - "id": "astnode100019778", + "id": "astnode100019812", "name": "time_before", "type": "MemberExpression", "funcscope": "InternalSearchAltitude", @@ -38307,14 +38379,14 @@ "comment": "", "meta": { "range": [ - 198464, - 198506 + 198863, + 198905 ], "filename": "astronomy.js", - "lineno": 4420, + "lineno": 4425, "columnno": 8, "code": { - "id": "astnode100019784", + "id": "astnode100019818", "name": "error_before", "type": "CallExpression", "funcscope": "InternalSearchAltitude", @@ -38333,14 +38405,14 @@ "comment": "", "meta": { "range": [ - 198690, - 198714 + 199089, + 199113 ], "filename": "astronomy.js", - "lineno": 4425, + "lineno": 4430, "columnno": 8, "code": { - "id": "astnode100019791", + "id": "astnode100019825", "name": "time_before", "type": "Identifier", "funcscope": "InternalSearchAltitude", @@ -38359,14 +38431,14 @@ "comment": "", "meta": { "range": [ - 198726, - 198792 + 199125, + 199191 ], "filename": "astronomy.js", - "lineno": 4427, + "lineno": 4432, "columnno": 4, "code": { - "id": "astnode100019795", + "id": "astnode100019829", "name": "evt_after", "type": "CallExpression", "funcscope": "InternalSearchAltitude", @@ -38385,14 +38457,14 @@ "comment": "", "meta": { "range": [ - 198798, - 198842 + 199197, + 199241 ], "filename": "astronomy.js", - "lineno": 4428, + "lineno": 4433, "columnno": 4, "code": { - "id": "astnode100019804", + "id": "astnode100019838", "name": "error_after", "type": "CallExpression", "funcscope": "InternalSearchAltitude", @@ -38411,14 +38483,14 @@ "comment": "", "meta": { "range": [ - 199009, - 199114 + 199408, + 199513 ], "filename": "astronomy.js", - "lineno": 4432, + "lineno": 4437, "columnno": 16, "code": { - "id": "astnode100019824", + "id": "astnode100019858", "name": "tx", "type": "CallExpression", "value": "" @@ -38436,14 +38508,14 @@ "comment": "", "meta": { "range": [ - 199068, - 199089 + 199467, + 199488 ], "filename": "astronomy.js", - "lineno": 4432, + "lineno": 4437, "columnno": 75, "code": { - "id": "astnode100019834", + "id": "astnode100019868", "name": "init_f1", "type": "Identifier", "value": "error_before" @@ -38459,14 +38531,14 @@ "comment": "", "meta": { "range": [ - 199091, - 199111 + 199490, + 199510 ], "filename": "astronomy.js", - "lineno": 4432, + "lineno": 4437, "columnno": 98, "code": { - "id": "astnode100019836", + "id": "astnode100019870", "name": "init_f2", "type": "Identifier", "value": "error_after" @@ -38482,14 +38554,14 @@ "comment": "", "meta": { "range": [ - 199275, - 199346 + 199674, + 199745 ], "filename": "astronomy.js", - "lineno": 4437, + "lineno": 4442, "columnno": 8, "code": { - "id": "astnode100019843", + "id": "astnode100019877", "name": "evt_before", "type": "CallExpression", "funcscope": "InternalSearchAltitude", @@ -38508,14 +38580,14 @@ "comment": "", "meta": { "range": [ - 199356, - 199426 + 199755, + 199825 ], "filename": "astronomy.js", - "lineno": 4438, + "lineno": 4443, "columnno": 8, "code": { - "id": "astnode100019854", + "id": "astnode100019888", "name": "evt_after", "type": "CallExpression", "funcscope": "InternalSearchAltitude", @@ -38534,14 +38606,14 @@ "comment": "", "meta": { "range": [ - 199522, - 199551 + 199921, + 199950 ], "filename": "astronomy.js", - "lineno": 4441, + "lineno": 4446, "columnno": 8, "code": { - "id": "astnode100019879", + "id": "astnode100019913", "name": "time_before", "type": "MemberExpression", "funcscope": "InternalSearchAltitude", @@ -38560,14 +38632,14 @@ "comment": "", "meta": { "range": [ - 199561, - 199607 + 199960, + 200006 ], "filename": "astronomy.js", - "lineno": 4442, + "lineno": 4447, "columnno": 8, "code": { - "id": "astnode100019885", + "id": "astnode100019919", "name": "error_before", "type": "CallExpression", "funcscope": "InternalSearchAltitude", @@ -38586,14 +38658,14 @@ "comment": "", "meta": { "range": [ - 199617, - 199661 + 200016, + 200060 ], "filename": "astronomy.js", - "lineno": 4443, + "lineno": 4448, "columnno": 8, "code": { - "id": "astnode100019893", + "id": "astnode100019927", "name": "error_after", "type": "CallExpression", "funcscope": "InternalSearchAltitude", @@ -38612,14 +38684,14 @@ "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": [ - 200180, - 200289 + 200579, + 200688 ], "filename": "astronomy.js", - "lineno": 4460, + "lineno": 4465, "columnno": 0, "code": { - "id": "astnode100019900", + "id": "astnode100019934", "name": "HourAngleEvent", "type": "ClassDeclaration", "paramnames": [ @@ -38666,14 +38738,14 @@ "comment": "", "meta": { "range": [ - 200207, - 200287 + 200606, + 200686 ], "filename": "astronomy.js", - "lineno": 4461, + "lineno": 4466, "columnno": 4, "code": { - "id": "astnode100019903", + "id": "astnode100019937", "name": "HourAngleEvent", "type": "MethodDefinition", "paramnames": [ @@ -38696,14 +38768,14 @@ "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": [ - 200180, - 200289 + 200579, + 200688 ], "filename": "astronomy.js", - "lineno": 4460, + "lineno": 4465, "columnno": 0, "code": { - "id": "astnode100019900", + "id": "astnode100019934", "name": "HourAngleEvent", "type": "ClassDeclaration", "paramnames": [ @@ -38749,14 +38821,14 @@ "comment": "", "meta": { "range": [ - 200240, - 200256 + 200639, + 200655 ], "filename": "astronomy.js", - "lineno": 4462, + "lineno": 4467, "columnno": 8, "code": { - "id": "astnode100019910", + "id": "astnode100019944", "name": "this.time", "type": "Identifier", "value": "time", @@ -38774,14 +38846,14 @@ "comment": "", "meta": { "range": [ - 200266, - 200280 + 200665, + 200679 ], "filename": "astronomy.js", - "lineno": 4463, + "lineno": 4468, "columnno": 8, "code": { - "id": "astnode100019916", + "id": "astnode100019950", "name": "this.hor", "type": "Identifier", "value": "hor", @@ -38799,14 +38871,14 @@ "comment": "", "meta": { "range": [ - 200290, - 200329 + 200689, + 200728 ], "filename": "astronomy.js", - "lineno": 4466, + "lineno": 4471, "columnno": 0, "code": { - "id": "astnode100019922", + "id": "astnode100019956", "name": "exports.HourAngleEvent", "type": "Identifier", "value": "HourAngleEvent", @@ -38823,14 +38895,14 @@ "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": [ - 202020, - 203890 + 202419, + 204289 ], "filename": "astronomy.js", - "lineno": 4503, + "lineno": 4508, "columnno": 0, "code": { - "id": "astnode100019927", + "id": "astnode100019961", "name": "SearchHourAngle", "type": "FunctionDeclaration", "paramnames": [ @@ -38914,14 +38986,14 @@ "comment": "", "meta": { "range": [ - 202123, - 202149 + 202522, + 202548 ], "filename": "astronomy.js", - "lineno": 4505, + "lineno": 4510, "columnno": 8, "code": { - "id": "astnode100019939", + "id": "astnode100019973", "name": "time", "type": "CallExpression", "value": "" @@ -38939,14 +39011,14 @@ "comment": "", "meta": { "range": [ - 202159, - 202167 + 202558, + 202566 ], "filename": "astronomy.js", - "lineno": 4506, + "lineno": 4511, "columnno": 8, "code": { - "id": "astnode100019945", + "id": "astnode100019979", "name": "iter", "type": "Literal", "value": 0 @@ -38964,14 +39036,14 @@ "comment": "", "meta": { "range": [ - 202509, - 202535 + 202908, + 202934 ], "filename": "astronomy.js", - "lineno": 4515, + "lineno": 4520, "columnno": 12, "code": { - "id": "astnode100019980", + "id": "astnode100020014", "name": "gast", "type": "CallExpression", "value": "" @@ -38989,14 +39061,14 @@ "comment": "", "meta": { "range": [ - 202549, - 202599 + 202948, + 202998 ], "filename": "astronomy.js", - "lineno": 4516, + "lineno": 4521, "columnno": 12, "code": { - "id": "astnode100019986", + "id": "astnode100020020", "name": "ofdate", "type": "CallExpression", "value": "" @@ -39014,14 +39086,14 @@ "comment": "", "meta": { "range": [ - 202730, - 202816 + 203129, + 203215 ], "filename": "astronomy.js", - "lineno": 4519, + "lineno": 4524, "columnno": 12, "code": { - "id": "astnode100019996", + "id": "astnode100020030", "name": "delta_sidereal_hours", "type": "BinaryExpression", "value": "" @@ -39039,92 +39111,92 @@ "comment": "", "meta": { "range": [ - 202972, - 202998 + 203371, + 203397 ], "filename": "astronomy.js", - "lineno": 4523, + "lineno": 4528, "columnno": 16, - "code": { - "id": "astnode100020023", - "name": "delta_sidereal_hours", - "type": "Literal", - "funcscope": "SearchHourAngle", - "value": 24, - "paramnames": [] - } - }, - "undocumented": true, - "name": "delta_sidereal_hours", - "longname": "SearchHourAngle~delta_sidereal_hours", - "kind": "member", - "memberof": "SearchHourAngle", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 203219, - 203245 - ], - "filename": "astronomy.js", - "lineno": 4529, - "columnno": 16, - "code": { - "id": "astnode100020033", - "name": "delta_sidereal_hours", - "type": "Literal", - "funcscope": "SearchHourAngle", - "value": 24, - "paramnames": [] - } - }, - "undocumented": true, - "name": "delta_sidereal_hours", - "longname": "SearchHourAngle~delta_sidereal_hours", - "kind": "member", - "memberof": "SearchHourAngle", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 203312, - 203338 - ], - "filename": "astronomy.js", - "lineno": 4531, - "columnno": 16, - "code": { - "id": "astnode100020042", - "name": "delta_sidereal_hours", - "type": "Literal", - "funcscope": "SearchHourAngle", - "value": 24, - "paramnames": [] - } - }, - "undocumented": true, - "name": "delta_sidereal_hours", - "longname": "SearchHourAngle~delta_sidereal_hours", - "kind": "member", - "memberof": "SearchHourAngle", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 203505, - 203567 - ], - "filename": "astronomy.js", - "lineno": 4535, - "columnno": 18, "code": { "id": "astnode100020057", + "name": "delta_sidereal_hours", + "type": "Literal", + "funcscope": "SearchHourAngle", + "value": 24, + "paramnames": [] + } + }, + "undocumented": true, + "name": "delta_sidereal_hours", + "longname": "SearchHourAngle~delta_sidereal_hours", + "kind": "member", + "memberof": "SearchHourAngle", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 203618, + 203644 + ], + "filename": "astronomy.js", + "lineno": 4534, + "columnno": 16, + "code": { + "id": "astnode100020067", + "name": "delta_sidereal_hours", + "type": "Literal", + "funcscope": "SearchHourAngle", + "value": 24, + "paramnames": [] + } + }, + "undocumented": true, + "name": "delta_sidereal_hours", + "longname": "SearchHourAngle~delta_sidereal_hours", + "kind": "member", + "memberof": "SearchHourAngle", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 203711, + 203737 + ], + "filename": "astronomy.js", + "lineno": 4536, + "columnno": 16, + "code": { + "id": "astnode100020076", + "name": "delta_sidereal_hours", + "type": "Literal", + "funcscope": "SearchHourAngle", + "value": 24, + "paramnames": [] + } + }, + "undocumented": true, + "name": "delta_sidereal_hours", + "longname": "SearchHourAngle~delta_sidereal_hours", + "kind": "member", + "memberof": "SearchHourAngle", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 203904, + 203966 + ], + "filename": "astronomy.js", + "lineno": 4540, + "columnno": 18, + "code": { + "id": "astnode100020091", "name": "hor", "type": "CallExpression", "value": "" @@ -39142,14 +39214,14 @@ "comment": "", "meta": { "range": [ - 203770, - 203840 + 204169, + 204239 ], "filename": "astronomy.js", - "lineno": 4540, + "lineno": 4545, "columnno": 12, "code": { - "id": "astnode100020076", + "id": "astnode100020110", "name": "delta_days", "type": "BinaryExpression", "value": "" @@ -39167,14 +39239,14 @@ "comment": "", "meta": { "range": [ - 203850, - 203881 + 204249, + 204280 ], "filename": "astronomy.js", - "lineno": 4541, + "lineno": 4546, "columnno": 8, "code": { - "id": "astnode100020084", + "id": "astnode100020118", "name": "time", "type": "CallExpression", "funcscope": "SearchHourAngle", @@ -39193,14 +39265,14 @@ "comment": "", "meta": { "range": [ - 203891, - 203932 + 204290, + 204331 ], "filename": "astronomy.js", - "lineno": 4544, + "lineno": 4549, "columnno": 0, "code": { - "id": "astnode100020092", + "id": "astnode100020126", "name": "exports.SearchHourAngle", "type": "Identifier", "value": "SearchHourAngle", @@ -39217,14 +39289,14 @@ "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": [ - 206073, - 206335 + 206472, + 206734 ], "filename": "astronomy.js", - "lineno": 4588, + "lineno": 4593, "columnno": 0, "code": { - "id": "astnode100020097", + "id": "astnode100020131", "name": "SeasonInfo", "type": "ClassDeclaration", "paramnames": [ @@ -39291,14 +39363,14 @@ "comment": "", "meta": { "range": [ - 206096, - 206333 + 206495, + 206732 ], "filename": "astronomy.js", - "lineno": 4589, + "lineno": 4594, "columnno": 4, "code": { - "id": "astnode100020100", + "id": "astnode100020134", "name": "SeasonInfo", "type": "MethodDefinition", "paramnames": [ @@ -39323,14 +39395,14 @@ "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": [ - 206073, - 206335 + 206472, + 206734 ], "filename": "astronomy.js", - "lineno": 4588, + "lineno": 4593, "columnno": 0, "code": { - "id": "astnode100020097", + "id": "astnode100020131", "name": "SeasonInfo", "type": "ClassDeclaration", "paramnames": [ @@ -39396,14 +39468,14 @@ "comment": "", "meta": { "range": [ - 206172, - 206202 + 206571, + 206601 ], "filename": "astronomy.js", - "lineno": 4590, + "lineno": 4595, "columnno": 8, "code": { - "id": "astnode100020109", + "id": "astnode100020143", "name": "this.mar_equinox", "type": "Identifier", "value": "mar_equinox", @@ -39421,14 +39493,14 @@ "comment": "", "meta": { "range": [ - 206212, - 206244 + 206611, + 206643 ], "filename": "astronomy.js", - "lineno": 4591, + "lineno": 4596, "columnno": 8, "code": { - "id": "astnode100020115", + "id": "astnode100020149", "name": "this.jun_solstice", "type": "Identifier", "value": "jun_solstice", @@ -39446,14 +39518,14 @@ "comment": "", "meta": { "range": [ - 206254, - 206284 + 206653, + 206683 ], "filename": "astronomy.js", - "lineno": 4592, + "lineno": 4597, "columnno": 8, "code": { - "id": "astnode100020121", + "id": "astnode100020155", "name": "this.sep_equinox", "type": "Identifier", "value": "sep_equinox", @@ -39471,14 +39543,14 @@ "comment": "", "meta": { "range": [ - 206294, - 206326 + 206693, + 206725 ], "filename": "astronomy.js", - "lineno": 4593, + "lineno": 4598, "columnno": 8, "code": { - "id": "astnode100020127", + "id": "astnode100020161", "name": "this.dec_solstice", "type": "Identifier", "value": "dec_solstice", @@ -39496,14 +39568,14 @@ "comment": "", "meta": { "range": [ - 206336, - 206367 + 206735, + 206766 ], "filename": "astronomy.js", - "lineno": 4596, + "lineno": 4601, "columnno": 0, "code": { - "id": "astnode100020133", + "id": "astnode100020167", "name": "exports.SeasonInfo", "type": "Identifier", "value": "SeasonInfo", @@ -39520,14 +39592,14 @@ "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": [ - 206651, - 207468 + 207050, + 207867 ], "filename": "astronomy.js", - "lineno": 4606, + "lineno": 4611, "columnno": 0, "code": { - "id": "astnode100020138", + "id": "astnode100020172", "name": "Seasons", "type": "FunctionDeclaration", "paramnames": [ @@ -39581,14 +39653,14 @@ "comment": "", "meta": { "range": [ - 206680, - 206973 + 207079, + 207372 ], "filename": "astronomy.js", - "lineno": 4607, + "lineno": 4612, "columnno": 4, "code": { - "id": "astnode100020142", + "id": "astnode100020176", "name": "find", "type": "FunctionDeclaration", "paramnames": [ @@ -39614,14 +39686,14 @@ "comment": "", "meta": { "range": [ - 206731, - 206783 + 207130, + 207182 ], "filename": "astronomy.js", - "lineno": 4608, + "lineno": 4613, "columnno": 12, "code": { - "id": "astnode100020149", + "id": "astnode100020183", "name": "startDate", "type": "NewExpression", "value": "" @@ -39639,14 +39711,14 @@ "comment": "", "meta": { "range": [ - 206797, - 206847 + 207196, + 207246 ], "filename": "astronomy.js", - "lineno": 4609, + "lineno": 4614, "columnno": 12, "code": { - "id": "astnode100020163", + "id": "astnode100020197", "name": "time", "type": "CallExpression", "value": "" @@ -39664,14 +39736,14 @@ "comment": "", "meta": { "range": [ - 207049, - 207077 + 207448, + 207476 ], "filename": "astronomy.js", - "lineno": 4615, + "lineno": 4620, "columnno": 8, "code": { - "id": "astnode100020197", + "id": "astnode100020231", "name": "year", "type": "CallExpression", "funcscope": "Seasons", @@ -39690,14 +39762,14 @@ "comment": "", "meta": { "range": [ - 207234, - 207262 + 207633, + 207661 ], "filename": "astronomy.js", - "lineno": 4618, + "lineno": 4623, "columnno": 8, "code": { - "id": "astnode100020216", + "id": "astnode100020250", "name": "mar_equinox", "type": "CallExpression", "value": "" @@ -39715,14 +39787,14 @@ "comment": "", "meta": { "range": [ - 207272, - 207302 + 207671, + 207701 ], "filename": "astronomy.js", - "lineno": 4619, + "lineno": 4624, "columnno": 8, "code": { - "id": "astnode100020224", + "id": "astnode100020258", "name": "jun_solstice", "type": "CallExpression", "value": "" @@ -39740,14 +39812,14 @@ "comment": "", "meta": { "range": [ - 207312, - 207342 + 207711, + 207741 ], "filename": "astronomy.js", - "lineno": 4620, + "lineno": 4625, "columnno": 8, "code": { - "id": "astnode100020232", + "id": "astnode100020266", "name": "sep_equinox", "type": "CallExpression", "value": "" @@ -39765,14 +39837,14 @@ "comment": "", "meta": { "range": [ - 207352, - 207384 + 207751, + 207783 ], "filename": "astronomy.js", - "lineno": 4621, + "lineno": 4626, "columnno": 8, "code": { - "id": "astnode100020240", + "id": "astnode100020274", "name": "dec_solstice", "type": "CallExpression", "value": "" @@ -39790,14 +39862,14 @@ "comment": "", "meta": { "range": [ - 207469, - 207494 + 207868, + 207893 ], "filename": "astronomy.js", - "lineno": 4624, + "lineno": 4629, "columnno": 0, "code": { - "id": "astnode100020255", + "id": "astnode100020289", "name": "exports.Seasons", "type": "Identifier", "value": "Seasons", @@ -39814,14 +39886,14 @@ "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": [ - 208911, - 209169 + 209310, + 209568 ], "filename": "astronomy.js", - "lineno": 4655, + "lineno": 4660, "columnno": 0, "code": { - "id": "astnode100020260", + "id": "astnode100020294", "name": "ElongationEvent", "type": "ClassDeclaration", "paramnames": [ @@ -39891,14 +39963,14 @@ "comment": "", "meta": { "range": [ - 208939, - 209167 + 209338, + 209566 ], "filename": "astronomy.js", - "lineno": 4656, + "lineno": 4661, "columnno": 4, "code": { - "id": "astnode100020263", + "id": "astnode100020297", "name": "ElongationEvent", "type": "MethodDefinition", "paramnames": [ @@ -39923,14 +39995,14 @@ "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": [ - 208911, - 209169 + 209310, + 209568 ], "filename": "astronomy.js", - "lineno": 4655, + "lineno": 4660, "columnno": 0, "code": { - "id": "astnode100020260", + "id": "astnode100020294", "name": "ElongationEvent", "type": "ClassDeclaration", "paramnames": [ @@ -39999,14 +40071,14 @@ "comment": "", "meta": { "range": [ - 209012, - 209028 + 209411, + 209427 ], "filename": "astronomy.js", - "lineno": 4657, + "lineno": 4662, "columnno": 8, "code": { - "id": "astnode100020272", + "id": "astnode100020306", "name": "this.time", "type": "Identifier", "value": "time", @@ -40024,14 +40096,14 @@ "comment": "", "meta": { "range": [ - 209038, - 209066 + 209437, + 209465 ], "filename": "astronomy.js", - "lineno": 4658, + "lineno": 4663, "columnno": 8, "code": { - "id": "astnode100020278", + "id": "astnode100020312", "name": "this.visibility", "type": "Identifier", "value": "visibility", @@ -40049,14 +40121,14 @@ "comment": "", "meta": { "range": [ - 209076, - 209104 + 209475, + 209503 ], "filename": "astronomy.js", - "lineno": 4659, + "lineno": 4664, "columnno": 8, "code": { - "id": "astnode100020284", + "id": "astnode100020318", "name": "this.elongation", "type": "Identifier", "value": "elongation", @@ -40074,14 +40146,14 @@ "comment": "", "meta": { "range": [ - 209114, - 209160 + 209513, + 209559 ], "filename": "astronomy.js", - "lineno": 4660, + "lineno": 4665, "columnno": 8, "code": { - "id": "astnode100020290", + "id": "astnode100020324", "name": "this.ecliptic_separation", "type": "Identifier", "value": "ecliptic_separation", @@ -40099,14 +40171,14 @@ "comment": "", "meta": { "range": [ - 209170, - 209211 + 209569, + 209610 ], "filename": "astronomy.js", - "lineno": 4663, + "lineno": 4668, "columnno": 0, "code": { - "id": "astnode100020296", + "id": "astnode100020330", "name": "exports.ElongationEvent", "type": "Identifier", "value": "ElongationEvent", @@ -40123,14 +40195,14 @@ "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": [ - 210016, - 210362 + 210415, + 210761 ], "filename": "astronomy.js", - "lineno": 4682, + "lineno": 4687, "columnno": 0, "code": { - "id": "astnode100020301", + "id": "astnode100020335", "name": "Elongation", "type": "FunctionDeclaration", "paramnames": [ @@ -40182,14 +40254,14 @@ "comment": "", "meta": { "range": [ - 210058, - 210079 + 210457, + 210478 ], "filename": "astronomy.js", - "lineno": 4683, + "lineno": 4688, "columnno": 8, "code": { - "id": "astnode100020307", + "id": "astnode100020341", "name": "time", "type": "CallExpression", "value": "" @@ -40207,14 +40279,14 @@ "comment": "", "meta": { "range": [ - 210089, - 210130 + 210488, + 210529 ], "filename": "astronomy.js", - "lineno": 4684, + "lineno": 4689, "columnno": 8, "code": { - "id": "astnode100020313", + "id": "astnode100020347", "name": "lon", "type": "CallExpression", "value": "" @@ -40232,14 +40304,14 @@ "comment": "", "meta": { "range": [ - 210140, - 210143 + 210539, + 210542 ], "filename": "astronomy.js", - "lineno": 4685, + "lineno": 4690, "columnno": 8, "code": { - "id": "astnode100020323", + "id": "astnode100020357", "name": "vis" } }, @@ -40255,14 +40327,14 @@ "comment": "", "meta": { "range": [ - 210174, - 210189 + 210573, + 210588 ], "filename": "astronomy.js", - "lineno": 4687, + "lineno": 4692, "columnno": 8, "code": { - "id": "astnode100020331", + "id": "astnode100020365", "name": "vis", "type": "Literal", "funcscope": "Elongation", @@ -40281,14 +40353,14 @@ "comment": "", "meta": { "range": [ - 210199, - 210214 + 210598, + 210613 ], "filename": "astronomy.js", - "lineno": 4688, + "lineno": 4693, "columnno": 8, "code": { - "id": "astnode100020335", + "id": "astnode100020369", "name": "lon", "type": "BinaryExpression", "funcscope": "Elongation", @@ -40307,14 +40379,14 @@ "comment": "", "meta": { "range": [ - 210241, - 210256 + 210640, + 210655 ], "filename": "astronomy.js", - "lineno": 4691, + "lineno": 4696, "columnno": 8, "code": { - "id": "astnode100020342", + "id": "astnode100020376", "name": "vis", "type": "Literal", "funcscope": "Elongation", @@ -40333,14 +40405,14 @@ "comment": "", "meta": { "range": [ - 210272, - 210304 + 210671, + 210703 ], "filename": "astronomy.js", - "lineno": 4693, + "lineno": 4698, "columnno": 8, "code": { - "id": "astnode100020346", + "id": "astnode100020380", "name": "angle", "type": "CallExpression", "value": "" @@ -40358,14 +40430,14 @@ "comment": "", "meta": { "range": [ - 210363, - 210394 + 210762, + 210793 ], "filename": "astronomy.js", - "lineno": 4696, + "lineno": 4701, "columnno": 0, "code": { - "id": "astnode100020360", + "id": "astnode100020394", "name": "exports.Elongation", "type": "Identifier", "value": "Elongation", @@ -40382,14 +40454,14 @@ "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": [ - 211190, - 215316 + 211589, + 215715 ], "filename": "astronomy.js", - "lineno": 4714, + "lineno": 4719, "columnno": 0, "code": { - "id": "astnode100020365", + "id": "astnode100020399", "name": "SearchMaxElongation", "type": "FunctionDeclaration", "paramnames": [ @@ -40464,14 +40536,14 @@ "comment": "", "meta": { "range": [ - 211248, - 211257 + 211647, + 211656 ], "filename": "astronomy.js", - "lineno": 4715, + "lineno": 4720, "columnno": 10, "code": { - "id": "astnode100020371", + "id": "astnode100020405", "name": "dt", "type": "Literal", "value": 0.01 @@ -40489,14 +40561,14 @@ "comment": "", "meta": { "range": [ - 211263, - 211725 + 211662, + 212124 ], "filename": "astronomy.js", - "lineno": 4716, + "lineno": 4721, "columnno": 4, "code": { - "id": "astnode100020374", + "id": "astnode100020408", "name": "neg_slope", "type": "FunctionDeclaration", "paramnames": [ @@ -40523,14 +40595,14 @@ "comment": "", "meta": { "range": [ - 211524, - 211547 + 211923, + 211946 ], "filename": "astronomy.js", - "lineno": 4720, + "lineno": 4725, "columnno": 14, "code": { - "id": "astnode100020379", + "id": "astnode100020413", "name": "t1", "type": "CallExpression", "value": "" @@ -40548,14 +40620,14 @@ "comment": "", "meta": { "range": [ - 211563, - 211586 + 211962, + 211985 ], "filename": "astronomy.js", - "lineno": 4721, + "lineno": 4726, "columnno": 14, "code": { - "id": "astnode100020390", + "id": "astnode100020424", "name": "t2", "type": "CallExpression", "value": "" @@ -40573,14 +40645,14 @@ "comment": "", "meta": { "range": [ - 211600, - 211627 + 211999, + 212026 ], "filename": "astronomy.js", - "lineno": 4722, + "lineno": 4727, "columnno": 12, "code": { - "id": "astnode100020401", + "id": "astnode100020435", "name": "e1", "type": "CallExpression", "value": "" @@ -40598,14 +40670,14 @@ "comment": "", "meta": { "range": [ - 211641, - 211668 + 212040, + 212067 ], "filename": "astronomy.js", - "lineno": 4723, + "lineno": 4728, "columnno": 12, "code": { - "id": "astnode100020408", + "id": "astnode100020442", "name": "e2", "type": "CallExpression", "value": "" @@ -40623,14 +40695,14 @@ "comment": "", "meta": { "range": [ - 211682, - 211700 + 212081, + 212099 ], "filename": "astronomy.js", - "lineno": 4724, + "lineno": 4729, "columnno": 12, "code": { - "id": "astnode100020415", + "id": "astnode100020449", "name": "m", "type": "BinaryExpression", "value": "" @@ -40648,14 +40720,14 @@ "comment": "", "meta": { "range": [ - 211734, - 211765 + 212133, + 212164 ], "filename": "astronomy.js", - "lineno": 4727, + "lineno": 4732, "columnno": 8, "code": { - "id": "astnode100020425", + "id": "astnode100020459", "name": "startTime", "type": "CallExpression", "value": "" @@ -40673,14 +40745,14 @@ "comment": "", "meta": { "range": [ - 211777, - 211871 + 212176, + 212270 ], "filename": "astronomy.js", - "lineno": 4728, + "lineno": 4733, "columnno": 10, "code": { - "id": "astnode100020431", + "id": "astnode100020465", "name": "table", "type": "ObjectExpression", "value": "{\"Mercury\":\"\",\"Venus\":\"\"}" @@ -40698,14 +40770,14 @@ "comment": "", "meta": { "range": [ - 211795, - 211826 + 212194, + 212225 ], "filename": "astronomy.js", - "lineno": 4729, + "lineno": 4734, "columnno": 8, "code": { - "id": "astnode100020434", + "id": "astnode100020468", "name": "Mercury", "type": "ObjectExpression", "value": "{\"s1\":50,\"s2\":85}" @@ -40722,14 +40794,14 @@ "comment": "", "meta": { "range": [ - 211806, - 211814 + 212205, + 212213 ], "filename": "astronomy.js", - "lineno": 4729, + "lineno": 4734, "columnno": 19, "code": { - "id": "astnode100020436", + "id": "astnode100020470", "name": "s1", "type": "Literal", "value": 50 @@ -40746,14 +40818,14 @@ "comment": "", "meta": { "range": [ - 211816, - 211824 + 212215, + 212223 ], "filename": "astronomy.js", - "lineno": 4729, + "lineno": 4734, "columnno": 29, "code": { - "id": "astnode100020438", + "id": "astnode100020472", "name": "s2", "type": "Literal", "value": 85 @@ -40770,14 +40842,14 @@ "comment": "", "meta": { "range": [ - 211836, - 211865 + 212235, + 212264 ], "filename": "astronomy.js", - "lineno": 4730, + "lineno": 4735, "columnno": 8, "code": { - "id": "astnode100020440", + "id": "astnode100020474", "name": "Venus", "type": "ObjectExpression", "value": "{\"s1\":40,\"s2\":50}" @@ -40794,14 +40866,14 @@ "comment": "", "meta": { "range": [ - 211845, - 211853 + 212244, + 212252 ], "filename": "astronomy.js", - "lineno": 4730, + "lineno": 4735, "columnno": 17, "code": { - "id": "astnode100020442", + "id": "astnode100020476", "name": "s1", "type": "Literal", "value": 40 @@ -40818,14 +40890,14 @@ "comment": "", "meta": { "range": [ - 211855, - 211863 + 212254, + 212262 ], "filename": "astronomy.js", - "lineno": 4730, + "lineno": 4735, "columnno": 27, "code": { - "id": "astnode100020444", + "id": "astnode100020478", "name": "s2", "type": "Literal", "value": 50 @@ -40842,14 +40914,14 @@ "comment": "", "meta": { "range": [ - 211883, - 211903 + 212282, + 212302 ], "filename": "astronomy.js", - "lineno": 4732, + "lineno": 4737, "columnno": 10, "code": { - "id": "astnode100020447", + "id": "astnode100020481", "name": "planet", "type": "MemberExpression", "value": "table[undefined]" @@ -40867,14 +40939,14 @@ "comment": "", "meta": { "range": [ - 212001, - 212009 + 212400, + 212408 ], "filename": "astronomy.js", - "lineno": 4735, + "lineno": 4740, "columnno": 8, "code": { - "id": "astnode100020458", + "id": "astnode100020492", "name": "iter", "type": "Literal", "value": 0 @@ -40892,14 +40964,14 @@ "comment": "", "meta": { "range": [ - 212159, - 212200 + 212558, + 212599 ], "filename": "astronomy.js", - "lineno": 4739, + "lineno": 4744, "columnno": 12, "code": { - "id": "astnode100020468", + "id": "astnode100020502", "name": "plon", "type": "CallExpression", "value": "" @@ -40917,14 +40989,14 @@ "comment": "", "meta": { "range": [ - 212214, - 212261 + 212613, + 212660 ], "filename": "astronomy.js", - "lineno": 4740, + "lineno": 4745, "columnno": 12, "code": { - "id": "astnode100020475", + "id": "astnode100020509", "name": "elon", "type": "CallExpression", "value": "" @@ -40942,14 +41014,14 @@ "comment": "", "meta": { "range": [ - 212275, - 212310 + 212674, + 212709 ], "filename": "astronomy.js", - "lineno": 4741, + "lineno": 4746, "columnno": 12, "code": { - "id": "astnode100020484", + "id": "astnode100020518", "name": "rlon", "type": "CallExpression", "value": "" @@ -40967,14 +41039,14 @@ "comment": "", "meta": { "range": [ - 212596, - 212603 + 212995, + 213002 ], "filename": "astronomy.js", - "lineno": 4745, + "lineno": 4750, "columnno": 12, "code": { - "id": "astnode100020492", + "id": "astnode100020526", "name": "rlon_lo" } }, @@ -40990,14 +41062,14 @@ "comment": "", "meta": { "range": [ - 212605, - 212612 + 213004, + 213011 ], "filename": "astronomy.js", - "lineno": 4745, + "lineno": 4750, "columnno": 21, "code": { - "id": "astnode100020494", + "id": "astnode100020528", "name": "rlon_hi" } }, @@ -41013,14 +41085,14 @@ "comment": "", "meta": { "range": [ - 212614, - 212625 + 213013, + 213024 ], "filename": "astronomy.js", - "lineno": 4745, + "lineno": 4750, "columnno": 30, "code": { - "id": "astnode100020496", + "id": "astnode100020530", "name": "adjust_days" } }, @@ -41036,14 +41108,14 @@ "comment": "", "meta": { "range": [ - 212740, - 212755 + 213139, + 213154 ], "filename": "astronomy.js", - "lineno": 4748, + "lineno": 4753, "columnno": 12, "code": { - "id": "astnode100020514", + "id": "astnode100020548", "name": "adjust_days", "type": "Literal", "funcscope": "SearchMaxElongation", @@ -41062,14 +41134,14 @@ "comment": "", "meta": { "range": [ - 212835, - 212855 + 213234, + 213254 ], "filename": "astronomy.js", - "lineno": 4750, + "lineno": 4755, "columnno": 12, "code": { - "id": "astnode100020518", + "id": "astnode100020552", "name": "rlon_lo", "type": "UnaryExpression", "funcscope": "SearchMaxElongation", @@ -41088,14 +41160,14 @@ "comment": "", "meta": { "range": [ - 212935, - 212955 + 213334, + 213354 ], "filename": "astronomy.js", - "lineno": 4752, + "lineno": 4757, "columnno": 12, "code": { - "id": "astnode100020525", + "id": "astnode100020559", "name": "rlon_hi", "type": "UnaryExpression", "funcscope": "SearchMaxElongation", @@ -41114,14 +41186,14 @@ "comment": "", "meta": { "range": [ - 213100, - 213115 + 213499, + 213514 ], "filename": "astronomy.js", - "lineno": 4756, + "lineno": 4761, "columnno": 12, "code": { - "id": "astnode100020547", + "id": "astnode100020581", "name": "adjust_days", "type": "Literal", "funcscope": "SearchMaxElongation", @@ -41140,14 +41212,14 @@ "comment": "", "meta": { "range": [ - 213195, - 213215 + 213594, + 213614 ], "filename": "astronomy.js", - "lineno": 4758, + "lineno": 4763, "columnno": 12, "code": { - "id": "astnode100020551", + "id": "astnode100020585", "name": "rlon_lo", "type": "UnaryExpression", "funcscope": "SearchMaxElongation", @@ -41166,170 +41238,14 @@ "comment": "", "meta": { "range": [ - 213295, - 213315 - ], - "filename": "astronomy.js", - "lineno": 4760, - "columnno": 12, - "code": { - "id": "astnode100020558", - "name": "rlon_hi", - "type": "UnaryExpression", - "funcscope": "SearchMaxElongation", - "value": "-planet.s1", - "paramnames": [] - } - }, - "undocumented": true, - "name": "rlon_hi", - "longname": "SearchMaxElongation~rlon_hi", - "kind": "member", - "memberof": "SearchMaxElongation", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 213504, - 213542 + 213694, + 213714 ], "filename": "astronomy.js", "lineno": 4765, "columnno": 12, "code": { - "id": "astnode100020570", - "name": "adjust_days", - "type": "BinaryExpression", - "funcscope": "SearchMaxElongation", - "value": "", - "paramnames": [] - } - }, - "undocumented": true, - "name": "adjust_days", - "longname": "SearchMaxElongation~adjust_days", - "kind": "member", - "memberof": "SearchMaxElongation", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 213556, - 213576 - ], - "filename": "astronomy.js", - "lineno": 4766, - "columnno": 12, - "code": { - "id": "astnode100020579", - "name": "rlon_lo", - "type": "UnaryExpression", - "funcscope": "SearchMaxElongation", - "value": "+planet.s1", - "paramnames": [] - } - }, - "undocumented": true, - "name": "rlon_lo", - "longname": "SearchMaxElongation~rlon_lo", - "kind": "member", - "memberof": "SearchMaxElongation", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 213590, - 213610 - ], - "filename": "astronomy.js", - "lineno": 4767, - "columnno": 12, - "code": { - "id": "astnode100020586", - "name": "rlon_hi", - "type": "UnaryExpression", - "funcscope": "SearchMaxElongation", - "value": "+planet.s2", - "paramnames": [] - } - }, - "undocumented": true, - "name": "rlon_hi", - "longname": "SearchMaxElongation~rlon_hi", - "kind": "member", - "memberof": "SearchMaxElongation", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 213858, - 213896 - ], - "filename": "astronomy.js", - "lineno": 4773, - "columnno": 12, - "code": { - "id": "astnode100020594", - "name": "adjust_days", - "type": "BinaryExpression", - "funcscope": "SearchMaxElongation", - "value": "", - "paramnames": [] - } - }, - "undocumented": true, - "name": "adjust_days", - "longname": "SearchMaxElongation~adjust_days", - "kind": "member", - "memberof": "SearchMaxElongation", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 213910, - 213930 - ], - "filename": "astronomy.js", - "lineno": 4774, - "columnno": 12, - "code": { - "id": "astnode100020603", - "name": "rlon_lo", - "type": "UnaryExpression", - "funcscope": "SearchMaxElongation", - "value": "-planet.s2", - "paramnames": [] - } - }, - "undocumented": true, - "name": "rlon_lo", - "longname": "SearchMaxElongation~rlon_lo", - "kind": "member", - "memberof": "SearchMaxElongation", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 214018, - 214038 - ], - "filename": "astronomy.js", - "lineno": 4776, - "columnno": 12, - "code": { - "id": "astnode100020610", + "id": "astnode100020592", "name": "rlon_hi", "type": "UnaryExpression", "funcscope": "SearchMaxElongation", @@ -41348,14 +41264,170 @@ "comment": "", "meta": { "range": [ - 214062, - 214102 + 213903, + 213941 + ], + "filename": "astronomy.js", + "lineno": 4770, + "columnno": 12, + "code": { + "id": "astnode100020604", + "name": "adjust_days", + "type": "BinaryExpression", + "funcscope": "SearchMaxElongation", + "value": "", + "paramnames": [] + } + }, + "undocumented": true, + "name": "adjust_days", + "longname": "SearchMaxElongation~adjust_days", + "kind": "member", + "memberof": "SearchMaxElongation", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 213955, + 213975 + ], + "filename": "astronomy.js", + "lineno": 4771, + "columnno": 12, + "code": { + "id": "astnode100020613", + "name": "rlon_lo", + "type": "UnaryExpression", + "funcscope": "SearchMaxElongation", + "value": "+planet.s1", + "paramnames": [] + } + }, + "undocumented": true, + "name": "rlon_lo", + "longname": "SearchMaxElongation~rlon_lo", + "kind": "member", + "memberof": "SearchMaxElongation", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 213989, + 214009 + ], + "filename": "astronomy.js", + "lineno": 4772, + "columnno": 12, + "code": { + "id": "astnode100020620", + "name": "rlon_hi", + "type": "UnaryExpression", + "funcscope": "SearchMaxElongation", + "value": "+planet.s2", + "paramnames": [] + } + }, + "undocumented": true, + "name": "rlon_hi", + "longname": "SearchMaxElongation~rlon_hi", + "kind": "member", + "memberof": "SearchMaxElongation", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 214257, + 214295 ], "filename": "astronomy.js", "lineno": 4778, "columnno": 12, "code": { - "id": "astnode100020617", + "id": "astnode100020628", + "name": "adjust_days", + "type": "BinaryExpression", + "funcscope": "SearchMaxElongation", + "value": "", + "paramnames": [] + } + }, + "undocumented": true, + "name": "adjust_days", + "longname": "SearchMaxElongation~adjust_days", + "kind": "member", + "memberof": "SearchMaxElongation", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 214309, + 214329 + ], + "filename": "astronomy.js", + "lineno": 4779, + "columnno": 12, + "code": { + "id": "astnode100020637", + "name": "rlon_lo", + "type": "UnaryExpression", + "funcscope": "SearchMaxElongation", + "value": "-planet.s2", + "paramnames": [] + } + }, + "undocumented": true, + "name": "rlon_lo", + "longname": "SearchMaxElongation~rlon_lo", + "kind": "member", + "memberof": "SearchMaxElongation", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 214417, + 214437 + ], + "filename": "astronomy.js", + "lineno": 4781, + "columnno": 12, + "code": { + "id": "astnode100020644", + "name": "rlon_hi", + "type": "UnaryExpression", + "funcscope": "SearchMaxElongation", + "value": "-planet.s1", + "paramnames": [] + } + }, + "undocumented": true, + "name": "rlon_hi", + "longname": "SearchMaxElongation~rlon_hi", + "kind": "member", + "memberof": "SearchMaxElongation", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 214461, + 214501 + ], + "filename": "astronomy.js", + "lineno": 4783, + "columnno": 12, + "code": { + "id": "astnode100020651", "name": "t_start", "type": "CallExpression", "value": "" @@ -41373,14 +41445,14 @@ "comment": "", "meta": { "range": [ - 214116, - 214168 + 214515, + 214567 ], "filename": "astronomy.js", - "lineno": 4779, + "lineno": 4784, "columnno": 12, "code": { - "id": "astnode100020625", + "id": "astnode100020659", "name": "t1", "type": "CallExpression", "value": "" @@ -41398,14 +41470,14 @@ "comment": "", "meta": { "range": [ - 214182, - 214229 + 214581, + 214628 ], "filename": "astronomy.js", - "lineno": 4780, + "lineno": 4785, "columnno": 12, "code": { - "id": "astnode100020633", + "id": "astnode100020667", "name": "t2", "type": "CallExpression", "value": "" @@ -41423,14 +41495,14 @@ "comment": "", "meta": { "range": [ - 214364, - 214382 + 214763, + 214781 ], "filename": "astronomy.js", - "lineno": 4783, + "lineno": 4788, "columnno": 12, "code": { - "id": "astnode100020641", + "id": "astnode100020675", "name": "m1", "type": "CallExpression", "value": "" @@ -41448,14 +41520,14 @@ "comment": "", "meta": { "range": [ - 214486, - 214504 + 214885, + 214903 ], "filename": "astronomy.js", - "lineno": 4786, + "lineno": 4791, "columnno": 12, "code": { - "id": "astnode100020656", + "id": "astnode100020690", "name": "m2", "type": "CallExpression", "value": "" @@ -41473,14 +41545,14 @@ "comment": "", "meta": { "range": [ - 214717, - 214803 + 215116, + 215202 ], "filename": "astronomy.js", - "lineno": 4790, + "lineno": 4795, "columnno": 12, "code": { - "id": "astnode100020671", + "id": "astnode100020705", "name": "tx", "type": "CallExpression", "value": "" @@ -41498,14 +41570,14 @@ "comment": "", "meta": { "range": [ - 214750, - 214761 + 215149, + 215160 ], "filename": "astronomy.js", - "lineno": 4790, + "lineno": 4795, "columnno": 45, "code": { - "id": "astnode100020679", + "id": "astnode100020713", "name": "init_f1", "type": "Identifier", "value": "m1" @@ -41521,14 +41593,14 @@ "comment": "", "meta": { "range": [ - 214763, - 214774 + 215162, + 215173 ], "filename": "astronomy.js", - "lineno": 4790, + "lineno": 4795, "columnno": 58, "code": { - "id": "astnode100020681", + "id": "astnode100020715", "name": "init_f2", "type": "Identifier", "value": "m2" @@ -41544,14 +41616,14 @@ "comment": "", "meta": { "range": [ - 214776, - 214800 + 215175, + 215199 ], "filename": "astronomy.js", - "lineno": 4790, + "lineno": 4795, "columnno": 71, "code": { - "id": "astnode100020683", + "id": "astnode100020717", "name": "dt_tolerance_seconds", "type": "Literal", "value": 10 @@ -41567,14 +41639,14 @@ "comment": "", "meta": { "range": [ - 215212, - 215237 + 215611, + 215636 ], "filename": "astronomy.js", - "lineno": 4798, + "lineno": 4803, "columnno": 8, "code": { - "id": "astnode100020717", + "id": "astnode100020751", "name": "startTime", "type": "CallExpression", "funcscope": "SearchMaxElongation", @@ -41593,14 +41665,14 @@ "comment": "", "meta": { "range": [ - 215317, - 215366 + 215716, + 215765 ], "filename": "astronomy.js", - "lineno": 4802, + "lineno": 4807, "columnno": 0, "code": { - "id": "astnode100020728", + "id": "astnode100020762", "name": "exports.SearchMaxElongation", "type": "Identifier", "value": "SearchMaxElongation", @@ -41617,14 +41689,14 @@ "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": [ - 216184, - 220351 + 216583, + 220750 ], "filename": "astronomy.js", - "lineno": 4820, + "lineno": 4825, "columnno": 0, "code": { - "id": "astnode100020733", + "id": "astnode100020767", "name": "SearchPeakMagnitude", "type": "FunctionDeclaration", "paramnames": [ @@ -41699,14 +41771,14 @@ "comment": "", "meta": { "range": [ - 216340, - 216349 + 216739, + 216748 ], "filename": "astronomy.js", - "lineno": 4823, + "lineno": 4828, "columnno": 10, "code": { - "id": "astnode100020747", + "id": "astnode100020781", "name": "dt", "type": "Literal", "value": 0.01 @@ -41724,14 +41796,14 @@ "comment": "", "meta": { "range": [ - 216355, - 216950 + 216754, + 217349 ], "filename": "astronomy.js", - "lineno": 4824, + "lineno": 4829, "columnno": 4, "code": { - "id": "astnode100020750", + "id": "astnode100020784", "name": "slope", "type": "FunctionDeclaration", "paramnames": [ @@ -41758,14 +41830,14 @@ "comment": "", "meta": { "range": [ - 216735, - 216758 + 217134, + 217157 ], "filename": "astronomy.js", - "lineno": 4830, + "lineno": 4835, "columnno": 14, "code": { - "id": "astnode100020755", + "id": "astnode100020789", "name": "t1", "type": "CallExpression", "value": "" @@ -41783,14 +41855,14 @@ "comment": "", "meta": { "range": [ - 216774, - 216797 + 217173, + 217196 ], "filename": "astronomy.js", - "lineno": 4831, + "lineno": 4836, "columnno": 14, "code": { - "id": "astnode100020766", + "id": "astnode100020800", "name": "t2", "type": "CallExpression", "value": "" @@ -41808,14 +41880,14 @@ "comment": "", "meta": { "range": [ - 216813, - 216844 + 217212, + 217243 ], "filename": "astronomy.js", - "lineno": 4832, + "lineno": 4837, "columnno": 14, "code": { - "id": "astnode100020777", + "id": "astnode100020811", "name": "y1", "type": "MemberExpression", "value": ".mag" @@ -41833,14 +41905,14 @@ "comment": "", "meta": { "range": [ - 216860, - 216891 + 217259, + 217290 ], "filename": "astronomy.js", - "lineno": 4833, + "lineno": 4838, "columnno": 14, "code": { - "id": "astnode100020786", + "id": "astnode100020820", "name": "y2", "type": "MemberExpression", "value": ".mag" @@ -41858,14 +41930,14 @@ "comment": "", "meta": { "range": [ - 216907, - 216925 + 217306, + 217324 ], "filename": "astronomy.js", - "lineno": 4834, + "lineno": 4839, "columnno": 14, "code": { - "id": "astnode100020795", + "id": "astnode100020829", "name": "m", "type": "BinaryExpression", "value": "" @@ -41883,14 +41955,14 @@ "comment": "", "meta": { "range": [ - 216959, - 216990 + 217358, + 217389 ], "filename": "astronomy.js", - "lineno": 4837, + "lineno": 4842, "columnno": 8, "code": { - "id": "astnode100020805", + "id": "astnode100020839", "name": "startTime", "type": "CallExpression", "value": "" @@ -41908,14 +41980,14 @@ "comment": "", "meta": { "range": [ - 217091, - 217100 + 217490, + 217499 ], "filename": "astronomy.js", - "lineno": 4839, + "lineno": 4844, "columnno": 10, "code": { - "id": "astnode100020811", + "id": "astnode100020845", "name": "s1", "type": "Literal", "value": 10 @@ -41933,14 +42005,14 @@ "comment": "", "meta": { "range": [ - 217112, - 217121 + 217511, + 217520 ], "filename": "astronomy.js", - "lineno": 4840, + "lineno": 4845, "columnno": 10, "code": { - "id": "astnode100020815", + "id": "astnode100020849", "name": "s2", "type": "Literal", "value": 30 @@ -41958,14 +42030,14 @@ "comment": "", "meta": { "range": [ - 217131, - 217139 + 217530, + 217538 ], "filename": "astronomy.js", - "lineno": 4841, + "lineno": 4846, "columnno": 8, "code": { - "id": "astnode100020819", + "id": "astnode100020853", "name": "iter", "type": "Literal", "value": 0 @@ -41983,14 +42055,14 @@ "comment": "", "meta": { "range": [ - 217289, - 217330 + 217688, + 217729 ], "filename": "astronomy.js", - "lineno": 4845, + "lineno": 4850, "columnno": 12, "code": { - "id": "astnode100020829", + "id": "astnode100020863", "name": "plon", "type": "CallExpression", "value": "" @@ -42008,14 +42080,14 @@ "comment": "", "meta": { "range": [ - 217344, - 217391 + 217743, + 217790 ], "filename": "astronomy.js", - "lineno": 4846, + "lineno": 4851, "columnno": 12, "code": { - "id": "astnode100020836", + "id": "astnode100020870", "name": "elon", "type": "CallExpression", "value": "" @@ -42033,14 +42105,14 @@ "comment": "", "meta": { "range": [ - 217405, - 217440 + 217804, + 217839 ], "filename": "astronomy.js", - "lineno": 4847, + "lineno": 4852, "columnno": 12, "code": { - "id": "astnode100020845", + "id": "astnode100020879", "name": "rlon", "type": "CallExpression", "value": "" @@ -42058,14 +42130,14 @@ "comment": "", "meta": { "range": [ - 217726, - 217733 + 218125, + 218132 ], "filename": "astronomy.js", - "lineno": 4851, + "lineno": 4856, "columnno": 12, "code": { - "id": "astnode100020853", + "id": "astnode100020887", "name": "rlon_lo" } }, @@ -42081,14 +42153,14 @@ "comment": "", "meta": { "range": [ - 217735, - 217742 + 218134, + 218141 ], "filename": "astronomy.js", - "lineno": 4851, + "lineno": 4856, "columnno": 21, "code": { - "id": "astnode100020855", + "id": "astnode100020889", "name": "rlon_hi" } }, @@ -42104,14 +42176,14 @@ "comment": "", "meta": { "range": [ - 217744, - 217755 + 218143, + 218154 ], "filename": "astronomy.js", - "lineno": 4851, + "lineno": 4856, "columnno": 30, "code": { - "id": "astnode100020857", + "id": "astnode100020891", "name": "adjust_days" } }, @@ -42127,14 +42199,14 @@ "comment": "", "meta": { "range": [ - 217856, - 217871 + 218255, + 218270 ], "filename": "astronomy.js", - "lineno": 4854, + "lineno": 4859, "columnno": 12, "code": { - "id": "astnode100020871", + "id": "astnode100020905", "name": "adjust_days", "type": "Literal", "funcscope": "SearchPeakMagnitude", @@ -42153,14 +42225,14 @@ "comment": "", "meta": { "range": [ - 217951, - 217964 + 218350, + 218363 ], "filename": "astronomy.js", - "lineno": 4856, + "lineno": 4861, "columnno": 12, "code": { - "id": "astnode100020875", + "id": "astnode100020909", "name": "rlon_lo", "type": "UnaryExpression", "funcscope": "SearchPeakMagnitude", @@ -42179,14 +42251,14 @@ "comment": "", "meta": { "range": [ - 218044, - 218057 + 218443, + 218456 ], "filename": "astronomy.js", - "lineno": 4858, + "lineno": 4863, "columnno": 12, "code": { - "id": "astnode100020880", + "id": "astnode100020914", "name": "rlon_hi", "type": "UnaryExpression", "funcscope": "SearchPeakMagnitude", @@ -42205,14 +42277,14 @@ "comment": "", "meta": { "range": [ - 218188, - 218203 + 218587, + 218602 ], "filename": "astronomy.js", - "lineno": 4862, + "lineno": 4867, "columnno": 12, "code": { - "id": "astnode100020896", + "id": "astnode100020930", "name": "adjust_days", "type": "Literal", "funcscope": "SearchPeakMagnitude", @@ -42231,14 +42303,14 @@ "comment": "", "meta": { "range": [ - 218283, - 218296 + 218682, + 218695 ], "filename": "astronomy.js", - "lineno": 4864, + "lineno": 4869, "columnno": 12, "code": { - "id": "astnode100020900", + "id": "astnode100020934", "name": "rlon_lo", "type": "UnaryExpression", "funcscope": "SearchPeakMagnitude", @@ -42257,170 +42329,14 @@ "comment": "", "meta": { "range": [ - 218376, - 218389 - ], - "filename": "astronomy.js", - "lineno": 4866, - "columnno": 12, - "code": { - "id": "astnode100020905", - "name": "rlon_hi", - "type": "UnaryExpression", - "funcscope": "SearchPeakMagnitude", - "value": "-s1", - "paramnames": [] - } - }, - "undocumented": true, - "name": "rlon_hi", - "longname": "SearchPeakMagnitude~rlon_hi", - "kind": "member", - "memberof": "SearchPeakMagnitude", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 218578, - 218616 + 218775, + 218788 ], "filename": "astronomy.js", "lineno": 4871, "columnno": 12, "code": { - "id": "astnode100020915", - "name": "adjust_days", - "type": "BinaryExpression", - "funcscope": "SearchPeakMagnitude", - "value": "", - "paramnames": [] - } - }, - "undocumented": true, - "name": "adjust_days", - "longname": "SearchPeakMagnitude~adjust_days", - "kind": "member", - "memberof": "SearchPeakMagnitude", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 218630, - 218643 - ], - "filename": "astronomy.js", - "lineno": 4872, - "columnno": 12, - "code": { - "id": "astnode100020924", - "name": "rlon_lo", - "type": "UnaryExpression", - "funcscope": "SearchPeakMagnitude", - "value": "+s1", - "paramnames": [] - } - }, - "undocumented": true, - "name": "rlon_lo", - "longname": "SearchPeakMagnitude~rlon_lo", - "kind": "member", - "memberof": "SearchPeakMagnitude", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 218731, - 218744 - ], - "filename": "astronomy.js", - "lineno": 4874, - "columnno": 12, - "code": { - "id": "astnode100020929", - "name": "rlon_hi", - "type": "UnaryExpression", - "funcscope": "SearchPeakMagnitude", - "value": "+s2", - "paramnames": [] - } - }, - "undocumented": true, - "name": "rlon_hi", - "longname": "SearchPeakMagnitude~rlon_hi", - "kind": "member", - "memberof": "SearchPeakMagnitude", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 218918, - 218956 - ], - "filename": "astronomy.js", - "lineno": 4879, - "columnno": 12, - "code": { - "id": "astnode100020935", - "name": "adjust_days", - "type": "BinaryExpression", - "funcscope": "SearchPeakMagnitude", - "value": "", - "paramnames": [] - } - }, - "undocumented": true, - "name": "adjust_days", - "longname": "SearchPeakMagnitude~adjust_days", - "kind": "member", - "memberof": "SearchPeakMagnitude", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 218970, - 218983 - ], - "filename": "astronomy.js", - "lineno": 4880, - "columnno": 12, - "code": { - "id": "astnode100020944", - "name": "rlon_lo", - "type": "UnaryExpression", - "funcscope": "SearchPeakMagnitude", - "value": "-s2", - "paramnames": [] - } - }, - "undocumented": true, - "name": "rlon_lo", - "longname": "SearchPeakMagnitude~rlon_lo", - "kind": "member", - "memberof": "SearchPeakMagnitude", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 219071, - 219084 - ], - "filename": "astronomy.js", - "lineno": 4882, - "columnno": 12, - "code": { - "id": "astnode100020949", + "id": "astnode100020939", "name": "rlon_hi", "type": "UnaryExpression", "funcscope": "SearchPeakMagnitude", @@ -42439,14 +42355,170 @@ "comment": "", "meta": { "range": [ - 219108, - 219148 + 218977, + 219015 + ], + "filename": "astronomy.js", + "lineno": 4876, + "columnno": 12, + "code": { + "id": "astnode100020949", + "name": "adjust_days", + "type": "BinaryExpression", + "funcscope": "SearchPeakMagnitude", + "value": "", + "paramnames": [] + } + }, + "undocumented": true, + "name": "adjust_days", + "longname": "SearchPeakMagnitude~adjust_days", + "kind": "member", + "memberof": "SearchPeakMagnitude", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 219029, + 219042 + ], + "filename": "astronomy.js", + "lineno": 4877, + "columnno": 12, + "code": { + "id": "astnode100020958", + "name": "rlon_lo", + "type": "UnaryExpression", + "funcscope": "SearchPeakMagnitude", + "value": "+s1", + "paramnames": [] + } + }, + "undocumented": true, + "name": "rlon_lo", + "longname": "SearchPeakMagnitude~rlon_lo", + "kind": "member", + "memberof": "SearchPeakMagnitude", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 219130, + 219143 + ], + "filename": "astronomy.js", + "lineno": 4879, + "columnno": 12, + "code": { + "id": "astnode100020963", + "name": "rlon_hi", + "type": "UnaryExpression", + "funcscope": "SearchPeakMagnitude", + "value": "+s2", + "paramnames": [] + } + }, + "undocumented": true, + "name": "rlon_hi", + "longname": "SearchPeakMagnitude~rlon_hi", + "kind": "member", + "memberof": "SearchPeakMagnitude", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 219317, + 219355 ], "filename": "astronomy.js", "lineno": 4884, "columnno": 12, "code": { - "id": "astnode100020954", + "id": "astnode100020969", + "name": "adjust_days", + "type": "BinaryExpression", + "funcscope": "SearchPeakMagnitude", + "value": "", + "paramnames": [] + } + }, + "undocumented": true, + "name": "adjust_days", + "longname": "SearchPeakMagnitude~adjust_days", + "kind": "member", + "memberof": "SearchPeakMagnitude", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 219369, + 219382 + ], + "filename": "astronomy.js", + "lineno": 4885, + "columnno": 12, + "code": { + "id": "astnode100020978", + "name": "rlon_lo", + "type": "UnaryExpression", + "funcscope": "SearchPeakMagnitude", + "value": "-s2", + "paramnames": [] + } + }, + "undocumented": true, + "name": "rlon_lo", + "longname": "SearchPeakMagnitude~rlon_lo", + "kind": "member", + "memberof": "SearchPeakMagnitude", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 219470, + 219483 + ], + "filename": "astronomy.js", + "lineno": 4887, + "columnno": 12, + "code": { + "id": "astnode100020983", + "name": "rlon_hi", + "type": "UnaryExpression", + "funcscope": "SearchPeakMagnitude", + "value": "-s1", + "paramnames": [] + } + }, + "undocumented": true, + "name": "rlon_hi", + "longname": "SearchPeakMagnitude~rlon_hi", + "kind": "member", + "memberof": "SearchPeakMagnitude", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 219507, + 219547 + ], + "filename": "astronomy.js", + "lineno": 4889, + "columnno": 12, + "code": { + "id": "astnode100020988", "name": "t_start", "type": "CallExpression", "value": "" @@ -42464,14 +42536,14 @@ "comment": "", "meta": { "range": [ - 219162, - 219214 + 219561, + 219613 ], "filename": "astronomy.js", - "lineno": 4885, + "lineno": 4890, "columnno": 12, "code": { - "id": "astnode100020962", + "id": "astnode100020996", "name": "t1", "type": "CallExpression", "value": "" @@ -42489,14 +42561,14 @@ "comment": "", "meta": { "range": [ - 219228, - 219275 + 219627, + 219674 ], "filename": "astronomy.js", - "lineno": 4886, + "lineno": 4891, "columnno": 12, "code": { - "id": "astnode100020970", + "id": "astnode100021004", "name": "t2", "type": "CallExpression", "value": "" @@ -42514,14 +42586,14 @@ "comment": "", "meta": { "range": [ - 219409, - 219423 + 219808, + 219822 ], "filename": "astronomy.js", - "lineno": 4889, + "lineno": 4894, "columnno": 12, "code": { - "id": "astnode100020978", + "id": "astnode100021012", "name": "m1", "type": "CallExpression", "value": "" @@ -42539,14 +42611,14 @@ "comment": "", "meta": { "range": [ - 219527, - 219541 + 219926, + 219940 ], "filename": "astronomy.js", - "lineno": 4892, + "lineno": 4897, "columnno": 12, "code": { - "id": "astnode100020993", + "id": "astnode100021027", "name": "m2", "type": "CallExpression", "value": "" @@ -42564,14 +42636,14 @@ "comment": "", "meta": { "range": [ - 219754, - 219836 + 220153, + 220235 ], "filename": "astronomy.js", - "lineno": 4896, + "lineno": 4901, "columnno": 12, "code": { - "id": "astnode100021008", + "id": "astnode100021042", "name": "tx", "type": "CallExpression", "value": "" @@ -42589,14 +42661,14 @@ "comment": "", "meta": { "range": [ - 219783, - 219794 + 220182, + 220193 ], "filename": "astronomy.js", - "lineno": 4896, + "lineno": 4901, "columnno": 41, "code": { - "id": "astnode100021016", + "id": "astnode100021050", "name": "init_f1", "type": "Identifier", "value": "m1" @@ -42612,14 +42684,14 @@ "comment": "", "meta": { "range": [ - 219796, - 219807 + 220195, + 220206 ], "filename": "astronomy.js", - "lineno": 4896, + "lineno": 4901, "columnno": 54, "code": { - "id": "astnode100021018", + "id": "astnode100021052", "name": "init_f2", "type": "Identifier", "value": "m2" @@ -42635,14 +42707,14 @@ "comment": "", "meta": { "range": [ - 219809, - 219833 + 220208, + 220232 ], "filename": "astronomy.js", - "lineno": 4896, + "lineno": 4901, "columnno": 67, "code": { - "id": "astnode100021020", + "id": "astnode100021054", "name": "dt_tolerance_seconds", "type": "Literal", "value": 10 @@ -42658,14 +42730,14 @@ "comment": "", "meta": { "range": [ - 220247, - 220272 + 220646, + 220671 ], "filename": "astronomy.js", - "lineno": 4904, + "lineno": 4909, "columnno": 8, "code": { - "id": "astnode100021054", + "id": "astnode100021088", "name": "startTime", "type": "CallExpression", "funcscope": "SearchPeakMagnitude", @@ -42684,14 +42756,14 @@ "comment": "", "meta": { "range": [ - 220352, - 220401 + 220751, + 220800 ], "filename": "astronomy.js", - "lineno": 4908, + "lineno": 4913, "columnno": 0, "code": { - "id": "astnode100021065", + "id": "astnode100021099", "name": "exports.SearchPeakMagnitude", "type": "Identifier", "value": "SearchPeakMagnitude", @@ -42708,14 +42780,14 @@ "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": [ - 221192, - 221388 + 221591, + 221787 ], "filename": "astronomy.js", - "lineno": 4931, + "lineno": 4936, "columnno": 0, "code": { - "id": "astnode100021070", + "id": "astnode100021104", "name": "Apsis", "type": "ClassDeclaration", "paramnames": [ @@ -42785,14 +42857,14 @@ "comment": "", "meta": { "range": [ - 221210, - 221386 + 221609, + 221785 ], "filename": "astronomy.js", - "lineno": 4932, + "lineno": 4937, "columnno": 4, "code": { - "id": "astnode100021073", + "id": "astnode100021107", "name": "Apsis", "type": "MethodDefinition", "paramnames": [ @@ -42816,14 +42888,14 @@ "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": [ - 221192, - 221388 + 221591, + 221787 ], "filename": "astronomy.js", - "lineno": 4931, + "lineno": 4936, "columnno": 0, "code": { - "id": "astnode100021070", + "id": "astnode100021104", "name": "Apsis", "type": "ClassDeclaration", "paramnames": [ @@ -42892,14 +42964,14 @@ "comment": "", "meta": { "range": [ - 221253, - 221269 + 221652, + 221668 ], "filename": "astronomy.js", - "lineno": 4933, + "lineno": 4938, "columnno": 8, "code": { - "id": "astnode100021081", + "id": "astnode100021115", "name": "this.time", "type": "Identifier", "value": "time", @@ -42917,14 +42989,14 @@ "comment": "", "meta": { "range": [ - 221279, - 221295 + 221678, + 221694 ], "filename": "astronomy.js", - "lineno": 4934, + "lineno": 4939, "columnno": 8, "code": { - "id": "astnode100021087", + "id": "astnode100021121", "name": "this.kind", "type": "Identifier", "value": "kind", @@ -42942,14 +43014,14 @@ "comment": "", "meta": { "range": [ - 221305, - 221327 + 221704, + 221726 ], "filename": "astronomy.js", - "lineno": 4935, + "lineno": 4940, "columnno": 8, "code": { - "id": "astnode100021093", + "id": "astnode100021127", "name": "this.dist_au", "type": "Identifier", "value": "dist_au", @@ -42967,14 +43039,14 @@ "comment": "", "meta": { "range": [ - 221337, - 221379 + 221736, + 221778 ], "filename": "astronomy.js", - "lineno": 4936, + "lineno": 4941, "columnno": 8, "code": { - "id": "astnode100021099", + "id": "astnode100021133", "name": "this.dist_km", "type": "BinaryExpression", "value": "", @@ -42992,14 +43064,14 @@ "comment": "", "meta": { "range": [ - 221389, - 221410 + 221788, + 221809 ], "filename": "astronomy.js", - "lineno": 4939, + "lineno": 4944, "columnno": 0, "code": { - "id": "astnode100021109", + "id": "astnode100021143", "name": "exports.Apsis", "type": "Identifier", "value": "Apsis", @@ -43016,14 +43088,14 @@ "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": [ - 221753, - 224548 + 222152, + 224947 ], "filename": "astronomy.js", - "lineno": 4951, + "lineno": 4956, "columnno": 0, "code": { - "id": "astnode100021114", + "id": "astnode100021148", "name": "SearchLunarApsis", "type": "FunctionDeclaration", "paramnames": [ @@ -43081,14 +43153,14 @@ "comment": "", "meta": { "range": [ - 221802, - 221812 + 222201, + 222211 ], "filename": "astronomy.js", - "lineno": 4952, + "lineno": 4957, "columnno": 10, "code": { - "id": "astnode100021119", + "id": "astnode100021153", "name": "dt", "type": "Literal", "value": 0.001 @@ -43106,14 +43178,14 @@ "comment": "", "meta": { "range": [ - 221818, - 222062 + 222217, + 222461 ], "filename": "astronomy.js", - "lineno": 4953, + "lineno": 4958, "columnno": 4, "code": { - "id": "astnode100021122", + "id": "astnode100021156", "name": "distance_slope", "type": "FunctionDeclaration", "paramnames": [ @@ -43140,14 +43212,14 @@ "comment": "", "meta": { "range": [ - 221859, - 221882 + 222258, + 222281 ], "filename": "astronomy.js", - "lineno": 4954, + "lineno": 4959, "columnno": 12, "code": { - "id": "astnode100021127", + "id": "astnode100021161", "name": "t1", "type": "CallExpression", "value": "" @@ -43165,14 +43237,14 @@ "comment": "", "meta": { "range": [ - 221896, - 221919 + 222295, + 222318 ], "filename": "astronomy.js", - "lineno": 4955, + "lineno": 4960, "columnno": 12, "code": { - "id": "astnode100021138", + "id": "astnode100021172", "name": "t2", "type": "CallExpression", "value": "" @@ -43190,14 +43262,14 @@ "comment": "", "meta": { "range": [ - 221933, - 221962 + 222332, + 222361 ], "filename": "astronomy.js", - "lineno": 4956, + "lineno": 4961, "columnno": 12, "code": { - "id": "astnode100021149", + "id": "astnode100021183", "name": "r1", "type": "MemberExpression", "value": ".distance_au" @@ -43215,14 +43287,14 @@ "comment": "", "meta": { "range": [ - 221976, - 222005 + 222375, + 222404 ], "filename": "astronomy.js", - "lineno": 4957, + "lineno": 4962, "columnno": 12, "code": { - "id": "astnode100021157", + "id": "astnode100021191", "name": "r2", "type": "MemberExpression", "value": ".distance_au" @@ -43240,14 +43312,14 @@ "comment": "", "meta": { "range": [ - 222019, - 222037 + 222418, + 222436 ], "filename": "astronomy.js", - "lineno": 4958, + "lineno": 4963, "columnno": 12, "code": { - "id": "astnode100021165", + "id": "astnode100021199", "name": "m", "type": "BinaryExpression", "value": "" @@ -43265,14 +43337,14 @@ "comment": "", "meta": { "range": [ - 222067, - 222145 + 222466, + 222544 ], "filename": "astronomy.js", - "lineno": 4961, + "lineno": 4966, "columnno": 4, "code": { - "id": "astnode100021174", + "id": "astnode100021208", "name": "negative_distance_slope", "type": "FunctionDeclaration", "paramnames": [ @@ -43292,14 +43364,14 @@ "comment": "", "meta": { "range": [ - 222573, - 222597 + 222972, + 222996 ], "filename": "astronomy.js", - "lineno": 4970, + "lineno": 4975, "columnno": 8, "code": { - "id": "astnode100021184", + "id": "astnode100021218", "name": "t1", "type": "CallExpression", "value": "" @@ -43317,14 +43389,14 @@ "comment": "", "meta": { "range": [ - 222607, - 222630 + 223006, + 223029 ], "filename": "astronomy.js", - "lineno": 4971, + "lineno": 4976, "columnno": 8, "code": { - "id": "astnode100021190", + "id": "astnode100021224", "name": "m1", "type": "CallExpression", "value": "" @@ -43342,14 +43414,14 @@ "comment": "", "meta": { "range": [ - 222642, - 222655 + 223041, + 223054 ], "filename": "astronomy.js", - "lineno": 4972, + "lineno": 4977, "columnno": 10, "code": { - "id": "astnode100021196", + "id": "astnode100021230", "name": "increment", "type": "Literal", "value": 5 @@ -43367,14 +43439,14 @@ "comment": "", "meta": { "range": [ - 222714, - 222722 + 223113, + 223121 ], "filename": "astronomy.js", - "lineno": 4973, + "lineno": 4978, "columnno": 13, "code": { - "id": "astnode100021201", + "id": "astnode100021235", "name": "iter", "type": "Literal", "value": 0 @@ -43392,14 +43464,14 @@ "comment": "", "meta": { "range": [ - 222789, - 222815 + 223188, + 223214 ], "filename": "astronomy.js", - "lineno": 4974, + "lineno": 4979, "columnno": 12, "code": { - "id": "astnode100021215", + "id": "astnode100021249", "name": "t2", "type": "CallExpression", "value": "" @@ -43417,14 +43489,14 @@ "comment": "", "meta": { "range": [ - 222829, - 222852 + 223228, + 223251 ], "filename": "astronomy.js", - "lineno": 4975, + "lineno": 4980, "columnno": 12, "code": { - "id": "astnode100021223", + "id": "astnode100021257", "name": "m2", "type": "CallExpression", "value": "" @@ -43442,14 +43514,14 @@ "comment": "", "meta": { "range": [ - 223247, - 223312 + 223646, + 223711 ], "filename": "astronomy.js", - "lineno": 4983, + "lineno": 4988, "columnno": 20, "code": { - "id": "astnode100021245", + "id": "astnode100021279", "name": "tx", "type": "CallExpression", "value": "" @@ -43467,14 +43539,14 @@ "comment": "", "meta": { "range": [ - 223285, - 223296 + 223684, + 223695 ], "filename": "astronomy.js", - "lineno": 4983, + "lineno": 4988, "columnno": 58, "code": { - "id": "astnode100021253", + "id": "astnode100021287", "name": "init_f1", "type": "Identifier", "value": "m1" @@ -43490,14 +43562,14 @@ "comment": "", "meta": { "range": [ - 223298, - 223309 + 223697, + 223708 ], "filename": "astronomy.js", - "lineno": 4983, + "lineno": 4988, "columnno": 71, "code": { - "id": "astnode100021255", + "id": "astnode100021289", "name": "init_f2", "type": "Identifier", "value": "m2" @@ -43513,14 +43585,14 @@ "comment": "", "meta": { "range": [ - 223444, - 223475 + 223843, + 223874 ], "filename": "astronomy.js", - "lineno": 4986, + "lineno": 4991, "columnno": 20, "code": { - "id": "astnode100021263", + "id": "astnode100021297", "name": "dist", "type": "MemberExpression", "value": ".distance_au" @@ -43538,14 +43610,14 @@ "comment": "", "meta": { "range": [ - 223785, - 223861 + 224184, + 224260 ], "filename": "astronomy.js", - "lineno": 4993, + "lineno": 4998, "columnno": 20, "code": { - "id": "astnode100021286", + "id": "astnode100021320", "name": "tx", "type": "CallExpression", "value": "" @@ -43563,14 +43635,14 @@ "comment": "", "meta": { "range": [ - 223832, - 223844 + 224231, + 224243 ], "filename": "astronomy.js", - "lineno": 4993, + "lineno": 4998, "columnno": 67, "code": { - "id": "astnode100021294", + "id": "astnode100021328", "name": "init_f1", "type": "UnaryExpression", "value": "-m1" @@ -43586,14 +43658,14 @@ "comment": "", "meta": { "range": [ - 223846, - 223858 + 224245, + 224257 ], "filename": "astronomy.js", - "lineno": 4993, + "lineno": 4998, "columnno": 81, "code": { - "id": "astnode100021297", + "id": "astnode100021331", "name": "init_f2", "type": "UnaryExpression", "value": "-m2" @@ -43609,14 +43681,14 @@ "comment": "", "meta": { "range": [ - 223992, - 224023 + 224391, + 224422 ], "filename": "astronomy.js", - "lineno": 4996, + "lineno": 5001, "columnno": 20, "code": { - "id": "astnode100021306", + "id": "astnode100021340", "name": "dist", "type": "MemberExpression", "value": ".distance_au" @@ -43634,14 +43706,14 @@ "comment": "", "meta": { "range": [ - 224326, - 224333 + 224725, + 224732 ], "filename": "astronomy.js", - "lineno": 5003, + "lineno": 5008, "columnno": 8, "code": { - "id": "astnode100021322", + "id": "astnode100021356", "name": "t1", "type": "Identifier", "funcscope": "SearchLunarApsis", @@ -43660,14 +43732,14 @@ "comment": "", "meta": { "range": [ - 224343, - 224350 + 224742, + 224749 ], "filename": "astronomy.js", - "lineno": 5004, + "lineno": 5009, "columnno": 8, "code": { - "id": "astnode100021326", + "id": "astnode100021360", "name": "m1", "type": "Identifier", "funcscope": "SearchLunarApsis", @@ -43686,14 +43758,14 @@ "comment": "", "meta": { "range": [ - 224549, - 224592 + 224948, + 224991 ], "filename": "astronomy.js", - "lineno": 5009, + "lineno": 5014, "columnno": 0, "code": { - "id": "astnode100021332", + "id": "astnode100021366", "name": "exports.SearchLunarApsis", "type": "Identifier", "value": "SearchLunarApsis", @@ -43710,14 +43782,14 @@ "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": [ - 225105, - 225518 + 225504, + 225917 ], "filename": "astronomy.js", - "lineno": 5023, + "lineno": 5028, "columnno": 0, "code": { - "id": "astnode100021337", + "id": "astnode100021371", "name": "NextLunarApsis", "type": "FunctionDeclaration", "paramnames": [ @@ -43767,14 +43839,14 @@ "comment": "", "meta": { "range": [ - 225148, - 225157 + 225547, + 225556 ], "filename": "astronomy.js", - "lineno": 5024, + "lineno": 5029, "columnno": 10, "code": { - "id": "astnode100021342", + "id": "astnode100021376", "name": "skip", "type": "Literal", "value": 11 @@ -43792,14 +43864,14 @@ "comment": "", "meta": { "range": [ - 225231, - 225280 + 225630, + 225679 ], "filename": "astronomy.js", - "lineno": 5025, + "lineno": 5030, "columnno": 8, "code": { - "id": "astnode100021346", + "id": "astnode100021380", "name": "next", "type": "CallExpression", "value": "" @@ -43817,14 +43889,14 @@ "comment": "", "meta": { "range": [ - 225519, - 225558 + 225918, + 225957 ], "filename": "astronomy.js", - "lineno": 5030, + "lineno": 5035, "columnno": 0, "code": { - "id": "astnode100021395", + "id": "astnode100021429", "name": "exports.NextLunarApsis", "type": "Identifier", "value": "NextLunarApsis", @@ -43841,14 +43913,14 @@ "comment": "", "meta": { "range": [ - 225560, - 226558 + 225959, + 226957 ], "filename": "astronomy.js", - "lineno": 5031, + "lineno": 5036, "columnno": 0, "code": { - "id": "astnode100021400", + "id": "astnode100021434", "name": "PlanetExtreme", "type": "FunctionDeclaration", "paramnames": [ @@ -43884,14 +43956,14 @@ "comment": "", "meta": { "range": [ - 225628, - 225666 + 226027, + 226065 ], "filename": "astronomy.js", - "lineno": 5032, + "lineno": 5037, "columnno": 10, "code": { - "id": "astnode100021408", + "id": "astnode100021442", "name": "direction", "type": "ConditionalExpression", "value": "" @@ -43909,14 +43981,14 @@ "comment": "", "meta": { "range": [ - 225678, - 225690 + 226077, + 226089 ], "filename": "astronomy.js", - "lineno": 5033, + "lineno": 5038, "columnno": 10, "code": { - "id": "astnode100021419", + "id": "astnode100021453", "name": "npoints", "type": "Literal", "value": 10 @@ -43934,14 +44006,14 @@ "comment": "", "meta": { "range": [ - 225721, - 225755 + 226120, + 226154 ], "filename": "astronomy.js", - "lineno": 5035, + "lineno": 5040, "columnno": 14, "code": { - "id": "astnode100021425", + "id": "astnode100021459", "name": "interval", "type": "BinaryExpression", "value": "" @@ -43959,14 +44031,14 @@ "comment": "", "meta": { "range": [ - 225875, - 225922 + 226274, + 226321 ], "filename": "astronomy.js", - "lineno": 5038, + "lineno": 5043, "columnno": 18, "code": { - "id": "astnode100021440", + "id": "astnode100021474", "name": "apsis_time", "type": "CallExpression", "value": "" @@ -43984,14 +44056,14 @@ "comment": "", "meta": { "range": [ - 225942, - 225983 + 226341, + 226382 ], "filename": "astronomy.js", - "lineno": 5039, + "lineno": 5044, "columnno": 18, "code": { - "id": "astnode100021450", + "id": "astnode100021484", "name": "dist_au", "type": "CallExpression", "value": "" @@ -44009,14 +44081,14 @@ "comment": "", "meta": { "range": [ - 226064, - 226075 + 226463, + 226474 ], "filename": "astronomy.js", - "lineno": 5042, + "lineno": 5047, "columnno": 12, "code": { - "id": "astnode100021463", + "id": "astnode100021497", "name": "best_i", "type": "UnaryExpression", "value": -1 @@ -44034,14 +44106,14 @@ "comment": "", "meta": { "range": [ - 226089, - 226104 + 226488, + 226503 ], "filename": "astronomy.js", - "lineno": 5043, + "lineno": 5048, "columnno": 12, "code": { - "id": "astnode100021468", + "id": "astnode100021502", "name": "best_dist", "type": "Literal", "value": 0 @@ -44059,14 +44131,14 @@ "comment": "", "meta": { "range": [ - 226123, - 226128 + 226522, + 226527 ], "filename": "astronomy.js", - "lineno": 5044, + "lineno": 5049, "columnno": 17, "code": { - "id": "astnode100021473", + "id": "astnode100021507", "name": "i", "type": "Literal", "value": 0 @@ -44084,14 +44156,14 @@ "comment": "", "meta": { "range": [ - 226168, - 226207 + 226567, + 226606 ], "filename": "astronomy.js", - "lineno": 5045, + "lineno": 5050, "columnno": 18, "code": { - "id": "astnode100021483", + "id": "astnode100021517", "name": "time", "type": "CallExpression", "value": "" @@ -44109,14 +44181,14 @@ "comment": "", "meta": { "range": [ - 226227, - 226271 + 226626, + 226670 ], "filename": "astronomy.js", - "lineno": 5046, + "lineno": 5051, "columnno": 18, "code": { - "id": "astnode100021493", + "id": "astnode100021527", "name": "dist", "type": "BinaryExpression", "value": "" @@ -44134,14 +44206,14 @@ "comment": "", "meta": { "range": [ - 226335, - 226345 + 226734, + 226744 ], "filename": "astronomy.js", - "lineno": 5048, + "lineno": 5053, "columnno": 16, "code": { - "id": "astnode100021511", + "id": "astnode100021545", "name": "best_i", "type": "Identifier", "funcscope": "PlanetExtreme", @@ -44160,14 +44232,14 @@ "comment": "", "meta": { "range": [ - 226363, - 226379 + 226762, + 226778 ], "filename": "astronomy.js", - "lineno": 5049, + "lineno": 5054, "columnno": 16, "code": { - "id": "astnode100021515", + "id": "astnode100021549", "name": "best_dist", "type": "Identifier", "funcscope": "PlanetExtreme", @@ -44186,14 +44258,14 @@ "comment": "", "meta": { "range": [ - 226459, - 226515 + 226858, + 226914 ], "filename": "astronomy.js", - "lineno": 5053, + "lineno": 5058, "columnno": 8, "code": { - "id": "astnode100021519", + "id": "astnode100021553", "name": "start_time", "type": "CallExpression", "funcscope": "PlanetExtreme", @@ -44212,14 +44284,14 @@ "comment": "", "meta": { "range": [ - 226525, - 226549 + 226924, + 226948 ], "filename": "astronomy.js", - "lineno": 5054, + "lineno": 5059, "columnno": 8, "code": { - "id": "astnode100021531", + "id": "astnode100021565", "name": "dayspan", "type": "BinaryExpression", "funcscope": "PlanetExtreme", @@ -44238,14 +44310,14 @@ "comment": "", "meta": { "range": [ - 226559, - 229127 + 226958, + 229526 ], "filename": "astronomy.js", - "lineno": 5057, + "lineno": 5062, "columnno": 0, "code": { - "id": "astnode100021536", + "id": "astnode100021570", "name": "BruteSearchPlanetApsis", "type": "FunctionDeclaration", "paramnames": [ @@ -44280,14 +44352,14 @@ "comment": "", "meta": { "range": [ - 227850, - 227863 + 228249, + 228262 ], "filename": "astronomy.js", - "lineno": 5082, + "lineno": 5087, "columnno": 10, "code": { - "id": "astnode100021542", + "id": "astnode100021576", "name": "npoints", "type": "Literal", "value": 100 @@ -44305,14 +44377,14 @@ "comment": "", "meta": { "range": [ - 227875, - 227939 + 228274, + 228338 ], "filename": "astronomy.js", - "lineno": 5083, + "lineno": 5088, "columnno": 10, "code": { - "id": "astnode100021546", + "id": "astnode100021580", "name": "t1", "type": "CallExpression", "value": "" @@ -44330,14 +44402,14 @@ "comment": "", "meta": { "range": [ - 227951, - 228016 + 228350, + 228415 ], "filename": "astronomy.js", - "lineno": 5084, + "lineno": 5089, "columnno": 10, "code": { - "id": "astnode100021563", + "id": "astnode100021597", "name": "t2", "type": "CallExpression", "value": "" @@ -44355,14 +44427,14 @@ "comment": "", "meta": { "range": [ - 228026, - 228036 + 228425, + 228435 ], "filename": "astronomy.js", - "lineno": 5085, + "lineno": 5090, "columnno": 8, "code": { - "id": "astnode100021580", + "id": "astnode100021614", "name": "t_min", "type": "Identifier", "value": "t1" @@ -44380,14 +44452,14 @@ "comment": "", "meta": { "range": [ - 228046, - 228056 + 228445, + 228455 ], "filename": "astronomy.js", - "lineno": 5086, + "lineno": 5091, "columnno": 8, "code": { - "id": "astnode100021584", + "id": "astnode100021618", "name": "t_max", "type": "Identifier", "value": "t1" @@ -44405,14 +44477,14 @@ "comment": "", "meta": { "range": [ - 228066, - 228081 + 228465, + 228480 ], "filename": "astronomy.js", - "lineno": 5087, + "lineno": 5092, "columnno": 8, "code": { - "id": "astnode100021588", + "id": "astnode100021622", "name": "min_dist", "type": "UnaryExpression", "value": -1 @@ -44430,14 +44502,14 @@ "comment": "", "meta": { "range": [ - 228091, - 228106 + 228490, + 228505 ], "filename": "astronomy.js", - "lineno": 5088, + "lineno": 5093, "columnno": 8, "code": { - "id": "astnode100021593", + "id": "astnode100021627", "name": "max_dist", "type": "UnaryExpression", "value": -1 @@ -44455,14 +44527,14 @@ "comment": "", "meta": { "range": [ - 228118, - 228160 + 228517, + 228559 ], "filename": "astronomy.js", - "lineno": 5089, + "lineno": 5094, "columnno": 10, "code": { - "id": "astnode100021598", + "id": "astnode100021632", "name": "interval", "type": "BinaryExpression", "value": "" @@ -44480,14 +44552,14 @@ "comment": "", "meta": { "range": [ - 228175, - 228180 + 228574, + 228579 ], "filename": "astronomy.js", - "lineno": 5090, + "lineno": 5095, "columnno": 13, "code": { - "id": "astnode100021613", + "id": "astnode100021647", "name": "i", "type": "Literal", "value": 0 @@ -44505,14 +44577,14 @@ "comment": "", "meta": { "range": [ - 228216, - 228247 + 228615, + 228646 ], "filename": "astronomy.js", - "lineno": 5091, + "lineno": 5096, "columnno": 14, "code": { - "id": "astnode100021623", + "id": "astnode100021657", "name": "time", "type": "CallExpression", "value": "" @@ -44530,14 +44602,14 @@ "comment": "", "meta": { "range": [ - 228263, - 228295 + 228662, + 228694 ], "filename": "astronomy.js", - "lineno": 5092, + "lineno": 5097, "columnno": 14, "code": { - "id": "astnode100021633", + "id": "astnode100021667", "name": "dist", "type": "CallExpression", "value": "" @@ -44555,14 +44627,14 @@ "comment": "", "meta": { "range": [ - 228332, - 228358 + 228731, + 228757 ], "filename": "astronomy.js", - "lineno": 5094, + "lineno": 5099, "columnno": 12, "code": { - "id": "astnode100021645", + "id": "astnode100021679", "name": "max_dist", "type": "AssignmentExpression", "funcscope": "BruteSearchPlanetApsis", @@ -44581,14 +44653,14 @@ "comment": "", "meta": { "range": [ - 228343, - 228358 + 228742, + 228757 ], "filename": "astronomy.js", - "lineno": 5094, + "lineno": 5099, "columnno": 23, "code": { - "id": "astnode100021647", + "id": "astnode100021681", "name": "min_dist", "type": "Identifier", "funcscope": "BruteSearchPlanetApsis", @@ -44607,14 +44679,14 @@ "comment": "", "meta": { "range": [ - 228436, - 228451 + 228835, + 228850 ], "filename": "astronomy.js", - "lineno": 5098, + "lineno": 5103, "columnno": 16, "code": { - "id": "astnode100021657", + "id": "astnode100021691", "name": "max_dist", "type": "Identifier", "funcscope": "BruteSearchPlanetApsis", @@ -44633,14 +44705,14 @@ "comment": "", "meta": { "range": [ - 228469, - 228481 + 228868, + 228880 ], "filename": "astronomy.js", - "lineno": 5099, + "lineno": 5104, "columnno": 16, "code": { - "id": "astnode100021661", + "id": "astnode100021695", "name": "t_max", "type": "Identifier", "funcscope": "BruteSearchPlanetApsis", @@ -44659,14 +44731,14 @@ "comment": "", "meta": { "range": [ - 228548, - 228563 + 228947, + 228962 ], "filename": "astronomy.js", - "lineno": 5102, + "lineno": 5107, "columnno": 16, "code": { - "id": "astnode100021670", + "id": "astnode100021704", "name": "min_dist", "type": "Identifier", "funcscope": "BruteSearchPlanetApsis", @@ -44685,14 +44757,14 @@ "comment": "", "meta": { "range": [ - 228581, - 228593 + 228980, + 228992 ], "filename": "astronomy.js", - "lineno": 5103, + "lineno": 5108, "columnno": 16, "code": { - "id": "astnode100021674", + "id": "astnode100021708", "name": "t_min", "type": "Identifier", "funcscope": "BruteSearchPlanetApsis", @@ -44711,14 +44783,14 @@ "comment": "", "meta": { "range": [ - 228635, - 228714 + 229034, + 229113 ], "filename": "astronomy.js", - "lineno": 5107, + "lineno": 5112, "columnno": 10, "code": { - "id": "astnode100021678", + "id": "astnode100021712", "name": "perihelion", "type": "CallExpression", "value": "" @@ -44736,14 +44808,14 @@ "comment": "", "meta": { "range": [ - 228726, - 228803 + 229125, + 229202 ], "filename": "astronomy.js", - "lineno": 5108, + "lineno": 5113, "columnno": 10, "code": { - "id": "astnode100021696", + "id": "astnode100021730", "name": "aphelion", "type": "CallExpression", "value": "" @@ -44761,14 +44833,14 @@ "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": [ - 230460, - 232897 + 230859, + 233296 ], "filename": "astronomy.js", - "lineno": 5148, + "lineno": 5153, "columnno": 0, "code": { - "id": "astnode100021764", + "id": "astnode100021798", "name": "SearchPlanetApsis", "type": "FunctionDeclaration", "paramnames": [ @@ -44839,14 +44911,14 @@ "comment": "", "meta": { "range": [ - 230620, - 230888 + 231019, + 231287 ], "filename": "astronomy.js", - "lineno": 5151, + "lineno": 5156, "columnno": 4, "code": { - "id": "astnode100021786", + "id": "astnode100021820", "name": "positive_slope", "type": "FunctionDeclaration", "paramnames": [ @@ -44874,14 +44946,14 @@ "comment": "", "meta": { "range": [ - 230663, - 230673 + 231062, + 231072 ], "filename": "astronomy.js", - "lineno": 5152, + "lineno": 5157, "columnno": 14, "code": { - "id": "astnode100021791", + "id": "astnode100021825", "name": "dt", "type": "Literal", "value": 0.001 @@ -44899,14 +44971,14 @@ "comment": "", "meta": { "range": [ - 230687, - 230710 + 231086, + 231109 ], "filename": "astronomy.js", - "lineno": 5153, + "lineno": 5158, "columnno": 12, "code": { - "id": "astnode100021795", + "id": "astnode100021829", "name": "t1", "type": "CallExpression", "value": "" @@ -44924,14 +44996,14 @@ "comment": "", "meta": { "range": [ - 230724, - 230747 + 231123, + 231146 ], "filename": "astronomy.js", - "lineno": 5154, + "lineno": 5159, "columnno": 12, "code": { - "id": "astnode100021806", + "id": "astnode100021840", "name": "t2", "type": "CallExpression", "value": "" @@ -44949,14 +45021,14 @@ "comment": "", "meta": { "range": [ - 230761, - 230789 + 231160, + 231188 ], "filename": "astronomy.js", - "lineno": 5155, + "lineno": 5160, "columnno": 12, "code": { - "id": "astnode100021817", + "id": "astnode100021851", "name": "r1", "type": "CallExpression", "value": "" @@ -44974,14 +45046,14 @@ "comment": "", "meta": { "range": [ - 230803, - 230831 + 231202, + 231230 ], "filename": "astronomy.js", - "lineno": 5156, + "lineno": 5161, "columnno": 12, "code": { - "id": "astnode100021824", + "id": "astnode100021858", "name": "r2", "type": "CallExpression", "value": "" @@ -44999,14 +45071,14 @@ "comment": "", "meta": { "range": [ - 230845, - 230863 + 231244, + 231262 ], "filename": "astronomy.js", - "lineno": 5157, + "lineno": 5162, "columnno": 12, "code": { - "id": "astnode100021831", + "id": "astnode100021865", "name": "m", "type": "BinaryExpression", "value": "" @@ -45024,14 +45096,14 @@ "comment": "", "meta": { "range": [ - 230893, - 230962 + 231292, + 231361 ], "filename": "astronomy.js", - "lineno": 5160, + "lineno": 5165, "columnno": 4, "code": { - "id": "astnode100021840", + "id": "astnode100021874", "name": "negative_slope", "type": "FunctionDeclaration", "paramnames": [ @@ -45051,14 +45123,14 @@ "comment": "", "meta": { "range": [ - 230973, - 231019 + 231372, + 231418 ], "filename": "astronomy.js", - "lineno": 5163, + "lineno": 5168, "columnno": 10, "code": { - "id": "astnode100021850", + "id": "astnode100021884", "name": "orbit_period_days", "type": "MemberExpression", "value": "Planet[undefined].OrbitalPeriod" @@ -45076,14 +45148,14 @@ "comment": "", "meta": { "range": [ - 231031, - 231066 + 231430, + 231465 ], "filename": "astronomy.js", - "lineno": 5164, + "lineno": 5169, "columnno": 10, "code": { - "id": "astnode100021858", + "id": "astnode100021892", "name": "increment", "type": "BinaryExpression", "value": "" @@ -45101,14 +45173,14 @@ "comment": "", "meta": { "range": [ - 231076, - 231090 + 231475, + 231489 ], "filename": "astronomy.js", - "lineno": 5165, + "lineno": 5170, "columnno": 8, "code": { - "id": "astnode100021864", + "id": "astnode100021898", "name": "t1", "type": "Identifier", "value": "startTime" @@ -45126,14 +45198,14 @@ "comment": "", "meta": { "range": [ - 231100, - 231123 + 231499, + 231522 ], "filename": "astronomy.js", - "lineno": 5166, + "lineno": 5171, "columnno": 8, "code": { - "id": "astnode100021868", + "id": "astnode100021902", "name": "m1", "type": "CallExpression", "value": "" @@ -45151,14 +45223,14 @@ "comment": "", "meta": { "range": [ - 231138, - 231146 + 231537, + 231545 ], "filename": "astronomy.js", - "lineno": 5167, + "lineno": 5172, "columnno": 13, "code": { - "id": "astnode100021875", + "id": "astnode100021909", "name": "iter", "type": "Literal", "value": 0 @@ -45176,14 +45248,14 @@ "comment": "", "meta": { "range": [ - 231216, - 231242 + 231615, + 231641 ], "filename": "astronomy.js", - "lineno": 5168, + "lineno": 5173, "columnno": 14, "code": { - "id": "astnode100021889", + "id": "astnode100021923", "name": "t2", "type": "CallExpression", "value": "" @@ -45201,14 +45273,14 @@ "comment": "", "meta": { "range": [ - 231258, - 231281 + 231657, + 231680 ], "filename": "astronomy.js", - "lineno": 5169, + "lineno": 5174, "columnno": 14, "code": { - "id": "astnode100021897", + "id": "astnode100021931", "name": "m2", "type": "CallExpression", "value": "" @@ -45226,14 +45298,14 @@ "comment": "", "meta": { "range": [ - 231545, - 231555 + 231944, + 231954 ], "filename": "astronomy.js", - "lineno": 5174, + "lineno": 5179, "columnno": 16, "code": { - "id": "astnode100021910", + "id": "astnode100021944", "name": "slope_func" } }, @@ -45249,14 +45321,14 @@ "comment": "", "meta": { "range": [ - 231573, - 231577 + 231972, + 231976 ], "filename": "astronomy.js", - "lineno": 5175, + "lineno": 5180, "columnno": 16, "code": { - "id": "astnode100021913", + "id": "astnode100021947", "name": "kind" } }, @@ -45272,14 +45344,14 @@ "comment": "", "meta": { "range": [ - 231808, - 231835 + 232207, + 232234 ], "filename": "astronomy.js", - "lineno": 5179, + "lineno": 5184, "columnno": 16, "code": { - "id": "astnode100021925", + "id": "astnode100021959", "name": "slope_func", "type": "Identifier", "funcscope": "SearchPlanetApsis", @@ -45298,14 +45370,14 @@ "comment": "", "meta": { "range": [ - 231853, - 231861 + 232252, + 232260 ], "filename": "astronomy.js", - "lineno": 5180, + "lineno": 5185, "columnno": 16, "code": { - "id": "astnode100021929", + "id": "astnode100021963", "name": "kind", "type": "Literal", "funcscope": "SearchPlanetApsis", @@ -45324,14 +45396,14 @@ "comment": "", "meta": { "range": [ - 232123, - 232150 + 232522, + 232549 ], "filename": "astronomy.js", - "lineno": 5185, + "lineno": 5190, "columnno": 16, "code": { - "id": "astnode100021942", + "id": "astnode100021976", "name": "slope_func", "type": "Identifier", "funcscope": "SearchPlanetApsis", @@ -45350,14 +45422,14 @@ "comment": "", "meta": { "range": [ - 232168, - 232176 + 232567, + 232575 ], "filename": "astronomy.js", - "lineno": 5186, + "lineno": 5191, "columnno": 16, "code": { - "id": "astnode100021946", + "id": "astnode100021980", "name": "kind", "type": "Literal", "funcscope": "SearchPlanetApsis", @@ -45376,14 +45448,14 @@ "comment": "", "meta": { "range": [ - 232430, - 232465 + 232829, + 232864 ], "filename": "astronomy.js", - "lineno": 5192, + "lineno": 5197, "columnno": 18, "code": { - "id": "astnode100021953", + "id": "astnode100021987", "name": "search", "type": "CallExpression", "value": "" @@ -45401,14 +45473,14 @@ "comment": "", "meta": { "range": [ - 232594, - 232628 + 232993, + 233027 ], "filename": "astronomy.js", - "lineno": 5195, + "lineno": 5200, "columnno": 18, "code": { - "id": "astnode100021966", + "id": "astnode100022000", "name": "dist", "type": "CallExpression", "value": "" @@ -45426,14 +45498,14 @@ "comment": "", "meta": { "range": [ - 232775, - 232782 + 233174, + 233181 ], "filename": "astronomy.js", - "lineno": 5199, + "lineno": 5204, "columnno": 8, "code": { - "id": "astnode100021979", + "id": "astnode100022013", "name": "t1", "type": "Identifier", "funcscope": "SearchPlanetApsis", @@ -45452,14 +45524,14 @@ "comment": "", "meta": { "range": [ - 232792, - 232799 + 233191, + 233198 ], "filename": "astronomy.js", - "lineno": 5200, + "lineno": 5205, "columnno": 8, "code": { - "id": "astnode100021983", + "id": "astnode100022017", "name": "m1", "type": "Identifier", "funcscope": "SearchPlanetApsis", @@ -45478,14 +45550,14 @@ "comment": "", "meta": { "range": [ - 232898, - 232943 + 233297, + 233342 ], "filename": "astronomy.js", - "lineno": 5204, + "lineno": 5209, "columnno": 0, "code": { - "id": "astnode100021989", + "id": "astnode100022023", "name": "exports.SearchPlanetApsis", "type": "Identifier", "value": "SearchPlanetApsis", @@ -45502,14 +45574,14 @@ "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": [ - 233739, - 234314 + 234138, + 234713 ], "filename": "astronomy.js", - "lineno": 5224, + "lineno": 5229, "columnno": 0, "code": { - "id": "astnode100021994", + "id": "astnode100022028", "name": "NextPlanetApsis", "type": "FunctionDeclaration", "paramnames": [ @@ -45570,14 +45642,14 @@ "comment": "", "meta": { "range": [ - 233946, - 233986 + 234345, + 234385 ], "filename": "astronomy.js", - "lineno": 5228, + "lineno": 5233, "columnno": 10, "code": { - "id": "astnode100022019", + "id": "astnode100022053", "name": "skip", "type": "BinaryExpression", "value": "" @@ -45595,14 +45667,14 @@ "comment": "", "meta": { "range": [ - 233998, - 234029 + 234397, + 234428 ], "filename": "astronomy.js", - "lineno": 5229, + "lineno": 5234, "columnno": 10, "code": { - "id": "astnode100022029", + "id": "astnode100022063", "name": "time", "type": "CallExpression", "value": "" @@ -45620,14 +45692,14 @@ "comment": "", "meta": { "range": [ - 234041, - 234077 + 234440, + 234476 ], "filename": "astronomy.js", - "lineno": 5230, + "lineno": 5235, "columnno": 10, "code": { - "id": "astnode100022039", + "id": "astnode100022073", "name": "next", "type": "CallExpression", "value": "" @@ -45645,14 +45717,14 @@ "comment": "", "meta": { "range": [ - 234315, - 234356 + 234714, + 234755 ], "filename": "astronomy.js", - "lineno": 5236, + "lineno": 5241, "columnno": 0, "code": { - "id": "astnode100022069", + "id": "astnode100022103", "name": "exports.NextPlanetApsis", "type": "Identifier", "value": "NextPlanetApsis", @@ -45669,14 +45741,14 @@ "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": [ - 234710, - 234997 + 235109, + 235396 ], "filename": "astronomy.js", - "lineno": 5249, + "lineno": 5254, "columnno": 0, "code": { - "id": "astnode100022074", + "id": "astnode100022108", "name": "InverseRotation", "type": "FunctionDeclaration", "paramnames": [ @@ -45722,14 +45794,14 @@ "comment": "", "meta": { "range": [ - 234998, - 235039 + 235397, + 235438 ], "filename": "astronomy.js", - "lineno": 5256, + "lineno": 5261, "columnno": 0, "code": { - "id": "astnode100022149", + "id": "astnode100022183", "name": "exports.InverseRotation", "type": "Identifier", "value": "InverseRotation", @@ -45746,14 +45818,14 @@ "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": [ - 235494, - 236797 + 235893, + 237196 ], "filename": "astronomy.js", - "lineno": 5272, + "lineno": 5277, "columnno": 0, "code": { - "id": "astnode100022154", + "id": "astnode100022188", "name": "CombineRotation", "type": "FunctionDeclaration", "paramnames": [ @@ -45809,14 +45881,14 @@ "comment": "", "meta": { "range": [ - 236798, - 236839 + 237197, + 237238 ], "filename": "astronomy.js", - "lineno": 5298, + "lineno": 5303, "columnno": 0, "code": { - "id": "astnode100022590", + "id": "astnode100022624", "name": "exports.CombineRotation", "type": "Identifier", "value": "CombineRotation", @@ -45833,14 +45905,14 @@ "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": [ - 237178, - 237303 + 237577, + 237702 ], "filename": "astronomy.js", - "lineno": 5310, + "lineno": 5315, "columnno": 0, "code": { - "id": "astnode100022595", + "id": "astnode100022629", "name": "IdentityMatrix", "type": "FunctionDeclaration", "paramnames": [] @@ -45874,14 +45946,14 @@ "comment": "", "meta": { "range": [ - 237304, - 237343 + 237703, + 237742 ], "filename": "astronomy.js", - "lineno": 5317, + "lineno": 5322, "columnno": 0, "code": { - "id": "astnode100022615", + "id": "astnode100022649", "name": "exports.IdentityMatrix", "type": "Identifier", "value": "IdentityMatrix", @@ -45898,14 +45970,14 @@ "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": [ - 238835, - 240048 + 239234, + 240447 ], "filename": "astronomy.js", - "lineno": 5348, + "lineno": 5353, "columnno": 0, "code": { - "id": "astnode100022620", + "id": "astnode100022654", "name": "Pivot", "type": "FunctionDeclaration", "paramnames": [ @@ -45981,14 +46053,14 @@ "comment": "", "meta": { "range": [ - 239036, - 239083 + 239435, + 239482 ], "filename": "astronomy.js", - "lineno": 5352, + "lineno": 5357, "columnno": 10, "code": { - "id": "astnode100022644", + "id": "astnode100022678", "name": "radians", "type": "BinaryExpression", "value": "" @@ -46006,14 +46078,14 @@ "comment": "", "meta": { "range": [ - 239095, - 239116 + 239494, + 239515 ], "filename": "astronomy.js", - "lineno": 5353, + "lineno": 5358, "columnno": 10, "code": { - "id": "astnode100022654", + "id": "astnode100022688", "name": "c", "type": "CallExpression", "value": "" @@ -46031,14 +46103,14 @@ "comment": "", "meta": { "range": [ - 239128, - 239149 + 239527, + 239548 ], "filename": "astronomy.js", - "lineno": 5354, + "lineno": 5359, "columnno": 10, "code": { - "id": "astnode100022662", + "id": "astnode100022696", "name": "s", "type": "CallExpression", "value": "" @@ -46056,14 +46128,14 @@ "comment": "", "meta": { "range": [ - 239394, - 239412 + 239793, + 239811 ], "filename": "astronomy.js", - "lineno": 5361, + "lineno": 5366, "columnno": 10, "code": { - "id": "astnode100022670", + "id": "astnode100022704", "name": "i", "type": "BinaryExpression", "value": "" @@ -46081,14 +46153,14 @@ "comment": "", "meta": { "range": [ - 239424, - 239442 + 239823, + 239841 ], "filename": "astronomy.js", - "lineno": 5362, + "lineno": 5367, "columnno": 10, "code": { - "id": "astnode100022678", + "id": "astnode100022712", "name": "j", "type": "BinaryExpression", "value": "" @@ -46106,14 +46178,14 @@ "comment": "", "meta": { "range": [ - 239454, - 239462 + 239853, + 239861 ], "filename": "astronomy.js", - "lineno": 5363, + "lineno": 5368, "columnno": 10, "code": { - "id": "astnode100022686", + "id": "astnode100022720", "name": "k", "type": "Identifier", "value": "axis" @@ -46131,14 +46203,14 @@ "comment": "", "meta": { "range": [ - 239472, - 239511 + 239871, + 239910 ], "filename": "astronomy.js", - "lineno": 5364, + "lineno": 5369, "columnno": 8, "code": { - "id": "astnode100022690", + "id": "astnode100022724", "name": "rot", "type": "ArrayExpression", "value": "[\"[0,0,0]\",\"[0,0,0]\",\"[0,0,0]\"]" @@ -46156,148 +46228,18 @@ "comment": "", "meta": { "range": [ - 239517, - 239576 - ], - "filename": "astronomy.js", - "lineno": 5365, - "columnno": 4, - "code": { - "id": "astnode100022706", - "name": "rot[undefined][undefined]", - "type": "BinaryExpression", - "funcscope": "Pivot", - "value": "", - "paramnames": [] - } - }, - "undocumented": true, - "name": "undefined][undefined]", - "longname": "Pivot~rot.undefined][undefined]", - "kind": "member", - "memberof": "Pivot~rot", - "scope": "static" - }, - { - "comment": "", - "meta": { - "range": [ - 239582, - 239641 - ], - "filename": "astronomy.js", - "lineno": 5366, - "columnno": 4, - "code": { - "id": "astnode100022732", - "name": "rot[undefined][undefined]", - "type": "BinaryExpression", - "funcscope": "Pivot", - "value": "", - "paramnames": [] - } - }, - "undocumented": true, - "name": "undefined][undefined]", - "longname": "Pivot~rot.undefined][undefined]", - "kind": "member", - "memberof": "Pivot~rot", - "scope": "static" - }, - { - "comment": "", - "meta": { - "range": [ - 239647, - 239677 - ], - "filename": "astronomy.js", - "lineno": 5367, - "columnno": 4, - "code": { - "id": "astnode100022758", - "name": "rot[undefined][undefined]", - "type": "MemberExpression", - "funcscope": "Pivot", - "value": "rotation.rot[undefined][undefined]", - "paramnames": [] - } - }, - "undocumented": true, - "name": "undefined][undefined]", - "longname": "Pivot~rot.undefined][undefined]", - "kind": "member", - "memberof": "Pivot~rot", - "scope": "static" - }, - { - "comment": "", - "meta": { - "range": [ - 239683, - 239742 - ], - "filename": "astronomy.js", - "lineno": 5368, - "columnno": 4, - "code": { - "id": "astnode100022772", - "name": "rot[undefined][undefined]", - "type": "BinaryExpression", - "funcscope": "Pivot", - "value": "", - "paramnames": [] - } - }, - "undocumented": true, - "name": "undefined][undefined]", - "longname": "Pivot~rot.undefined][undefined]", - "kind": "member", - "memberof": "Pivot~rot", - "scope": "static" - }, - { - "comment": "", - "meta": { - "range": [ - 239748, - 239807 - ], - "filename": "astronomy.js", - "lineno": 5369, - "columnno": 4, - "code": { - "id": "astnode100022798", - "name": "rot[undefined][undefined]", - "type": "BinaryExpression", - "funcscope": "Pivot", - "value": "", - "paramnames": [] - } - }, - "undocumented": true, - "name": "undefined][undefined]", - "longname": "Pivot~rot.undefined][undefined]", - "kind": "member", - "memberof": "Pivot~rot", - "scope": "static" - }, - { - "comment": "", - "meta": { - "range": [ - 239813, - 239843 + 239916, + 239975 ], "filename": "astronomy.js", "lineno": 5370, "columnno": 4, "code": { - "id": "astnode100022824", + "id": "astnode100022740", "name": "rot[undefined][undefined]", - "type": "MemberExpression", + "type": "BinaryExpression", "funcscope": "Pivot", - "value": "rotation.rot[undefined][undefined]", + "value": "", "paramnames": [] } }, @@ -46312,14 +46254,14 @@ "comment": "", "meta": { "range": [ - 239849, - 239908 + 239981, + 240040 ], "filename": "astronomy.js", "lineno": 5371, "columnno": 4, "code": { - "id": "astnode100022838", + "id": "astnode100022766", "name": "rot[undefined][undefined]", "type": "BinaryExpression", "funcscope": "Pivot", @@ -46338,40 +46280,14 @@ "comment": "", "meta": { "range": [ - 239914, - 239973 + 240046, + 240076 ], "filename": "astronomy.js", "lineno": 5372, "columnno": 4, "code": { - "id": "astnode100022864", - "name": "rot[undefined][undefined]", - "type": "BinaryExpression", - "funcscope": "Pivot", - "value": "", - "paramnames": [] - } - }, - "undocumented": true, - "name": "undefined][undefined]", - "longname": "Pivot~rot.undefined][undefined]", - "kind": "member", - "memberof": "Pivot~rot", - "scope": "static" - }, - { - "comment": "", - "meta": { - "range": [ - 239979, - 240009 - ], - "filename": "astronomy.js", - "lineno": 5373, - "columnno": 4, - "code": { - "id": "astnode100022890", + "id": "astnode100022792", "name": "rot[undefined][undefined]", "type": "MemberExpression", "funcscope": "Pivot", @@ -46390,14 +46306,170 @@ "comment": "", "meta": { "range": [ - 240049, - 240070 + 240082, + 240141 + ], + "filename": "astronomy.js", + "lineno": 5373, + "columnno": 4, + "code": { + "id": "astnode100022806", + "name": "rot[undefined][undefined]", + "type": "BinaryExpression", + "funcscope": "Pivot", + "value": "", + "paramnames": [] + } + }, + "undocumented": true, + "name": "undefined][undefined]", + "longname": "Pivot~rot.undefined][undefined]", + "kind": "member", + "memberof": "Pivot~rot", + "scope": "static" + }, + { + "comment": "", + "meta": { + "range": [ + 240147, + 240206 + ], + "filename": "astronomy.js", + "lineno": 5374, + "columnno": 4, + "code": { + "id": "astnode100022832", + "name": "rot[undefined][undefined]", + "type": "BinaryExpression", + "funcscope": "Pivot", + "value": "", + "paramnames": [] + } + }, + "undocumented": true, + "name": "undefined][undefined]", + "longname": "Pivot~rot.undefined][undefined]", + "kind": "member", + "memberof": "Pivot~rot", + "scope": "static" + }, + { + "comment": "", + "meta": { + "range": [ + 240212, + 240242 + ], + "filename": "astronomy.js", + "lineno": 5375, + "columnno": 4, + "code": { + "id": "astnode100022858", + "name": "rot[undefined][undefined]", + "type": "MemberExpression", + "funcscope": "Pivot", + "value": "rotation.rot[undefined][undefined]", + "paramnames": [] + } + }, + "undocumented": true, + "name": "undefined][undefined]", + "longname": "Pivot~rot.undefined][undefined]", + "kind": "member", + "memberof": "Pivot~rot", + "scope": "static" + }, + { + "comment": "", + "meta": { + "range": [ + 240248, + 240307 ], "filename": "astronomy.js", "lineno": 5376, + "columnno": 4, + "code": { + "id": "astnode100022872", + "name": "rot[undefined][undefined]", + "type": "BinaryExpression", + "funcscope": "Pivot", + "value": "", + "paramnames": [] + } + }, + "undocumented": true, + "name": "undefined][undefined]", + "longname": "Pivot~rot.undefined][undefined]", + "kind": "member", + "memberof": "Pivot~rot", + "scope": "static" + }, + { + "comment": "", + "meta": { + "range": [ + 240313, + 240372 + ], + "filename": "astronomy.js", + "lineno": 5377, + "columnno": 4, + "code": { + "id": "astnode100022898", + "name": "rot[undefined][undefined]", + "type": "BinaryExpression", + "funcscope": "Pivot", + "value": "", + "paramnames": [] + } + }, + "undocumented": true, + "name": "undefined][undefined]", + "longname": "Pivot~rot.undefined][undefined]", + "kind": "member", + "memberof": "Pivot~rot", + "scope": "static" + }, + { + "comment": "", + "meta": { + "range": [ + 240378, + 240408 + ], + "filename": "astronomy.js", + "lineno": 5378, + "columnno": 4, + "code": { + "id": "astnode100022924", + "name": "rot[undefined][undefined]", + "type": "MemberExpression", + "funcscope": "Pivot", + "value": "rotation.rot[undefined][undefined]", + "paramnames": [] + } + }, + "undocumented": true, + "name": "undefined][undefined]", + "longname": "Pivot~rot.undefined][undefined]", + "kind": "member", + "memberof": "Pivot~rot", + "scope": "static" + }, + { + "comment": "", + "meta": { + "range": [ + 240448, + 240469 + ], + "filename": "astronomy.js", + "lineno": 5381, "columnno": 0, "code": { - "id": "astnode100022908", + "id": "astnode100022942", "name": "exports.Pivot", "type": "Identifier", "value": "Pivot", @@ -46414,14 +46486,14 @@ "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": [ - 240593, - 240903 + 240992, + 241302 ], "filename": "astronomy.js", - "lineno": 5393, + "lineno": 5398, "columnno": 0, "code": { - "id": "astnode100022913", + "id": "astnode100022947", "name": "VectorFromSphere", "type": "FunctionDeclaration", "paramnames": [ @@ -46482,14 +46554,14 @@ "comment": "", "meta": { "range": [ - 240645, - 240682 + 241044, + 241081 ], "filename": "astronomy.js", - "lineno": 5394, + "lineno": 5399, "columnno": 10, "code": { - "id": "astnode100022919", + "id": "astnode100022953", "name": "radlat", "type": "BinaryExpression", "value": "" @@ -46507,14 +46579,14 @@ "comment": "", "meta": { "range": [ - 240694, - 240731 + 241093, + 241130 ], "filename": "astronomy.js", - "lineno": 5395, + "lineno": 5400, "columnno": 10, "code": { - "id": "astnode100022929", + "id": "astnode100022963", "name": "radlon", "type": "BinaryExpression", "value": "" @@ -46532,14 +46604,14 @@ "comment": "", "meta": { "range": [ - 240743, - 240783 + 241142, + 241182 ], "filename": "astronomy.js", - "lineno": 5396, + "lineno": 5401, "columnno": 10, "code": { - "id": "astnode100022939", + "id": "astnode100022973", "name": "rcoslat", "type": "BinaryExpression", "value": "" @@ -46557,14 +46629,14 @@ "comment": "", "meta": { "range": [ - 240904, - 240947 + 241303, + 241346 ], "filename": "astronomy.js", - "lineno": 5399, + "lineno": 5404, "columnno": 0, "code": { - "id": "astnode100022978", + "id": "astnode100023012", "name": "exports.VectorFromSphere", "type": "Identifier", "value": "VectorFromSphere", @@ -46581,14 +46653,14 @@ "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": [ - 241234, - 241396 + 241633, + 241795 ], "filename": "astronomy.js", - "lineno": 5409, + "lineno": 5414, "columnno": 0, "code": { - "id": "astnode100022983", + "id": "astnode100023017", "name": "EquatorFromVector", "type": "FunctionDeclaration", "paramnames": [ @@ -46637,14 +46709,14 @@ "comment": "", "meta": { "range": [ - 241278, - 241308 + 241677, + 241707 ], "filename": "astronomy.js", - "lineno": 5410, + "lineno": 5415, "columnno": 10, "code": { - "id": "astnode100022988", + "id": "astnode100023022", "name": "sphere", "type": "CallExpression", "value": "" @@ -46662,14 +46734,14 @@ "comment": "", "meta": { "range": [ - 241397, - 241442 + 241796, + 241841 ], "filename": "astronomy.js", - "lineno": 5413, + "lineno": 5418, "columnno": 0, "code": { - "id": "astnode100023009", + "id": "astnode100023043", "name": "exports.EquatorFromVector", "type": "Identifier", "value": "EquatorFromVector", @@ -46686,14 +46758,14 @@ "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": [ - 241788, - 242390 + 242187, + 242789 ], "filename": "astronomy.js", - "lineno": 5425, + "lineno": 5430, "columnno": 0, "code": { - "id": "astnode100023014", + "id": "astnode100023048", "name": "SphereFromVector", "type": "FunctionDeclaration", "paramnames": [ @@ -46745,14 +46817,14 @@ "comment": "", "meta": { "range": [ - 241834, - 241884 + 242233, + 242283 ], "filename": "astronomy.js", - "lineno": 5426, + "lineno": 5431, "columnno": 10, "code": { - "id": "astnode100023019", + "id": "astnode100023053", "name": "xyproj", "type": "BinaryExpression", "value": "" @@ -46770,14 +46842,14 @@ "comment": "", "meta": { "range": [ - 241896, - 241942 + 242295, + 242341 ], "filename": "astronomy.js", - "lineno": 5427, + "lineno": 5432, "columnno": 10, "code": { - "id": "astnode100023037", + "id": "astnode100023071", "name": "dist", "type": "CallExpression", "value": "" @@ -46795,14 +46867,14 @@ "comment": "", "meta": { "range": [ - 241952, - 241955 + 242351, + 242354 ], "filename": "astronomy.js", - "lineno": 5428, + "lineno": 5433, "columnno": 8, "code": { - "id": "astnode100023053", + "id": "astnode100023087", "name": "lat" } }, @@ -46818,14 +46890,14 @@ "comment": "", "meta": { "range": [ - 241957, - 241960 + 242356, + 242359 ], "filename": "astronomy.js", - "lineno": 5428, + "lineno": 5433, "columnno": 13, "code": { - "id": "astnode100023055", + "id": "astnode100023089", "name": "lon" } }, @@ -46841,14 +46913,14 @@ "comment": "", "meta": { "range": [ - 242079, - 242088 + 242478, + 242487 ], "filename": "astronomy.js", - "lineno": 5432, + "lineno": 5437, "columnno": 8, "code": { - "id": "astnode100023071", + "id": "astnode100023105", "name": "lon", "type": "Literal", "funcscope": "SphereFromVector", @@ -46867,14 +46939,14 @@ "comment": "", "meta": { "range": [ - 242098, - 242136 + 242497, + 242535 ], "filename": "astronomy.js", - "lineno": 5433, + "lineno": 5438, "columnno": 8, "code": { - "id": "astnode100023075", + "id": "astnode100023109", "name": "lat", "type": "ConditionalExpression", "funcscope": "SphereFromVector", @@ -46893,14 +46965,14 @@ "comment": "", "meta": { "range": [ - 242163, - 242217 + 242562, + 242616 ], "filename": "astronomy.js", - "lineno": 5436, + "lineno": 5441, "columnno": 8, "code": { - "id": "astnode100023089", + "id": "astnode100023123", "name": "lon", "type": "BinaryExpression", "funcscope": "SphereFromVector", @@ -46919,14 +46991,14 @@ "comment": "", "meta": { "range": [ - 242254, - 242266 + 242653, + 242665 ], "filename": "astronomy.js", - "lineno": 5438, + "lineno": 5443, "columnno": 12, "code": { - "id": "astnode100023110", + "id": "astnode100023144", "name": "lon", "type": "Literal", "funcscope": "SphereFromVector", @@ -46945,14 +47017,14 @@ "comment": "", "meta": { "range": [ - 242276, - 242339 + 242675, + 242738 ], "filename": "astronomy.js", - "lineno": 5439, + "lineno": 5444, "columnno": 8, "code": { - "id": "astnode100023114", + "id": "astnode100023148", "name": "lat", "type": "BinaryExpression", "funcscope": "SphereFromVector", @@ -46971,14 +47043,14 @@ "comment": "", "meta": { "range": [ - 242391, - 242434 + 242790, + 242833 ], "filename": "astronomy.js", - "lineno": 5443, + "lineno": 5448, "columnno": 0, "code": { - "id": "astnode100023139", + "id": "astnode100023173", "name": "exports.SphereFromVector", "type": "Identifier", "value": "SphereFromVector", @@ -46995,14 +47067,14 @@ "comment": "", "meta": { "range": [ - 242436, - 242597 + 242835, + 242996 ], "filename": "astronomy.js", - "lineno": 5444, + "lineno": 5449, "columnno": 0, "code": { - "id": "astnode100023144", + "id": "astnode100023178", "name": "ToggleAzimuthDirection", "type": "FunctionDeclaration", "paramnames": [ @@ -47024,14 +47096,14 @@ "comment": "", "meta": { "range": [ - 242478, - 242493 + 242877, + 242892 ], "filename": "astronomy.js", - "lineno": 5445, + "lineno": 5450, "columnno": 4, "code": { - "id": "astnode100023149", + "id": "astnode100023183", "name": "az", "type": "BinaryExpression", "funcscope": "ToggleAzimuthDirection", @@ -47050,14 +47122,14 @@ "comment": "", "meta": { "range": [ - 242524, - 242535 + 242923, + 242934 ], "filename": "astronomy.js", - "lineno": 5447, + "lineno": 5452, "columnno": 8, "code": { - "id": "astnode100023159", + "id": "astnode100023193", "name": "az", "type": "Literal", "funcscope": "ToggleAzimuthDirection", @@ -47076,14 +47148,14 @@ "comment": "", "meta": { "range": [ - 242568, - 242579 + 242967, + 242978 ], "filename": "astronomy.js", - "lineno": 5449, + "lineno": 5454, "columnno": 8, "code": { - "id": "astnode100023167", + "id": "astnode100023201", "name": "az", "type": "Literal", "funcscope": "ToggleAzimuthDirection", @@ -47102,14 +47174,14 @@ "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": [ - 244059, - 244280 + 244458, + 244679 ], "filename": "astronomy.js", - "lineno": 5483, + "lineno": 5488, "columnno": 0, "code": { - "id": "astnode100023172", + "id": "astnode100023206", "name": "HorizonFromVector", "type": "FunctionDeclaration", "paramnames": [ @@ -47169,14 +47241,14 @@ "comment": "", "meta": { "range": [ - 244118, - 244151 + 244517, + 244550 ], "filename": "astronomy.js", - "lineno": 5484, + "lineno": 5489, "columnno": 10, "code": { - "id": "astnode100023178", + "id": "astnode100023212", "name": "sphere", "type": "CallExpression", "value": "" @@ -47194,14 +47266,14 @@ "comment": "", "meta": { "range": [ - 244157, - 244204 + 244556, + 244603 ], "filename": "astronomy.js", - "lineno": 5485, + "lineno": 5490, "columnno": 4, "code": { - "id": "astnode100023184", + "id": "astnode100023218", "name": "sphere.lon", "type": "CallExpression", "funcscope": "HorizonFromVector", @@ -47220,14 +47292,14 @@ "comment": "", "meta": { "range": [ - 244210, - 244258 + 244609, + 244657 ], "filename": "astronomy.js", - "lineno": 5486, + "lineno": 5491, "columnno": 4, "code": { - "id": "astnode100023194", + "id": "astnode100023228", "name": "sphere.lat", "type": "CallExpression", "funcscope": "HorizonFromVector", @@ -47246,14 +47318,14 @@ "comment": "", "meta": { "range": [ - 244281, - 244326 + 244680, + 244725 ], "filename": "astronomy.js", - "lineno": 5489, + "lineno": 5494, "columnno": 0, "code": { - "id": "astnode100023207", + "id": "astnode100023241", "name": "exports.HorizonFromVector", "type": "Identifier", "value": "HorizonFromVector", @@ -47270,14 +47342,14 @@ "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": [ - 245317, - 245725 + 245716, + 246124 ], "filename": "astronomy.js", - "lineno": 5511, + "lineno": 5516, "columnno": 0, "code": { - "id": "astnode100023212", + "id": "astnode100023246", "name": "VectorFromHorizon", "type": "FunctionDeclaration", "paramnames": [ @@ -47348,14 +47420,14 @@ "comment": "", "meta": { "range": [ - 245466, - 245506 + 245865, + 245905 ], "filename": "astronomy.js", - "lineno": 5513, + "lineno": 5518, "columnno": 10, "code": { - "id": "astnode100023219", + "id": "astnode100023253", "name": "lon", "type": "CallExpression", "value": "" @@ -47373,14 +47445,14 @@ "comment": "", "meta": { "range": [ - 245560, - 245620 + 245959, + 246019 ], "filename": "astronomy.js", - "lineno": 5515, + "lineno": 5520, "columnno": 10, "code": { - "id": "astnode100023227", + "id": "astnode100023261", "name": "lat", "type": "BinaryExpression", "value": "" @@ -47398,14 +47470,14 @@ "comment": "", "meta": { "range": [ - 245632, - 245678 + 246031, + 246077 ], "filename": "astronomy.js", - "lineno": 5516, + "lineno": 5521, "columnno": 10, "code": { - "id": "astnode100023240", + "id": "astnode100023274", "name": "xsphere", "type": "NewExpression", "value": "" @@ -47423,14 +47495,14 @@ "comment": "", "meta": { "range": [ - 245726, - 245771 + 246125, + 246170 ], "filename": "astronomy.js", - "lineno": 5519, + "lineno": 5524, "columnno": 0, "code": { - "id": "astnode100023255", + "id": "astnode100023289", "name": "exports.VectorFromHorizon", "type": "Identifier", "value": "VectorFromHorizon", @@ -47447,14 +47519,14 @@ "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": [ - 246661, - 248256 + 247060, + 248655 ], "filename": "astronomy.js", - "lineno": 5539, + "lineno": 5544, "columnno": 0, "code": { - "id": "astnode100023260", + "id": "astnode100023294", "name": "Refraction", "type": "FunctionDeclaration", "paramnames": [ @@ -47514,14 +47586,14 @@ "comment": "", "meta": { "range": [ - 246713, - 246717 + 247112, + 247116 ], "filename": "astronomy.js", - "lineno": 5540, + "lineno": 5545, "columnno": 8, "code": { - "id": "astnode100023266", + "id": "astnode100023300", "name": "refr" } }, @@ -47537,14 +47609,14 @@ "comment": "", "meta": { "range": [ - 247546, - 247559 + 247945, + 247958 ], "filename": "astronomy.js", - "lineno": 5553, + "lineno": 5558, "columnno": 12, "code": { - "id": "astnode100023294", + "id": "astnode100023328", "name": "hd", "type": "Identifier", "value": "altitude" @@ -47562,14 +47634,14 @@ "comment": "", "meta": { "range": [ - 247596, - 247605 + 247995, + 248004 ], "filename": "astronomy.js", - "lineno": 5555, + "lineno": 5560, "columnno": 12, "code": { - "id": "astnode100023303", + "id": "astnode100023337", "name": "hd", "type": "UnaryExpression", "funcscope": "Refraction", @@ -47588,14 +47660,14 @@ "comment": "", "meta": { "range": [ - 247615, - 247691 + 248014, + 248090 ], "filename": "astronomy.js", - "lineno": 5556, + "lineno": 5561, "columnno": 8, "code": { - "id": "astnode100023308", + "id": "astnode100023342", "name": "refr", "type": "BinaryExpression", "funcscope": "Refraction", @@ -47614,40 +47686,40 @@ "comment": "", "meta": { "range": [ - 248085, - 248117 - ], - "filename": "astronomy.js", - "lineno": 5562, - "columnno": 12, - "code": { - "id": "astnode100023340", - "name": "refr", - "type": "BinaryExpression", - "funcscope": "Refraction", - "value": "", - "paramnames": [] - } - }, - "undocumented": true, - "name": "refr", - "longname": "Refraction~refr", - "kind": "member", - "memberof": "Refraction", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 248220, - 248230 + 248484, + 248516 ], "filename": "astronomy.js", "lineno": 5567, + "columnno": 12, + "code": { + "id": "astnode100023374", + "name": "refr", + "type": "BinaryExpression", + "funcscope": "Refraction", + "value": "", + "paramnames": [] + } + }, + "undocumented": true, + "name": "refr", + "longname": "Refraction~refr", + "kind": "member", + "memberof": "Refraction", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 248619, + 248629 + ], + "filename": "astronomy.js", + "lineno": 5572, "columnno": 8, "code": { - "id": "astnode100023349", + "id": "astnode100023383", "name": "refr", "type": "Literal", "funcscope": "Refraction", @@ -47666,14 +47738,14 @@ "comment": "", "meta": { "range": [ - 248257, - 248288 + 248656, + 248687 ], "filename": "astronomy.js", - "lineno": 5571, + "lineno": 5576, "columnno": 0, "code": { - "id": "astnode100023355", + "id": "astnode100023389", "name": "exports.Refraction", "type": "Identifier", "value": "Refraction", @@ -47690,14 +47762,14 @@ "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": [ - 249286, - 249879 + 249685, + 250278 ], "filename": "astronomy.js", - "lineno": 5594, + "lineno": 5599, "columnno": 0, "code": { - "id": "astnode100023360", + "id": "astnode100023394", "name": "InverseRefraction", "type": "FunctionDeclaration", "paramnames": [ @@ -47757,14 +47829,14 @@ "comment": "", "meta": { "range": [ - 249564, - 249628 + 249963, + 250027 ], "filename": "astronomy.js", - "lineno": 5598, + "lineno": 5603, "columnno": 8, "code": { - "id": "astnode100023378", + "id": "astnode100023412", "name": "altitude", "type": "BinaryExpression", "value": "" @@ -47782,14 +47854,14 @@ "comment": "", "meta": { "range": [ - 249693, - 249761 + 250092, + 250160 ], "filename": "astronomy.js", - "lineno": 5601, + "lineno": 5606, "columnno": 12, "code": { - "id": "astnode100023389", + "id": "astnode100023423", "name": "diff", "type": "BinaryExpression", "value": "" @@ -47807,14 +47879,14 @@ "comment": "", "meta": { "range": [ - 249854, - 249870 + 250253, + 250269 ], "filename": "astronomy.js", - "lineno": 5604, + "lineno": 5609, "columnno": 8, "code": { - "id": "astnode100023412", + "id": "astnode100023446", "name": "altitude", "type": "Identifier", "funcscope": "InverseRefraction", @@ -47833,14 +47905,14 @@ "comment": "", "meta": { "range": [ - 249880, - 249925 + 250279, + 250324 ], "filename": "astronomy.js", - "lineno": 5607, + "lineno": 5612, "columnno": 0, "code": { - "id": "astnode100023416", + "id": "astnode100023450", "name": "exports.InverseRefraction", "type": "Identifier", "value": "InverseRefraction", @@ -47857,14 +47929,14 @@ "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": [ - 250403, - 250764 + 250802, + 251163 ], "filename": "astronomy.js", - "lineno": 5623, + "lineno": 5628, "columnno": 0, "code": { - "id": "astnode100023421", + "id": "astnode100023455", "name": "RotateVector", "type": "FunctionDeclaration", "paramnames": [ @@ -47920,14 +47992,14 @@ "comment": "", "meta": { "range": [ - 250765, - 250800 + 251164, + 251199 ], "filename": "astronomy.js", - "lineno": 5626, + "lineno": 5631, "columnno": 0, "code": { - "id": "astnode100023538", + "id": "astnode100023572", "name": "exports.RotateVector", "type": "Identifier", "value": "RotateVector", @@ -47944,14 +48016,14 @@ "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": [ - 251383, - 252022 + 251782, + 252421 ], "filename": "astronomy.js", - "lineno": 5643, + "lineno": 5648, "columnno": 0, "code": { - "id": "astnode100023543", + "id": "astnode100023577", "name": "RotateState", "type": "FunctionDeclaration", "paramnames": [ @@ -48007,14 +48079,14 @@ "comment": "", "meta": { "range": [ - 252023, - 252056 + 252422, + 252455 ], "filename": "astronomy.js", - "lineno": 5646, + "lineno": 5651, "columnno": 0, "code": { - "id": "astnode100023765", + "id": "astnode100023799", "name": "exports.RotateState", "type": "Identifier", "value": "RotateState", @@ -48031,14 +48103,14 @@ "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": [ - 252499, - 252809 + 252898, + 253208 ], "filename": "astronomy.js", - "lineno": 5658, + "lineno": 5663, "columnno": 0, "code": { - "id": "astnode100023770", + "id": "astnode100023804", "name": "Rotation_EQJ_ECL", "type": "FunctionDeclaration", "paramnames": [] @@ -48076,14 +48148,14 @@ "comment": "", "meta": { "range": [ - 252622, - 252644 + 253021, + 253043 ], "filename": "astronomy.js", - "lineno": 5660, + "lineno": 5665, "columnno": 10, "code": { - "id": "astnode100023774", + "id": "astnode100023808", "name": "c", "type": "Literal", "value": 0.9174821430670688 @@ -48101,14 +48173,14 @@ "comment": "", "meta": { "range": [ - 252670, - 252692 + 253069, + 253091 ], "filename": "astronomy.js", - "lineno": 5661, + "lineno": 5666, "columnno": 10, "code": { - "id": "astnode100023778", + "id": "astnode100023812", "name": "s", "type": "Literal", "value": 0.3977769691083922 @@ -48126,14 +48198,14 @@ "comment": "", "meta": { "range": [ - 252810, - 252853 + 253209, + 253252 ], "filename": "astronomy.js", - "lineno": 5668, + "lineno": 5673, "columnno": 0, "code": { - "id": "astnode100023802", + "id": "astnode100023836", "name": "exports.Rotation_EQJ_ECL", "type": "Identifier", "value": "Rotation_EQJ_ECL", @@ -48150,14 +48222,14 @@ "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": [ - 253296, - 253606 + 253695, + 254005 ], "filename": "astronomy.js", - "lineno": 5680, + "lineno": 5685, "columnno": 0, "code": { - "id": "astnode100023807", + "id": "astnode100023841", "name": "Rotation_ECL_EQJ", "type": "FunctionDeclaration", "paramnames": [] @@ -48195,14 +48267,14 @@ "comment": "", "meta": { "range": [ - 253419, - 253441 + 253818, + 253840 ], "filename": "astronomy.js", - "lineno": 5682, + "lineno": 5687, "columnno": 10, "code": { - "id": "astnode100023811", + "id": "astnode100023845", "name": "c", "type": "Literal", "value": 0.9174821430670688 @@ -48220,14 +48292,14 @@ "comment": "", "meta": { "range": [ - 253467, - 253489 + 253866, + 253888 ], "filename": "astronomy.js", - "lineno": 5683, + "lineno": 5688, "columnno": 10, "code": { - "id": "astnode100023815", + "id": "astnode100023849", "name": "s", "type": "Literal", "value": 0.3977769691083922 @@ -48245,14 +48317,14 @@ "comment": "", "meta": { "range": [ - 253607, - 253650 + 254006, + 254049 ], "filename": "astronomy.js", - "lineno": 5690, + "lineno": 5695, "columnno": 0, "code": { - "id": "astnode100023839", + "id": "astnode100023873", "name": "exports.Rotation_ECL_EQJ", "type": "Identifier", "value": "Rotation_ECL_EQJ", @@ -48269,14 +48341,14 @@ "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": [ - 254245, - 254475 + 254644, + 254874 ], "filename": "astronomy.js", - "lineno": 5705, + "lineno": 5710, "columnno": 0, "code": { - "id": "astnode100023844", + "id": "astnode100023878", "name": "Rotation_EQJ_EQD", "type": "FunctionDeclaration", "paramnames": [ @@ -48327,14 +48399,14 @@ "comment": "", "meta": { "range": [ - 254283, - 254304 + 254682, + 254703 ], "filename": "astronomy.js", - "lineno": 5706, + "lineno": 5711, "columnno": 4, "code": { - "id": "astnode100023849", + "id": "astnode100023883", "name": "time", "type": "CallExpression", "funcscope": "Rotation_EQJ_EQD", @@ -48353,14 +48425,14 @@ "comment": "", "meta": { "range": [ - 254316, - 254370 + 254715, + 254769 ], "filename": "astronomy.js", - "lineno": 5707, + "lineno": 5712, "columnno": 10, "code": { - "id": "astnode100023855", + "id": "astnode100023889", "name": "prec", "type": "CallExpression", "value": "" @@ -48378,14 +48450,14 @@ "comment": "", "meta": { "range": [ - 254382, - 254433 + 254781, + 254832 ], "filename": "astronomy.js", - "lineno": 5708, + "lineno": 5713, "columnno": 10, "code": { - "id": "astnode100023864", + "id": "astnode100023898", "name": "nut", "type": "CallExpression", "value": "" @@ -48403,14 +48475,14 @@ "comment": "", "meta": { "range": [ - 254476, - 254519 + 254875, + 254918 ], "filename": "astronomy.js", - "lineno": 5711, + "lineno": 5716, "columnno": 0, "code": { - "id": "astnode100023878", + "id": "astnode100023912", "name": "exports.Rotation_EQJ_EQD", "type": "Identifier", "value": "Rotation_EQJ_EQD", @@ -48427,14 +48499,14 @@ "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": [ - 255114, - 255344 + 255513, + 255743 ], "filename": "astronomy.js", - "lineno": 5726, + "lineno": 5731, "columnno": 0, "code": { - "id": "astnode100023883", + "id": "astnode100023917", "name": "Rotation_EQD_EQJ", "type": "FunctionDeclaration", "paramnames": [ @@ -48485,14 +48557,14 @@ "comment": "", "meta": { "range": [ - 255152, - 255173 + 255551, + 255572 ], "filename": "astronomy.js", - "lineno": 5727, + "lineno": 5732, "columnno": 4, "code": { - "id": "astnode100023888", + "id": "astnode100023922", "name": "time", "type": "CallExpression", "funcscope": "Rotation_EQD_EQJ", @@ -48511,14 +48583,14 @@ "comment": "", "meta": { "range": [ - 255185, - 255236 + 255584, + 255635 ], "filename": "astronomy.js", - "lineno": 5728, + "lineno": 5733, "columnno": 10, "code": { - "id": "astnode100023894", + "id": "astnode100023928", "name": "nut", "type": "CallExpression", "value": "" @@ -48536,14 +48608,14 @@ "comment": "", "meta": { "range": [ - 255248, - 255302 + 255647, + 255701 ], "filename": "astronomy.js", - "lineno": 5729, + "lineno": 5734, "columnno": 10, "code": { - "id": "astnode100023903", + "id": "astnode100023937", "name": "prec", "type": "CallExpression", "value": "" @@ -48561,14 +48633,14 @@ "comment": "", "meta": { "range": [ - 255345, - 255388 + 255744, + 255787 ], "filename": "astronomy.js", - "lineno": 5732, + "lineno": 5737, "columnno": 0, "code": { - "id": "astnode100023917", + "id": "astnode100023951", "name": "exports.Rotation_EQD_EQJ", "type": "Identifier", "value": "Rotation_EQD_EQJ", @@ -48585,14 +48657,14 @@ "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": [ - 256448, - 257243 + 256847, + 257642 ], "filename": "astronomy.js", - "lineno": 5757, + "lineno": 5762, "columnno": 0, "code": { - "id": "astnode100023922", + "id": "astnode100023956", "name": "Rotation_EQD_HOR", "type": "FunctionDeclaration", "paramnames": [ @@ -48662,14 +48734,14 @@ "comment": "", "meta": { "range": [ - 256496, - 256517 + 256895, + 256916 ], "filename": "astronomy.js", - "lineno": 5758, + "lineno": 5763, "columnno": 4, "code": { - "id": "astnode100023928", + "id": "astnode100023962", "name": "time", "type": "CallExpression", "funcscope": "Rotation_EQD_HOR", @@ -48688,14 +48760,14 @@ "comment": "", "meta": { "range": [ - 256529, - 256583 + 256928, + 256982 ], "filename": "astronomy.js", - "lineno": 5759, + "lineno": 5764, "columnno": 10, "code": { - "id": "astnode100023934", + "id": "astnode100023968", "name": "sinlat", "type": "CallExpression", "value": "" @@ -48713,14 +48785,14 @@ "comment": "", "meta": { "range": [ - 256595, - 256649 + 256994, + 257048 ], "filename": "astronomy.js", - "lineno": 5760, + "lineno": 5765, "columnno": 10, "code": { - "id": "astnode100023948", + "id": "astnode100023982", "name": "coslat", "type": "CallExpression", "value": "" @@ -48738,14 +48810,14 @@ "comment": "", "meta": { "range": [ - 256661, - 256716 + 257060, + 257115 ], "filename": "astronomy.js", - "lineno": 5761, + "lineno": 5766, "columnno": 10, "code": { - "id": "astnode100023962", + "id": "astnode100023996", "name": "sinlon", "type": "CallExpression", "value": "" @@ -48763,14 +48835,14 @@ "comment": "", "meta": { "range": [ - 256728, - 256783 + 257127, + 257182 ], "filename": "astronomy.js", - "lineno": 5762, + "lineno": 5767, "columnno": 10, "code": { - "id": "astnode100023976", + "id": "astnode100024010", "name": "coslon", "type": "CallExpression", "value": "" @@ -48788,14 +48860,14 @@ "comment": "", "meta": { "range": [ - 256795, - 256843 + 257194, + 257242 ], "filename": "astronomy.js", - "lineno": 5763, + "lineno": 5768, "columnno": 10, "code": { - "id": "astnode100023990", + "id": "astnode100024024", "name": "uze", "type": "ArrayExpression", "value": "[\"\",\"\",\"sinlat\"]" @@ -48813,14 +48885,14 @@ "comment": "", "meta": { "range": [ - 256855, - 256905 + 257254, + 257304 ], "filename": "astronomy.js", - "lineno": 5764, + "lineno": 5769, "columnno": 10, "code": { - "id": "astnode100024001", + "id": "astnode100024035", "name": "une", "type": "ArrayExpression", "value": "[\"\",\"\",\"coslat\"]" @@ -48838,14 +48910,14 @@ "comment": "", "meta": { "range": [ - 256917, - 256943 + 257316, + 257342 ], "filename": "astronomy.js", - "lineno": 5765, + "lineno": 5770, "columnno": 10, "code": { - "id": "astnode100024014", + "id": "astnode100024048", "name": "uwe", "type": "ArrayExpression", "value": "[\"sinlon\",\"-coslon\",0]" @@ -48863,14 +48935,14 @@ "comment": "", "meta": { "range": [ - 256955, - 256993 + 257354, + 257392 ], "filename": "astronomy.js", - "lineno": 5766, + "lineno": 5771, "columnno": 10, "code": { - "id": "astnode100024022", + "id": "astnode100024056", "name": "spin_angle", "type": "BinaryExpression", "value": "" @@ -48888,14 +48960,14 @@ "comment": "", "meta": { "range": [ - 257005, - 257031 + 257404, + 257430 ], "filename": "astronomy.js", - "lineno": 5767, + "lineno": 5772, "columnno": 10, "code": { - "id": "astnode100024031", + "id": "astnode100024065", "name": "uz", "type": "CallExpression", "value": "" @@ -48913,14 +48985,14 @@ "comment": "", "meta": { "range": [ - 257043, - 257069 + 257442, + 257468 ], "filename": "astronomy.js", - "lineno": 5768, + "lineno": 5773, "columnno": 10, "code": { - "id": "astnode100024038", + "id": "astnode100024072", "name": "un", "type": "CallExpression", "value": "" @@ -48938,14 +49010,14 @@ "comment": "", "meta": { "range": [ - 257081, - 257107 + 257480, + 257506 ], "filename": "astronomy.js", - "lineno": 5769, + "lineno": 5774, "columnno": 10, "code": { - "id": "astnode100024045", + "id": "astnode100024079", "name": "uw", "type": "CallExpression", "value": "" @@ -48963,14 +49035,14 @@ "comment": "", "meta": { "range": [ - 257244, - 257287 + 257643, + 257686 ], "filename": "astronomy.js", - "lineno": 5776, + "lineno": 5781, "columnno": 0, "code": { - "id": "astnode100024086", + "id": "astnode100024120", "name": "exports.Rotation_EQD_HOR", "type": "Identifier", "value": "Rotation_EQD_HOR", @@ -48987,14 +49059,14 @@ "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": [ - 257991, - 258119 + 258390, + 258518 ], "filename": "astronomy.js", - "lineno": 5794, + "lineno": 5799, "columnno": 0, "code": { - "id": "astnode100024091", + "id": "astnode100024125", "name": "Rotation_HOR_EQD", "type": "FunctionDeclaration", "paramnames": [ @@ -49053,14 +49125,14 @@ "comment": "", "meta": { "range": [ - 258045, - 258083 + 258444, + 258482 ], "filename": "astronomy.js", - "lineno": 5795, + "lineno": 5800, "columnno": 10, "code": { - "id": "astnode100024097", + "id": "astnode100024131", "name": "rot", "type": "CallExpression", "value": "" @@ -49078,14 +49150,14 @@ "comment": "", "meta": { "range": [ - 258120, - 258163 + 258519, + 258562 ], "filename": "astronomy.js", - "lineno": 5798, + "lineno": 5803, "columnno": 0, "code": { - "id": "astnode100024108", + "id": "astnode100024142", "name": "exports.Rotation_HOR_EQD", "type": "Identifier", "value": "Rotation_HOR_EQD", @@ -49102,14 +49174,14 @@ "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": [ - 258839, - 259055 + 259238, + 259454 ], "filename": "astronomy.js", - "lineno": 5816, + "lineno": 5821, "columnno": 0, "code": { - "id": "astnode100024113", + "id": "astnode100024147", "name": "Rotation_HOR_EQJ", "type": "FunctionDeclaration", "paramnames": [ @@ -49170,14 +49242,14 @@ "comment": "", "meta": { "range": [ - 258887, - 258908 + 259286, + 259307 ], "filename": "astronomy.js", - "lineno": 5817, + "lineno": 5822, "columnno": 4, "code": { - "id": "astnode100024119", + "id": "astnode100024153", "name": "time", "type": "CallExpression", "funcscope": "Rotation_HOR_EQJ", @@ -49196,14 +49268,14 @@ "comment": "", "meta": { "range": [ - 258920, - 258962 + 259319, + 259361 ], "filename": "astronomy.js", - "lineno": 5818, + "lineno": 5823, "columnno": 10, "code": { - "id": "astnode100024125", + "id": "astnode100024159", "name": "hor_eqd", "type": "CallExpression", "value": "" @@ -49221,14 +49293,14 @@ "comment": "", "meta": { "range": [ - 258974, - 259006 + 259373, + 259405 ], "filename": "astronomy.js", - "lineno": 5819, + "lineno": 5824, "columnno": 10, "code": { - "id": "astnode100024132", + "id": "astnode100024166", "name": "eqd_eqj", "type": "CallExpression", "value": "" @@ -49246,14 +49318,14 @@ "comment": "", "meta": { "range": [ - 259056, - 259099 + 259455, + 259498 ], "filename": "astronomy.js", - "lineno": 5822, + "lineno": 5827, "columnno": 0, "code": { - "id": "astnode100024143", + "id": "astnode100024177", "name": "exports.Rotation_HOR_EQJ", "type": "Identifier", "value": "Rotation_HOR_EQJ", @@ -49270,14 +49342,14 @@ "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": [ - 260142, - 260270 + 260541, + 260669 ], "filename": "astronomy.js", - "lineno": 5847, + "lineno": 5852, "columnno": 0, "code": { - "id": "astnode100024148", + "id": "astnode100024182", "name": "Rotation_EQJ_HOR", "type": "FunctionDeclaration", "paramnames": [ @@ -49331,14 +49403,14 @@ "comment": "", "meta": { "range": [ - 260196, - 260234 + 260595, + 260633 ], "filename": "astronomy.js", - "lineno": 5848, + "lineno": 5853, "columnno": 10, "code": { - "id": "astnode100024154", + "id": "astnode100024188", "name": "rot", "type": "CallExpression", "value": "" @@ -49356,14 +49428,14 @@ "comment": "", "meta": { "range": [ - 260271, - 260314 + 260670, + 260713 ], "filename": "astronomy.js", - "lineno": 5851, + "lineno": 5856, "columnno": 0, "code": { - "id": "astnode100024165", + "id": "astnode100024199", "name": "exports.Rotation_EQJ_HOR", "type": "Identifier", "value": "Rotation_EQJ_HOR", @@ -49380,14 +49452,14 @@ "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": [ - 260838, - 261003 + 261237, + 261402 ], "filename": "astronomy.js", - "lineno": 5866, + "lineno": 5871, "columnno": 0, "code": { - "id": "astnode100024170", + "id": "astnode100024204", "name": "Rotation_EQD_ECL", "type": "FunctionDeclaration", "paramnames": [ @@ -49437,14 +49509,14 @@ "comment": "", "meta": { "range": [ - 260882, - 260914 + 261281, + 261313 ], "filename": "astronomy.js", - "lineno": 5867, + "lineno": 5872, "columnno": 10, "code": { - "id": "astnode100024175", + "id": "astnode100024209", "name": "eqd_eqj", "type": "CallExpression", "value": "" @@ -49462,14 +49534,14 @@ "comment": "", "meta": { "range": [ - 260926, - 260954 + 261325, + 261353 ], "filename": "astronomy.js", - "lineno": 5868, + "lineno": 5873, "columnno": 10, "code": { - "id": "astnode100024181", + "id": "astnode100024215", "name": "eqj_ecl", "type": "CallExpression", "value": "" @@ -49487,14 +49559,14 @@ "comment": "", "meta": { "range": [ - 261004, - 261047 + 261403, + 261446 ], "filename": "astronomy.js", - "lineno": 5871, + "lineno": 5876, "columnno": 0, "code": { - "id": "astnode100024191", + "id": "astnode100024225", "name": "exports.Rotation_EQD_ECL", "type": "Identifier", "value": "Rotation_EQD_ECL", @@ -49511,14 +49583,14 @@ "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": [ - 261572, - 261680 + 261971, + 262079 ], "filename": "astronomy.js", - "lineno": 5886, + "lineno": 5891, "columnno": 0, "code": { - "id": "astnode100024196", + "id": "astnode100024230", "name": "Rotation_ECL_EQD", "type": "FunctionDeclaration", "paramnames": [ @@ -49567,14 +49639,14 @@ "comment": "", "meta": { "range": [ - 261616, - 261644 + 262015, + 262043 ], "filename": "astronomy.js", - "lineno": 5887, + "lineno": 5892, "columnno": 10, "code": { - "id": "astnode100024201", + "id": "astnode100024235", "name": "rot", "type": "CallExpression", "value": "" @@ -49592,14 +49664,14 @@ "comment": "", "meta": { "range": [ - 261681, - 261724 + 262080, + 262123 ], "filename": "astronomy.js", - "lineno": 5890, + "lineno": 5895, "columnno": 0, "code": { - "id": "astnode100024211", + "id": "astnode100024245", "name": "exports.Rotation_ECL_EQD", "type": "Identifier", "value": "Rotation_ECL_EQD", @@ -49616,14 +49688,14 @@ "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": [ - 262773, - 262989 + 263172, + 263388 ], "filename": "astronomy.js", - "lineno": 5915, + "lineno": 5920, "columnno": 0, "code": { - "id": "astnode100024216", + "id": "astnode100024250", "name": "Rotation_ECL_HOR", "type": "FunctionDeclaration", "paramnames": [ @@ -49684,14 +49756,14 @@ "comment": "", "meta": { "range": [ - 262821, - 262842 + 263220, + 263241 ], "filename": "astronomy.js", - "lineno": 5916, + "lineno": 5921, "columnno": 4, "code": { - "id": "astnode100024222", + "id": "astnode100024256", "name": "time", "type": "CallExpression", "funcscope": "Rotation_ECL_HOR", @@ -49710,14 +49782,14 @@ "comment": "", "meta": { "range": [ - 262854, - 262886 + 263253, + 263285 ], "filename": "astronomy.js", - "lineno": 5917, + "lineno": 5922, "columnno": 10, "code": { - "id": "astnode100024228", + "id": "astnode100024262", "name": "ecl_eqd", "type": "CallExpression", "value": "" @@ -49735,14 +49807,14 @@ "comment": "", "meta": { "range": [ - 262898, - 262940 + 263297, + 263339 ], "filename": "astronomy.js", - "lineno": 5918, + "lineno": 5923, "columnno": 10, "code": { - "id": "astnode100024234", + "id": "astnode100024268", "name": "eqd_hor", "type": "CallExpression", "value": "" @@ -49760,14 +49832,14 @@ "comment": "", "meta": { "range": [ - 262990, - 263033 + 263389, + 263432 ], "filename": "astronomy.js", - "lineno": 5921, + "lineno": 5926, "columnno": 0, "code": { - "id": "astnode100024246", + "id": "astnode100024280", "name": "exports.Rotation_ECL_HOR", "type": "Identifier", "value": "Rotation_ECL_HOR", @@ -49784,14 +49856,14 @@ "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": [ - 263616, - 263744 + 264015, + 264143 ], "filename": "astronomy.js", - "lineno": 5939, + "lineno": 5944, "columnno": 0, "code": { - "id": "astnode100024251", + "id": "astnode100024285", "name": "Rotation_HOR_ECL", "type": "FunctionDeclaration", "paramnames": [ @@ -49850,14 +49922,14 @@ "comment": "", "meta": { "range": [ - 263670, - 263708 + 264069, + 264107 ], "filename": "astronomy.js", - "lineno": 5940, + "lineno": 5945, "columnno": 10, "code": { - "id": "astnode100024257", + "id": "astnode100024291", "name": "rot", "type": "CallExpression", "value": "" @@ -49875,14 +49947,14 @@ "comment": "", "meta": { "range": [ - 263745, - 263788 + 264144, + 264187 ], "filename": "astronomy.js", - "lineno": 5943, + "lineno": 5948, "columnno": 0, "code": { - "id": "astnode100024268", + "id": "astnode100024302", "name": "exports.Rotation_HOR_ECL", "type": "Identifier", "value": "Rotation_HOR_ECL", @@ -49899,14 +49971,14 @@ "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": [ - 264225, - 264661 + 264624, + 265060 ], "filename": "astronomy.js", - "lineno": 5955, + "lineno": 5960, "columnno": 0, "code": { - "id": "astnode100024273", + "id": "astnode100024307", "name": "Rotation_EQJ_GAL", "type": "FunctionDeclaration", "paramnames": [] @@ -49940,14 +50012,14 @@ "comment": "", "meta": { "range": [ - 264662, - 264705 + 265061, + 265104 ], "filename": "astronomy.js", - "lineno": 5965, + "lineno": 5970, "columnno": 0, "code": { - "id": "astnode100024302", + "id": "astnode100024336", "name": "exports.Rotation_EQJ_GAL", "type": "Identifier", "value": "Rotation_EQJ_GAL", @@ -49964,14 +50036,14 @@ "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": [ - 265142, - 265578 + 265541, + 265977 ], "filename": "astronomy.js", - "lineno": 5977, + "lineno": 5982, "columnno": 0, "code": { - "id": "astnode100024307", + "id": "astnode100024341", "name": "Rotation_GAL_EQJ", "type": "FunctionDeclaration", "paramnames": [] @@ -50005,14 +50077,14 @@ "comment": "", "meta": { "range": [ - 265579, - 265622 + 265978, + 266021 ], "filename": "astronomy.js", - "lineno": 5987, + "lineno": 5992, "columnno": 0, "code": { - "id": "astnode100024336", + "id": "astnode100024370", "name": "exports.Rotation_GAL_EQJ", "type": "Identifier", "value": "Rotation_GAL_EQJ", @@ -50029,14 +50101,14 @@ "comment": "", "meta": { "range": [ - 265630, - 268766 + 266029, + 269165 ], "filename": "astronomy.js", - "lineno": 5988, + "lineno": 5993, "columnno": 6, "code": { - "id": "astnode100024342", + "id": "astnode100024376", "name": "ConstelNames", "type": "ArrayExpression", "value": "[\"[\\\"And\\\",\\\"Andromeda\\\"]\",\"[\\\"Ant\\\",\\\"Antila\\\"]\",\"[\\\"Aps\\\",\\\"Apus\\\"]\",\"[\\\"Aql\\\",\\\"Aquila\\\"]\",\"[\\\"Aqr\\\",\\\"Aquarius\\\"]\",\"[\\\"Ara\\\",\\\"Ara\\\"]\",\"[\\\"Ari\\\",\\\"Aries\\\"]\",\"[\\\"Aur\\\",\\\"Auriga\\\"]\",\"[\\\"Boo\\\",\\\"Bootes\\\"]\",\"[\\\"Cae\\\",\\\"Caelum\\\"]\",\"[\\\"Cam\\\",\\\"Camelopardis\\\"]\",\"[\\\"Cap\\\",\\\"Capricornus\\\"]\",\"[\\\"Car\\\",\\\"Carina\\\"]\",\"[\\\"Cas\\\",\\\"Cassiopeia\\\"]\",\"[\\\"Cen\\\",\\\"Centaurus\\\"]\",\"[\\\"Cep\\\",\\\"Cepheus\\\"]\",\"[\\\"Cet\\\",\\\"Cetus\\\"]\",\"[\\\"Cha\\\",\\\"Chamaeleon\\\"]\",\"[\\\"Cir\\\",\\\"Circinus\\\"]\",\"[\\\"CMa\\\",\\\"Canis Major\\\"]\",\"[\\\"CMi\\\",\\\"Canis Minor\\\"]\",\"[\\\"Cnc\\\",\\\"Cancer\\\"]\",\"[\\\"Col\\\",\\\"Columba\\\"]\",\"[\\\"Com\\\",\\\"Coma Berenices\\\"]\",\"[\\\"CrA\\\",\\\"Corona Australis\\\"]\",\"[\\\"CrB\\\",\\\"Corona Borealis\\\"]\",\"[\\\"Crt\\\",\\\"Crater\\\"]\",\"[\\\"Cru\\\",\\\"Crux\\\"]\",\"[\\\"Crv\\\",\\\"Corvus\\\"]\",\"[\\\"CVn\\\",\\\"Canes Venatici\\\"]\",\"[\\\"Cyg\\\",\\\"Cygnus\\\"]\",\"[\\\"Del\\\",\\\"Delphinus\\\"]\",\"[\\\"Dor\\\",\\\"Dorado\\\"]\",\"[\\\"Dra\\\",\\\"Draco\\\"]\",\"[\\\"Equ\\\",\\\"Equuleus\\\"]\",\"[\\\"Eri\\\",\\\"Eridanus\\\"]\",\"[\\\"For\\\",\\\"Fornax\\\"]\",\"[\\\"Gem\\\",\\\"Gemini\\\"]\",\"[\\\"Gru\\\",\\\"Grus\\\"]\",\"[\\\"Her\\\",\\\"Hercules\\\"]\",\"[\\\"Hor\\\",\\\"Horologium\\\"]\",\"[\\\"Hya\\\",\\\"Hydra\\\"]\",\"[\\\"Hyi\\\",\\\"Hydrus\\\"]\",\"[\\\"Ind\\\",\\\"Indus\\\"]\",\"[\\\"Lac\\\",\\\"Lacerta\\\"]\",\"[\\\"Leo\\\",\\\"Leo\\\"]\",\"[\\\"Lep\\\",\\\"Lepus\\\"]\",\"[\\\"Lib\\\",\\\"Libra\\\"]\",\"[\\\"LMi\\\",\\\"Leo Minor\\\"]\",\"[\\\"Lup\\\",\\\"Lupus\\\"]\",\"[\\\"Lyn\\\",\\\"Lynx\\\"]\",\"[\\\"Lyr\\\",\\\"Lyra\\\"]\",\"[\\\"Men\\\",\\\"Mensa\\\"]\",\"[\\\"Mic\\\",\\\"Microscopium\\\"]\",\"[\\\"Mon\\\",\\\"Monoceros\\\"]\",\"[\\\"Mus\\\",\\\"Musca\\\"]\",\"[\\\"Nor\\\",\\\"Norma\\\"]\",\"[\\\"Oct\\\",\\\"Octans\\\"]\",\"[\\\"Oph\\\",\\\"Ophiuchus\\\"]\",\"[\\\"Ori\\\",\\\"Orion\\\"]\",\"[\\\"Pav\\\",\\\"Pavo\\\"]\",\"[\\\"Peg\\\",\\\"Pegasus\\\"]\",\"[\\\"Per\\\",\\\"Perseus\\\"]\",\"[\\\"Phe\\\",\\\"Phoenix\\\"]\",\"[\\\"Pic\\\",\\\"Pictor\\\"]\",\"[\\\"PsA\\\",\\\"Pisces Austrinus\\\"]\",\"[\\\"Psc\\\",\\\"Pisces\\\"]\",\"[\\\"Pup\\\",\\\"Puppis\\\"]\",\"[\\\"Pyx\\\",\\\"Pyxis\\\"]\",\"[\\\"Ret\\\",\\\"Reticulum\\\"]\",\"[\\\"Scl\\\",\\\"Sculptor\\\"]\",\"[\\\"Sco\\\",\\\"Scorpius\\\"]\",\"[\\\"Sct\\\",\\\"Scutum\\\"]\",\"[\\\"Ser\\\",\\\"Serpens\\\"]\",\"[\\\"Sex\\\",\\\"Sextans\\\"]\",\"[\\\"Sge\\\",\\\"Sagitta\\\"]\",\"[\\\"Sgr\\\",\\\"Sagittarius\\\"]\",\"[\\\"Tau\\\",\\\"Taurus\\\"]\",\"[\\\"Tel\\\",\\\"Telescopium\\\"]\",\"[\\\"TrA\\\",\\\"Triangulum Australe\\\"]\",\"[\\\"Tri\\\",\\\"Triangulum\\\"]\",\"[\\\"Tuc\\\",\\\"Tucana\\\"]\",\"[\\\"UMa\\\",\\\"Ursa Major\\\"]\",\"[\\\"UMi\\\",\\\"Ursa Minor\\\"]\",\"[\\\"Vel\\\",\\\"Vela\\\"]\",\"[\\\"Vir\\\",\\\"Virgo\\\"]\",\"[\\\"Vol\\\",\\\"Volans\\\"]\",\"[\\\"Vul\\\",\\\"Vulpecula\\\"]\"]" @@ -50053,14 +50125,14 @@ "comment": "", "meta": { "range": [ - 268774, - 282847 + 269173, + 283246 ], "filename": "astronomy.js", - "lineno": 6165, + "lineno": 6170, "columnno": 6, "code": { - "id": "astnode100024610", + "id": "astnode100024644", "name": "ConstelBounds", "type": "ArrayExpression", "value": "[\"[83,0,8640,2112]\",\"[83,2880,5220,2076]\",\"[83,7560,8280,2068]\",\"[83,6480,7560,2064]\",\"[15,0,2880,2040]\",\"[10,3300,3840,1968]\",\"[15,0,1800,1920]\",\"[10,3840,5220,1920]\",\"[83,6300,6480,1920]\",\"[33,7260,7560,1920]\",\"[15,0,1263,1848]\",\"[10,4140,4890,1848]\",\"[83,5952,6300,1800]\",\"[15,7260,7440,1800]\",\"[10,2868,3300,1764]\",\"[33,3300,4080,1764]\",\"[83,4680,5952,1680]\",\"[13,1116,1230,1632]\",\"[33,7350,7440,1608]\",\"[33,4080,4320,1596]\",\"[15,0,120,1584]\",\"[83,5040,5640,1584]\",\"[15,8490,8640,1584]\",\"[33,4320,4860,1536]\",\"[33,4860,5190,1512]\",\"[15,8340,8490,1512]\",\"[10,2196,2520,1488]\",\"[33,7200,7350,1476]\",\"[15,7393.2,7416,1462]\",\"[10,2520,2868,1440]\",\"[82,2868,3030,1440]\",\"[33,7116,7200,1428]\",\"[15,7200,7393.2,1428]\",\"[15,8232,8340,1418]\",\"[13,0,876,1404]\",\"[33,6990,7116,1392]\",\"[13,612,687,1380]\",\"[13,876,1116,1368]\",\"[10,1116,1140,1368]\",\"[15,8034,8232,1350]\",\"[10,1800,2196,1344]\",\"[82,5052,5190,1332]\",\"[33,5190,6990,1332]\",\"[10,1140,1200,1320]\",\"[15,7968,8034,1320]\",\"[15,7416,7908,1316]\",\"[13,0,612,1296]\",\"[50,2196,2340,1296]\",\"[82,4350,4860,1272]\",\"[33,5490,5670,1272]\",\"[15,7908,7968,1266]\",\"[10,1200,1800,1260]\",\"[13,8232,8400,1260]\",\"[33,5670,6120,1236]\",\"[62,735,906,1212]\",\"[33,6120,6564,1212]\",\"[13,0,492,1200]\",\"[62,492,600,1200]\",\"[50,2340,2448,1200]\",\"[13,8400,8640,1200]\",\"[82,4860,5052,1164]\",\"[13,0,402,1152]\",\"[13,8490,8640,1152]\",\"[39,6543,6564,1140]\",\"[33,6564,6870,1140]\",\"[30,6870,6900,1140]\",\"[62,600,735,1128]\",\"[82,3030,3300,1128]\",\"[13,60,312,1104]\",\"[82,4320,4350,1080]\",\"[50,2448,2652,1068]\",\"[30,7887,7908,1056]\",\"[30,7875,7887,1050]\",\"[30,6900,6984,1044]\",\"[82,3300,3660,1008]\",\"[82,3660,3882,960]\",\"[8,5556,5670,960]\",\"[39,5670,5880,960]\",\"[50,3330,3450,954]\",\"[0,0,906,882]\",\"[62,906,924,882]\",\"[51,6969,6984,876]\",\"[62,1620,1689,864]\",\"[30,7824,7875,864]\",\"[44,7875,7920,864]\",\"[7,2352,2652,852]\",\"[50,2652,2790,852]\",\"[0,0,720,840]\",\"[44,7920,8214,840]\",\"[44,8214,8232,828]\",\"[0,8232,8460,828]\",\"[62,924,978,816]\",\"[82,3882,3960,816]\",\"[29,4320,4440,816]\",\"[50,2790,3330,804]\",\"[48,3330,3558,804]\",\"[0,258,507,792]\",\"[8,5466,5556,792]\",\"[0,8460,8550,770]\",\"[29,4440,4770,768]\",\"[0,8550,8640,752]\",\"[29,5025,5052,738]\",\"[80,870,978,736]\",\"[62,978,1620,736]\",\"[7,1620,1710,720]\",\"[51,6543,6969,720]\",\"[82,3960,4320,696]\",\"[30,7080,7530,696]\",\"[7,1710,2118,684]\",\"[48,3558,3780,684]\",\"[29,4770,5025,684]\",\"[0,0,24,672]\",\"[80,507,600,672]\",\"[7,2118,2352,672]\",\"[37,2838,2880,672]\",\"[30,7530,7824,672]\",\"[30,6933,7080,660]\",\"[80,690,870,654]\",\"[25,5820,5880,648]\",\"[8,5430,5466,624]\",\"[25,5466,5820,624]\",\"[51,6612,6792,624]\",\"[48,3870,3960,612]\",\"[51,6792,6933,612]\",\"[80,600,690,600]\",\"[66,258,306,570]\",\"[48,3780,3870,564]\",\"[87,7650,7710,564]\",\"[77,2052,2118,548]\",\"[0,24,51,528]\",\"[73,5730,5772,528]\",\"[37,2118,2238,516]\",\"[87,7140,7290,510]\",\"[87,6792,6930,506]\",\"[0,51,306,504]\",\"[87,7290,7404,492]\",\"[37,2811,2838,480]\",\"[87,7404,7650,468]\",\"[87,6930,7140,460]\",\"[6,1182,1212,456]\",\"[75,6792,6840,444]\",\"[59,2052,2076,432]\",\"[37,2238,2271,420]\",\"[75,6840,7140,388]\",\"[77,1788,1920,384]\",\"[39,5730,5790,384]\",\"[75,7140,7290,378]\",\"[77,1662,1788,372]\",\"[77,1920,2016,372]\",\"[23,4620,4860,360]\",\"[39,6210,6570,344]\",\"[23,4272,4620,336]\",\"[37,2700,2811,324]\",\"[39,6030,6210,308]\",\"[61,0,51,300]\",\"[77,2016,2076,300]\",\"[37,2520,2700,300]\",\"[61,7602,7680,300]\",\"[37,2271,2496,288]\",\"[39,6570,6792,288]\",\"[31,7515,7578,284]\",\"[61,7578,7602,284]\",\"[45,4146,4272,264]\",\"[59,2247,2271,240]\",\"[37,2496,2520,240]\",\"[21,2811,2853,240]\",\"[61,8580,8640,240]\",\"[6,600,1182,238]\",\"[31,7251,7308,204]\",\"[8,4860,5430,192]\",\"[61,8190,8580,180]\",\"[21,2853,3330,168]\",\"[45,3330,3870,168]\",\"[58,6570,6718.4,150]\",\"[3,6718.4,6792,150]\",\"[31,7500,7515,144]\",\"[20,2520,2526,132]\",\"[73,6570,6633,108]\",\"[39,5790,6030,96]\",\"[58,6570,6633,72]\",\"[61,7728,7800,66]\",\"[66,0,720,48]\",\"[73,6690,6792,48]\",\"[31,7308,7500,48]\",\"[34,7500,7680,48]\",\"[61,7680,7728,48]\",\"[61,7920,8190,48]\",\"[61,7800,7920,42]\",\"[20,2526,2592,36]\",\"[77,1290,1662,0]\",\"[59,1662,1680,0]\",\"[20,2592,2910,0]\",\"[85,5280,5430,0]\",\"[58,6420,6570,0]\",\"[16,954,1182,-42]\",\"[77,1182,1290,-42]\",\"[73,5430,5856,-78]\",\"[59,1680,1830,-96]\",\"[59,2100,2247,-96]\",\"[73,6420,6468,-96]\",\"[73,6570,6690,-96]\",\"[3,6690,6792,-96]\",\"[66,8190,8580,-96]\",\"[45,3870,4146,-144]\",\"[85,4146,4260,-144]\",\"[66,0,120,-168]\",\"[66,8580,8640,-168]\",\"[85,5130,5280,-192]\",\"[58,5730,5856,-192]\",\"[3,7200,7392,-216]\",\"[4,7680,7872,-216]\",\"[58,6180,6468,-240]\",\"[54,2100,2910,-264]\",\"[35,1770,1830,-264]\",\"[59,1830,2100,-264]\",\"[41,2910,3012,-264]\",\"[74,3450,3870,-264]\",\"[85,4260,4620,-264]\",\"[58,6330,6360,-280]\",\"[3,6792,7200,-288.8]\",\"[35,1740,1770,-348]\",\"[4,7392,7680,-360]\",\"[73,6180,6570,-384]\",\"[72,6570,6792,-384]\",\"[41,3012,3090,-408]\",\"[58,5856,5895,-438]\",\"[41,3090,3270,-456]\",\"[26,3870,3900,-456]\",\"[71,5856,5895,-462]\",\"[47,5640,5730,-480]\",\"[28,4530,4620,-528]\",\"[85,4620,5130,-528]\",\"[41,3270,3510,-576]\",\"[16,600,954,-585.2]\",\"[35,954,1350,-585.2]\",\"[26,3900,4260,-588]\",\"[28,4260,4530,-588]\",\"[47,5130,5370,-588]\",\"[58,5856,6030,-590]\",\"[16,0,600,-612]\",\"[11,7680,7872,-612]\",\"[4,7872,8580,-612]\",\"[16,8580,8640,-612]\",\"[41,3510,3690,-636]\",\"[35,1692,1740,-654]\",\"[46,1740,2202,-654]\",\"[11,7200,7680,-672]\",\"[41,3690,3810,-700]\",\"[41,4530,5370,-708]\",\"[47,5370,5640,-708]\",\"[71,5640,5760,-708]\",\"[35,1650,1692,-720]\",\"[58,6030,6336,-720]\",\"[76,6336,6420,-720]\",\"[41,3810,3900,-748]\",\"[19,2202,2652,-792]\",\"[41,4410,4530,-792]\",\"[41,3900,4410,-840]\",\"[36,1260,1350,-864]\",\"[68,3012,3372,-882]\",\"[35,1536,1650,-888]\",\"[76,6420,6900,-888]\",\"[65,7680,8280,-888]\",\"[70,8280,8400,-888]\",\"[36,1080,1260,-950]\",\"[1,3372,3960,-954]\",\"[70,0,600,-960]\",\"[36,600,1080,-960]\",\"[35,1392,1536,-960]\",\"[70,8400,8640,-960]\",\"[14,5100,5370,-1008]\",\"[49,5640,5760,-1008]\",\"[71,5760,5911.5,-1008]\",\"[9,1740,1800,-1032]\",\"[22,1800,2370,-1032]\",\"[67,2880,3012,-1032]\",\"[35,1230,1392,-1056]\",\"[71,5911.5,6420,-1092]\",\"[24,6420,6900,-1092]\",\"[76,6900,7320,-1092]\",\"[53,7320,7680,-1092]\",\"[35,1080,1230,-1104]\",\"[9,1620,1740,-1116]\",\"[49,5520,5640,-1152]\",\"[63,0,840,-1156]\",\"[35,960,1080,-1176]\",\"[40,1470,1536,-1176]\",\"[9,1536,1620,-1176]\",\"[38,7680,7920,-1200]\",\"[67,2160,2880,-1218]\",\"[84,2880,2940,-1218]\",\"[35,870,960,-1224]\",\"[40,1380,1470,-1224]\",\"[63,0,660,-1236]\",\"[12,2160,2220,-1260]\",\"[84,2940,3042,-1272]\",\"[40,1260,1380,-1276]\",\"[32,1380,1440,-1276]\",\"[63,0,570,-1284]\",\"[35,780,870,-1296]\",\"[64,1620,1800,-1296]\",\"[49,5418,5520,-1296]\",\"[84,3042,3180,-1308]\",\"[12,2220,2340,-1320]\",\"[14,4260,4620,-1320]\",\"[49,5100,5418,-1320]\",\"[56,5418,5520,-1320]\",\"[32,1440,1560,-1356]\",\"[84,3180,3960,-1356]\",\"[14,3960,4050,-1356]\",\"[5,6300,6480,-1368]\",\"[78,6480,7320,-1368]\",\"[38,7920,8400,-1368]\",\"[40,1152,1260,-1380]\",\"[64,1800,1980,-1380]\",\"[12,2340,2460,-1392]\",\"[63,0,480,-1404]\",\"[35,480,780,-1404]\",\"[63,8400,8640,-1404]\",\"[32,1560,1650,-1416]\",\"[56,5520,5911.5,-1440]\",\"[43,7320,7680,-1440]\",\"[64,1980,2160,-1464]\",\"[18,5460,5520,-1464]\",\"[5,5911.5,5970,-1464]\",\"[18,5370,5460,-1526]\",\"[5,5970,6030,-1526]\",\"[64,2160,2460,-1536]\",\"[12,2460,3252,-1536]\",\"[14,4050,4260,-1536]\",\"[27,4260,4620,-1536]\",\"[14,4620,5232,-1536]\",\"[18,4860,4920,-1560]\",\"[5,6030,6060,-1560]\",\"[40,780,1152,-1620]\",\"[69,1152,1650,-1620]\",\"[18,5310,5370,-1620]\",\"[5,6060,6300,-1620]\",\"[60,6300,6480,-1620]\",\"[81,7920,8400,-1620]\",\"[32,1650,2370,-1680]\",\"[18,4920,5310,-1680]\",\"[79,5310,6120,-1680]\",\"[81,0,480,-1800]\",\"[42,1260,1650,-1800]\",\"[86,2370,3252,-1800]\",\"[12,3252,4050,-1800]\",\"[55,4050,4920,-1800]\",\"[60,6480,7680,-1800]\",\"[43,7680,8400,-1800]\",\"[81,8400,8640,-1800]\",\"[81,270,480,-1824]\",\"[42,0,1260,-1980]\",\"[17,2760,4920,-1980]\",\"[2,4920,6480,-1980]\",\"[52,1260,2760,-2040]\",\"[57,0,8640,-2160]\"]" @@ -50077,14 +50149,14 @@ "comment": "", "meta": { "range": [ - 282853, - 282863 + 283252, + 283262 ], "filename": "astronomy.js", - "lineno": 6880, + "lineno": 6885, "columnno": 4, "code": { - "id": "astnode100026562", + "id": "astnode100026596", "name": "ConstelRot" } }, @@ -50099,14 +50171,14 @@ "comment": "", "meta": { "range": [ - 282869, - 282878 + 283268, + 283277 ], "filename": "astronomy.js", - "lineno": 6881, + "lineno": 6886, "columnno": 4, "code": { - "id": "astnode100026565", + "id": "astnode100026599", "name": "Epoch2000" } }, @@ -50121,14 +50193,14 @@ "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": [ - 283322, - 283522 + 283721, + 283921 ], "filename": "astronomy.js", - "lineno": 6897, + "lineno": 6902, "columnno": 0, "code": { - "id": "astnode100026567", + "id": "astnode100026601", "name": "ConstellationInfo", "type": "ClassDeclaration", "paramnames": [ @@ -50195,14 +50267,14 @@ "comment": "", "meta": { "range": [ - 283352, - 283520 + 283751, + 283919 ], "filename": "astronomy.js", - "lineno": 6898, + "lineno": 6903, "columnno": 4, "code": { - "id": "astnode100026570", + "id": "astnode100026604", "name": "ConstellationInfo", "type": "MethodDefinition", "paramnames": [ @@ -50227,14 +50299,14 @@ "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": [ - 283322, - 283522 + 283721, + 283921 ], "filename": "astronomy.js", - "lineno": 6897, + "lineno": 6902, "columnno": 0, "code": { - "id": "astnode100026567", + "id": "astnode100026601", "name": "ConstellationInfo", "type": "ClassDeclaration", "paramnames": [ @@ -50300,14 +50372,14 @@ "comment": "", "meta": { "range": [ - 283405, - 283425 + 283804, + 283824 ], "filename": "astronomy.js", - "lineno": 6899, + "lineno": 6904, "columnno": 8, "code": { - "id": "astnode100026579", + "id": "astnode100026613", "name": "this.symbol", "type": "Identifier", "value": "symbol", @@ -50325,14 +50397,14 @@ "comment": "", "meta": { "range": [ - 283435, - 283451 + 283834, + 283850 ], "filename": "astronomy.js", - "lineno": 6900, + "lineno": 6905, "columnno": 8, "code": { - "id": "astnode100026585", + "id": "astnode100026619", "name": "this.name", "type": "Identifier", "value": "name", @@ -50350,14 +50422,14 @@ "comment": "", "meta": { "range": [ - 283461, - 283481 + 283860, + 283880 ], "filename": "astronomy.js", - "lineno": 6901, + "lineno": 6906, "columnno": 8, "code": { - "id": "astnode100026591", + "id": "astnode100026625", "name": "this.ra1875", "type": "Identifier", "value": "ra1875", @@ -50375,14 +50447,14 @@ "comment": "", "meta": { "range": [ - 283491, - 283513 + 283890, + 283912 ], "filename": "astronomy.js", - "lineno": 6902, + "lineno": 6907, "columnno": 8, "code": { - "id": "astnode100026597", + "id": "astnode100026631", "name": "this.dec1875", "type": "Identifier", "value": "dec1875", @@ -50400,14 +50472,14 @@ "comment": "", "meta": { "range": [ - 283523, - 283568 + 283922, + 283967 ], "filename": "astronomy.js", - "lineno": 6905, + "lineno": 6910, "columnno": 0, "code": { - "id": "astnode100026603", + "id": "astnode100026637", "name": "exports.ConstellationInfo", "type": "Identifier", "value": "ConstellationInfo", @@ -50424,14 +50496,14 @@ "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": [ - 284251, - 286439 + 284650, + 286838 ], "filename": "astronomy.js", - "lineno": 6923, + "lineno": 6928, "columnno": 0, "code": { - "id": "astnode100026608", + "id": "astnode100026642", "name": "Constellation", "type": "FunctionDeclaration", "paramnames": [ @@ -50503,14 +50575,14 @@ "comment": "", "meta": { "range": [ - 284484, - 284494 + 284883, + 284893 ], "filename": "astronomy.js", - "lineno": 6929, + "lineno": 6934, "columnno": 4, "code": { - "id": "astnode100026634", + "id": "astnode100026668", "name": "ra", "type": "Literal", "funcscope": "Constellation", @@ -50529,14 +50601,14 @@ "comment": "", "meta": { "range": [ - 284522, - 284532 + 284921, + 284931 ], "filename": "astronomy.js", - "lineno": 6931, + "lineno": 6936, "columnno": 8, "code": { - "id": "astnode100026642", + "id": "astnode100026676", "name": "ra", "type": "Literal", "funcscope": "Constellation", @@ -50555,14 +50627,14 @@ "comment": "", "meta": { "range": [ - 285308, - 285372 + 285707, + 285771 ], "filename": "astronomy.js", - "lineno": 6945, + "lineno": 6950, "columnno": 8, "code": { - "id": "astnode100026650", + "id": "astnode100026684", "name": "ConstelRot", "type": "CallExpression", "funcscope": "Constellation", @@ -50581,14 +50653,14 @@ "comment": "", "meta": { "range": [ - 285382, - 285410 + 285781, + 285809 ], "filename": "astronomy.js", - "lineno": 6946, + "lineno": 6951, "columnno": 8, "code": { - "id": "astnode100026659", + "id": "astnode100026693", "name": "Epoch2000", "type": "NewExpression", "funcscope": "Constellation", @@ -50607,14 +50679,14 @@ "comment": "", "meta": { "range": [ - 285476, - 285520 + 285875, + 285919 ], "filename": "astronomy.js", - "lineno": 6949, + "lineno": 6954, "columnno": 10, "code": { - "id": "astnode100026665", + "id": "astnode100026699", "name": "sph2000", "type": "NewExpression", "value": "" @@ -50632,14 +50704,14 @@ "comment": "", "meta": { "range": [ - 285532, - 285578 + 285931, + 285977 ], "filename": "astronomy.js", - "lineno": 6950, + "lineno": 6955, "columnno": 10, "code": { - "id": "astnode100026675", + "id": "astnode100026709", "name": "vec2000", "type": "CallExpression", "value": "" @@ -50657,14 +50729,14 @@ "comment": "", "meta": { "range": [ - 285590, - 285633 + 285989, + 286032 ], "filename": "astronomy.js", - "lineno": 6951, + "lineno": 6956, "columnno": 10, "code": { - "id": "astnode100026682", + "id": "astnode100026716", "name": "vec1875", "type": "CallExpression", "value": "" @@ -50682,14 +50754,14 @@ "comment": "", "meta": { "range": [ - 285645, - 285681 + 286044, + 286080 ], "filename": "astronomy.js", - "lineno": 6952, + "lineno": 6957, "columnno": 10, "code": { - "id": "astnode100026689", + "id": "astnode100026723", "name": "equ1875", "type": "CallExpression", "value": "" @@ -50707,14 +50779,14 @@ "comment": "", "meta": { "range": [ - 285758, - 285776 + 286157, + 286175 ], "filename": "astronomy.js", - "lineno": 6954, + "lineno": 6959, "columnno": 10, "code": { - "id": "astnode100026695", + "id": "astnode100026729", "name": "fd", "type": "BinaryExpression", "value": "" @@ -50732,14 +50804,14 @@ "comment": "", "meta": { "range": [ - 285843, - 285855 + 286242, + 286254 ], "filename": "astronomy.js", - "lineno": 6955, + "lineno": 6960, "columnno": 10, "code": { - "id": "astnode100026703", + "id": "astnode100026737", "name": "fr", "type": "BinaryExpression", "value": "" @@ -50757,14 +50829,14 @@ "comment": "", "meta": { "range": [ - 285932, - 285933 + 286331, + 286332 ], "filename": "astronomy.js", - "lineno": 6956, + "lineno": 6961, "columnno": 13, "code": { - "id": "astnode100026710", + "id": "astnode100026744", "name": "b" } }, @@ -50780,14 +50852,14 @@ "comment": "", "meta": { "range": [ - 286041, - 286056 + 286440, + 286455 ], "filename": "astronomy.js", - "lineno": 6958, + "lineno": 6963, "columnno": 14, "code": { - "id": "astnode100026715", + "id": "astnode100026749", "name": "dec", "type": "BinaryExpression", "value": "" @@ -50805,14 +50877,14 @@ "comment": "", "meta": { "range": [ - 286072, - 286089 + 286471, + 286488 ], "filename": "astronomy.js", - "lineno": 6959, + "lineno": 6964, "columnno": 14, "code": { - "id": "astnode100026723", + "id": "astnode100026757", "name": "ra_lo", "type": "BinaryExpression", "value": "" @@ -50830,14 +50902,14 @@ "comment": "", "meta": { "range": [ - 286105, - 286122 + 286504, + 286521 ], "filename": "astronomy.js", - "lineno": 6960, + "lineno": 6965, "columnno": 14, "code": { - "id": "astnode100026731", + "id": "astnode100026765", "name": "ra_hi", "type": "BinaryExpression", "value": "" @@ -50855,14 +50927,14 @@ "comment": "", "meta": { "range": [ - 286221, - 286243 + 286620, + 286642 ], "filename": "astronomy.js", - "lineno": 6962, + "lineno": 6967, "columnno": 18, "code": { - "id": "astnode100026758", + "id": "astnode100026792", "name": "c", "type": "MemberExpression", "value": "ConstelNames[undefined]" @@ -50880,14 +50952,14 @@ "comment": "", "meta": { "range": [ - 286440, - 286477 + 286839, + 286876 ], "filename": "astronomy.js", - "lineno": 6969, + "lineno": 6974, "columnno": 0, "code": { - "id": "astnode100026783", + "id": "astnode100026817", "name": "exports.Constellation", "type": "Identifier", "value": "Constellation", @@ -50904,14 +50976,14 @@ "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": [ - 288207, - 288459 + 288606, + 288858 ], "filename": "astronomy.js", - "lineno": 7008, + "lineno": 7013, "columnno": 0, "code": { - "id": "astnode100026788", + "id": "astnode100026822", "name": "LunarEclipseInfo", "type": "ClassDeclaration", "paramnames": [ @@ -50988,14 +51060,14 @@ "comment": "", "meta": { "range": [ - 288236, - 288457 + 288635, + 288856 ], "filename": "astronomy.js", - "lineno": 7009, + "lineno": 7014, "columnno": 4, "code": { - "id": "astnode100026791", + "id": "astnode100026825", "name": "LunarEclipseInfo", "type": "MethodDefinition", "paramnames": [ @@ -51021,14 +51093,14 @@ "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": [ - 288207, - 288459 + 288606, + 288858 ], "filename": "astronomy.js", - "lineno": 7008, + "lineno": 7013, "columnno": 0, "code": { - "id": "astnode100026788", + "id": "astnode100026822", "name": "LunarEclipseInfo", "type": "ClassDeclaration", "paramnames": [ @@ -51104,14 +51176,14 @@ "comment": "", "meta": { "range": [ - 288302, - 288318 + 288701, + 288717 ], "filename": "astronomy.js", - "lineno": 7010, + "lineno": 7015, "columnno": 8, "code": { - "id": "astnode100026801", + "id": "astnode100026835", "name": "this.kind", "type": "Identifier", "value": "kind", @@ -51129,14 +51201,14 @@ "comment": "", "meta": { "range": [ - 288328, - 288344 + 288727, + 288743 ], "filename": "astronomy.js", - "lineno": 7011, + "lineno": 7016, "columnno": 8, "code": { - "id": "astnode100026807", + "id": "astnode100026841", "name": "this.peak", "type": "Identifier", "value": "peak", @@ -51154,14 +51226,14 @@ "comment": "", "meta": { "range": [ - 288354, - 288378 + 288753, + 288777 ], "filename": "astronomy.js", - "lineno": 7012, + "lineno": 7017, "columnno": 8, "code": { - "id": "astnode100026813", + "id": "astnode100026847", "name": "this.sd_penum", "type": "Identifier", "value": "sd_penum", @@ -51179,14 +51251,14 @@ "comment": "", "meta": { "range": [ - 288388, - 288416 + 288787, + 288815 ], "filename": "astronomy.js", - "lineno": 7013, + "lineno": 7018, "columnno": 8, "code": { - "id": "astnode100026819", + "id": "astnode100026853", "name": "this.sd_partial", "type": "Identifier", "value": "sd_partial", @@ -51204,14 +51276,14 @@ "comment": "", "meta": { "range": [ - 288426, - 288450 + 288825, + 288849 ], "filename": "astronomy.js", - "lineno": 7014, + "lineno": 7019, "columnno": 8, "code": { - "id": "astnode100026825", + "id": "astnode100026859", "name": "this.sd_total", "type": "Identifier", "value": "sd_total", @@ -51229,14 +51301,14 @@ "comment": "", "meta": { "range": [ - 288460, - 288503 + 288859, + 288902 ], "filename": "astronomy.js", - "lineno": 7017, + "lineno": 7022, "columnno": 0, "code": { - "id": "astnode100026831", + "id": "astnode100026865", "name": "exports.LunarEclipseInfo", "type": "Identifier", "value": "LunarEclipseInfo", @@ -51253,14 +51325,14 @@ "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": [ - 290538, - 290773 + 290937, + 291172 ], "filename": "astronomy.js", - "lineno": 7066, + "lineno": 7071, "columnno": 0, "code": { - "id": "astnode100026836", + "id": "astnode100026870", "name": "ShadowInfo", "type": "ClassDeclaration", "paramnames": [ @@ -51358,14 +51430,14 @@ "comment": "", "meta": { "range": [ - 290561, - 290771 + 290960, + 291170 ], "filename": "astronomy.js", - "lineno": 7067, + "lineno": 7072, "columnno": 4, "code": { - "id": "astnode100026839", + "id": "astnode100026873", "name": "ShadowInfo", "type": "MethodDefinition", "paramnames": [ @@ -51393,14 +51465,14 @@ "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": [ - 290538, - 290773 + 290937, + 291172 ], "filename": "astronomy.js", - "lineno": 7066, + "lineno": 7071, "columnno": 0, "code": { - "id": "astnode100026836", + "id": "astnode100026870", "name": "ShadowInfo", "type": "ClassDeclaration", "paramnames": [ @@ -51497,14 +51569,14 @@ "comment": "", "meta": { "range": [ - 290614, - 290630 + 291013, + 291029 ], "filename": "astronomy.js", - "lineno": 7068, + "lineno": 7073, "columnno": 8, "code": { - "id": "astnode100026851", + "id": "astnode100026885", "name": "this.time", "type": "Identifier", "value": "time", @@ -51522,14 +51594,14 @@ "comment": "", "meta": { "range": [ - 290640, - 290650 + 291039, + 291049 ], "filename": "astronomy.js", - "lineno": 7069, + "lineno": 7074, "columnno": 8, "code": { - "id": "astnode100026857", + "id": "astnode100026891", "name": "this.u", "type": "Identifier", "value": "u", @@ -51547,14 +51619,14 @@ "comment": "", "meta": { "range": [ - 290660, - 290670 + 291059, + 291069 ], "filename": "astronomy.js", - "lineno": 7070, + "lineno": 7075, "columnno": 8, "code": { - "id": "astnode100026863", + "id": "astnode100026897", "name": "this.r", "type": "Identifier", "value": "r", @@ -51572,14 +51644,14 @@ "comment": "", "meta": { "range": [ - 290680, - 290690 + 291079, + 291089 ], "filename": "astronomy.js", - "lineno": 7071, + "lineno": 7076, "columnno": 8, "code": { - "id": "astnode100026869", + "id": "astnode100026903", "name": "this.k", "type": "Identifier", "value": "k", @@ -51597,14 +51669,14 @@ "comment": "", "meta": { "range": [ - 290700, - 290710 + 291099, + 291109 ], "filename": "astronomy.js", - "lineno": 7072, + "lineno": 7077, "columnno": 8, "code": { - "id": "astnode100026875", + "id": "astnode100026909", "name": "this.p", "type": "Identifier", "value": "p", @@ -51622,14 +51694,14 @@ "comment": "", "meta": { "range": [ - 290720, - 290740 + 291119, + 291139 ], "filename": "astronomy.js", - "lineno": 7073, + "lineno": 7078, "columnno": 8, "code": { - "id": "astnode100026881", + "id": "astnode100026915", "name": "this.target", "type": "Identifier", "value": "target", @@ -51647,14 +51719,14 @@ "comment": "", "meta": { "range": [ - 290750, - 290764 + 291149, + 291163 ], "filename": "astronomy.js", - "lineno": 7074, + "lineno": 7079, "columnno": 8, "code": { - "id": "astnode100026887", + "id": "astnode100026921", "name": "this.dir", "type": "Identifier", "value": "dir", @@ -51672,14 +51744,14 @@ "comment": "", "meta": { "range": [ - 290774, - 291357 + 291173, + 291756 ], "filename": "astronomy.js", - "lineno": 7077, + "lineno": 7082, "columnno": 0, "code": { - "id": "astnode100026892", + "id": "astnode100026926", "name": "CalcShadow", "type": "FunctionDeclaration", "paramnames": [ @@ -51710,14 +51782,14 @@ "comment": "", "meta": { "range": [ - 290841, - 290951 + 291240, + 291350 ], "filename": "astronomy.js", - "lineno": 7078, + "lineno": 7083, "columnno": 10, "code": { - "id": "astnode100026900", + "id": "astnode100026934", "name": "u", "type": "BinaryExpression", "value": "" @@ -51735,14 +51807,14 @@ "comment": "", "meta": { "range": [ - 290963, - 290990 + 291362, + 291389 ], "filename": "astronomy.js", - "lineno": 7079, + "lineno": 7084, "columnno": 10, "code": { - "id": "astnode100026950", + "id": "astnode100026984", "name": "dx", "type": "BinaryExpression", "value": "" @@ -51760,14 +51832,14 @@ "comment": "", "meta": { "range": [ - 291002, - 291029 + 291401, + 291428 ], "filename": "astronomy.js", - "lineno": 7080, + "lineno": 7085, "columnno": 10, "code": { - "id": "astnode100026962", + "id": "astnode100026996", "name": "dy", "type": "BinaryExpression", "value": "" @@ -51785,14 +51857,14 @@ "comment": "", "meta": { "range": [ - 291041, - 291068 + 291440, + 291467 ], "filename": "astronomy.js", - "lineno": 7081, + "lineno": 7086, "columnno": 10, "code": { - "id": "astnode100026974", + "id": "astnode100027008", "name": "dz", "type": "BinaryExpression", "value": "" @@ -51810,14 +51882,14 @@ "comment": "", "meta": { "range": [ - 291080, - 291142 + 291479, + 291541 ], "filename": "astronomy.js", - "lineno": 7082, + "lineno": 7087, "columnno": 10, "code": { - "id": "astnode100026986", + "id": "astnode100027020", "name": "r", "type": "BinaryExpression", "value": "" @@ -51835,14 +51907,14 @@ "comment": "", "meta": { "range": [ - 291154, - 291219 + 291553, + 291618 ], "filename": "astronomy.js", - "lineno": 7083, + "lineno": 7088, "columnno": 10, "code": { - "id": "astnode100027008", + "id": "astnode100027042", "name": "k", "type": "BinaryExpression", "value": "" @@ -51860,14 +51932,14 @@ "comment": "", "meta": { "range": [ - 291231, - 291296 + 291630, + 291695 ], "filename": "astronomy.js", - "lineno": 7084, + "lineno": 7089, "columnno": 10, "code": { - "id": "astnode100027021", + "id": "astnode100027055", "name": "p", "type": "BinaryExpression", "value": "" @@ -51885,14 +51957,14 @@ "comment": "", "meta": { "range": [ - 291358, - 291519 + 291757, + 291918 ], "filename": "astronomy.js", - "lineno": 7087, + "lineno": 7092, "columnno": 0, "code": { - "id": "astnode100027043", + "id": "astnode100027077", "name": "EarthShadow", "type": "FunctionDeclaration", "paramnames": [ @@ -51915,14 +51987,14 @@ "comment": "", "meta": { "range": [ - 291397, - 291427 + 291796, + 291826 ], "filename": "astronomy.js", - "lineno": 7088, + "lineno": 7093, "columnno": 10, "code": { - "id": "astnode100027048", + "id": "astnode100027082", "name": "e", "type": "CallExpression", "value": "" @@ -51940,14 +52012,14 @@ "comment": "", "meta": { "range": [ - 291439, - 291456 + 291838, + 291855 ], "filename": "astronomy.js", - "lineno": 7089, + "lineno": 7094, "columnno": 10, "code": { - "id": "astnode100027057", + "id": "astnode100027091", "name": "m", "type": "CallExpression", "value": "" @@ -51965,14 +52037,14 @@ "comment": "", "meta": { "range": [ - 291520, - 292084 + 291919, + 292483 ], "filename": "astronomy.js", - "lineno": 7092, + "lineno": 7097, "columnno": 0, "code": { - "id": "astnode100027069", + "id": "astnode100027103", "name": "MoonShadow", "type": "FunctionDeclaration", "paramnames": [ @@ -51999,14 +52071,14 @@ "comment": "", "meta": { "range": [ - 291739, - 291769 + 292138, + 292168 ], "filename": "astronomy.js", - "lineno": 7096, + "lineno": 7101, "columnno": 10, "code": { - "id": "astnode100027074", + "id": "astnode100027108", "name": "h", "type": "CallExpression", "value": "" @@ -52024,14 +52096,14 @@ "comment": "", "meta": { "range": [ - 291803, - 291820 + 292202, + 292219 ], "filename": "astronomy.js", - "lineno": 7097, + "lineno": 7102, "columnno": 10, "code": { - "id": "astnode100027083", + "id": "astnode100027117", "name": "m", "type": "CallExpression", "value": "" @@ -52049,14 +52121,14 @@ "comment": "", "meta": { "range": [ - 291887, - 291924 + 292286, + 292323 ], "filename": "astronomy.js", - "lineno": 7099, + "lineno": 7104, "columnno": 10, "code": { - "id": "astnode100027089", + "id": "astnode100027123", "name": "e", "type": "NewExpression", "value": "" @@ -52074,14 +52146,14 @@ "comment": "", "meta": { "range": [ - 291983, - 291993 + 292382, + 292392 ], "filename": "astronomy.js", - "lineno": 7101, + "lineno": 7106, "columnno": 4, "code": { - "id": "astnode100027109", + "id": "astnode100027143", "name": "m.x", "type": "MemberExpression", "funcscope": "MoonShadow", @@ -52100,14 +52172,14 @@ "comment": "", "meta": { "range": [ - 291999, - 292009 + 292398, + 292408 ], "filename": "astronomy.js", - "lineno": 7102, + "lineno": 7107, "columnno": 4, "code": { - "id": "astnode100027117", + "id": "astnode100027151", "name": "m.y", "type": "MemberExpression", "funcscope": "MoonShadow", @@ -52126,14 +52198,14 @@ "comment": "", "meta": { "range": [ - 292015, - 292025 + 292414, + 292424 ], "filename": "astronomy.js", - "lineno": 7103, + "lineno": 7108, "columnno": 4, "code": { - "id": "astnode100027125", + "id": "astnode100027159", "name": "m.z", "type": "MemberExpression", "funcscope": "MoonShadow", @@ -52152,14 +52224,14 @@ "comment": "", "meta": { "range": [ - 292085, - 292792 + 292484, + 293191 ], "filename": "astronomy.js", - "lineno": 7106, + "lineno": 7111, "columnno": 0, "code": { - "id": "astnode100027139", + "id": "astnode100027173", "name": "LocalMoonShadow", "type": "FunctionDeclaration", "paramnames": [ @@ -52188,14 +52260,14 @@ "comment": "", "meta": { "range": [ - 292340, - 292369 + 292739, + 292768 ], "filename": "astronomy.js", - "lineno": 7110, + "lineno": 7115, "columnno": 10, "code": { - "id": "astnode100027145", + "id": "astnode100027179", "name": "pos", "type": "CallExpression", "value": "" @@ -52213,14 +52285,14 @@ "comment": "", "meta": { "range": [ - 292381, - 292411 + 292780, + 292810 ], "filename": "astronomy.js", - "lineno": 7111, + "lineno": 7116, "columnno": 10, "code": { - "id": "astnode100027152", + "id": "astnode100027186", "name": "h", "type": "CallExpression", "value": "" @@ -52238,14 +52310,14 @@ "comment": "", "meta": { "range": [ - 292445, - 292462 + 292844, + 292861 ], "filename": "astronomy.js", - "lineno": 7112, + "lineno": 7117, "columnno": 10, "code": { - "id": "astnode100027161", + "id": "astnode100027195", "name": "m", "type": "CallExpression", "value": "" @@ -52263,14 +52335,14 @@ "comment": "", "meta": { "range": [ - 292570, - 292632 + 292969, + 293031 ], "filename": "astronomy.js", - "lineno": 7114, + "lineno": 7119, "columnno": 10, "code": { - "id": "astnode100027167", + "id": "astnode100027201", "name": "o", "type": "NewExpression", "value": "" @@ -52288,14 +52360,14 @@ "comment": "", "meta": { "range": [ - 292691, - 292701 + 293090, + 293100 ], "filename": "astronomy.js", - "lineno": 7116, + "lineno": 7121, "columnno": 4, "code": { - "id": "astnode100027194", + "id": "astnode100027228", "name": "m.x", "type": "MemberExpression", "funcscope": "LocalMoonShadow", @@ -52314,14 +52386,14 @@ "comment": "", "meta": { "range": [ - 292707, - 292717 + 293106, + 293116 ], "filename": "astronomy.js", - "lineno": 7117, + "lineno": 7122, "columnno": 4, "code": { - "id": "astnode100027202", + "id": "astnode100027236", "name": "m.y", "type": "MemberExpression", "funcscope": "LocalMoonShadow", @@ -52340,14 +52412,14 @@ "comment": "", "meta": { "range": [ - 292723, - 292733 + 293122, + 293132 ], "filename": "astronomy.js", - "lineno": 7118, + "lineno": 7123, "columnno": 4, "code": { - "id": "astnode100027210", + "id": "astnode100027244", "name": "m.z", "type": "MemberExpression", "funcscope": "LocalMoonShadow", @@ -52366,14 +52438,14 @@ "comment": "", "meta": { "range": [ - 292793, - 293372 + 293192, + 293771 ], "filename": "astronomy.js", - "lineno": 7121, + "lineno": 7126, "columnno": 0, "code": { - "id": "astnode100027224", + "id": "astnode100027258", "name": "PlanetShadow", "type": "FunctionDeclaration", "paramnames": [ @@ -52402,14 +52474,14 @@ "comment": "", "meta": { "range": [ - 292926, - 292958 + 293325, + 293357 ], "filename": "astronomy.js", - "lineno": 7123, + "lineno": 7128, "columnno": 10, "code": { - "id": "astnode100027231", + "id": "astnode100027265", "name": "g", "type": "CallExpression", "value": "" @@ -52427,14 +52499,14 @@ "comment": "", "meta": { "range": [ - 293036, - 293072 + 293435, + 293471 ], "filename": "astronomy.js", - "lineno": 7125, + "lineno": 7130, "columnno": 10, "code": { - "id": "astnode100027239", + "id": "astnode100027273", "name": "e", "type": "CallExpression", "value": "" @@ -52452,14 +52524,14 @@ "comment": "", "meta": { "range": [ - 293148, - 293201 + 293547, + 293600 ], "filename": "astronomy.js", - "lineno": 7127, + "lineno": 7132, "columnno": 10, "code": { - "id": "astnode100027249", + "id": "astnode100027283", "name": "p", "type": "NewExpression", "value": "" @@ -52477,14 +52549,14 @@ "comment": "", "meta": { "range": [ - 293274, - 293284 + 293673, + 293683 ], "filename": "astronomy.js", - "lineno": 7129, + "lineno": 7134, "columnno": 4, "code": { - "id": "astnode100027276", + "id": "astnode100027310", "name": "e.x", "type": "UnaryExpression", "funcscope": "PlanetShadow", @@ -52503,14 +52575,14 @@ "comment": "", "meta": { "range": [ - 293290, - 293300 + 293689, + 293699 ], "filename": "astronomy.js", - "lineno": 7130, + "lineno": 7135, "columnno": 4, "code": { - "id": "astnode100027285", + "id": "astnode100027319", "name": "e.y", "type": "UnaryExpression", "funcscope": "PlanetShadow", @@ -52529,14 +52601,14 @@ "comment": "", "meta": { "range": [ - 293306, - 293316 + 293705, + 293715 ], "filename": "astronomy.js", - "lineno": 7131, + "lineno": 7136, "columnno": 4, "code": { - "id": "astnode100027294", + "id": "astnode100027328", "name": "e.z", "type": "UnaryExpression", "funcscope": "PlanetShadow", @@ -52555,14 +52627,14 @@ "comment": "", "meta": { "range": [ - 293373, - 293634 + 293772, + 294033 ], "filename": "astronomy.js", - "lineno": 7134, + "lineno": 7139, "columnno": 0, "code": { - "id": "astnode100027309", + "id": "astnode100027343", "name": "ShadowDistanceSlope", "type": "FunctionDeclaration", "paramnames": [ @@ -52589,14 +52661,14 @@ "comment": "", "meta": { "range": [ - 293432, - 293450 + 293831, + 293849 ], "filename": "astronomy.js", - "lineno": 7135, + "lineno": 7140, "columnno": 10, "code": { - "id": "astnode100027315", + "id": "astnode100027349", "name": "dt", "type": "BinaryExpression", "value": "" @@ -52614,14 +52686,14 @@ "comment": "", "meta": { "range": [ - 293462, - 293484 + 293861, + 293883 ], "filename": "astronomy.js", - "lineno": 7136, + "lineno": 7141, "columnno": 10, "code": { - "id": "astnode100027321", + "id": "astnode100027355", "name": "t1", "type": "CallExpression", "value": "" @@ -52639,14 +52711,14 @@ "comment": "", "meta": { "range": [ - 293496, - 293518 + 293895, + 293917 ], "filename": "astronomy.js", - "lineno": 7137, + "lineno": 7142, "columnno": 10, "code": { - "id": "astnode100027330", + "id": "astnode100027364", "name": "t2", "type": "CallExpression", "value": "" @@ -52664,14 +52736,14 @@ "comment": "", "meta": { "range": [ - 293530, - 293554 + 293929, + 293953 ], "filename": "astronomy.js", - "lineno": 7138, + "lineno": 7143, "columnno": 10, "code": { - "id": "astnode100027339", + "id": "astnode100027373", "name": "shadow1", "type": "CallExpression", "value": "" @@ -52689,14 +52761,14 @@ "comment": "", "meta": { "range": [ - 293566, - 293590 + 293965, + 293989 ], "filename": "astronomy.js", - "lineno": 7139, + "lineno": 7144, "columnno": 10, "code": { - "id": "astnode100027345", + "id": "astnode100027379", "name": "shadow2", "type": "CallExpression", "value": "" @@ -52714,14 +52786,14 @@ "comment": "", "meta": { "range": [ - 293635, - 293920 + 294034, + 294319 ], "filename": "astronomy.js", - "lineno": 7142, + "lineno": 7147, "columnno": 0, "code": { - "id": "astnode100027360", + "id": "astnode100027394", "name": "PlanetShadowSlope", "type": "FunctionDeclaration", "paramnames": [ @@ -52747,14 +52819,14 @@ "comment": "", "meta": { "range": [ - 293704, - 293722 + 294103, + 294121 ], "filename": "astronomy.js", - "lineno": 7143, + "lineno": 7148, "columnno": 10, "code": { - "id": "astnode100027367", + "id": "astnode100027401", "name": "dt", "type": "BinaryExpression", "value": "" @@ -52772,14 +52844,14 @@ "comment": "", "meta": { "range": [ - 293734, - 293799 + 294133, + 294198 ], "filename": "astronomy.js", - "lineno": 7144, + "lineno": 7149, "columnno": 10, "code": { - "id": "astnode100027373", + "id": "astnode100027407", "name": "shadow1", "type": "CallExpression", "value": "" @@ -52797,14 +52869,14 @@ "comment": "", "meta": { "range": [ - 293811, - 293876 + 294210, + 294275 ], "filename": "astronomy.js", - "lineno": 7145, + "lineno": 7150, "columnno": 10, "code": { - "id": "astnode100027386", + "id": "astnode100027420", "name": "shadow2", "type": "CallExpression", "value": "" @@ -52822,14 +52894,14 @@ "comment": "", "meta": { "range": [ - 293921, - 294338 + 294320, + 294737 ], "filename": "astronomy.js", - "lineno": 7148, + "lineno": 7153, "columnno": 0, "code": { - "id": "astnode100027408", + "id": "astnode100027442", "name": "PeakEarthShadow", "type": "FunctionDeclaration", "paramnames": [ @@ -52855,14 +52927,14 @@ "comment": "", "meta": { "range": [ - 293978, - 293991 + 294377, + 294390 ], "filename": "astronomy.js", - "lineno": 7149, + "lineno": 7154, "columnno": 10, "code": { - "id": "astnode100027413", + "id": "astnode100027447", "name": "window", "type": "Literal", "value": 0.03 @@ -52880,14 +52952,14 @@ "comment": "", "meta": { "range": [ - 294065, - 294105 + 294464, + 294504 ], "filename": "astronomy.js", - "lineno": 7150, + "lineno": 7155, "columnno": 10, "code": { - "id": "astnode100027417", + "id": "astnode100027451", "name": "t1", "type": "CallExpression", "value": "" @@ -52905,14 +52977,14 @@ "comment": "", "meta": { "range": [ - 294117, - 294157 + 294516, + 294556 ], "filename": "astronomy.js", - "lineno": 7151, + "lineno": 7156, "columnno": 10, "code": { - "id": "astnode100027426", + "id": "astnode100027460", "name": "t2", "type": "CallExpression", "value": "" @@ -52930,14 +53002,14 @@ "comment": "", "meta": { "range": [ - 294169, - 294238 + 294568, + 294637 ], "filename": "astronomy.js", - "lineno": 7152, + "lineno": 7157, "columnno": 10, "code": { - "id": "astnode100027435", + "id": "astnode100027469", "name": "tx", "type": "CallExpression", "value": "" @@ -52955,14 +53027,14 @@ "comment": "", "meta": { "range": [ - 294339, - 294752 + 294738, + 295151 ], "filename": "astronomy.js", - "lineno": 7157, + "lineno": 7162, "columnno": 0, "code": { - "id": "astnode100027456", + "id": "astnode100027490", "name": "PeakMoonShadow", "type": "FunctionDeclaration", "paramnames": [ @@ -52988,14 +53060,14 @@ "comment": "", "meta": { "range": [ - 294395, - 294408 + 294794, + 294807 ], "filename": "astronomy.js", - "lineno": 7158, + "lineno": 7163, "columnno": 10, "code": { - "id": "astnode100027461", + "id": "astnode100027495", "name": "window", "type": "Literal", "value": 0.03 @@ -53013,14 +53085,14 @@ "comment": "", "meta": { "range": [ - 294482, - 294522 + 294881, + 294921 ], "filename": "astronomy.js", - "lineno": 7159, + "lineno": 7164, "columnno": 10, "code": { - "id": "astnode100027465", + "id": "astnode100027499", "name": "t1", "type": "CallExpression", "value": "" @@ -53038,14 +53110,14 @@ "comment": "", "meta": { "range": [ - 294534, - 294574 + 294933, + 294973 ], "filename": "astronomy.js", - "lineno": 7160, + "lineno": 7165, "columnno": 10, "code": { - "id": "astnode100027474", + "id": "astnode100027508", "name": "t2", "type": "CallExpression", "value": "" @@ -53063,14 +53135,14 @@ "comment": "", "meta": { "range": [ - 294586, - 294654 + 294985, + 295053 ], "filename": "astronomy.js", - "lineno": 7161, + "lineno": 7166, "columnno": 10, "code": { - "id": "astnode100027483", + "id": "astnode100027517", "name": "tx", "type": "CallExpression", "value": "" @@ -53088,14 +53160,14 @@ "comment": "", "meta": { "range": [ - 294753, - 295328 + 295152, + 295727 ], "filename": "astronomy.js", - "lineno": 7166, + "lineno": 7171, "columnno": 0, "code": { - "id": "astnode100027504", + "id": "astnode100027538", "name": "PeakPlanetShadow", "type": "FunctionDeclaration", "paramnames": [ @@ -53123,14 +53195,14 @@ "comment": "", "meta": { "range": [ - 294915, - 294927 + 295314, + 295326 ], "filename": "astronomy.js", - "lineno": 7168, + "lineno": 7173, "columnno": 10, "code": { - "id": "astnode100027511", + "id": "astnode100027545", "name": "window", "type": "Literal", "value": 1 @@ -53148,14 +53220,14 @@ "comment": "", "meta": { "range": [ - 295020, - 295060 + 295419, + 295459 ], "filename": "astronomy.js", - "lineno": 7169, + "lineno": 7174, "columnno": 10, "code": { - "id": "astnode100027515", + "id": "astnode100027549", "name": "t1", "type": "CallExpression", "value": "" @@ -53173,14 +53245,14 @@ "comment": "", "meta": { "range": [ - 295072, - 295112 + 295471, + 295511 ], "filename": "astronomy.js", - "lineno": 7170, + "lineno": 7175, "columnno": 10, "code": { - "id": "astnode100027524", + "id": "astnode100027558", "name": "t2", "type": "CallExpression", "value": "" @@ -53198,14 +53270,14 @@ "comment": "", "meta": { "range": [ - 295124, - 295202 + 295523, + 295601 ], "filename": "astronomy.js", - "lineno": 7171, + "lineno": 7176, "columnno": 10, "code": { - "id": "astnode100027533", + "id": "astnode100027567", "name": "tx", "type": "CallExpression", "value": "" @@ -53223,14 +53295,14 @@ "comment": "", "meta": { "range": [ - 295329, - 295964 + 295728, + 296363 ], "filename": "astronomy.js", - "lineno": 7176, + "lineno": 7181, "columnno": 0, "code": { - "id": "astnode100027557", + "id": "astnode100027591", "name": "PeakLocalMoonShadow", "type": "FunctionDeclaration", "paramnames": [ @@ -53258,14 +53330,14 @@ "comment": "", "meta": { "range": [ - 295518, - 295530 + 295917, + 295929 ], "filename": "astronomy.js", - "lineno": 7179, + "lineno": 7184, "columnno": 10, "code": { - "id": "astnode100027563", + "id": "astnode100027597", "name": "window", "type": "Literal", "value": 0.2 @@ -53283,14 +53355,14 @@ "comment": "", "meta": { "range": [ - 295542, - 295582 + 295941, + 295981 ], "filename": "astronomy.js", - "lineno": 7180, + "lineno": 7185, "columnno": 10, "code": { - "id": "astnode100027567", + "id": "astnode100027601", "name": "t1", "type": "CallExpression", "value": "" @@ -53308,14 +53380,14 @@ "comment": "", "meta": { "range": [ - 295594, - 295634 + 295993, + 296033 ], "filename": "astronomy.js", - "lineno": 7181, + "lineno": 7186, "columnno": 10, "code": { - "id": "astnode100027576", + "id": "astnode100027610", "name": "t2", "type": "CallExpression", "value": "" @@ -53333,14 +53405,14 @@ "comment": "", "meta": { "range": [ - 295640, - 295721 + 296039, + 296120 ], "filename": "astronomy.js", - "lineno": 7182, + "lineno": 7187, "columnno": 4, "code": { - "id": "astnode100027584", + "id": "astnode100027618", "name": "shadowfunc", "type": "FunctionDeclaration", "paramnames": [ @@ -53360,14 +53432,14 @@ "comment": "", "meta": { "range": [ - 295732, - 295802 + 296131, + 296201 ], "filename": "astronomy.js", - "lineno": 7185, + "lineno": 7190, "columnno": 10, "code": { - "id": "astnode100027594", + "id": "astnode100027628", "name": "time", "type": "CallExpression", "value": "" @@ -53385,14 +53457,14 @@ "comment": "", "meta": { "range": [ - 295965, - 296669 + 296364, + 297068 ], "filename": "astronomy.js", - "lineno": 7190, + "lineno": 7195, "columnno": 0, "code": { - "id": "astnode100027619", + "id": "astnode100027653", "name": "ShadowSemiDurationMinutes", "type": "FunctionDeclaration", "paramnames": [ @@ -53421,14 +53493,14 @@ "comment": "", "meta": { "range": [ - 296162, - 296201 + 296561, + 296600 ], "filename": "astronomy.js", - "lineno": 7192, + "lineno": 7197, "columnno": 10, "code": { - "id": "astnode100027626", + "id": "astnode100027660", "name": "window", "type": "BinaryExpression", "value": "" @@ -53446,14 +53518,14 @@ "comment": "", "meta": { "range": [ - 296213, - 296250 + 296612, + 296649 ], "filename": "astronomy.js", - "lineno": 7193, + "lineno": 7198, "columnno": 10, "code": { - "id": "astnode100027634", + "id": "astnode100027668", "name": "before", "type": "CallExpression", "value": "" @@ -53471,14 +53543,14 @@ "comment": "", "meta": { "range": [ - 296262, - 296298 + 296661, + 296697 ], "filename": "astronomy.js", - "lineno": 7194, + "lineno": 7199, "columnno": 10, "code": { - "id": "astnode100027643", + "id": "astnode100027677", "name": "after", "type": "CallExpression", "value": "" @@ -53496,14 +53568,14 @@ "comment": "", "meta": { "range": [ - 296310, - 296391 + 296709, + 296790 ], "filename": "astronomy.js", - "lineno": 7195, + "lineno": 7200, "columnno": 10, "code": { - "id": "astnode100027652", + "id": "astnode100027686", "name": "t1", "type": "CallExpression", "value": "" @@ -53521,14 +53593,14 @@ "comment": "", "meta": { "range": [ - 296403, - 296483 + 296802, + 296882 ], "filename": "astronomy.js", - "lineno": 7196, + "lineno": 7201, "columnno": 10, "code": { - "id": "astnode100027669", + "id": "astnode100027703", "name": "t2", "type": "CallExpression", "value": "" @@ -53546,14 +53618,14 @@ "comment": "", "meta": { "range": [ - 296670, - 296798 + 297069, + 297197 ], "filename": "astronomy.js", - "lineno": 7201, + "lineno": 7206, "columnno": 0, "code": { - "id": "astnode100027707", + "id": "astnode100027741", "name": "MoonEclipticLatitudeDegrees", "type": "FunctionDeclaration", "paramnames": [ @@ -53575,14 +53647,14 @@ "comment": "", "meta": { "range": [ - 296725, - 296746 + 297124, + 297145 ], "filename": "astronomy.js", - "lineno": 7202, + "lineno": 7207, "columnno": 10, "code": { - "id": "astnode100027712", + "id": "astnode100027746", "name": "moon", "type": "CallExpression", "value": "" @@ -53600,14 +53672,14 @@ "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": [ - 297380, - 299743 + 297779, + 300142 ], "filename": "astronomy.js", - "lineno": 7220, + "lineno": 7225, "columnno": 0, "code": { - "id": "astnode100027725", + "id": "astnode100027759", "name": "SearchLunarEclipse", "type": "FunctionDeclaration", "paramnames": [ @@ -53664,14 +53736,14 @@ "comment": "", "meta": { "range": [ - 297426, - 297445 + 297825, + 297844 ], "filename": "astronomy.js", - "lineno": 7221, + "lineno": 7226, "columnno": 10, "code": { - "id": "astnode100027730", + "id": "astnode100027764", "name": "PruneLatitude", "type": "Literal", "value": 1.8 @@ -53689,14 +53761,14 @@ "comment": "", "meta": { "range": [ - 297525, - 297548 + 297924, + 297947 ], "filename": "astronomy.js", - "lineno": 7222, + "lineno": 7227, "columnno": 8, "code": { - "id": "astnode100027734", + "id": "astnode100027768", "name": "fmtime", "type": "CallExpression", "value": "" @@ -53714,14 +53786,14 @@ "comment": "", "meta": { "range": [ - 297563, - 297574 + 297962, + 297973 ], "filename": "astronomy.js", - "lineno": 7223, + "lineno": 7228, "columnno": 13, "code": { - "id": "astnode100027741", + "id": "astnode100027775", "name": "fmcount", "type": "Literal", "value": 0 @@ -53739,14 +53811,14 @@ "comment": "", "meta": { "range": [ - 297691, - 297734 + 298090, + 298133 ], "filename": "astronomy.js", - "lineno": 7225, + "lineno": 7230, "columnno": 14, "code": { - "id": "astnode100027751", + "id": "astnode100027785", "name": "fullmoon", "type": "CallExpression", "value": "" @@ -53764,14 +53836,14 @@ "comment": "", "meta": { "range": [ - 298029, - 298078 + 298428, + 298477 ], "filename": "astronomy.js", - "lineno": 7233, + "lineno": 7238, "columnno": 14, "code": { - "id": "astnode100027764", + "id": "astnode100027798", "name": "eclip_lat", "type": "CallExpression", "value": "" @@ -53789,14 +53861,14 @@ "comment": "", "meta": { "range": [ - 298325, - 298359 + 298724, + 298758 ], "filename": "astronomy.js", - "lineno": 7237, + "lineno": 7242, "columnno": 18, "code": { - "id": "astnode100027779", + "id": "astnode100027813", "name": "shadow", "type": "CallExpression", "value": "" @@ -53814,14 +53886,14 @@ "comment": "", "meta": { "range": [ - 298527, - 298545 + 298926, + 298944 ], "filename": "astronomy.js", - "lineno": 7240, + "lineno": 7245, "columnno": 20, "code": { - "id": "astnode100027796", + "id": "astnode100027830", "name": "kind", "type": "Literal", "value": "penumbral" @@ -53839,14 +53911,14 @@ "comment": "", "meta": { "range": [ - 298567, - 298581 + 298966, + 298980 ], "filename": "astronomy.js", - "lineno": 7241, + "lineno": 7246, "columnno": 20, "code": { - "id": "astnode100027800", + "id": "astnode100027834", "name": "sd_total", "type": "Literal", "value": 0 @@ -53864,14 +53936,14 @@ "comment": "", "meta": { "range": [ - 298603, - 298619 + 299002, + 299018 ], "filename": "astronomy.js", - "lineno": 7242, + "lineno": 7247, "columnno": 20, "code": { - "id": "astnode100027804", + "id": "astnode100027838", "name": "sd_partial", "type": "Literal", "value": 0 @@ -53889,14 +53961,14 @@ "comment": "", "meta": { "range": [ - 298641, - 298729 + 299040, + 299128 ], "filename": "astronomy.js", - "lineno": 7243, + "lineno": 7248, "columnno": 20, "code": { - "id": "astnode100027808", + "id": "astnode100027842", "name": "sd_penum", "type": "CallExpression", "value": "" @@ -53914,14 +53986,14 @@ "comment": "", "meta": { "range": [ - 298878, - 298894 + 299277, + 299293 ], "filename": "astronomy.js", - "lineno": 7246, + "lineno": 7251, "columnno": 20, "code": { - "id": "astnode100027833", + "id": "astnode100027867", "name": "kind", "type": "Literal", "funcscope": "SearchLunarEclipse", @@ -53940,14 +54012,14 @@ "comment": "", "meta": { "range": [ - 298916, - 299009 + 299315, + 299408 ], "filename": "astronomy.js", - "lineno": 7247, + "lineno": 7252, "columnno": 20, "code": { - "id": "astnode100027837", + "id": "astnode100027871", "name": "sd_partial", "type": "CallExpression", "funcscope": "SearchLunarEclipse", @@ -53966,14 +54038,14 @@ "comment": "", "meta": { "range": [ - 299159, - 299173 + 299558, + 299572 ], "filename": "astronomy.js", - "lineno": 7250, + "lineno": 7255, "columnno": 24, "code": { - "id": "astnode100027862", + "id": "astnode100027896", "name": "kind", "type": "Literal", "funcscope": "SearchLunarEclipse", @@ -53992,14 +54064,14 @@ "comment": "", "meta": { "range": [ - 299199, - 299292 + 299598, + 299691 ], "filename": "astronomy.js", - "lineno": 7251, + "lineno": 7256, "columnno": 24, "code": { - "id": "astnode100027866", + "id": "astnode100027900", "name": "sd_total", "type": "CallExpression", "funcscope": "SearchLunarEclipse", @@ -54018,14 +54090,14 @@ "comment": "", "meta": { "range": [ - 299549, - 299578 + 299948, + 299977 ], "filename": "astronomy.js", - "lineno": 7258, + "lineno": 7263, "columnno": 8, "code": { - "id": "astnode100027890", + "id": "astnode100027924", "name": "fmtime", "type": "CallExpression", "funcscope": "SearchLunarEclipse", @@ -54044,14 +54116,14 @@ "comment": "", "meta": { "range": [ - 299744, - 299791 + 300143, + 300190 ], "filename": "astronomy.js", - "lineno": 7263, + "lineno": 7268, "columnno": 0, "code": { - "id": "astnode100027900", + "id": "astnode100027934", "name": "exports.SearchLunarEclipse", "type": "Identifier", "value": "SearchLunarEclipse", @@ -54068,14 +54140,14 @@ "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": [ - 302235, - 302490 + 302634, + 302889 ], "filename": "astronomy.js", - "lineno": 7311, + "lineno": 7316, "columnno": 0, "code": { - "id": "astnode100027905", + "id": "astnode100027939", "name": "GlobalSolarEclipseInfo", "type": "ClassDeclaration", "paramnames": [ @@ -54154,14 +54226,14 @@ "comment": "", "meta": { "range": [ - 302270, - 302488 + 302669, + 302887 ], "filename": "astronomy.js", - "lineno": 7312, + "lineno": 7317, "columnno": 4, "code": { - "id": "astnode100027908", + "id": "astnode100027942", "name": "GlobalSolarEclipseInfo", "type": "MethodDefinition", "paramnames": [ @@ -54187,14 +54259,14 @@ "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": [ - 302235, - 302490 + 302634, + 302889 ], "filename": "astronomy.js", - "lineno": 7311, + "lineno": 7316, "columnno": 0, "code": { - "id": "astnode100027905", + "id": "astnode100027939", "name": "GlobalSolarEclipseInfo", "type": "ClassDeclaration", "paramnames": [ @@ -54272,14 +54344,14 @@ "comment": "", "meta": { "range": [ - 302335, - 302351 + 302734, + 302750 ], "filename": "astronomy.js", - "lineno": 7313, + "lineno": 7318, "columnno": 8, "code": { - "id": "astnode100027918", + "id": "astnode100027952", "name": "this.kind", "type": "Identifier", "value": "kind", @@ -54297,14 +54369,14 @@ "comment": "", "meta": { "range": [ - 302361, - 302377 + 302760, + 302776 ], "filename": "astronomy.js", - "lineno": 7314, + "lineno": 7319, "columnno": 8, "code": { - "id": "astnode100027924", + "id": "astnode100027958", "name": "this.peak", "type": "Identifier", "value": "peak", @@ -54322,14 +54394,14 @@ "comment": "", "meta": { "range": [ - 302387, - 302411 + 302786, + 302810 ], "filename": "astronomy.js", - "lineno": 7315, + "lineno": 7320, "columnno": 8, "code": { - "id": "astnode100027930", + "id": "astnode100027964", "name": "this.distance", "type": "Identifier", "value": "distance", @@ -54347,14 +54419,14 @@ "comment": "", "meta": { "range": [ - 302421, - 302445 + 302820, + 302844 ], "filename": "astronomy.js", - "lineno": 7316, + "lineno": 7321, "columnno": 8, "code": { - "id": "astnode100027936", + "id": "astnode100027970", "name": "this.latitude", "type": "Identifier", "value": "latitude", @@ -54372,14 +54444,14 @@ "comment": "", "meta": { "range": [ - 302455, - 302481 + 302854, + 302880 ], "filename": "astronomy.js", - "lineno": 7317, + "lineno": 7322, "columnno": 8, "code": { - "id": "astnode100027942", + "id": "astnode100027976", "name": "this.longitude", "type": "Identifier", "value": "longitude", @@ -54397,14 +54469,14 @@ "comment": "", "meta": { "range": [ - 302491, - 302546 + 302890, + 302945 ], "filename": "astronomy.js", - "lineno": 7320, + "lineno": 7325, "columnno": 0, "code": { - "id": "astnode100027948", + "id": "astnode100027982", "name": "exports.GlobalSolarEclipseInfo", "type": "Identifier", "value": "GlobalSolarEclipseInfo", @@ -54421,14 +54493,14 @@ "comment": "", "meta": { "range": [ - 302548, - 302866 + 302947, + 303265 ], "filename": "astronomy.js", - "lineno": 7321, + "lineno": 7326, "columnno": 0, "code": { - "id": "astnode100027953", + "id": "astnode100027987", "name": "EclipseKindFromUmbra", "type": "FunctionDeclaration", "paramnames": [ @@ -54447,14 +54519,14 @@ "comment": "", "meta": { "range": [ - 302867, - 306999 + 303266, + 307398 ], "filename": "astronomy.js", - "lineno": 7327, + "lineno": 7332, "columnno": 0, "code": { - "id": "astnode100027964", + "id": "astnode100027998", "name": "GeoidIntersect", "type": "FunctionDeclaration", "paramnames": [ @@ -54506,14 +54578,14 @@ "comment": "", "meta": { "range": [ - 302909, - 302925 + 303308, + 303324 ], "filename": "astronomy.js", - "lineno": 7328, + "lineno": 7333, "columnno": 8, "code": { - "id": "astnode100027969", + "id": "astnode100028003", "name": "kind", "type": "Literal", "value": "partial" @@ -54531,14 +54603,14 @@ "comment": "", "meta": { "range": [ - 302935, - 302953 + 303334, + 303352 ], "filename": "astronomy.js", - "lineno": 7329, + "lineno": 7334, "columnno": 8, "code": { - "id": "astnode100027973", + "id": "astnode100028007", "name": "peak", "type": "MemberExpression", "value": "shadow.time" @@ -54556,14 +54628,14 @@ "comment": "", "meta": { "range": [ - 302963, - 302982 + 303362, + 303381 ], "filename": "astronomy.js", - "lineno": 7330, + "lineno": 7335, "columnno": 8, "code": { - "id": "astnode100027979", + "id": "astnode100028013", "name": "distance", "type": "MemberExpression", "value": "shadow.r" @@ -54581,14 +54653,14 @@ "comment": "", "meta": { "range": [ - 302992, - 303000 + 303391, + 303399 ], "filename": "astronomy.js", - "lineno": 7331, + "lineno": 7336, "columnno": 8, "code": { - "id": "astnode100027985", + "id": "astnode100028019", "name": "latitude" } }, @@ -54604,14 +54676,14 @@ "comment": "", "meta": { "range": [ - 303049, - 303058 + 303448, + 303457 ], "filename": "astronomy.js", - "lineno": 7332, + "lineno": 7337, "columnno": 8, "code": { - "id": "astnode100027988", + "id": "astnode100028022", "name": "longitude" } }, @@ -54627,14 +54699,14 @@ "comment": "", "meta": { "range": [ - 303388, - 303423 + 303787, + 303822 ], "filename": "astronomy.js", - "lineno": 7337, + "lineno": 7342, "columnno": 10, "code": { - "id": "astnode100027991", + "id": "astnode100028025", "name": "rot", "type": "CallExpression", "value": "" @@ -54652,14 +54724,14 @@ "comment": "", "meta": { "range": [ - 303435, - 303468 + 303834, + 303867 ], "filename": "astronomy.js", - "lineno": 7338, + "lineno": 7343, "columnno": 10, "code": { - "id": "astnode100027999", + "id": "astnode100028033", "name": "v", "type": "CallExpression", "value": "" @@ -54677,14 +54749,14 @@ "comment": "", "meta": { "range": [ - 303533, - 303569 + 303932, + 303968 ], "filename": "astronomy.js", - "lineno": 7339, + "lineno": 7344, "columnno": 10, "code": { - "id": "astnode100028008", + "id": "astnode100028042", "name": "e", "type": "CallExpression", "value": "" @@ -54702,14 +54774,14 @@ "comment": "", "meta": { "range": [ - 303914, - 303938 + 304313, + 304337 ], "filename": "astronomy.js", - "lineno": 7344, + "lineno": 7349, "columnno": 4, "code": { - "id": "astnode100028017", + "id": "astnode100028051", "name": "v.x", "type": "MemberExpression", "funcscope": "GeoidIntersect", @@ -54728,14 +54800,14 @@ "comment": "", "meta": { "range": [ - 303944, - 303968 + 304343, + 304367 ], "filename": "astronomy.js", - "lineno": 7345, + "lineno": 7350, "columnno": 4, "code": { - "id": "astnode100028025", + "id": "astnode100028059", "name": "v.y", "type": "MemberExpression", "funcscope": "GeoidIntersect", @@ -54754,14 +54826,14 @@ "comment": "", "meta": { "range": [ - 303974, - 304017 + 304373, + 304416 ], "filename": "astronomy.js", - "lineno": 7346, + "lineno": 7351, "columnno": 4, "code": { - "id": "astnode100028033", + "id": "astnode100028067", "name": "v.z", "type": "BinaryExpression", "funcscope": "GeoidIntersect", @@ -54780,14 +54852,14 @@ "comment": "", "meta": { "range": [ - 304023, - 304047 + 304422, + 304446 ], "filename": "astronomy.js", - "lineno": 7347, + "lineno": 7352, "columnno": 4, "code": { - "id": "astnode100028043", + "id": "astnode100028077", "name": "e.x", "type": "MemberExpression", "funcscope": "GeoidIntersect", @@ -54806,14 +54878,14 @@ "comment": "", "meta": { "range": [ - 304053, - 304077 + 304452, + 304476 ], "filename": "astronomy.js", - "lineno": 7348, + "lineno": 7353, "columnno": 4, "code": { - "id": "astnode100028051", + "id": "astnode100028085", "name": "e.y", "type": "MemberExpression", "funcscope": "GeoidIntersect", @@ -54832,14 +54904,14 @@ "comment": "", "meta": { "range": [ - 304083, - 304126 + 304482, + 304525 ], "filename": "astronomy.js", - "lineno": 7349, + "lineno": 7354, "columnno": 4, "code": { - "id": "astnode100028059", + "id": "astnode100028093", "name": "e.z", "type": "BinaryExpression", "funcscope": "GeoidIntersect", @@ -54858,14 +54930,14 @@ "comment": "", "meta": { "range": [ - 304286, - 304316 + 304685, + 304715 ], "filename": "astronomy.js", - "lineno": 7352, + "lineno": 7357, "columnno": 10, "code": { - "id": "astnode100028069", + "id": "astnode100028103", "name": "R", "type": "Identifier", "value": "EARTH_EQUATORIAL_RADIUS_KM" @@ -54883,14 +54955,14 @@ "comment": "", "meta": { "range": [ - 304328, - 304365 + 304727, + 304764 ], "filename": "astronomy.js", - "lineno": 7353, + "lineno": 7358, "columnno": 10, "code": { - "id": "astnode100028073", + "id": "astnode100028107", "name": "A", "type": "BinaryExpression", "value": "" @@ -54908,14 +54980,14 @@ "comment": "", "meta": { "range": [ - 304377, - 304423 + 304776, + 304822 ], "filename": "astronomy.js", - "lineno": 7354, + "lineno": 7359, "columnno": 10, "code": { - "id": "astnode100028099", + "id": "astnode100028133", "name": "B", "type": "BinaryExpression", "value": "" @@ -54933,14 +55005,14 @@ "comment": "", "meta": { "range": [ - 304435, - 304482 + 304834, + 304881 ], "filename": "astronomy.js", - "lineno": 7355, + "lineno": 7360, "columnno": 10, "code": { - "id": "astnode100028128", + "id": "astnode100028162", "name": "C", "type": "BinaryExpression", "value": "" @@ -54958,14 +55030,14 @@ "comment": "", "meta": { "range": [ - 304494, - 304519 + 304893, + 304918 ], "filename": "astronomy.js", - "lineno": 7356, + "lineno": 7361, "columnno": 10, "code": { - "id": "astnode100028158", + "id": "astnode100028192", "name": "radic", "type": "BinaryExpression", "value": "" @@ -54983,14 +55055,14 @@ "comment": "", "meta": { "range": [ - 304676, - 304713 + 305075, + 305112 ], "filename": "astronomy.js", - "lineno": 7360, + "lineno": 7365, "columnno": 14, "code": { - "id": "astnode100028175", + "id": "astnode100028209", "name": "u", "type": "BinaryExpression", "value": "" @@ -55008,14 +55080,14 @@ "comment": "", "meta": { "range": [ - 304807, - 304825 + 305206, + 305224 ], "filename": "astronomy.js", - "lineno": 7362, + "lineno": 7367, "columnno": 14, "code": { - "id": "astnode100028190", + "id": "astnode100028224", "name": "px", "type": "BinaryExpression", "value": "" @@ -55033,14 +55105,14 @@ "comment": "", "meta": { "range": [ - 304841, - 304859 + 305240, + 305258 ], "filename": "astronomy.js", - "lineno": 7363, + "lineno": 7368, "columnno": 14, "code": { - "id": "astnode100028202", + "id": "astnode100028236", "name": "py", "type": "BinaryExpression", "value": "" @@ -55058,14 +55130,14 @@ "comment": "", "meta": { "range": [ - 304875, - 304914 + 305274, + 305313 ], "filename": "astronomy.js", - "lineno": 7364, + "lineno": 7369, "columnno": 14, "code": { - "id": "astnode100028214", + "id": "astnode100028248", "name": "pz", "type": "BinaryExpression", "value": "" @@ -55083,14 +55155,14 @@ "comment": "", "meta": { "range": [ - 305005, - 305080 + 305404, + 305479 ], "filename": "astronomy.js", - "lineno": 7366, + "lineno": 7371, "columnno": 14, "code": { - "id": "astnode100028228", + "id": "astnode100028262", "name": "proj", "type": "BinaryExpression", "value": "" @@ -55108,14 +55180,14 @@ "comment": "", "meta": { "range": [ - 305119, - 305156 + 305518, + 305555 ], "filename": "astronomy.js", - "lineno": 7368, + "lineno": 7373, "columnno": 12, "code": { - "id": "astnode100028250", + "id": "astnode100028284", "name": "latitude", "type": "ConditionalExpression", "funcscope": "GeoidIntersect", @@ -55134,14 +55206,14 @@ "comment": "", "meta": { "range": [ - 305183, - 305232 + 305582, + 305631 ], "filename": "astronomy.js", - "lineno": 7370, + "lineno": 7375, "columnno": 12, "code": { - "id": "astnode100028261", + "id": "astnode100028295", "name": "latitude", "type": "BinaryExpression", "funcscope": "GeoidIntersect", @@ -55160,14 +55232,14 @@ "comment": "", "meta": { "range": [ - 305314, - 305340 + 305713, + 305739 ], "filename": "astronomy.js", - "lineno": 7372, + "lineno": 7377, "columnno": 14, "code": { - "id": "astnode100028275", + "id": "astnode100028309", "name": "gast", "type": "CallExpression", "value": "" @@ -55185,14 +55257,14 @@ "comment": "", "meta": { "range": [ - 305350, - 305422 + 305749, + 305821 ], "filename": "astronomy.js", - "lineno": 7373, + "lineno": 7378, "columnno": 8, "code": { - "id": "astnode100028281", + "id": "astnode100028315", "name": "longitude", "type": "BinaryExpression", "funcscope": "GeoidIntersect", @@ -55211,14 +55283,14 @@ "comment": "", "meta": { "range": [ - 305469, - 305487 + 305868, + 305886 ], "filename": "astronomy.js", - "lineno": 7375, + "lineno": 7380, "columnno": 12, "code": { - "id": "astnode100028305", + "id": "astnode100028339", "name": "longitude", "type": "Literal", "funcscope": "GeoidIntersect", @@ -55237,14 +55309,14 @@ "comment": "", "meta": { "range": [ - 305538, - 305556 + 305937, + 305955 ], "filename": "astronomy.js", - "lineno": 7377, + "lineno": 7382, "columnno": 12, "code": { - "id": "astnode100028314", + "id": "astnode100028348", "name": "longitude", "type": "Literal", "funcscope": "GeoidIntersect", @@ -55263,14 +55335,14 @@ "comment": "", "meta": { "range": [ - 305814, - 305840 + 306213, + 306239 ], "filename": "astronomy.js", - "lineno": 7381, + "lineno": 7386, "columnno": 14, "code": { - "id": "astnode100028318", + "id": "astnode100028352", "name": "inv", "type": "CallExpression", "value": "" @@ -55288,14 +55360,14 @@ "comment": "", "meta": { "range": [ - 306005, - 306104 + 306404, + 306503 ], "filename": "astronomy.js", - "lineno": 7384, + "lineno": 7389, "columnno": 12, "code": { - "id": "astnode100028324", + "id": "astnode100028358", "name": "o", "type": "NewExpression", "value": "" @@ -55313,14 +55385,14 @@ "comment": "", "meta": { "range": [ - 306186, - 306210 + 306585, + 306609 ], "filename": "astronomy.js", - "lineno": 7386, + "lineno": 7391, "columnno": 8, "code": { - "id": "astnode100028347", + "id": "astnode100028381", "name": "o", "type": "CallExpression", "funcscope": "GeoidIntersect", @@ -55339,14 +55411,14 @@ "comment": "", "meta": { "range": [ - 306280, - 306302 + 306679, + 306701 ], "filename": "astronomy.js", - "lineno": 7388, + "lineno": 7393, "columnno": 8, "code": { - "id": "astnode100028354", + "id": "astnode100028388", "name": "o.x", "type": "MemberExpression", "funcscope": "GeoidIntersect", @@ -55365,14 +55437,14 @@ "comment": "", "meta": { "range": [ - 306312, - 306334 + 306711, + 306733 ], "filename": "astronomy.js", - "lineno": 7389, + "lineno": 7394, "columnno": 8, "code": { - "id": "astnode100028364", + "id": "astnode100028398", "name": "o.y", "type": "MemberExpression", "funcscope": "GeoidIntersect", @@ -55391,14 +55463,14 @@ "comment": "", "meta": { "range": [ - 306344, - 306366 + 306743, + 306765 ], "filename": "astronomy.js", - "lineno": 7390, + "lineno": 7395, "columnno": 8, "code": { - "id": "astnode100028374", + "id": "astnode100028408", "name": "o.z", "type": "MemberExpression", "funcscope": "GeoidIntersect", @@ -55417,14 +55489,14 @@ "comment": "", "meta": { "range": [ - 306475, - 306545 + 306874, + 306944 ], "filename": "astronomy.js", - "lineno": 7392, + "lineno": 7397, "columnno": 14, "code": { - "id": "astnode100028384", + "id": "astnode100028418", "name": "surface", "type": "CallExpression", "value": "" @@ -55442,14 +55514,14 @@ "comment": "", "meta": { "range": [ - 306870, - 306908 + 307269, + 307307 ], "filename": "astronomy.js", - "lineno": 7397, + "lineno": 7402, "columnno": 8, "code": { - "id": "astnode100028416", + "id": "astnode100028450", "name": "kind", "type": "CallExpression", "funcscope": "GeoidIntersect", @@ -55468,14 +55540,14 @@ "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": [ - 307579, - 307718 + 307978, + 308117 ], "filename": "astronomy.js", - "lineno": 7415, + "lineno": 7420, "columnno": 0, "code": { - "id": "astnode100028431", + "id": "astnode100028465", "name": "NextLunarEclipse", "type": "FunctionDeclaration", "paramnames": [ @@ -55523,14 +55595,14 @@ "comment": "", "meta": { "range": [ - 307634, - 307673 + 308033, + 308072 ], "filename": "astronomy.js", - "lineno": 7416, + "lineno": 7421, "columnno": 10, "code": { - "id": "astnode100028436", + "id": "astnode100028470", "name": "startTime", "type": "CallExpression", "value": "" @@ -55548,14 +55620,14 @@ "comment": "", "meta": { "range": [ - 307719, - 307762 + 308118, + 308161 ], "filename": "astronomy.js", - "lineno": 7419, + "lineno": 7424, "columnno": 0, "code": { - "id": "astnode100028448", + "id": "astnode100028482", "name": "exports.NextLunarEclipse", "type": "Identifier", "value": "NextLunarEclipse", @@ -55572,14 +55644,14 @@ "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": [ - 308399, - 310016 + 308798, + 310415 ], "filename": "astronomy.js", - "lineno": 7435, + "lineno": 7440, "columnno": 0, "code": { - "id": "astnode100028453", + "id": "astnode100028487", "name": "SearchGlobalSolarEclipse", "type": "FunctionDeclaration", "paramnames": [ @@ -55632,14 +55704,14 @@ "comment": "", "meta": { "range": [ - 308456, - 308475 + 308855, + 308874 ], "filename": "astronomy.js", - "lineno": 7436, + "lineno": 7441, "columnno": 10, "code": { - "id": "astnode100028458", + "id": "astnode100028492", "name": "PruneLatitude", "type": "Literal", "value": 1.8 @@ -55657,14 +55729,14 @@ "comment": "", "meta": { "range": [ - 308651, - 308669 + 309050, + 309068 ], "filename": "astronomy.js", - "lineno": 7438, + "lineno": 7443, "columnno": 8, "code": { - "id": "astnode100028462", + "id": "astnode100028496", "name": "nmtime", "type": "Identifier", "value": "startTime" @@ -55682,14 +55754,14 @@ "comment": "", "meta": { "range": [ - 308679, - 308686 + 309078, + 309085 ], "filename": "astronomy.js", - "lineno": 7439, + "lineno": 7444, "columnno": 8, "code": { - "id": "astnode100028466", + "id": "astnode100028500", "name": "nmcount" } }, @@ -55705,14 +55777,14 @@ "comment": "", "meta": { "range": [ - 308697, - 308708 + 309096, + 309107 ], "filename": "astronomy.js", - "lineno": 7440, + "lineno": 7445, "columnno": 9, "code": { - "id": "astnode100028469", + "id": "astnode100028503", "name": "nmcount", "type": "Literal", "funcscope": "SearchGlobalSolarEclipse", @@ -55731,14 +55803,14 @@ "comment": "", "meta": { "range": [ - 308821, - 308865 + 309220, + 309264 ], "filename": "astronomy.js", - "lineno": 7442, + "lineno": 7447, "columnno": 14, "code": { - "id": "astnode100028479", + "id": "astnode100028513", "name": "newmoon", "type": "CallExpression", "value": "" @@ -55756,14 +55828,14 @@ "comment": "", "meta": { "range": [ - 309048, - 309096 + 309447, + 309495 ], "filename": "astronomy.js", - "lineno": 7446, + "lineno": 7451, "columnno": 14, "code": { - "id": "astnode100028492", + "id": "astnode100028526", "name": "eclip_lat", "type": "CallExpression", "value": "" @@ -55781,14 +55853,14 @@ "comment": "", "meta": { "range": [ - 309336, - 309368 + 309735, + 309767 ], "filename": "astronomy.js", - "lineno": 7450, + "lineno": 7455, "columnno": 18, "code": { - "id": "astnode100028507", + "id": "astnode100028541", "name": "shadow", "type": "CallExpression", "value": "" @@ -55806,14 +55878,14 @@ "comment": "", "meta": { "range": [ - 309783, - 309813 + 310182, + 310212 ], "filename": "astronomy.js", - "lineno": 7458, + "lineno": 7463, "columnno": 8, "code": { - "id": "astnode100028528", + "id": "astnode100028562", "name": "nmtime", "type": "CallExpression", "funcscope": "SearchGlobalSolarEclipse", @@ -55832,14 +55904,14 @@ "comment": "", "meta": { "range": [ - 310017, - 310076 + 310416, + 310475 ], "filename": "astronomy.js", - "lineno": 7464, + "lineno": 7469, "columnno": 0, "code": { - "id": "astnode100028538", + "id": "astnode100028572", "name": "exports.SearchGlobalSolarEclipse", "type": "Identifier", "value": "SearchGlobalSolarEclipse", @@ -55856,14 +55928,14 @@ "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": [ - 310692, - 310845 + 311091, + 311244 ], "filename": "astronomy.js", - "lineno": 7479, + "lineno": 7484, "columnno": 0, "code": { - "id": "astnode100028543", + "id": "astnode100028577", "name": "NextGlobalSolarEclipse", "type": "FunctionDeclaration", "paramnames": [ @@ -55911,14 +55983,14 @@ "comment": "", "meta": { "range": [ - 310753, - 310794 + 311152, + 311193 ], "filename": "astronomy.js", - "lineno": 7480, + "lineno": 7485, "columnno": 10, "code": { - "id": "astnode100028548", + "id": "astnode100028582", "name": "startTime", "type": "CallExpression", "value": "" @@ -55936,14 +56008,14 @@ "comment": "", "meta": { "range": [ - 310846, - 310901 + 311245, + 311300 ], "filename": "astronomy.js", - "lineno": 7483, + "lineno": 7488, "columnno": 0, "code": { - "id": "astnode100028560", + "id": "astnode100028594", "name": "exports.NextGlobalSolarEclipse", "type": "Identifier", "value": "NextGlobalSolarEclipse", @@ -55960,14 +56032,14 @@ "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": [ - 311900, - 312022 + 312299, + 312421 ], "filename": "astronomy.js", - "lineno": 7505, + "lineno": 7510, "columnno": 0, "code": { - "id": "astnode100028565", + "id": "astnode100028599", "name": "EclipseEvent", "type": "ClassDeclaration", "paramnames": [ @@ -56014,14 +56086,14 @@ "comment": "", "meta": { "range": [ - 311925, - 312020 + 312324, + 312419 ], "filename": "astronomy.js", - "lineno": 7506, + "lineno": 7511, "columnno": 4, "code": { - "id": "astnode100028568", + "id": "astnode100028602", "name": "EclipseEvent", "type": "MethodDefinition", "paramnames": [ @@ -56044,14 +56116,14 @@ "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": [ - 311900, - 312022 + 312299, + 312421 ], "filename": "astronomy.js", - "lineno": 7505, + "lineno": 7510, "columnno": 0, "code": { - "id": "astnode100028565", + "id": "astnode100028599", "name": "EclipseEvent", "type": "ClassDeclaration", "paramnames": [ @@ -56097,14 +56169,14 @@ "comment": "", "meta": { "range": [ - 311963, - 311979 + 312362, + 312378 ], "filename": "astronomy.js", - "lineno": 7507, + "lineno": 7512, "columnno": 8, "code": { - "id": "astnode100028575", + "id": "astnode100028609", "name": "this.time", "type": "Identifier", "value": "time", @@ -56122,14 +56194,14 @@ "comment": "", "meta": { "range": [ - 311989, - 312013 + 312388, + 312412 ], "filename": "astronomy.js", - "lineno": 7508, + "lineno": 7513, "columnno": 8, "code": { - "id": "astnode100028581", + "id": "astnode100028615", "name": "this.altitude", "type": "Identifier", "value": "altitude", @@ -56147,14 +56219,14 @@ "comment": "", "meta": { "range": [ - 312023, - 312058 + 312422, + 312457 ], "filename": "astronomy.js", - "lineno": 7511, + "lineno": 7516, "columnno": 0, "code": { - "id": "astnode100028587", + "id": "astnode100028621", "name": "exports.EclipseEvent", "type": "Identifier", "value": "EclipseEvent", @@ -56171,14 +56243,14 @@ "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": [ - 314444, - 314775 + 314843, + 315174 ], "filename": "astronomy.js", - "lineno": 7555, + "lineno": 7560, "columnno": 0, "code": { - "id": "astnode100028592", + "id": "astnode100028626", "name": "LocalSolarEclipseInfo", "type": "ClassDeclaration", "paramnames": [ @@ -56267,14 +56339,14 @@ "comment": "", "meta": { "range": [ - 314478, - 314773 + 314877, + 315172 ], "filename": "astronomy.js", - "lineno": 7556, + "lineno": 7561, "columnno": 4, "code": { - "id": "astnode100028595", + "id": "astnode100028629", "name": "LocalSolarEclipseInfo", "type": "MethodDefinition", "paramnames": [ @@ -56301,14 +56373,14 @@ "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": [ - 314444, - 314775 + 314843, + 315174 ], "filename": "astronomy.js", - "lineno": 7555, + "lineno": 7560, "columnno": 0, "code": { - "id": "astnode100028592", + "id": "astnode100028626", "name": "LocalSolarEclipseInfo", "type": "ClassDeclaration", "paramnames": [ @@ -56396,14 +56468,14 @@ "comment": "", "meta": { "range": [ - 314564, - 314580 + 314963, + 314979 ], "filename": "astronomy.js", - "lineno": 7557, + "lineno": 7562, "columnno": 8, "code": { - "id": "astnode100028606", + "id": "astnode100028640", "name": "this.kind", "type": "Identifier", "value": "kind", @@ -56421,14 +56493,14 @@ "comment": "", "meta": { "range": [ - 314590, - 314624 + 314989, + 315023 ], "filename": "astronomy.js", - "lineno": 7558, + "lineno": 7563, "columnno": 8, "code": { - "id": "astnode100028612", + "id": "astnode100028646", "name": "this.partial_begin", "type": "Identifier", "value": "partial_begin", @@ -56446,14 +56518,14 @@ "comment": "", "meta": { "range": [ - 314634, - 314664 + 315033, + 315063 ], "filename": "astronomy.js", - "lineno": 7559, + "lineno": 7564, "columnno": 8, "code": { - "id": "astnode100028618", + "id": "astnode100028652", "name": "this.total_begin", "type": "Identifier", "value": "total_begin", @@ -56471,14 +56543,14 @@ "comment": "", "meta": { "range": [ - 314674, - 314690 + 315073, + 315089 ], "filename": "astronomy.js", - "lineno": 7560, + "lineno": 7565, "columnno": 8, "code": { - "id": "astnode100028624", + "id": "astnode100028658", "name": "this.peak", "type": "Identifier", "value": "peak", @@ -56496,14 +56568,14 @@ "comment": "", "meta": { "range": [ - 314700, - 314726 + 315099, + 315125 ], "filename": "astronomy.js", - "lineno": 7561, + "lineno": 7566, "columnno": 8, "code": { - "id": "astnode100028630", + "id": "astnode100028664", "name": "this.total_end", "type": "Identifier", "value": "total_end", @@ -56521,14 +56593,14 @@ "comment": "", "meta": { "range": [ - 314736, - 314766 + 315135, + 315165 ], "filename": "astronomy.js", - "lineno": 7562, + "lineno": 7567, "columnno": 8, "code": { - "id": "astnode100028636", + "id": "astnode100028670", "name": "this.partial_end", "type": "Identifier", "value": "partial_end", @@ -56546,14 +56618,14 @@ "comment": "", "meta": { "range": [ - 314776, - 314829 + 315175, + 315228 ], "filename": "astronomy.js", - "lineno": 7565, + "lineno": 7570, "columnno": 0, "code": { - "id": "astnode100028642", + "id": "astnode100028676", "name": "exports.LocalSolarEclipseInfo", "type": "Identifier", "value": "LocalSolarEclipseInfo", @@ -56570,14 +56642,14 @@ "comment": "", "meta": { "range": [ - 314831, - 314906 + 315230, + 315305 ], "filename": "astronomy.js", - "lineno": 7566, + "lineno": 7571, "columnno": 0, "code": { - "id": "astnode100028647", + "id": "astnode100028681", "name": "local_partial_distance", "type": "FunctionDeclaration", "paramnames": [ @@ -56596,14 +56668,14 @@ "comment": "", "meta": { "range": [ - 314907, - 315108 + 315306, + 315507 ], "filename": "astronomy.js", - "lineno": 7569, + "lineno": 7574, "columnno": 0, "code": { - "id": "astnode100028659", + "id": "astnode100028693", "name": "local_total_distance", "type": "FunctionDeclaration", "paramnames": [ @@ -56622,14 +56694,14 @@ "comment": "", "meta": { "range": [ - 315109, - 316233 + 315508, + 316632 ], "filename": "astronomy.js", - "lineno": 7574, + "lineno": 7579, "columnno": 0, "code": { - "id": "astnode100028675", + "id": "astnode100028709", "name": "LocalEclipse", "type": "FunctionDeclaration", "paramnames": [ @@ -56661,14 +56733,14 @@ "comment": "", "meta": { "range": [ - 315161, - 315181 + 315560, + 315580 ], "filename": "astronomy.js", - "lineno": 7575, + "lineno": 7580, "columnno": 10, "code": { - "id": "astnode100028681", + "id": "astnode100028715", "name": "PARTIAL_WINDOW", "type": "Literal", "value": 0.2 @@ -56686,14 +56758,14 @@ "comment": "", "meta": { "range": [ - 315193, - 315212 + 315592, + 315611 ], "filename": "astronomy.js", - "lineno": 7576, + "lineno": 7581, "columnno": 10, "code": { - "id": "astnode100028685", + "id": "astnode100028719", "name": "TOTAL_WINDOW", "type": "Literal", "value": 0.01 @@ -56711,14 +56783,14 @@ "comment": "", "meta": { "range": [ - 315224, - 315263 + 315623, + 315662 ], "filename": "astronomy.js", - "lineno": 7577, + "lineno": 7582, "columnno": 10, "code": { - "id": "astnode100028689", + "id": "astnode100028723", "name": "peak", "type": "CallExpression", "value": "" @@ -56736,14 +56808,14 @@ "comment": "", "meta": { "range": [ - 315273, - 315314 + 315672, + 315713 ], "filename": "astronomy.js", - "lineno": 7578, + "lineno": 7583, "columnno": 8, "code": { - "id": "astnode100028698", + "id": "astnode100028732", "name": "t1", "type": "CallExpression", "value": "" @@ -56761,14 +56833,14 @@ "comment": "", "meta": { "range": [ - 315324, - 315365 + 315723, + 315764 ], "filename": "astronomy.js", - "lineno": 7579, + "lineno": 7584, "columnno": 8, "code": { - "id": "astnode100028709", + "id": "astnode100028743", "name": "t2", "type": "CallExpression", "value": "" @@ -56786,14 +56858,14 @@ "comment": "", "meta": { "range": [ - 315377, - 315472 + 315776, + 315871 ], "filename": "astronomy.js", - "lineno": 7580, + "lineno": 7585, "columnno": 10, "code": { - "id": "astnode100028720", + "id": "astnode100028754", "name": "partial_begin", "type": "CallExpression", "value": "" @@ -56811,14 +56883,14 @@ "comment": "", "meta": { "range": [ - 315484, - 315577 + 315883, + 315976 ], "filename": "astronomy.js", - "lineno": 7581, + "lineno": 7586, "columnno": 10, "code": { - "id": "astnode100028733", + "id": "astnode100028767", "name": "partial_end", "type": "CallExpression", "value": "" @@ -56836,14 +56908,14 @@ "comment": "", "meta": { "range": [ - 315587, - 315598 + 315986, + 315997 ], "filename": "astronomy.js", - "lineno": 7582, + "lineno": 7587, "columnno": 8, "code": { - "id": "astnode100028746", + "id": "astnode100028780", "name": "total_begin" } }, @@ -56859,14 +56931,14 @@ "comment": "", "meta": { "range": [ - 315608, - 315617 + 316007, + 316016 ], "filename": "astronomy.js", - "lineno": 7583, + "lineno": 7588, "columnno": 8, "code": { - "id": "astnode100028749", + "id": "astnode100028783", "name": "total_end" } }, @@ -56882,14 +56954,14 @@ "comment": "", "meta": { "range": [ - 315627, - 315631 + 316026, + 316030 ], "filename": "astronomy.js", - "lineno": 7584, + "lineno": 7589, "columnno": 8, "code": { - "id": "astnode100028752", + "id": "astnode100028786", "name": "kind" } }, @@ -56905,14 +56977,14 @@ "comment": "", "meta": { "range": [ - 315744, - 315783 + 316143, + 316182 ], "filename": "astronomy.js", - "lineno": 7586, + "lineno": 7591, "columnno": 8, "code": { - "id": "astnode100028768", + "id": "astnode100028802", "name": "t1", "type": "CallExpression", "funcscope": "LocalEclipse", @@ -56931,14 +57003,14 @@ "comment": "", "meta": { "range": [ - 315793, - 315832 + 316192, + 316231 ], "filename": "astronomy.js", - "lineno": 7587, + "lineno": 7592, "columnno": 8, "code": { - "id": "astnode100028779", + "id": "astnode100028813", "name": "t2", "type": "CallExpression", "funcscope": "LocalEclipse", @@ -56957,14 +57029,14 @@ "comment": "", "meta": { "range": [ - 315842, - 315933 + 316241, + 316332 ], "filename": "astronomy.js", - "lineno": 7588, + "lineno": 7593, "columnno": 8, "code": { - "id": "astnode100028790", + "id": "astnode100028824", "name": "total_begin", "type": "CallExpression", "funcscope": "LocalEclipse", @@ -56983,14 +57055,14 @@ "comment": "", "meta": { "range": [ - 315943, - 316032 + 316342, + 316431 ], "filename": "astronomy.js", - "lineno": 7589, + "lineno": 7594, "columnno": 8, "code": { - "id": "astnode100028803", + "id": "astnode100028837", "name": "total_end", "type": "CallExpression", "funcscope": "LocalEclipse", @@ -57009,14 +57081,14 @@ "comment": "", "meta": { "range": [ - 316042, - 316079 + 316441, + 316478 ], "filename": "astronomy.js", - "lineno": 7590, + "lineno": 7595, "columnno": 8, "code": { - "id": "astnode100028816", + "id": "astnode100028850", "name": "kind", "type": "CallExpression", "funcscope": "LocalEclipse", @@ -57035,14 +57107,14 @@ "comment": "", "meta": { "range": [ - 316106, - 316122 + 316505, + 316521 ], "filename": "astronomy.js", - "lineno": 7593, + "lineno": 7598, "columnno": 8, "code": { - "id": "astnode100028825", + "id": "astnode100028859", "name": "kind", "type": "Literal", "funcscope": "LocalEclipse", @@ -57061,14 +57133,14 @@ "comment": "", "meta": { "range": [ - 316234, - 316596 + 316633, + 316995 ], "filename": "astronomy.js", - "lineno": 7597, + "lineno": 7602, "columnno": 0, "code": { - "id": "astnode100028837", + "id": "astnode100028871", "name": "LocalEclipseTransition", "type": "FunctionDeclaration", "paramnames": [ @@ -57095,14 +57167,14 @@ "comment": "", "meta": { "range": [ - 316307, - 316435 + 316706, + 316834 ], "filename": "astronomy.js", - "lineno": 7598, + "lineno": 7603, "columnno": 4, "code": { - "id": "astnode100028845", + "id": "astnode100028879", "name": "evaluate", "type": "FunctionDeclaration", "paramnames": [ @@ -57125,14 +57197,14 @@ "comment": "", "meta": { "range": [ - 316347, - 316387 + 316746, + 316786 ], "filename": "astronomy.js", - "lineno": 7599, + "lineno": 7604, "columnno": 14, "code": { - "id": "astnode100028850", + "id": "astnode100028884", "name": "shadow", "type": "CallExpression", "value": "" @@ -57150,14 +57222,14 @@ "comment": "", "meta": { "range": [ - 316446, - 316479 + 316845, + 316878 ], "filename": "astronomy.js", - "lineno": 7602, + "lineno": 7607, "columnno": 10, "code": { - "id": "astnode100028863", + "id": "astnode100028897", "name": "search", "type": "CallExpression", "value": "" @@ -57175,14 +57247,14 @@ "comment": "", "meta": { "range": [ - 316597, - 316730 + 316996, + 317129 ], "filename": "astronomy.js", - "lineno": 7607, + "lineno": 7612, "columnno": 0, "code": { - "id": "astnode100028880", + "id": "astnode100028914", "name": "CalcEvent", "type": "FunctionDeclaration", "paramnames": [ @@ -57205,14 +57277,14 @@ "comment": "", "meta": { "range": [ - 316644, - 316682 + 317043, + 317081 ], "filename": "astronomy.js", - "lineno": 7608, + "lineno": 7613, "columnno": 10, "code": { - "id": "astnode100028886", + "id": "astnode100028920", "name": "altitude", "type": "CallExpression", "value": "" @@ -57230,14 +57302,14 @@ "comment": "", "meta": { "range": [ - 316731, - 316927 + 317130, + 317326 ], "filename": "astronomy.js", - "lineno": 7611, + "lineno": 7616, "columnno": 0, "code": { - "id": "astnode100028897", + "id": "astnode100028931", "name": "SunAltitude", "type": "FunctionDeclaration", "paramnames": [ @@ -57261,14 +57333,14 @@ "comment": "", "meta": { "range": [ - 316780, - 316831 + 317179, + 317230 ], "filename": "astronomy.js", - "lineno": 7612, + "lineno": 7617, "columnno": 10, "code": { - "id": "astnode100028903", + "id": "astnode100028937", "name": "equ", "type": "CallExpression", "value": "" @@ -57286,14 +57358,14 @@ "comment": "", "meta": { "range": [ - 316843, - 316899 + 317242, + 317298 ], "filename": "astronomy.js", - "lineno": 7613, + "lineno": 7618, "columnno": 10, "code": { - "id": "astnode100028915", + "id": "astnode100028949", "name": "hor", "type": "CallExpression", "value": "" @@ -57311,14 +57383,14 @@ "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": [ - 317872, - 319580 + 318271, + 319979 ], "filename": "astronomy.js", - "lineno": 7639, + "lineno": 7644, "columnno": 0, "code": { - "id": "astnode100028932", + "id": "astnode100028966", "name": "SearchLocalSolarEclipse", "type": "FunctionDeclaration", "paramnames": [ @@ -57381,14 +57453,14 @@ "comment": "", "meta": { "range": [ - 317968, - 317987 + 318367, + 318386 ], "filename": "astronomy.js", - "lineno": 7641, + "lineno": 7646, "columnno": 10, "code": { - "id": "astnode100028942", + "id": "astnode100028976", "name": "PruneLatitude", "type": "Literal", "value": 1.8 @@ -57406,14 +57478,14 @@ "comment": "", "meta": { "range": [ - 318169, - 318187 + 318568, + 318586 ], "filename": "astronomy.js", - "lineno": 7643, + "lineno": 7648, "columnno": 8, "code": { - "id": "astnode100028946", + "id": "astnode100028980", "name": "nmtime", "type": "Identifier", "value": "startTime" @@ -57431,14 +57503,14 @@ "comment": "", "meta": { "range": [ - 318291, - 318335 + 318690, + 318734 ], "filename": "astronomy.js", - "lineno": 7646, + "lineno": 7651, "columnno": 14, "code": { - "id": "astnode100028952", + "id": "astnode100028986", "name": "newmoon", "type": "CallExpression", "value": "" @@ -57456,14 +57528,14 @@ "comment": "", "meta": { "range": [ - 318526, - 318574 + 318925, + 318973 ], "filename": "astronomy.js", - "lineno": 7650, + "lineno": 7655, "columnno": 14, "code": { - "id": "astnode100028965", + "id": "astnode100028999", "name": "eclip_lat", "type": "CallExpression", "value": "" @@ -57481,14 +57553,14 @@ "comment": "", "meta": { "range": [ - 318809, - 318856 + 319208, + 319255 ], "filename": "astronomy.js", - "lineno": 7654, + "lineno": 7659, "columnno": 18, "code": { - "id": "astnode100028980", + "id": "astnode100029014", "name": "shadow", "type": "CallExpression", "value": "" @@ -57506,14 +57578,14 @@ "comment": "", "meta": { "range": [ - 319000, - 319040 + 319399, + 319439 ], "filename": "astronomy.js", - "lineno": 7657, + "lineno": 7662, "columnno": 22, "code": { - "id": "astnode100028996", + "id": "astnode100029030", "name": "eclipse", "type": "CallExpression", "value": "" @@ -57531,14 +57603,14 @@ "comment": "", "meta": { "range": [ - 319541, - 319571 + 319940, + 319970 ], "filename": "astronomy.js", - "lineno": 7666, + "lineno": 7671, "columnno": 8, "code": { - "id": "astnode100029021", + "id": "astnode100029055", "name": "nmtime", "type": "CallExpression", "funcscope": "SearchLocalSolarEclipse", @@ -57557,14 +57629,14 @@ "comment": "", "meta": { "range": [ - 319581, - 319638 + 319980, + 320037 ], "filename": "astronomy.js", - "lineno": 7669, + "lineno": 7674, "columnno": 0, "code": { - "id": "astnode100029029", + "id": "astnode100029063", "name": "exports.SearchLocalSolarEclipse", "type": "Identifier", "value": "SearchLocalSolarEclipse", @@ -57581,14 +57653,14 @@ "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": [ - 320497, - 320668 + 320896, + 321067 ], "filename": "astronomy.js", - "lineno": 7690, + "lineno": 7695, "columnno": 0, "code": { - "id": "astnode100029034", + "id": "astnode100029068", "name": "NextLocalSolarEclipse", "type": "FunctionDeclaration", "paramnames": [ @@ -57646,14 +57718,14 @@ "comment": "", "meta": { "range": [ - 320567, - 320608 + 320966, + 321007 ], "filename": "astronomy.js", - "lineno": 7691, + "lineno": 7696, "columnno": 10, "code": { - "id": "astnode100029040", + "id": "astnode100029074", "name": "startTime", "type": "CallExpression", "value": "" @@ -57671,14 +57743,14 @@ "comment": "", "meta": { "range": [ - 320669, - 320722 + 321068, + 321121 ], "filename": "astronomy.js", - "lineno": 7694, + "lineno": 7699, "columnno": 0, "code": { - "id": "astnode100029053", + "id": "astnode100029087", "name": "exports.NextLocalSolarEclipse", "type": "Identifier", "value": "NextLocalSolarEclipse", @@ -57695,14 +57767,14 @@ "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": [ - 321833, - 322033 + 322232, + 322432 ], "filename": "astronomy.js", - "lineno": 7720, + "lineno": 7725, "columnno": 0, "code": { - "id": "astnode100029058", + "id": "astnode100029092", "name": "TransitInfo", "type": "ClassDeclaration", "paramnames": [ @@ -57769,14 +57841,14 @@ "comment": "", "meta": { "range": [ - 321857, - 322031 + 322256, + 322430 ], "filename": "astronomy.js", - "lineno": 7721, + "lineno": 7726, "columnno": 4, "code": { - "id": "astnode100029061", + "id": "astnode100029095", "name": "TransitInfo", "type": "MethodDefinition", "paramnames": [ @@ -57801,14 +57873,14 @@ "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": [ - 321833, - 322033 + 322232, + 322432 ], "filename": "astronomy.js", - "lineno": 7720, + "lineno": 7725, "columnno": 0, "code": { - "id": "astnode100029058", + "id": "astnode100029092", "name": "TransitInfo", "type": "ClassDeclaration", "paramnames": [ @@ -57874,14 +57946,14 @@ "comment": "", "meta": { "range": [ - 321912, - 321930 + 322311, + 322329 ], "filename": "astronomy.js", - "lineno": 7722, + "lineno": 7727, "columnno": 8, "code": { - "id": "astnode100029070", + "id": "astnode100029104", "name": "this.start", "type": "Identifier", "value": "start", @@ -57899,14 +57971,14 @@ "comment": "", "meta": { "range": [ - 321940, - 321956 + 322339, + 322355 ], "filename": "astronomy.js", - "lineno": 7723, + "lineno": 7728, "columnno": 8, "code": { - "id": "astnode100029076", + "id": "astnode100029110", "name": "this.peak", "type": "Identifier", "value": "peak", @@ -57924,14 +57996,14 @@ "comment": "", "meta": { "range": [ - 321966, - 321986 + 322365, + 322385 ], "filename": "astronomy.js", - "lineno": 7724, + "lineno": 7729, "columnno": 8, "code": { - "id": "astnode100029082", + "id": "astnode100029116", "name": "this.finish", "type": "Identifier", "value": "finish", @@ -57949,14 +58021,14 @@ "comment": "", "meta": { "range": [ - 321996, - 322024 + 322395, + 322423 ], "filename": "astronomy.js", - "lineno": 7725, + "lineno": 7730, "columnno": 8, "code": { - "id": "astnode100029088", + "id": "astnode100029122", "name": "this.separation", "type": "Identifier", "value": "separation", @@ -57974,14 +58046,14 @@ "comment": "", "meta": { "range": [ - 322034, - 322067 + 322433, + 322466 ], "filename": "astronomy.js", - "lineno": 7728, + "lineno": 7733, "columnno": 0, "code": { - "id": "astnode100029094", + "id": "astnode100029128", "name": "exports.TransitInfo", "type": "Identifier", "value": "TransitInfo", @@ -57998,14 +58070,14 @@ "comment": "", "meta": { "range": [ - 322069, - 322252 + 322468, + 322651 ], "filename": "astronomy.js", - "lineno": 7729, + "lineno": 7734, "columnno": 0, "code": { - "id": "astnode100029099", + "id": "astnode100029133", "name": "PlanetShadowBoundary", "type": "FunctionDeclaration", "paramnames": [ @@ -58030,14 +58102,14 @@ "comment": "", "meta": { "range": [ - 322152, - 322203 + 322551, + 322602 ], "filename": "astronomy.js", - "lineno": 7730, + "lineno": 7735, "columnno": 10, "code": { - "id": "astnode100029107", + "id": "astnode100029141", "name": "shadow", "type": "CallExpression", "value": "" @@ -58055,14 +58127,14 @@ "comment": "", "meta": { "range": [ - 322253, - 322623 + 322652, + 323022 ], "filename": "astronomy.js", - "lineno": 7733, + "lineno": 7738, "columnno": 0, "code": { - "id": "astnode100029124", + "id": "astnode100029158", "name": "PlanetTransitBoundary", "type": "FunctionDeclaration", "paramnames": [ @@ -58089,14 +58161,14 @@ "comment": "", "meta": { "range": [ - 322445, - 322537 + 322844, + 322936 ], "filename": "astronomy.js", - "lineno": 7735, + "lineno": 7740, "columnno": 10, "code": { - "id": "astnode100029133", + "id": "astnode100029167", "name": "tx", "type": "CallExpression", "value": "" @@ -58114,14 +58186,14 @@ "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": [ - 323290, - 325482 + 323689, + 325881 ], "filename": "astronomy.js", - "lineno": 7757, + "lineno": 7762, "columnno": 0, "code": { - "id": "astnode100029154", + "id": "astnode100029188", "name": "SearchTransit", "type": "FunctionDeclaration", "paramnames": [ @@ -58190,14 +58262,14 @@ "comment": "", "meta": { "range": [ - 323342, - 323363 + 323741, + 323762 ], "filename": "astronomy.js", - "lineno": 7758, + "lineno": 7763, "columnno": 10, "code": { - "id": "astnode100029160", + "id": "astnode100029194", "name": "threshold_angle", "type": "Literal", "value": 0.4 @@ -58215,14 +58287,14 @@ "comment": "", "meta": { "range": [ - 323436, - 323449 + 323835, + 323848 ], "filename": "astronomy.js", - "lineno": 7759, + "lineno": 7764, "columnno": 10, "code": { - "id": "astnode100029164", + "id": "astnode100029198", "name": "dt_days", "type": "Literal", "value": 1 @@ -58240,14 +58312,14 @@ "comment": "", "meta": { "range": [ - 323512, - 323528 + 323911, + 323927 ], "filename": "astronomy.js", - "lineno": 7761, + "lineno": 7766, "columnno": 8, "code": { - "id": "astnode100029168", + "id": "astnode100029202", "name": "planet_radius_km" } }, @@ -58263,14 +58335,14 @@ "comment": "", "meta": { "range": [ - 323589, - 323614 + 323988, + 324013 ], "filename": "astronomy.js", - "lineno": 7764, + "lineno": 7769, "columnno": 12, "code": { - "id": "astnode100029177", + "id": "astnode100029211", "name": "planet_radius_km", "type": "Literal", "funcscope": "SearchTransit", @@ -58289,14 +58361,14 @@ "comment": "", "meta": { "range": [ - 323672, - 323697 + 324071, + 324096 ], "filename": "astronomy.js", - "lineno": 7767, + "lineno": 7772, "columnno": 12, "code": { - "id": "astnode100029186", + "id": "astnode100029220", "name": "planet_radius_km", "type": "Literal", "funcscope": "SearchTransit", @@ -58315,14 +58387,14 @@ "comment": "", "meta": { "range": [ - 323792, - 323815 + 324191, + 324214 ], "filename": "astronomy.js", - "lineno": 7772, + "lineno": 7777, "columnno": 8, "code": { - "id": "astnode100029197", + "id": "astnode100029231", "name": "search_time", "type": "Identifier", "value": "startTime" @@ -58340,14 +58412,14 @@ "comment": "", "meta": { "range": [ - 324049, - 324103 + 324448, + 324502 ], "filename": "astronomy.js", - "lineno": 7777, + "lineno": 7782, "columnno": 14, "code": { - "id": "astnode100029203", + "id": "astnode100029237", "name": "conj", "type": "CallExpression", "value": "" @@ -58365,14 +58437,14 @@ "comment": "", "meta": { "range": [ - 324206, - 324248 + 324605, + 324647 ], "filename": "astronomy.js", - "lineno": 7779, + "lineno": 7784, "columnno": 14, "code": { - "id": "astnode100029211", + "id": "astnode100029245", "name": "conj_separation", "type": "CallExpression", "value": "" @@ -58390,14 +58462,14 @@ "comment": "", "meta": { "range": [ - 324580, - 324635 + 324979, + 325034 ], "filename": "astronomy.js", - "lineno": 7785, + "lineno": 7790, "columnno": 18, "code": { - "id": "astnode100029223", + "id": "astnode100029257", "name": "shadow", "type": "CallExpression", "value": "" @@ -58415,14 +58487,14 @@ "comment": "", "meta": { "range": [ - 324826, - 324869 + 325225, + 325268 ], "filename": "astronomy.js", - "lineno": 7788, + "lineno": 7793, "columnno": 22, "code": { - "id": "astnode100029240", + "id": "astnode100029274", "name": "time_before", "type": "CallExpression", "value": "" @@ -58440,14 +58512,14 @@ "comment": "", "meta": { "range": [ - 324893, - 324978 + 325292, + 325377 ], "filename": "astronomy.js", - "lineno": 7789, + "lineno": 7794, "columnno": 22, "code": { - "id": "astnode100029251", + "id": "astnode100029285", "name": "start", "type": "CallExpression", "value": "" @@ -58465,14 +58537,14 @@ "comment": "", "meta": { "range": [ - 325002, - 325044 + 325401, + 325443 ], "filename": "astronomy.js", - "lineno": 7790, + "lineno": 7795, "columnno": 22, "code": { - "id": "astnode100029264", + "id": "astnode100029298", "name": "time_after", "type": "CallExpression", "value": "" @@ -58490,14 +58562,14 @@ "comment": "", "meta": { "range": [ - 325068, - 325153 + 325467, + 325552 ], "filename": "astronomy.js", - "lineno": 7791, + "lineno": 7796, "columnno": 22, "code": { - "id": "astnode100029275", + "id": "astnode100029309", "name": "finish", "type": "CallExpression", "value": "" @@ -58515,14 +58587,14 @@ "comment": "", "meta": { "range": [ - 325177, - 325232 + 325576, + 325631 ], "filename": "astronomy.js", - "lineno": 7792, + "lineno": 7797, "columnno": 22, "code": { - "id": "astnode100029288", + "id": "astnode100029322", "name": "min_separation", "type": "BinaryExpression", "value": "" @@ -58540,14 +58612,14 @@ "comment": "", "meta": { "range": [ - 325441, - 325473 + 325840, + 325872 ], "filename": "astronomy.js", - "lineno": 7797, + "lineno": 7802, "columnno": 8, "code": { - "id": "astnode100029308", + "id": "astnode100029342", "name": "search_time", "type": "CallExpression", "funcscope": "SearchTransit", @@ -58566,14 +58638,14 @@ "comment": "", "meta": { "range": [ - 325483, - 325520 + 325882, + 325919 ], "filename": "astronomy.js", - "lineno": 7800, + "lineno": 7805, "columnno": 0, "code": { - "id": "astnode100029316", + "id": "astnode100029350", "name": "exports.SearchTransit", "type": "Identifier", "value": "SearchTransit", @@ -58590,14 +58662,14 @@ "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": [ - 326052, - 326196 + 326451, + 326595 ], "filename": "astronomy.js", - "lineno": 7816, + "lineno": 7821, "columnno": 0, "code": { - "id": "astnode100029321", + "id": "astnode100029355", "name": "NextTransit", "type": "FunctionDeclaration", "paramnames": [ @@ -58655,14 +58727,14 @@ "comment": "", "meta": { "range": [ - 326108, - 326150 + 326507, + 326549 ], "filename": "astronomy.js", - "lineno": 7817, + "lineno": 7822, "columnno": 10, "code": { - "id": "astnode100029327", + "id": "astnode100029361", "name": "startTime", "type": "CallExpression", "value": "" @@ -58680,14 +58752,14 @@ "comment": "", "meta": { "range": [ - 326197, - 326230 + 326596, + 326629 ], "filename": "astronomy.js", - "lineno": 7820, + "lineno": 7825, "columnno": 0, "code": { - "id": "astnode100029340", + "id": "astnode100029374", "name": "exports.NextTransit", "type": "Identifier", "value": "NextTransit",