diff --git a/demo/browser/astronomy.browser.js b/demo/browser/astronomy.browser.js index ecc78b6a..5f2f68de 100644 --- a/demo/browser/astronomy.browser.js +++ b/demo/browser/astronomy.browser.js @@ -1565,7 +1565,7 @@ function sidereal_time(time) { if (gst < 0) { gst += 24; } - return gst; + return gst; // return sidereal hours in the half-open range [0, 24). } function terra(observer, st) { const df = 1 - 0.003352819697896; // flattening of the Earth @@ -1927,26 +1927,61 @@ function Horizon(date, observer, ra, dec, refraction) { const cosdc = Math.cos(dec * DEG2RAD); const sinra = Math.sin(ra * 15 * DEG2RAD); const cosra = Math.cos(ra * 15 * DEG2RAD); + // Calculate three mutually perpendicular unit vectors + // in equatorial coordinates: uze, une, uwe. + // + // uze = The direction of the observer's local zenith (straight up). + // une = The direction toward due north on the observer's horizon. + // uwe = The direction toward due west on the observer's horizon. + // + // HOWEVER, these are uncorrected for the Earth's rotation due to the time of day. + // + // The components of these 3 vectors are as follows: + // x = direction from center of Earth toward 0 degrees longitude (the prime meridian) on equator. + // y = direction from center of Earth toward 90 degrees west longitude on equator. + // z = direction from center of Earth toward the north pole. let uze = [coslat * coslon, coslat * sinlon, sinlat]; let une = [-sinlat * coslon, -sinlat * sinlon, coslat]; let uwe = [sinlon, -coslon, 0]; + // Correct the vectors uze, une, uwe for the Earth's rotation by calculating + // sideral time. Call spin() for each uncorrected vector to rotate about + // the Earth's axis to yield corrected unit vectors uz, un, uw. + // Multiply sidereal hours by -15 to convert to degrees and flip eastward + // rotation of the Earth to westward apparent movement of objects with time. const spin_angle = -15 * sidereal_time(time); let uz = spin(spin_angle, uze); let un = spin(spin_angle, une); let uw = spin(spin_angle, uwe); + // Convert angular equatorial coordinates (RA, DEC) to + // cartesian equatorial coordinates in 'p', using the + // same orientation system as uze, une, uwe. let p = [cosdc * cosra, cosdc * sinra, sindc]; + // Use dot products of p with the zenith, north, and west + // vectors to obtain the cartesian coordinates of the body in + // the observer's horizontal orientation system. + // pz = zenith component [-1, +1] + // pn = north component [-1, +1] + // pw = west component [-1, +1] const pz = p[0] * uz[0] + p[1] * uz[1] + p[2] * uz[2]; const pn = p[0] * un[0] + p[1] * un[1] + p[2] * un[2]; const pw = p[0] * uw[0] + p[1] * uw[1] + p[2] * uw[2]; + // proj is the "shadow" of the body vector along the observer's flat ground. let proj = Math.sqrt(pn * pn + pw * pw); - let az = 0; + // Calculate az = azimuth (compass direction clockwise from East.) + let az; if (proj > 0) { + // If the body is not exactly straight up/down, it has an azimuth. + // Invert the angle to produce degrees eastward from north. az = -Math.atan2(pw, pn) * RAD2DEG; if (az < 0) az += 360; - if (az >= 360) - az -= 360; } + else { + // The body is straight up/down, so it does not have an azimuth. + // Report an arbitrary but reasonable value. + az = 0; + } + // zd = the angle of the body away from the observer's zenith, in degrees. let zd = Math.atan2(proj, pz) * RAD2DEG; let out_ra = ra; let out_dec = dec; @@ -1969,9 +2004,6 @@ function Horizon(date, observer, ra, dec, refraction) { if (out_ra < 0) { out_ra += 24; } - if (out_ra >= 24) { - out_ra -= 24; - } } else { out_ra = 0; diff --git a/demo/nodejs/astronomy.js b/demo/nodejs/astronomy.js index 690534ee..cc5d843d 100644 --- a/demo/nodejs/astronomy.js +++ b/demo/nodejs/astronomy.js @@ -1564,7 +1564,7 @@ function sidereal_time(time) { if (gst < 0) { gst += 24; } - return gst; + return gst; // return sidereal hours in the half-open range [0, 24). } function terra(observer, st) { const df = 1 - 0.003352819697896; // flattening of the Earth @@ -1926,26 +1926,61 @@ function Horizon(date, observer, ra, dec, refraction) { const cosdc = Math.cos(dec * DEG2RAD); const sinra = Math.sin(ra * 15 * DEG2RAD); const cosra = Math.cos(ra * 15 * DEG2RAD); + // Calculate three mutually perpendicular unit vectors + // in equatorial coordinates: uze, une, uwe. + // + // uze = The direction of the observer's local zenith (straight up). + // une = The direction toward due north on the observer's horizon. + // uwe = The direction toward due west on the observer's horizon. + // + // HOWEVER, these are uncorrected for the Earth's rotation due to the time of day. + // + // The components of these 3 vectors are as follows: + // x = direction from center of Earth toward 0 degrees longitude (the prime meridian) on equator. + // y = direction from center of Earth toward 90 degrees west longitude on equator. + // z = direction from center of Earth toward the north pole. let uze = [coslat * coslon, coslat * sinlon, sinlat]; let une = [-sinlat * coslon, -sinlat * sinlon, coslat]; let uwe = [sinlon, -coslon, 0]; + // Correct the vectors uze, une, uwe for the Earth's rotation by calculating + // sideral time. Call spin() for each uncorrected vector to rotate about + // the Earth's axis to yield corrected unit vectors uz, un, uw. + // Multiply sidereal hours by -15 to convert to degrees and flip eastward + // rotation of the Earth to westward apparent movement of objects with time. const spin_angle = -15 * sidereal_time(time); let uz = spin(spin_angle, uze); let un = spin(spin_angle, une); let uw = spin(spin_angle, uwe); + // Convert angular equatorial coordinates (RA, DEC) to + // cartesian equatorial coordinates in 'p', using the + // same orientation system as uze, une, uwe. let p = [cosdc * cosra, cosdc * sinra, sindc]; + // Use dot products of p with the zenith, north, and west + // vectors to obtain the cartesian coordinates of the body in + // the observer's horizontal orientation system. + // pz = zenith component [-1, +1] + // pn = north component [-1, +1] + // pw = west component [-1, +1] const pz = p[0] * uz[0] + p[1] * uz[1] + p[2] * uz[2]; const pn = p[0] * un[0] + p[1] * un[1] + p[2] * un[2]; const pw = p[0] * uw[0] + p[1] * uw[1] + p[2] * uw[2]; + // proj is the "shadow" of the body vector along the observer's flat ground. let proj = Math.sqrt(pn * pn + pw * pw); - let az = 0; + // Calculate az = azimuth (compass direction clockwise from East.) + let az; if (proj > 0) { + // If the body is not exactly straight up/down, it has an azimuth. + // Invert the angle to produce degrees eastward from north. az = -Math.atan2(pw, pn) * RAD2DEG; if (az < 0) az += 360; - if (az >= 360) - az -= 360; } + else { + // The body is straight up/down, so it does not have an azimuth. + // Report an arbitrary but reasonable value. + az = 0; + } + // zd = the angle of the body away from the observer's zenith, in degrees. let zd = Math.atan2(proj, pz) * RAD2DEG; let out_ra = ra; let out_dec = dec; @@ -1968,9 +2003,6 @@ function Horizon(date, observer, ra, dec, refraction) { if (out_ra < 0) { out_ra += 24; } - if (out_ra >= 24) { - out_ra -= 24; - } } else { out_ra = 0; diff --git a/demo/python/astronomy.py b/demo/python/astronomy.py index b9df9b9b..fc7c6679 100644 --- a/demo/python/astronomy.py +++ b/demo/python/astronomy.py @@ -1416,6 +1416,7 @@ def _sidereal_time(time): gst = math.fmod((st/3600.0 + theta), 360.0) / 15.0 if gst < 0.0: gst += 24.0 + # return sidereal hours in the half-open range [0, 24). return gst @@ -3885,29 +3886,69 @@ def Horizon(time, observer, ra, dec, refraction): sinra = math.sin(rarad) cosra = math.cos(rarad) + # Calculate three mutually perpendicular unit vectors + # in equatorial coordinates: uze, une, uwe. + # + # uze = The direction of the observer's local zenith (straight up). + # une = The direction toward due north on the observer's horizon. + # uwe = The direction toward due west on the observer's horizon. + # + # HOWEVER, these are uncorrected for the Earth's rotation due to the time of day. + # + # The components of these 3 vectors are as follows: + # [0] = x = direction from center of Earth toward 0 degrees longitude (the prime meridian) on equator. + # [1] = y = direction from center of Earth toward 90 degrees west longitude on equator. + # [2] = z = direction from center of Earth toward the north pole. + uze = [coslat*coslon, coslat*sinlon, sinlat] une = [-sinlat*coslon, -sinlat*sinlon, coslat] uwe = [sinlon, -coslon, 0.0] + # Correct the vectors uze, une, uwe for the Earth's rotation by calculating + # sideral time. Call spin() for each uncorrected vector to rotate about + # the Earth's axis to yield corrected unit vectors uz, un, uw. + # Multiply sidereal hours by -15 to convert to degrees and flip eastward + # rotation of the Earth to westward apparent movement of objects with time. + angle = -15.0 * _sidereal_time(time) uz = _spin(angle, uze) un = _spin(angle, une) uw = _spin(angle, uwe) + # Convert angular equatorial coordinates (RA, DEC) to + # cartesian equatorial coordinates in 'p', using the + # same orientation system as uze, une, uwe. + p = [cosdc*cosra, cosdc*sinra, sindc] + # Use dot products of p with the zenith, north, and west + # vectors to obtain the cartesian coordinates of the body in + # the observer's horizontal orientation system. + # + # pz = zenith component [-1, +1] + # pn = north component [-1, +1] + # pw = west component [-1, +1] + pz = p[0]*uz[0] + p[1]*uz[1] + p[2]*uz[2] pn = p[0]*un[0] + p[1]*un[1] + p[2]*un[2] pw = p[0]*uw[0] + p[1]*uw[1] + p[2]*uw[2] + # proj is the "shadow" of the body vector along the observer's flat ground. proj = math.sqrt(pn*pn + pw*pw) - az = 0.0 + + # Calculate az = azimuth (compass direction clockwise from East.) if proj > 0.0: + # If the body is not exactly straight up/down, it has an azimuth. + # Invert the angle to produce degrees eastward from north. az = math.degrees(-math.atan2(pw, pn)) if az < 0: az += 360 - if az >= 360: - az -= 360 + else: + # The body is straight up/down, so it does not have an azimuth. + # Report an arbitrary but reasonable value. + az = 0.0 + + # zd = the angle of the body away from the observer's zenith. zd = math.degrees(math.atan2(proj, pz)) hor_ra = ra hor_dec = dec @@ -3930,8 +3971,6 @@ def Horizon(time, observer, ra, dec, refraction): hor_ra = math.degrees(math.atan2(pr[1], pr[0])) / 15 if hor_ra < 0: hor_ra += 24 - if hor_ra >= 24: - hor_ra -= 24 else: hor_ra = 0 hor_dec = math.degrees(math.atan2(pr[2], proj)) diff --git a/generate/template/astronomy.c b/generate/template/astronomy.c index 9f8af335..c1663ada 100644 --- a/generate/template/astronomy.c +++ b/generate/template/astronomy.c @@ -1375,7 +1375,7 @@ static double sidereal_time(astro_time_t *time) if (gst < 0.0) gst += 24.0; - return gst; + return gst; /* return sidereal hours in the half-open range [0, 24). */ } static void terra(astro_observer_t observer, double st, double pos[3]) @@ -2678,6 +2678,22 @@ astro_horizon_t Astronomy_Horizon( double sinra = sin(ra * 15 * DEG2RAD); double cosra = cos(ra * 15 * DEG2RAD); + /* + Calculate three mutually perpendicular unit vectors + in equatorial coordinates: uze, une, uwe. + + uze = The direction of the observer's local zenith (straight up). + une = The direction toward due north on the observer's horizon. + uwe = The direction toward due west on the observer's horizon. + + HOWEVER, these are uncorrected for the Earth's rotation due to the time of day. + + The components of these 3 vectors are as follows: + [0] = x = direction from center of Earth toward 0 degrees longitude (the prime meridian) on equator. + [1] = y = direction from center of Earth toward 90 degrees west longitude on equator. + [2] = z = direction from center of Earth toward the north pole. + */ + uze[0] = coslat * coslon; uze[1] = coslat * sinlon; uze[2] = sinlat; @@ -2690,29 +2706,61 @@ astro_horizon_t Astronomy_Horizon( uwe[1] = -coslon; uwe[2] = 0.0; + /* + Correct the vectors uze, une, uwe for the Earth's rotation by calculating + sideral time. Call spin() for each uncorrected vector to rotate about + the Earth's axis to yield corrected unit vectors uz, un, uw. + Multiply sidereal hours by -15 to convert to degrees and flip eastward + rotation of the Earth to westward apparent movement of objects with time. + */ + spin_angle = -15.0 * sidereal_time(time); spin(spin_angle, uze, uz); spin(spin_angle, une, un); spin(spin_angle, uwe, uw); + /* + Convert angular equatorial coordinates (RA, DEC) to + cartesian equatorial coordinates in 'p', using the + same orientation system as uze, une, uwe. + */ + p[0] = cosdc * cosra; p[1] = cosdc * sinra; p[2] = sindc; + /* + Use dot products of p with the zenith, north, and west + vectors to obtain the cartesian coordinates of the body in + the observer's horizontal orientation system. + + pz = zenith component [-1, +1] + pn = north component [-1, +1] + pw = west component [-1, +1] + */ + pz = p[0]*uz[0] + p[1]*uz[1] + p[2]*uz[2]; pn = p[0]*un[0] + p[1]*un[1] + p[2]*un[2]; pw = p[0]*uw[0] + p[1]*uw[1] + p[2]*uw[2]; + /* proj is the "shadow" of the body vector along the observer's flat ground. */ proj = sqrt(pn*pn + pw*pw); - az = 0.0; if (proj > 0.0) { + /* If the body is not exactly straight up/down, it has an azimuth. */ + /* Invert the angle to produce degrees eastward from north. */ az = -atan2(pw, pn) * RAD2DEG; - if (az < 0) + if (az < 0.0) az += 360; - else if (az >= 360) - az -= 360; } + else + { + /* The body is straight up/down, so it does not have an azimuth. */ + /* Report an arbitrary but reasonable value. */ + az = 0.0; + } + + /* zd = the angle of the body away from the observer's zenith, in degrees. */ zd = atan2(proj, pz) * RAD2DEG; hor.ra = ra; hor.dec = dec; @@ -2743,8 +2791,6 @@ astro_horizon_t Astronomy_Horizon( hor.ra = atan2(pr[1], pr[0]) * (RAD2DEG / 15.0); if (hor.ra < 0.0) hor.ra += 24.0; - else if (hor.ra >= 24.0) - hor.ra -= 24.0; } else { diff --git a/generate/template/astronomy.cs b/generate/template/astronomy.cs index 39941ff0..41c9dc0b 100644 --- a/generate/template/astronomy.cs +++ b/generate/template/astronomy.cs @@ -2612,7 +2612,7 @@ $ASTRO_IAU_DATA() if (gst < 0.0) gst += 24.0; - return gst; + return gst; // return sidereal hours in the half-open range [0, 24). } private static AstroVector terra(Observer observer, double st) @@ -3144,30 +3144,69 @@ $ASTRO_IAU_DATA() double sinra = Math.Sin(ra * 15 * DEG2RAD); double cosra = Math.Cos(ra * 15 * DEG2RAD); + // Calculate three mutually perpendicular unit vectors + // in equatorial coordinates: uze, une, uwe. + // + // uze = The direction of the observer's local zenith (straight up). + // une = The direction toward due north on the observer's horizon. + // uwe = The direction toward due west on the observer's horizon. + // + // HOWEVER, these are uncorrected for the Earth's rotation due to the time of day. + // + // The components of these 3 vectors are as follows: + // x = direction from center of Earth toward 0 degrees longitude (the prime meridian) on equator. + // y = direction from center of Earth toward 90 degrees west longitude on equator. + // z = direction from center of Earth toward the north pole. var uze = new AstroVector(coslat * coslon, coslat * sinlon, sinlat, null); var une = new AstroVector(-sinlat * coslon, -sinlat * sinlon, coslat, null); var uwe = new AstroVector(sinlon, -coslon, 0.0, null); + // Correct the vectors uze, une, uwe for the Earth's rotation by calculating + // sideral time. Call spin() for each uncorrected vector to rotate about + // the Earth's axis to yield corrected unit vectors uz, un, uw. + // Multiply sidereal hours by -15 to convert to degrees and flip eastward + // rotation of the Earth to westward apparent movement of objects with time. double spin_angle = -15.0 * sidereal_time(time); AstroVector uz = spin(spin_angle, uze); AstroVector un = spin(spin_angle, une); AstroVector uw = spin(spin_angle, uwe); + // Convert angular equatorial coordinates (RA, DEC) to + // cartesian equatorial coordinates in 'p', using the + // same orientation system as uze, une, uwe. var p = new AstroVector(cosdc * cosra, cosdc * sinra, sindc, null); + + // Use dot products of p with the zenith, north, and west + // vectors to obtain the cartesian coordinates of the body in + // the observer's horizontal orientation system. + // pz = zenith component [-1, +1] + // pn = north component [-1, +1] + // pw = west component [-1, +1] double pz = p.x*uz.x + p.y*uz.y + p.z*uz.z; double pn = p.x*un.x + p.y*un.y + p.z*un.z; double pw = p.x*uw.x + p.y*uw.y + p.z*uw.z; + // proj is the "shadow" of the body vector along the observer's flat ground. double proj = Math.Sqrt(pn*pn + pw*pw); - double az = 0.0; + + // Calculate az = azimuth (compass direction clockwise from East.) + double az; if (proj > 0.0) { + // If the body is not exactly straight up/down, it has an azimuth. + // Invert the angle to produce degrees eastward from north. az = -Math.Atan2(pw, pn) * RAD2DEG; if (az < 0.0) az += 360.0; - else if (az >= 360.0) - az -= 360.0; } + else + { + // The body is straight up/down, so it does not have an azimuth. + // Report an arbitrary but reasonable value. + az = 0.0; + } + + // zd = the angle of the body away from the observer's zenith, in degrees. double zd = Math.Atan2(proj, pz) * RAD2DEG; double hor_ra = ra; double hor_dec = dec; @@ -3195,8 +3234,6 @@ $ASTRO_IAU_DATA() hor_ra = Math.Atan2(pry, prx) * (RAD2DEG / 15.0); if (hor_ra < 0.0) hor_ra += 24.0; - else if (hor_ra >= 24.0) - hor_ra -= 24.0; } else { diff --git a/generate/template/astronomy.py b/generate/template/astronomy.py index 0b464913..d7650d83 100644 --- a/generate/template/astronomy.py +++ b/generate/template/astronomy.py @@ -880,6 +880,7 @@ def _sidereal_time(time): gst = math.fmod((st/3600.0 + theta), 360.0) / 15.0 if gst < 0.0: gst += 24.0 + # return sidereal hours in the half-open range [0, 24). return gst @@ -1988,29 +1989,69 @@ def Horizon(time, observer, ra, dec, refraction): sinra = math.sin(rarad) cosra = math.cos(rarad) + # Calculate three mutually perpendicular unit vectors + # in equatorial coordinates: uze, une, uwe. + # + # uze = The direction of the observer's local zenith (straight up). + # une = The direction toward due north on the observer's horizon. + # uwe = The direction toward due west on the observer's horizon. + # + # HOWEVER, these are uncorrected for the Earth's rotation due to the time of day. + # + # The components of these 3 vectors are as follows: + # [0] = x = direction from center of Earth toward 0 degrees longitude (the prime meridian) on equator. + # [1] = y = direction from center of Earth toward 90 degrees west longitude on equator. + # [2] = z = direction from center of Earth toward the north pole. + uze = [coslat*coslon, coslat*sinlon, sinlat] une = [-sinlat*coslon, -sinlat*sinlon, coslat] uwe = [sinlon, -coslon, 0.0] + # Correct the vectors uze, une, uwe for the Earth's rotation by calculating + # sideral time. Call spin() for each uncorrected vector to rotate about + # the Earth's axis to yield corrected unit vectors uz, un, uw. + # Multiply sidereal hours by -15 to convert to degrees and flip eastward + # rotation of the Earth to westward apparent movement of objects with time. + angle = -15.0 * _sidereal_time(time) uz = _spin(angle, uze) un = _spin(angle, une) uw = _spin(angle, uwe) + # Convert angular equatorial coordinates (RA, DEC) to + # cartesian equatorial coordinates in 'p', using the + # same orientation system as uze, une, uwe. + p = [cosdc*cosra, cosdc*sinra, sindc] + # Use dot products of p with the zenith, north, and west + # vectors to obtain the cartesian coordinates of the body in + # the observer's horizontal orientation system. + # + # pz = zenith component [-1, +1] + # pn = north component [-1, +1] + # pw = west component [-1, +1] + pz = p[0]*uz[0] + p[1]*uz[1] + p[2]*uz[2] pn = p[0]*un[0] + p[1]*un[1] + p[2]*un[2] pw = p[0]*uw[0] + p[1]*uw[1] + p[2]*uw[2] + # proj is the "shadow" of the body vector along the observer's flat ground. proj = math.sqrt(pn*pn + pw*pw) - az = 0.0 + + # Calculate az = azimuth (compass direction clockwise from East.) if proj > 0.0: + # If the body is not exactly straight up/down, it has an azimuth. + # Invert the angle to produce degrees eastward from north. az = math.degrees(-math.atan2(pw, pn)) if az < 0: az += 360 - if az >= 360: - az -= 360 + else: + # The body is straight up/down, so it does not have an azimuth. + # Report an arbitrary but reasonable value. + az = 0.0 + + # zd = the angle of the body away from the observer's zenith. zd = math.degrees(math.atan2(proj, pz)) hor_ra = ra hor_dec = dec @@ -2033,8 +2074,6 @@ def Horizon(time, observer, ra, dec, refraction): hor_ra = math.degrees(math.atan2(pr[1], pr[0])) / 15 if hor_ra < 0: hor_ra += 24 - if hor_ra >= 24: - hor_ra -= 24 else: hor_ra = 0 hor_dec = math.degrees(math.atan2(pr[2], proj)) diff --git a/generate/template/astronomy.ts b/generate/template/astronomy.ts index eeca45fd..b6d84b26 100644 --- a/generate/template/astronomy.ts +++ b/generate/template/astronomy.ts @@ -849,7 +849,7 @@ function sidereal_time(time: AstroTime): number { // calculates Greenwi if (gst < 0) { gst += 24; } - return gst; + return gst; // return sidereal hours in the half-open range [0, 24). } function terra(observer: Observer, st: number): TerraInfo { @@ -1257,28 +1257,70 @@ export function Horizon(date: FlexibleDateTime, observer: Observer, ra: number, const cosdc = Math.cos(dec * DEG2RAD); const sinra = Math.sin(ra * 15 * DEG2RAD); const cosra = Math.cos(ra * 15 * DEG2RAD); + + // Calculate three mutually perpendicular unit vectors + // in equatorial coordinates: uze, une, uwe. + // + // uze = The direction of the observer's local zenith (straight up). + // une = The direction toward due north on the observer's horizon. + // uwe = The direction toward due west on the observer's horizon. + // + // HOWEVER, these are uncorrected for the Earth's rotation due to the time of day. + // + // The components of these 3 vectors are as follows: + // x = direction from center of Earth toward 0 degrees longitude (the prime meridian) on equator. + // y = direction from center of Earth toward 90 degrees west longitude on equator. + // z = direction from center of Earth toward the north pole. + let uze: ArrayVector = [coslat*coslon, coslat*sinlon, sinlat]; let une: ArrayVector = [-sinlat*coslon, -sinlat*sinlon, coslat]; let uwe: ArrayVector = [sinlon, -coslon, 0]; + // Correct the vectors uze, une, uwe for the Earth's rotation by calculating + // sideral time. Call spin() for each uncorrected vector to rotate about + // the Earth's axis to yield corrected unit vectors uz, un, uw. + // Multiply sidereal hours by -15 to convert to degrees and flip eastward + // rotation of the Earth to westward apparent movement of objects with time. + const spin_angle = -15 * sidereal_time(time); let uz = spin(spin_angle, uze); let un = spin(spin_angle, une); let uw = spin(spin_angle, uwe); + // Convert angular equatorial coordinates (RA, DEC) to + // cartesian equatorial coordinates in 'p', using the + // same orientation system as uze, une, uwe. + let p = [cosdc*cosra, cosdc*sinra, sindc]; + // Use dot products of p with the zenith, north, and west + // vectors to obtain the cartesian coordinates of the body in + // the observer's horizontal orientation system. + // pz = zenith component [-1, +1] + // pn = north component [-1, +1] + // pw = west component [-1, +1] + const pz = p[0]*uz[0] + p[1]*uz[1] + p[2]*uz[2]; const pn = p[0]*un[0] + p[1]*un[1] + p[2]*un[2]; const pw = p[0]*uw[0] + p[1]*uw[1] + p[2]*uw[2]; + // proj is the "shadow" of the body vector along the observer's flat ground. let proj = Math.sqrt(pn*pn + pw*pw); - let az = 0; + + // Calculate az = azimuth (compass direction clockwise from East.) + let az: number; if (proj > 0) { + // If the body is not exactly straight up/down, it has an azimuth. + // Invert the angle to produce degrees eastward from north. az = -Math.atan2(pw, pn) * RAD2DEG; if (az < 0) az += 360; - if (az >= 360) az -= 360; + } else { + // The body is straight up/down, so it does not have an azimuth. + // Report an arbitrary but reasonable value. + az = 0; } + + // zd = the angle of the body away from the observer's zenith, in degrees. let zd = Math.atan2(proj, pz) * RAD2DEG; let out_ra = ra; let out_dec = dec; @@ -1302,9 +1344,6 @@ export function Horizon(date: FlexibleDateTime, observer: Observer, ra: number, if (out_ra < 0) { out_ra += 24; } - if (out_ra >= 24) { - out_ra -= 24; - } } else { out_ra = 0; } diff --git a/source/c/astronomy.c b/source/c/astronomy.c index eefe2a84..17d0a4c1 100644 --- a/source/c/astronomy.c +++ b/source/c/astronomy.c @@ -1453,7 +1453,7 @@ static double sidereal_time(astro_time_t *time) if (gst < 0.0) gst += 24.0; - return gst; + return gst; /* return sidereal hours in the half-open range [0, 24). */ } static void terra(astro_observer_t observer, double st, double pos[3]) @@ -3730,6 +3730,22 @@ astro_horizon_t Astronomy_Horizon( double sinra = sin(ra * 15 * DEG2RAD); double cosra = cos(ra * 15 * DEG2RAD); + /* + Calculate three mutually perpendicular unit vectors + in equatorial coordinates: uze, une, uwe. + + uze = The direction of the observer's local zenith (straight up). + une = The direction toward due north on the observer's horizon. + uwe = The direction toward due west on the observer's horizon. + + HOWEVER, these are uncorrected for the Earth's rotation due to the time of day. + + The components of these 3 vectors are as follows: + [0] = x = direction from center of Earth toward 0 degrees longitude (the prime meridian) on equator. + [1] = y = direction from center of Earth toward 90 degrees west longitude on equator. + [2] = z = direction from center of Earth toward the north pole. + */ + uze[0] = coslat * coslon; uze[1] = coslat * sinlon; uze[2] = sinlat; @@ -3742,29 +3758,61 @@ astro_horizon_t Astronomy_Horizon( uwe[1] = -coslon; uwe[2] = 0.0; + /* + Correct the vectors uze, une, uwe for the Earth's rotation by calculating + sideral time. Call spin() for each uncorrected vector to rotate about + the Earth's axis to yield corrected unit vectors uz, un, uw. + Multiply sidereal hours by -15 to convert to degrees and flip eastward + rotation of the Earth to westward apparent movement of objects with time. + */ + spin_angle = -15.0 * sidereal_time(time); spin(spin_angle, uze, uz); spin(spin_angle, une, un); spin(spin_angle, uwe, uw); + /* + Convert angular equatorial coordinates (RA, DEC) to + cartesian equatorial coordinates in 'p', using the + same orientation system as uze, une, uwe. + */ + p[0] = cosdc * cosra; p[1] = cosdc * sinra; p[2] = sindc; + /* + Use dot products of p with the zenith, north, and west + vectors to obtain the cartesian coordinates of the body in + the observer's horizontal orientation system. + + pz = zenith component [-1, +1] + pn = north component [-1, +1] + pw = west component [-1, +1] + */ + pz = p[0]*uz[0] + p[1]*uz[1] + p[2]*uz[2]; pn = p[0]*un[0] + p[1]*un[1] + p[2]*un[2]; pw = p[0]*uw[0] + p[1]*uw[1] + p[2]*uw[2]; + /* proj is the "shadow" of the body vector along the observer's flat ground. */ proj = sqrt(pn*pn + pw*pw); - az = 0.0; if (proj > 0.0) { + /* If the body is not exactly straight up/down, it has an azimuth. */ + /* Invert the angle to produce degrees eastward from north. */ az = -atan2(pw, pn) * RAD2DEG; - if (az < 0) + if (az < 0.0) az += 360; - else if (az >= 360) - az -= 360; } + else + { + /* The body is straight up/down, so it does not have an azimuth. */ + /* Report an arbitrary but reasonable value. */ + az = 0.0; + } + + /* zd = the angle of the body away from the observer's zenith, in degrees. */ zd = atan2(proj, pz) * RAD2DEG; hor.ra = ra; hor.dec = dec; @@ -3795,8 +3843,6 @@ astro_horizon_t Astronomy_Horizon( hor.ra = atan2(pr[1], pr[0]) * (RAD2DEG / 15.0); if (hor.ra < 0.0) hor.ra += 24.0; - else if (hor.ra >= 24.0) - hor.ra -= 24.0; } else { diff --git a/source/csharp/astronomy.cs b/source/csharp/astronomy.cs index 0d71f4a9..ddae6bdc 100644 --- a/source/csharp/astronomy.cs +++ b/source/csharp/astronomy.cs @@ -3668,7 +3668,7 @@ namespace CosineKitty if (gst < 0.0) gst += 24.0; - return gst; + return gst; // return sidereal hours in the half-open range [0, 24). } private static AstroVector terra(Observer observer, double st) @@ -4200,30 +4200,69 @@ namespace CosineKitty double sinra = Math.Sin(ra * 15 * DEG2RAD); double cosra = Math.Cos(ra * 15 * DEG2RAD); + // Calculate three mutually perpendicular unit vectors + // in equatorial coordinates: uze, une, uwe. + // + // uze = The direction of the observer's local zenith (straight up). + // une = The direction toward due north on the observer's horizon. + // uwe = The direction toward due west on the observer's horizon. + // + // HOWEVER, these are uncorrected for the Earth's rotation due to the time of day. + // + // The components of these 3 vectors are as follows: + // x = direction from center of Earth toward 0 degrees longitude (the prime meridian) on equator. + // y = direction from center of Earth toward 90 degrees west longitude on equator. + // z = direction from center of Earth toward the north pole. var uze = new AstroVector(coslat * coslon, coslat * sinlon, sinlat, null); var une = new AstroVector(-sinlat * coslon, -sinlat * sinlon, coslat, null); var uwe = new AstroVector(sinlon, -coslon, 0.0, null); + // Correct the vectors uze, une, uwe for the Earth's rotation by calculating + // sideral time. Call spin() for each uncorrected vector to rotate about + // the Earth's axis to yield corrected unit vectors uz, un, uw. + // Multiply sidereal hours by -15 to convert to degrees and flip eastward + // rotation of the Earth to westward apparent movement of objects with time. double spin_angle = -15.0 * sidereal_time(time); AstroVector uz = spin(spin_angle, uze); AstroVector un = spin(spin_angle, une); AstroVector uw = spin(spin_angle, uwe); + // Convert angular equatorial coordinates (RA, DEC) to + // cartesian equatorial coordinates in 'p', using the + // same orientation system as uze, une, uwe. var p = new AstroVector(cosdc * cosra, cosdc * sinra, sindc, null); + + // Use dot products of p with the zenith, north, and west + // vectors to obtain the cartesian coordinates of the body in + // the observer's horizontal orientation system. + // pz = zenith component [-1, +1] + // pn = north component [-1, +1] + // pw = west component [-1, +1] double pz = p.x*uz.x + p.y*uz.y + p.z*uz.z; double pn = p.x*un.x + p.y*un.y + p.z*un.z; double pw = p.x*uw.x + p.y*uw.y + p.z*uw.z; + // proj is the "shadow" of the body vector along the observer's flat ground. double proj = Math.Sqrt(pn*pn + pw*pw); - double az = 0.0; + + // Calculate az = azimuth (compass direction clockwise from East.) + double az; if (proj > 0.0) { + // If the body is not exactly straight up/down, it has an azimuth. + // Invert the angle to produce degrees eastward from north. az = -Math.Atan2(pw, pn) * RAD2DEG; if (az < 0.0) az += 360.0; - else if (az >= 360.0) - az -= 360.0; } + else + { + // The body is straight up/down, so it does not have an azimuth. + // Report an arbitrary but reasonable value. + az = 0.0; + } + + // zd = the angle of the body away from the observer's zenith, in degrees. double zd = Math.Atan2(proj, pz) * RAD2DEG; double hor_ra = ra; double hor_dec = dec; @@ -4251,8 +4290,6 @@ namespace CosineKitty hor_ra = Math.Atan2(pry, prx) * (RAD2DEG / 15.0); if (hor_ra < 0.0) hor_ra += 24.0; - else if (hor_ra >= 24.0) - hor_ra -= 24.0; } else { diff --git a/source/js/astronomy.browser.js b/source/js/astronomy.browser.js index ecc78b6a..5f2f68de 100644 --- a/source/js/astronomy.browser.js +++ b/source/js/astronomy.browser.js @@ -1565,7 +1565,7 @@ function sidereal_time(time) { if (gst < 0) { gst += 24; } - return gst; + return gst; // return sidereal hours in the half-open range [0, 24). } function terra(observer, st) { const df = 1 - 0.003352819697896; // flattening of the Earth @@ -1927,26 +1927,61 @@ function Horizon(date, observer, ra, dec, refraction) { const cosdc = Math.cos(dec * DEG2RAD); const sinra = Math.sin(ra * 15 * DEG2RAD); const cosra = Math.cos(ra * 15 * DEG2RAD); + // Calculate three mutually perpendicular unit vectors + // in equatorial coordinates: uze, une, uwe. + // + // uze = The direction of the observer's local zenith (straight up). + // une = The direction toward due north on the observer's horizon. + // uwe = The direction toward due west on the observer's horizon. + // + // HOWEVER, these are uncorrected for the Earth's rotation due to the time of day. + // + // The components of these 3 vectors are as follows: + // x = direction from center of Earth toward 0 degrees longitude (the prime meridian) on equator. + // y = direction from center of Earth toward 90 degrees west longitude on equator. + // z = direction from center of Earth toward the north pole. let uze = [coslat * coslon, coslat * sinlon, sinlat]; let une = [-sinlat * coslon, -sinlat * sinlon, coslat]; let uwe = [sinlon, -coslon, 0]; + // Correct the vectors uze, une, uwe for the Earth's rotation by calculating + // sideral time. Call spin() for each uncorrected vector to rotate about + // the Earth's axis to yield corrected unit vectors uz, un, uw. + // Multiply sidereal hours by -15 to convert to degrees and flip eastward + // rotation of the Earth to westward apparent movement of objects with time. const spin_angle = -15 * sidereal_time(time); let uz = spin(spin_angle, uze); let un = spin(spin_angle, une); let uw = spin(spin_angle, uwe); + // Convert angular equatorial coordinates (RA, DEC) to + // cartesian equatorial coordinates in 'p', using the + // same orientation system as uze, une, uwe. let p = [cosdc * cosra, cosdc * sinra, sindc]; + // Use dot products of p with the zenith, north, and west + // vectors to obtain the cartesian coordinates of the body in + // the observer's horizontal orientation system. + // pz = zenith component [-1, +1] + // pn = north component [-1, +1] + // pw = west component [-1, +1] const pz = p[0] * uz[0] + p[1] * uz[1] + p[2] * uz[2]; const pn = p[0] * un[0] + p[1] * un[1] + p[2] * un[2]; const pw = p[0] * uw[0] + p[1] * uw[1] + p[2] * uw[2]; + // proj is the "shadow" of the body vector along the observer's flat ground. let proj = Math.sqrt(pn * pn + pw * pw); - let az = 0; + // Calculate az = azimuth (compass direction clockwise from East.) + let az; if (proj > 0) { + // If the body is not exactly straight up/down, it has an azimuth. + // Invert the angle to produce degrees eastward from north. az = -Math.atan2(pw, pn) * RAD2DEG; if (az < 0) az += 360; - if (az >= 360) - az -= 360; } + else { + // The body is straight up/down, so it does not have an azimuth. + // Report an arbitrary but reasonable value. + az = 0; + } + // zd = the angle of the body away from the observer's zenith, in degrees. let zd = Math.atan2(proj, pz) * RAD2DEG; let out_ra = ra; let out_dec = dec; @@ -1969,9 +2004,6 @@ function Horizon(date, observer, ra, dec, refraction) { if (out_ra < 0) { out_ra += 24; } - if (out_ra >= 24) { - out_ra -= 24; - } } else { out_ra = 0; diff --git a/source/js/astronomy.browser.min.js b/source/js/astronomy.browser.min.js index e067728d..c31c9900 100644 --- a/source/js/astronomy.browser.min.js +++ b/source/js/astronomy.browser.min.js @@ -60,141 +60,141 @@ m=-m*l*a+n*f*e*a+c*n*k;l*=k;n=-k*e*c-a*f;a=-k*e*a+f*c;return 0===b?new M([[h,d,q a.rot[0][2]*c[0]+a.rot[1][2]*c[1]+a.rot[2][2]*c[2]]}function $a(a,b){a=Ba(a);var c=.017453292519943295*a.mobl,d=.017453292519943295*a.tobl,e=4.84813681109536E-6*a.dpsi;a=Math.cos(c);c=Math.sin(c);var h=Math.cos(d),l=Math.sin(d);d=Math.cos(e);var k=Math.sin(e);e=-k*a;var f=-k*c,m=k*h,n=d*a*h+c*l,q=d*c*h-a*l;k*=l;var u=d*a*l-c*h;a=d*c*l+a*h;return 0===b?new M([[d,m,k],[e,n,u],[f,q,a]]):new M([[d,e,f],[m,n,q],[k,u,a]])}function xb(a,b){var c=pa(a),d=.017453292519943295*b.latitude,e=Math.sin(d);d=Math.cos(d); var h=1/Math.sqrt(d*d+.9933056020041345*e*e),l=b.height/1E3,k=6378.1366*h+l;b=.017453292519943295*(15*c+b.longitude);e=Za(a,-1,[k*d*Math.cos(b)/1.4959787069098932E8,k*d*Math.sin(b)/1.4959787069098932E8,(6335.438815127603*h+l)*e/1.4959787069098932E8]);return Ga(a.tt,e,0)}function xc(a){if(!(a instanceof Array)||3!==a.length)return!1;for(var b=0;3>b;++b){if(!(a[b]instanceof Array)||3!==a[b].length)return!1;for(var c=0;3>c;++c)if(!Number.isFinite(a[b][c]))return!1}return!0}function yb(a){var b=a[0]* a[0]+a[1]*a[1],c=Math.sqrt(b+a[2]*a[2]);if(0===b){if(0===a[2])throw"Indeterminate sky coordinates";return 0>a[2]?{ra:0,dec:-90,dist:c}:{ra:0,dec:90,dist:c}}var d=Math.atan2(a[1],a[0])/.2617993877991494;0>d&&(d+=24);return new Ha(d,Math.atan2(a[2],Math.sqrt(b))/.017453292519943295,c)}function ha(a,b){var c=.017453292519943295*a;a=Math.cos(c);c=Math.sin(c);return[a*b[0]+c*b[1]+0*b[2],-c*b[0]+a*b[1]+0*b[2],0*b[0]+0*b[1]+1*b[2]]}function Ia(a,b,c,d,e){a=y(a);ia(b);r(c);r(d);var h=Math.sin(.017453292519943295* -b.latitude),l=Math.cos(.017453292519943295*b.latitude),k=Math.sin(.017453292519943295*b.longitude),f=Math.cos(.017453292519943295*b.longitude);b=Math.sin(.017453292519943295*d);var m=Math.cos(.017453292519943295*d),n=Math.sin(.2617993877991494*c),q=Math.cos(.2617993877991494*c),u=[l*f,l*k,h];h=[-h*f,-h*k,l];k=[k,-f,0];l=-15*pa(a);a=ha(l,u);u=ha(l,h);k=ha(l,k);b=[m*q,m*n,b];n=b[0]*a[0]+b[1]*a[1]+b[2]*a[2];u=b[0]*u[0]+b[1]*u[1]+b[2]*u[2];k=b[0]*k[0]+b[1]*k[1]+b[2]*k[2];q=Math.sqrt(u*u+k*k);m=0;0m&&(m+=360),360<=m&&(m-=360));n=57.29577951308232*Math.atan2(q,n);q=d;if(e&&(d=n,e=qa(e,90-n),n-=e,0k;++k)e.push((b[k]-d*a[k])/u*c+a[k]*q);q=Math.sqrt(e[0]*e[0]+e[1]*e[1]);0c&&(c+=24),24<=c&&(c-=24)):c=0;q=57.29577951308232*Math.atan2(e[2],q)}return new zb(m, -90-n,c,q)}function ia(a){if(!(a instanceof Ab))throw"Not an instance of the Observer class: "+a;r(a.latitude);r(a.longitude);r(a.height);if(-90>a.latitude||90d&&(d+=360));return new Db(a,h,b,57.29577951308232*Math.atan2(b,c),d)}function ra(a,b,c){void 0===Ka&&(Ka=.017453292519943295*Ba(y(ab)).mobl,Eb=Math.cos(Ka),Fb=Math.sin(Ka));r(a);r(b);r(c);return Cb(a,b,c,Eb,Fb)}function X(a){a= -y(a);var b=S(a),c=b.distance_au*Math.cos(b.geo_eclip_lat);b=[c*Math.cos(b.geo_eclip_lon),c*Math.sin(b.geo_eclip_lon),b.distance_au*Math.sin(b.geo_eclip_lat)];var d=.017453292519943295*na(a);c=Math.cos(d);d=Math.sin(d);b=Ga(a.tt,[b[0],b[1]*c-b[2]*d,b[1]*d+b[2]*c],0);return new B(b[0],b[1],b[2],a)}function ba(a,b){var c=1,d=0;a=$jscomp.makeIterator(a);for(var e=a.next();!e.done;e=a.next()){var h=0;e=$jscomp.makeIterator(e.value);for(var l=e.next();!l.done;l=e.next()){var k=$jscomp.makeIterator(l.value); -l=k.next().value;var f=k.next().value;k=k.next().value;h+=l*Math.cos(f+b*k)}d+=c*h;c*=b}return d}function bb(a,b){var c=1,d=0,e=0,h=0;a=$jscomp.makeIterator(a);for(var l=a.next();!l.done;l=a.next()){var k=0,f=0;l=$jscomp.makeIterator(l.value);for(var m=l.next();!m.done;m=l.next()){var n=$jscomp.makeIterator(m.value);m=n.next().value;var q=n.next().value;n=n.next().value;q+=b*n;k+=m*n*Math.sin(q);0a?0:a>=b?b-1:a}function eb(a){var b=$jscomp.makeIterator(a);a=b.next().value;var c=$jscomp.makeIterator(b.next().value);var d=c.next().value;var e=c.next().value;c=c.next().value;var h=$jscomp.makeIterator(b.next().value);b=h.next().value;var l=h.next().value;h=h.next().value;d=new Na(a,new C(d, -e,c),new C(b,l,h));a=new Pa(d.tt);e=d.r.add(a.Sun.r);c=d.v.add(a.Sun.v);b=a.Acceleration(e);d=new Hb(d.tt,e,c,b);return new Ib(a,d)}function Kb(a,b,c){a=eb(a);for(var d=Math.ceil((b-a.grav.tt)/c),e=0;eca[40][0])a=null;else{a=Jb((a-c)/36500,40);if(!fb[a]){c=fb[a]=[];c[0]=eb(ca[a]).grav;c[146]=eb(ca[a+1]).grav;var d,e=c[0].tt;for(d=1;146>d;++d)c[d]=db(e+= -250,c[d-1]).grav;e=c[146].tt;var h=[];h[146]=c[146];for(d=145;0k;++k){e=ta(a,l);c?d=N(F.Earth,l):d||(d=N(F.Earth,b));e=new B(e.x-d.x,e.y-d.y,e.z-d.z,b);var f=b.AddDays(-e.Length()/173.1446326846693);h=Math.abs(f.tt-l.tt);if(1E-9>h)return e;l=f}throw"Light-travel time solver did not converge: dt="+h;}function yc(a,b,c,d,e){var h=(e+c)/2-d;c=(e-c)/2;if(0==h){if(0==c)return null; -d=-d/c;if(-1>d||1=d)return null;e=Math.sqrt(d);d=(-c+e)/(2*h);e=(-c-e)/(2*h);if(-1<=d&&1>=d){if(-1<=e&&1>=e)return null}else if(-1<=e&&1>=e)d=e;else return null}return{x:d,t:a+d*b,df_dt:(2*h*d+c)/b}}function E(a,b,c,d){var e=r(d&&d.dt_tolerance_seconds||1);e=Math.abs(e/86400);var h=d&&d.init_f1||a(b),l=d&&d.init_f2||a(c),k=NaN,f=0;d=d&&d.iter_limit||20;for(var m=!0;;){if(++f>d)throw"Excessive iteration in Search()";var n=new P(b.ut+.5*(c.ut-b.ut)),q=n.ut-b.ut; -if(Math.abs(q)(q.ut-b.ut)*(q.ut-c.ut)&&0>(w.ut-b.ut)*(w.ut-c.ut))){u=a(q);var z=a(w);if(0>u&&0<=z){h=u;l=z;b=q;c=w;k=H;m=!1;continue}}}}if(0>h&&0<=k)c=n,l=k;else if(0>k&&0<=l)b=n,h=k;else return null}}function ua(a){for(;-180>=a;)a+=360;for(;180b;)b+=360;for(;360<=b;)b-=360;return b}function ja(a,b){if("Earth"==a)throw"The Earth does not have an angle as seen from itself.";var c=W("Sun",b,!0);a=W(a,b,!0);return O(c,a)}function ea(a,b){if("Sun"===a)throw"Cannot calculate heliocentric longitude of the Sun."; -a=ta(a,b);return ra(a.x,a.y,a.z).elon}function Qa(a,b){if("Earth"===a)throw"The illumination of the Earth is not defined.";var c=y(b),d=N(F.Earth,c);if("Sun"===a){var e=new B(-d.x,-d.y,-d.z,c);b=new B(0,0,0,c);d=0}else"Moon"===a?(e=X(c),b=new B(d.x+e.x,d.y+e.y,d.z+e.z,c)):(b=ta(a,b),e=new B(b.x-d.x,b.y-d.y,b.z-d.z,c)),d=O(e,b);var h=e.Length(),l=b.Length();if("Sun"===a)a=zc+5*Math.log10(h);else if("Moon"===a){a=.017453292519943295*d;var k=a*a;a=-12.717+1.49*Math.abs(a)+.0431*k*k;a+=5*Math.log10(h/ -.002573570052980638*l)}else if("Saturn"===a){a=d;var f=ra(e.x,e.y,e.z);k=.017453292519943295*f.elat;f=Math.asin(Math.sin(k)*Math.cos(.4897393881096089)-Math.cos(k)*Math.sin(.4897393881096089)*Math.sin(.017453292519943295*f.elon-.017453292519943295*(169.51+3.82E-5*c.tt)));k=Math.sin(Math.abs(f));a=-9+.044*a+k*(-2.6+1.2*k)+5*Math.log10(l*h);f*=57.29577951308232}else{var m=k=0,n=0;switch(a){case "Mercury":a=-.6;k=4.98;m=-4.88;n=3.02;break;case "Venus":163.6>d?(a=-4.47,k=1.03,m=.57,n=.13):(a=.98,k=-1.02); -break;case "Mars":a=-1.52;k=1.6;break;case "Jupiter":a=-9.4;k=.5;break;case "Uranus":a=-7.19;k=.25;break;case "Neptune":a=-6.87;break;case "Pluto":a=-1;k=4;break;default:throw"VisualMagnitude: unsupported body "+a;}var q=d/100;a=a+q*(k+q*(m+q*n))+5*Math.log10(l*h)}return new Mb(c,a,d,l,h,e,b,f)}function va(a){if("Earth"===a)throw"The Earth does not have a synodic period as seen from itself.";if("Moon"===a)return 29.530588;var b=Y[a];if(!b)throw"Not a valid planet name: "+a;a=Y.Earth.OrbitalPeriod; -return Math.abs(a/(a/b.OrbitalPeriod-1))}function ka(a,b,c){function d(m){var n=ea(a,m);m=ea("Earth",m);return ua(h*(m-n)-b)}r(b);var e=Y[a];if(!e)throw"Cannot search relative longitude because body is not a planet: "+a;if("Earth"===a)throw"Cannot search relative longitude for the Earth (it is always 0)";var h=e.OrbitalPeriod>Y.Earth.OrbitalPeriod?1:-1;e=va(a);c=y(c);var l=d(c);0k;++k){var f=-l/360*e;c=c.AddDays(f);if(1>86400*Math.abs(f))return c;f=l;l=d(c);30>Math.abs(f)&& -f!==l&&(f/=f-l,.5f&&(e*=f))}throw"Relative longitude search failed to converge for "+a+" near "+c.toString()+" (error_angle = "+l+").";}function hb(a){return gb("Moon",a)}function wa(a,b,c){function d(l){l=hb(l);return ua(l-a)}r(a);r(c);b=y(b);var e=d(b);0c)return null;c=Math.min(c,h+1.5);e=b.AddDays(e);b=b.AddDays(c);return E(d,e,b)}function Nb(a){var b=hb(a);b=(Math.floor(b/90)+1)%4;a=wa(90*b,a,10);if(!a)throw"Cannot find moon quarter";return new Ob(b, -a)}function xa(a,b,c,d){ia(b);d=y(d);var e=0;if("Earth"===a)throw"Cannot search for hour angle of the Earth.";r(c);if(0>c||24<=c)throw"Invalid hour angle "+c;for(;;){++e;var h=pa(d),l=Ja(a,d,b,!0,!0);h=(c+l.ra-b.longitude/15-h)%24;1===e?0>h&&(h+=24):-12>h?h+=24:123600*Math.abs(h))return a=Ia(d,b,l.ra,l.dec,"normal"),new Pb(d,a);d=d.AddDays(h/24*.9972695717592592)}}function Qb(a,b){b=y(b);var c=gb(a,b);if(1805*e;++e){var h=a.AddDays(5),l=b(h);if(0>=d*l){if(0>d||0l){a=E(c,a,h,{init_f1:-d,init_f2:-l});if(!a)throw"SearchLunarApsis INTERNAL ERROR: apogee search failed!"; -d=S(a).distance_au;return new ya(a,1,d)}throw"SearchLunarApsis INTERNAL ERROR: cannot classify apsis event!";}a=h;d=l}throw"SearchLunarApsis INTERNAL ERROR: could not find apsis within 2 synodic months of start date.";}function Tb(a,b,c,d){for(var e=1===b?1:-1;;){d/=9;if(d<1/1440)return c=c.AddDays(d/2),a=da(a,c),new ya(c,b,a);for(var h=-1,l=0,k=0;10>k;++k){var f=c.AddDays(k*d);f=e*da(a,f);if(0==k||f>l)h=k,l=f}c=c.AddDays((h-1)*d);d*=2}}function Ac(a,b){var c=b.AddDays(-30/360*Y[a].OrbitalPeriod), -d=b.AddDays(.75*Y[a].OrbitalPeriod),e=c,h=c,l=-1,k=-1;d=(d.ut-c.ut)/99;for(var f=0;100>f;++f){var m=c.AddDays(f*d),n=da(a,m);0===f?k=l=n:(n>k&&(k=n,h=m),n=b.tt)return a.time.tt>=b.tt&&a.time.tt=b.tt)return a;throw"Internal error: failed to find Neptune apsis.";}function Ub(a,b){function c(n){var q=n.AddDays(-5E-4);n=n.AddDays(5E-4);q=da(a,q);return(da(a,n)-q)/.001}function d(n){return-c(n)} -if("Neptune"===a||"Pluto"===a)return Ac(a,b);for(var e=Y[a].OrbitalPeriod,h=e/6,l=c(b),k=0;k*h<2*e;++k){var f=b.AddDays(h),m=c(f);if(0>=l*m){e=h=void 0;if(0>l||0m)h=d,e=1;else throw"Internal error with slopes in SearchPlanetApsis";b=E(h,b,f);if(!b)throw"Failed to find slope transition in planetary apsis search.";l=da(a,b);return new ya(b,e,l)}b=f;l=m}throw"Internal error: should have found planetary apsis within 2 orbital periods.";}function la(a){return new M([[a.rot[0][0], -a.rot[1][0],a.rot[2][0]],[a.rot[0][1],a.rot[1][1],a.rot[2][1]],[a.rot[0][2],a.rot[1][2],a.rot[2][2]]])}function ma(a,b){return new M([[b.rot[0][0]*a.rot[0][0]+b.rot[1][0]*a.rot[0][1]+b.rot[2][0]*a.rot[0][2],b.rot[0][1]*a.rot[0][0]+b.rot[1][1]*a.rot[0][1]+b.rot[2][1]*a.rot[0][2],b.rot[0][2]*a.rot[0][0]+b.rot[1][2]*a.rot[0][1]+b.rot[2][2]*a.rot[0][2]],[b.rot[0][0]*a.rot[1][0]+b.rot[1][0]*a.rot[1][1]+b.rot[2][0]*a.rot[1][2],b.rot[0][1]*a.rot[1][0]+b.rot[1][1]*a.rot[1][1]+b.rot[2][1]*a.rot[1][2],b.rot[0][2]* -a.rot[1][0]+b.rot[1][2]*a.rot[1][1]+b.rot[2][2]*a.rot[1][2]],[b.rot[0][0]*a.rot[2][0]+b.rot[1][0]*a.rot[2][1]+b.rot[2][0]*a.rot[2][2],b.rot[0][1]*a.rot[2][0]+b.rot[1][1]*a.rot[2][1]+b.rot[2][1]*a.rot[2][2],b.rot[0][2]*a.rot[2][0]+b.rot[1][2]*a.rot[2][1]+b.rot[2][2]*a.rot[2][2]]])}function ib(a,b){var c=.017453292519943295*a.lat,d=.017453292519943295*a.lon,e=a.dist*Math.cos(c);return new B(e*Math.cos(d),e*Math.sin(d),a.dist*Math.sin(c),b)}function Vb(a,b){return ib(new Ra(a.dec,15*a.ra,a.dist),b)} -function Wb(a){a=jb(a);return new Ha(a.lon/15,a.lat,a.dist)}function jb(a){var b=a.x*a.x+a.y*a.y,c=Math.sqrt(b+a.z*a.z);if(0===b){if(0===a.z)throw"Zero-length vector not allowed.";var d=0;a=0>a.z?-90:90}else d=57.29577951308232*Math.atan2(a.y,a.x),0>d&&(d+=360),a=57.29577951308232*Math.atan2(a.z,Math.sqrt(b));return new Ra(a,d,c)}function Xb(a){a=360-a;360<=a?a-=360:0>a&&(a+=360);return a}function qa(a,b){r(b);if(-90>b||90c&&(c=-1);c=1.02/Math.tan(.017453292519943295* -(c+10.3/(c+5.11)))/60;"normal"===a&&-1>b&&(c*=(b+90)/89)}else c=0;return c}function Yb(a,b){if(-90>b||90Math.abs(d))return c-b;c-=d}}function za(a,b){return new B(a.rot[0][0]*b.x+a.rot[1][0]*b.y+a.rot[2][0]*b.z,a.rot[0][1]*b.x+a.rot[1][1]*b.y+a.rot[2][1]*b.z,a.rot[0][2]*b.x+a.rot[1][2]*b.y+a.rot[2][2]*b.z,b.t)}function Zb(){return new M([[1,0,0],[0,.9174821430670688,-.3977769691083922],[0,.3977769691083922,.9174821430670688]])}function kb(a){var b= -Ya(0,a.tt);a=$a(a,0);return ma(b,a)}function lb(a){var b=$a(a,1);a=Ya(a.tt,0);return ma(b,a)}function mb(a,b){var c=Math.sin(.017453292519943295*b.latitude),d=Math.cos(.017453292519943295*b.latitude),e=Math.sin(.017453292519943295*b.longitude),h=Math.cos(.017453292519943295*b.longitude);b=[d*h,d*e,c];c=[-c*h,-c*e,d];e=[e,-h,0];a=-15*pa(a);b=ha(a,b);c=ha(a,c);a=ha(a,e);return new M([[c[0],a[0],b[0]],[c[1],a[1],b[1]],[c[2],a[2],b[2]]])}function $b(a,b){a=mb(a,b);return la(a)}function ac(a,b){b=$b(a, -b);a=lb(a);return ma(b,a)}function bc(a){a=lb(a);var b=Zb();return ma(a,b)}function cc(a){a=bc(a);return la(a)}function dc(a,b){var c=cc(a);a=mb(a,b);return ma(c,a)}function Aa(a,b,c,d){var e=(d.x*c.x+d.y*c.y+d.z*c.z)/(d.x*d.x+d.y*d.y+d.z*d.z),h=e*d.x-c.x,l=e*d.y-c.y,k=e*d.z-c.z;return new Bc(b,e,1.4959787069098932E8*Math.sqrt(h*h+l*l+k*k),695700-(1+e)*(695700-a),-695700+(1+e)*(695700+a),c,d)}function Sa(a){var b=N(F.Earth,a),c=X(a);return Aa(6459,a,c,b)}function ec(a){var b=N(F.Earth,a),c=X(a),d= -new B(-c.x,-c.y,-c.z,c.t);c.x+=b.x;c.y+=b.y;c.z+=b.z;return Aa(1737.4,a,d,c)}function nb(a,b){var c=xb(a,b);b=N(F.Earth,a);var d=X(a);c=new B(c[0]-d.x,c[1]-d.y,c[2]-d.z,a);d.x+=b.x;d.y+=b.y;d.z+=b.z;return Aa(1737.4,a,c,d)}function Ta(a,b,c){a=W(a,c,!1);var d=W("Sun",c,!1),e=new B(a.x-d.x,a.y-d.y,a.z-d.z,c);d.x=-a.x;d.y=-a.y;d.z=-a.z;return Aa(b,c,d,e)}function ob(a,b){var c=1/86400,d=b.AddDays(-c);b=b.AddDays(+c);d=a(d);return(a(b).r-d.r)/c}function Cc(a){var b=a.AddDays(-.03);a=a.AddDays(.03);b= -E(function(c){return ob(Sa,c)},b,a);if(!b)throw"Failed to find peak Earth shadow time.";return Sa(b)}function Dc(a){var b=a.AddDays(-.03);a=a.AddDays(.03);b=E(function(c){return ob(ec,c)},b,a);if(!b)throw"Failed to find peak Moon shadow time.";return ec(b)}function Ec(a,b,c){var d=c.AddDays(-1);c=c.AddDays(1);d=E(function(e){var h=1/86400,l=Ta(a,b,e.AddDays(-h));return(Ta(a,b,e.AddDays(+h)).r-l.r)/h},d,c);if(!d)throw"Failed to find peak planet shadow time.";return Ta(a,b,d)}function Fc(a,b){function c(h){return nb(h, -b)}var d=a.AddDays(-.2),e=a.AddDays(.2);d=E(function(h){return ob(c,h)},d,e);if(!d)throw"PeakLocalMoonShadow: search failure for search_center_time = "+a;return nb(d,b)}function pb(a,b,c){var d=c/1440;c=a.AddDays(-d);d=a.AddDays(+d);c=E(function(e){return-(Sa(e).r-b)},c,a);a=E(function(e){return+(Sa(e).r-b)},a,d);if(!c||!a)throw"Failed to find shadow semiduration";return 720*(a.ut-c.ut)}function fc(a){a=y(a);for(var b=0;12>b;++b){var c=wa(180,a,40);if(!c)throw"Cannot find full moon.";a=57.29577951308232* -S(c).geo_eclip_lat;if(1.8>Math.abs(a)&&(a=Cc(c),a.rb;++b){var c=wa(0,a,40);if(!c)throw"Cannot find new moon";a=57.29577951308232*S(c).geo_eclip_lat;if(1.8>Math.abs(a)&&(a=Dc(c),a.r=d?d+=360:180a.r)throw"Unexpected shadow distance from geoid intersection = "+a.r;h=.014Math.abs(c)){var d=Fc(a,b);if(d.rja(a,d)&&(b=Ec(a,c,d),b.r=m&&0=d.ut+e)return null;q=m.time;m=h(m.time);n=h(u.time)}};var Pb=function(a,b){this.time=a;this.hor=b};g.HourAngleEvent=Pb;g.SearchHourAngle=xa;var sc=function(a,b,c,d){this.mar_equinox=a;this.jun_solstice=b;this.sep_equinox=c;this.dec_solstice=d};g.SeasonInfo= -sc;g.Seasons=function(a){function b(l,k,f){k=new Date(Date.UTC(a,k-1,f));l=Lb(l,k,4);if(!l)throw"Cannot find season change near "+k.toISOString();return l}a instanceof Date&&Number.isFinite(a.getTime())&&(a=a.getUTCFullYear());if(!Number.isSafeInteger(a))throw"Cannot calculate seasons because year argument "+a+" is neither a Date nor a safe integer.";var c=b(0,3,19),d=b(90,6,19),e=b(180,9,21),h=b(270,12,20);return new sc(c,d,e,h)};var Rb=function(a,b,c,d){this.time=a;this.visibility=b;this.elongation= -c;this.ecliptic_separation=d};g.ElongationEvent=Rb;g.Elongation=Qb;g.SearchMaxElongation=function(a,b){function c(m){var n=m.AddDays(-.005);m=m.AddDays(.005);n=ja(a,n);m=ja(a,m);return(n-m)/.01}b=y(b);var d={Mercury:{s1:50,s2:85},Venus:{s1:40,s2:50}}[a];if(!d)throw"SearchMaxElongation works for Mercury and Venus only.";for(var e=0;2>=++e;){var h=ea(a,b),l=ea("Earth",b),k=ua(h-l),f=h=l=void 0;k>=-d.s1&&k<+d.s1?(f=0,l=+d.s1,h=+d.s2):k>=+d.s2||k<-d.s2?(f=0,l=-d.s2,h=-d.s1):0<=k?(f=-va(a)/4,l=+d.s1,h= -+d.s2):(f=-va(a)/4,l=-d.s2,h=-d.s1);k=b.AddDays(f);l=ka(a,l,k);h=ka(a,h,l);k=c(l);if(0<=k)throw"SearchMaxElongation: internal error: m1 = "+k;f=c(h);if(0>=f)throw"SearchMaxElongation: internal error: m2 = "+f;k=E(c,l,h,{init_f1:k,init_f2:f,dt_tolerance_seconds:10});if(!k)throw"SearchMaxElongation: failed search iter "+e+" (t1="+l.toString()+", t2="+h.toString()+")";if(k.tt>=b.tt)return Qb(a,k);b=h.AddDays(1)}throw"SearchMaxElongation: failed to find event after 2 tries.";};g.SearchPeakMagnitude=function(a, -b){function c(f){var m=f.AddDays(-.005);f=f.AddDays(.005);m=Qa(a,m).mag;return(Qa(a,f).mag-m)/.01}if("Venus"!==a)throw"SearchPeakMagnitude currently works for Venus only.";b=y(b);for(var d=0;2>=++d;){var e=ea(a,b),h=ea("Earth",b),l=ua(e-h),k=e=h=void 0;-10<=l&&10>l?(k=0,h=10,e=30):30<=l||-30>l?(k=0,h=-30,e=-10):0<=l?(k=-va(a)/4,h=10,e=30):(k=-va(a)/4,h=-30,e=-10);l=b.AddDays(k);h=ka(a,h,l);e=ka(a,e,h);l=c(h);if(0<=l)throw"SearchPeakMagnitude: internal error: m1 = "+l;k=c(e);if(0>=k)throw"SearchPeakMagnitude: internal error: m2 = "+ -k;l=E(c,h,e,{init_f1:l,init_f2:k,dt_tolerance_seconds:10});if(!l)throw"SearchPeakMagnitude: failed search iter "+d+" (t1="+h.toString()+", t2="+e.toString()+")";if(l.tt>=b.tt)return Qa(a,l);b=e.AddDays(1)}throw"SearchPeakMagnitude: failed to find event after 2 tries.";};var ya=function(a,b,c){this.time=a;this.kind=b;this.dist_au=c;this.dist_km=1.4959787069098932E8*c};g.Apsis=ya;g.SearchLunarApsis=Sb;g.NextLunarApsis=function(a){var b=Sb(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};g.SearchPlanetApsis=Ub;g.NextPlanetApsis=function(a,b){if(0!==b.kind&&1!==b.kind)throw"Invalid apsis kind: "+b.kind;var c=b.time.AddDays(.25*Y[a].OrbitalPeriod);a=Ub(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};g.InverseRotation=la;g.CombineRotation=ma;g.VectorFromSphere=ib;g.VectorFromEquator=Vb;g.EquatorFromVector=Wb;g.SphereFromVector= -jb;g.HorizonFromVector=function(a,b){a=jb(a);a.lon=Xb(a.lon);a.lat+=qa(b,a.lat);return a};g.VectorFromHorizon=function(a,b,c){var d=Xb(a.lon);c=a.lat+Yb(c,a.lat);a=new Ra(c,d,a.dist);return ib(a,b)};g.Refraction=qa;g.InverseRefraction=Yb;g.RotateVector=za;g.Rotation_EQJ_ECL=Zb;g.Rotation_ECL_EQJ=function(){return new M([[1,0,0],[0,.9174821430670688,.3977769691083922],[0,-.3977769691083922,.9174821430670688]])};g.Rotation_EQJ_EQD=kb;g.Rotation_EQD_EQJ=lb;g.Rotation_EQD_HOR=mb;g.Rotation_HOR_EQD=$b; -g.Rotation_HOR_EQJ=ac;g.Rotation_EQJ_HOR=function(a,b){a=ac(a,b);return la(a)};g.Rotation_EQD_ECL=bc;g.Rotation_ECL_EQD=cc;g.Rotation_ECL_HOR=dc;g.Rotation_HOR_ECL=function(a,b){a=dc(a,b);return la(a)};var Hc=[["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"]],Ic=[[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]],qb,tc,uc=function(a,b,c,d){this.symbol=a;this.name=b;this.ra1875=c;this.dec1875=d};g.ConstellationInfo=uc;g.Constellation=function(a,b){r(a);r(b);if(-90>b||90a&&(a+=24);qb||(qb=kb(new P(-45655.74141261017)),tc=new P(0));a=new Ha(a,b,1);a=Vb(a,tc);a=za(qb,a); -a=Wb(a);b=10/240;for(var c=b/15,d=$jscomp.makeIterator(Ic),e=d.next();!e.done;e=d.next()){e=e.value;var h=e[1]*c,l=e[2]*c;if(e[3]*b<=a.dec&&h<=a.ra&&a.ram&&(m+=360)):m=0;n=57.29577951308232*Math.atan2(q,n);q=d;if(e&&(d=n,e=qa(e,90-n),n-=e,0k;++k)e.push((b[k]-d*a[k])/u*c+a[k]*q);q=Math.sqrt(e[0]*e[0]+e[1]*e[1]);0c&&(c+=24)):c=0;q=57.29577951308232*Math.atan2(e[2],q)}return new zb(m,90-n,c,q)}function ia(a){if(!(a instanceof +Ab))throw"Not an instance of the Observer class: "+a;r(a.latitude);r(a.longitude);r(a.height);if(-90>a.latitude||90d&&(d+=360));return new Db(a,h,b,57.29577951308232*Math.atan2(b,c),d)}function ra(a,b,c){void 0===Ka&&(Ka=.017453292519943295*Ba(y(ab)).mobl,Eb=Math.cos(Ka),Fb=Math.sin(Ka));r(a);r(b);r(c);return Cb(a,b,c,Eb,Fb)}function X(a){a=y(a);var b=S(a),c=b.distance_au*Math.cos(b.geo_eclip_lat); +b=[c*Math.cos(b.geo_eclip_lon),c*Math.sin(b.geo_eclip_lon),b.distance_au*Math.sin(b.geo_eclip_lat)];var d=.017453292519943295*na(a);c=Math.cos(d);d=Math.sin(d);b=Ga(a.tt,[b[0],b[1]*c-b[2]*d,b[1]*d+b[2]*c],0);return new B(b[0],b[1],b[2],a)}function ba(a,b){var c=1,d=0;a=$jscomp.makeIterator(a);for(var e=a.next();!e.done;e=a.next()){var h=0;e=$jscomp.makeIterator(e.value);for(var l=e.next();!l.done;l=e.next()){var k=$jscomp.makeIterator(l.value);l=k.next().value;var f=k.next().value;k=k.next().value; +h+=l*Math.cos(f+b*k)}d+=c*h;c*=b}return d}function bb(a,b){var c=1,d=0,e=0,h=0;a=$jscomp.makeIterator(a);for(var l=a.next();!l.done;l=a.next()){var k=0,f=0;l=$jscomp.makeIterator(l.value);for(var m=l.next();!m.done;m=l.next()){var n=$jscomp.makeIterator(m.value);m=n.next().value;var q=n.next().value;n=n.next().value;q+=b*n;k+=m*n*Math.sin(q);0a?0:a>=b?b-1:a}function eb(a){var b=$jscomp.makeIterator(a);a=b.next().value;var c=$jscomp.makeIterator(b.next().value);var d=c.next().value;var e=c.next().value;c=c.next().value;var h=$jscomp.makeIterator(b.next().value);b=h.next().value;var l=h.next().value;h=h.next().value;d=new Na(a,new C(d,e,c),new C(b,l,h));a=new Pa(d.tt);e=d.r.add(a.Sun.r);c=d.v.add(a.Sun.v); +b=a.Acceleration(e);d=new Hb(d.tt,e,c,b);return new Ib(a,d)}function Kb(a,b,c){a=eb(a);for(var d=Math.ceil((b-a.grav.tt)/c),e=0;eca[40][0])a=null;else{a=Jb((a-c)/36500,40);if(!fb[a]){c=fb[a]=[];c[0]=eb(ca[a]).grav;c[146]=eb(ca[a+1]).grav;var d,e=c[0].tt;for(d=1;146>d;++d)c[d]=db(e+=250,c[d-1]).grav;e=c[146].tt;var h=[];h[146]=c[146];for(d=145;0k;++k){e=ta(a,l);c?d=N(F.Earth,l):d||(d=N(F.Earth,b));e=new B(e.x-d.x,e.y-d.y,e.z-d.z,b);var f=b.AddDays(-e.Length()/173.1446326846693);h=Math.abs(f.tt-l.tt);if(1E-9>h)return e;l=f}throw"Light-travel time solver did not converge: dt="+h;}function yc(a,b,c,d,e){var h=(e+c)/2-d;c=(e-c)/2;if(0==h){if(0==c)return null;d=-d/c;if(-1>d||1=d)return null;e=Math.sqrt(d); +d=(-c+e)/(2*h);e=(-c-e)/(2*h);if(-1<=d&&1>=d){if(-1<=e&&1>=e)return null}else if(-1<=e&&1>=e)d=e;else return null}return{x:d,t:a+d*b,df_dt:(2*h*d+c)/b}}function E(a,b,c,d){var e=r(d&&d.dt_tolerance_seconds||1);e=Math.abs(e/86400);var h=d&&d.init_f1||a(b),l=d&&d.init_f2||a(c),k=NaN,f=0;d=d&&d.iter_limit||20;for(var m=!0;;){if(++f>d)throw"Excessive iteration in Search()";var n=new P(b.ut+.5*(c.ut-b.ut)),q=n.ut-b.ut;if(Math.abs(q)(q.ut-b.ut)*(q.ut-c.ut)&&0>(w.ut-b.ut)*(w.ut-c.ut))){u=a(q);var z=a(w);if(0>u&&0<=z){h=u;l=z;b=q;c=w;k=H;m=!1;continue}}}}if(0>h&&0<=k)c=n,l=k;else if(0>k&&0<=l)b=n,h=k;else return null}}function ua(a){for(;-180>=a;)a+=360;for(;180b;)b+=360;for(;360<=b;)b-=360;return b}function ja(a,b){if("Earth"==a)throw"The Earth does not have an angle as seen from itself.";var c=W("Sun",b,!0);a=W(a,b,!0);return O(c,a)}function ea(a,b){if("Sun"===a)throw"Cannot calculate heliocentric longitude of the Sun.";a=ta(a,b);return ra(a.x,a.y,a.z).elon}function Qa(a,b){if("Earth"===a)throw"The illumination of the Earth is not defined."; +var c=y(b),d=N(F.Earth,c);if("Sun"===a){var e=new B(-d.x,-d.y,-d.z,c);b=new B(0,0,0,c);d=0}else"Moon"===a?(e=X(c),b=new B(d.x+e.x,d.y+e.y,d.z+e.z,c)):(b=ta(a,b),e=new B(b.x-d.x,b.y-d.y,b.z-d.z,c)),d=O(e,b);var h=e.Length(),l=b.Length();if("Sun"===a)a=zc+5*Math.log10(h);else if("Moon"===a){a=.017453292519943295*d;var k=a*a;a=-12.717+1.49*Math.abs(a)+.0431*k*k;a+=5*Math.log10(h/.002573570052980638*l)}else if("Saturn"===a){a=d;var f=ra(e.x,e.y,e.z);k=.017453292519943295*f.elat;f=Math.asin(Math.sin(k)* +Math.cos(.4897393881096089)-Math.cos(k)*Math.sin(.4897393881096089)*Math.sin(.017453292519943295*f.elon-.017453292519943295*(169.51+3.82E-5*c.tt)));k=Math.sin(Math.abs(f));a=-9+.044*a+k*(-2.6+1.2*k)+5*Math.log10(l*h);f*=57.29577951308232}else{var m=k=0,n=0;switch(a){case "Mercury":a=-.6;k=4.98;m=-4.88;n=3.02;break;case "Venus":163.6>d?(a=-4.47,k=1.03,m=.57,n=.13):(a=.98,k=-1.02);break;case "Mars":a=-1.52;k=1.6;break;case "Jupiter":a=-9.4;k=.5;break;case "Uranus":a=-7.19;k=.25;break;case "Neptune":a= +-6.87;break;case "Pluto":a=-1;k=4;break;default:throw"VisualMagnitude: unsupported body "+a;}var q=d/100;a=a+q*(k+q*(m+q*n))+5*Math.log10(l*h)}return new Mb(c,a,d,l,h,e,b,f)}function va(a){if("Earth"===a)throw"The Earth does not have a synodic period as seen from itself.";if("Moon"===a)return 29.530588;var b=Y[a];if(!b)throw"Not a valid planet name: "+a;a=Y.Earth.OrbitalPeriod;return Math.abs(a/(a/b.OrbitalPeriod-1))}function ka(a,b,c){function d(m){var n=ea(a,m);m=ea("Earth",m);return ua(h*(m-n)- +b)}r(b);var e=Y[a];if(!e)throw"Cannot search relative longitude because body is not a planet: "+a;if("Earth"===a)throw"Cannot search relative longitude for the Earth (it is always 0)";var h=e.OrbitalPeriod>Y.Earth.OrbitalPeriod?1:-1;e=va(a);c=y(c);var l=d(c);0k;++k){var f=-l/360*e;c=c.AddDays(f);if(1>86400*Math.abs(f))return c;f=l;l=d(c);30>Math.abs(f)&&f!==l&&(f/=f-l,.5f&&(e*=f))}throw"Relative longitude search failed to converge for "+a+" near "+c.toString()+" (error_angle = "+ +l+").";}function hb(a){return gb("Moon",a)}function wa(a,b,c){function d(l){l=hb(l);return ua(l-a)}r(a);r(c);b=y(b);var e=d(b);0c)return null;c=Math.min(c,h+1.5);e=b.AddDays(e);b=b.AddDays(c);return E(d,e,b)}function Nb(a){var b=hb(a);b=(Math.floor(b/90)+1)%4;a=wa(90*b,a,10);if(!a)throw"Cannot find moon quarter";return new Ob(b,a)}function xa(a,b,c,d){ia(b);d=y(d);var e=0;if("Earth"===a)throw"Cannot search for hour angle of the Earth.";r(c);if(0> +c||24<=c)throw"Invalid hour angle "+c;for(;;){++e;var h=pa(d),l=Ja(a,d,b,!0,!0);h=(c+l.ra-b.longitude/15-h)%24;1===e?0>h&&(h+=24):-12>h?h+=24:123600*Math.abs(h))return a=Ia(d,b,l.ra,l.dec,"normal"),new Pb(d,a);d=d.AddDays(h/24*.9972695717592592)}}function Qb(a,b){b=y(b);var c=gb(a,b);if(1805*e;++e){var h=a.AddDays(5),l=b(h);if(0>=d*l){if(0>d||0l){a=E(c,a,h,{init_f1:-d,init_f2:-l});if(!a)throw"SearchLunarApsis INTERNAL ERROR: apogee search failed!";d=S(a).distance_au;return new ya(a,1,d)}throw"SearchLunarApsis INTERNAL ERROR: cannot classify apsis event!";}a=h;d=l}throw"SearchLunarApsis INTERNAL ERROR: could not find apsis within 2 synodic months of start date."; +}function Tb(a,b,c,d){for(var e=1===b?1:-1;;){d/=9;if(d<1/1440)return c=c.AddDays(d/2),a=da(a,c),new ya(c,b,a);for(var h=-1,l=0,k=0;10>k;++k){var f=c.AddDays(k*d);f=e*da(a,f);if(0==k||f>l)h=k,l=f}c=c.AddDays((h-1)*d);d*=2}}function Ac(a,b){var c=b.AddDays(-30/360*Y[a].OrbitalPeriod),d=b.AddDays(.75*Y[a].OrbitalPeriod),e=c,h=c,l=-1,k=-1;d=(d.ut-c.ut)/99;for(var f=0;100>f;++f){var m=c.AddDays(f*d),n=da(a,m);0===f?k=l=n:(n>k&&(k=n,h=m),n=b.tt)return a.time.tt>=b.tt&&a.time.tt=b.tt)return a;throw"Internal error: failed to find Neptune apsis.";}function Ub(a,b){function c(n){var q=n.AddDays(-5E-4);n=n.AddDays(5E-4);q=da(a,q);return(da(a,n)-q)/.001}function d(n){return-c(n)}if("Neptune"===a||"Pluto"===a)return Ac(a,b);for(var e=Y[a].OrbitalPeriod,h=e/6,l=c(b),k=0;k*h<2*e;++k){var f=b.AddDays(h),m=c(f);if(0>=l*m){e=h=void 0;if(0>l||0m)h=d,e=1;else throw"Internal error with slopes in SearchPlanetApsis"; +b=E(h,b,f);if(!b)throw"Failed to find slope transition in planetary apsis search.";l=da(a,b);return new ya(b,e,l)}b=f;l=m}throw"Internal error: should have found planetary apsis within 2 orbital periods.";}function la(a){return new M([[a.rot[0][0],a.rot[1][0],a.rot[2][0]],[a.rot[0][1],a.rot[1][1],a.rot[2][1]],[a.rot[0][2],a.rot[1][2],a.rot[2][2]]])}function ma(a,b){return new M([[b.rot[0][0]*a.rot[0][0]+b.rot[1][0]*a.rot[0][1]+b.rot[2][0]*a.rot[0][2],b.rot[0][1]*a.rot[0][0]+b.rot[1][1]*a.rot[0][1]+ +b.rot[2][1]*a.rot[0][2],b.rot[0][2]*a.rot[0][0]+b.rot[1][2]*a.rot[0][1]+b.rot[2][2]*a.rot[0][2]],[b.rot[0][0]*a.rot[1][0]+b.rot[1][0]*a.rot[1][1]+b.rot[2][0]*a.rot[1][2],b.rot[0][1]*a.rot[1][0]+b.rot[1][1]*a.rot[1][1]+b.rot[2][1]*a.rot[1][2],b.rot[0][2]*a.rot[1][0]+b.rot[1][2]*a.rot[1][1]+b.rot[2][2]*a.rot[1][2]],[b.rot[0][0]*a.rot[2][0]+b.rot[1][0]*a.rot[2][1]+b.rot[2][0]*a.rot[2][2],b.rot[0][1]*a.rot[2][0]+b.rot[1][1]*a.rot[2][1]+b.rot[2][1]*a.rot[2][2],b.rot[0][2]*a.rot[2][0]+b.rot[1][2]*a.rot[2][1]+ +b.rot[2][2]*a.rot[2][2]]])}function ib(a,b){var c=.017453292519943295*a.lat,d=.017453292519943295*a.lon,e=a.dist*Math.cos(c);return new B(e*Math.cos(d),e*Math.sin(d),a.dist*Math.sin(c),b)}function Vb(a,b){return ib(new Ra(a.dec,15*a.ra,a.dist),b)}function Wb(a){a=jb(a);return new Ha(a.lon/15,a.lat,a.dist)}function jb(a){var b=a.x*a.x+a.y*a.y,c=Math.sqrt(b+a.z*a.z);if(0===b){if(0===a.z)throw"Zero-length vector not allowed.";var d=0;a=0>a.z?-90:90}else d=57.29577951308232*Math.atan2(a.y,a.x),0>d&&(d+= +360),a=57.29577951308232*Math.atan2(a.z,Math.sqrt(b));return new Ra(a,d,c)}function Xb(a){a=360-a;360<=a?a-=360:0>a&&(a+=360);return a}function qa(a,b){r(b);if(-90>b||90c&&(c=-1);c=1.02/Math.tan(.017453292519943295*(c+10.3/(c+5.11)))/60;"normal"===a&&-1>b&&(c*=(b+90)/89)}else c=0;return c}function Yb(a,b){if(-90>b||90Math.abs(d))return c-b;c-=d}}function za(a,b){return new B(a.rot[0][0]* +b.x+a.rot[1][0]*b.y+a.rot[2][0]*b.z,a.rot[0][1]*b.x+a.rot[1][1]*b.y+a.rot[2][1]*b.z,a.rot[0][2]*b.x+a.rot[1][2]*b.y+a.rot[2][2]*b.z,b.t)}function Zb(){return new M([[1,0,0],[0,.9174821430670688,-.3977769691083922],[0,.3977769691083922,.9174821430670688]])}function kb(a){var b=Ya(0,a.tt);a=$a(a,0);return ma(b,a)}function lb(a){var b=$a(a,1);a=Ya(a.tt,0);return ma(b,a)}function mb(a,b){var c=Math.sin(.017453292519943295*b.latitude),d=Math.cos(.017453292519943295*b.latitude),e=Math.sin(.017453292519943295* +b.longitude),h=Math.cos(.017453292519943295*b.longitude);b=[d*h,d*e,c];c=[-c*h,-c*e,d];e=[e,-h,0];a=-15*pa(a);b=ha(a,b);c=ha(a,c);a=ha(a,e);return new M([[c[0],a[0],b[0]],[c[1],a[1],b[1]],[c[2],a[2],b[2]]])}function $b(a,b){a=mb(a,b);return la(a)}function ac(a,b){b=$b(a,b);a=lb(a);return ma(b,a)}function bc(a){a=lb(a);var b=Zb();return ma(a,b)}function cc(a){a=bc(a);return la(a)}function dc(a,b){var c=cc(a);a=mb(a,b);return ma(c,a)}function Aa(a,b,c,d){var e=(d.x*c.x+d.y*c.y+d.z*c.z)/(d.x*d.x+d.y* +d.y+d.z*d.z),h=e*d.x-c.x,l=e*d.y-c.y,k=e*d.z-c.z;return new Bc(b,e,1.4959787069098932E8*Math.sqrt(h*h+l*l+k*k),695700-(1+e)*(695700-a),-695700+(1+e)*(695700+a),c,d)}function Sa(a){var b=N(F.Earth,a),c=X(a);return Aa(6459,a,c,b)}function ec(a){var b=N(F.Earth,a),c=X(a),d=new B(-c.x,-c.y,-c.z,c.t);c.x+=b.x;c.y+=b.y;c.z+=b.z;return Aa(1737.4,a,d,c)}function nb(a,b){var c=xb(a,b);b=N(F.Earth,a);var d=X(a);c=new B(c[0]-d.x,c[1]-d.y,c[2]-d.z,a);d.x+=b.x;d.y+=b.y;d.z+=b.z;return Aa(1737.4,a,c,d)}function Ta(a, +b,c){a=W(a,c,!1);var d=W("Sun",c,!1),e=new B(a.x-d.x,a.y-d.y,a.z-d.z,c);d.x=-a.x;d.y=-a.y;d.z=-a.z;return Aa(b,c,d,e)}function ob(a,b){var c=1/86400,d=b.AddDays(-c);b=b.AddDays(+c);d=a(d);return(a(b).r-d.r)/c}function Cc(a){var b=a.AddDays(-.03);a=a.AddDays(.03);b=E(function(c){return ob(Sa,c)},b,a);if(!b)throw"Failed to find peak Earth shadow time.";return Sa(b)}function Dc(a){var b=a.AddDays(-.03);a=a.AddDays(.03);b=E(function(c){return ob(ec,c)},b,a);if(!b)throw"Failed to find peak Moon shadow time."; +return ec(b)}function Ec(a,b,c){var d=c.AddDays(-1);c=c.AddDays(1);d=E(function(e){var h=1/86400,l=Ta(a,b,e.AddDays(-h));return(Ta(a,b,e.AddDays(+h)).r-l.r)/h},d,c);if(!d)throw"Failed to find peak planet shadow time.";return Ta(a,b,d)}function Fc(a,b){function c(h){return nb(h,b)}var d=a.AddDays(-.2),e=a.AddDays(.2);d=E(function(h){return ob(c,h)},d,e);if(!d)throw"PeakLocalMoonShadow: search failure for search_center_time = "+a;return nb(d,b)}function pb(a,b,c){var d=c/1440;c=a.AddDays(-d);d=a.AddDays(+d); +c=E(function(e){return-(Sa(e).r-b)},c,a);a=E(function(e){return+(Sa(e).r-b)},a,d);if(!c||!a)throw"Failed to find shadow semiduration";return 720*(a.ut-c.ut)}function fc(a){a=y(a);for(var b=0;12>b;++b){var c=wa(180,a,40);if(!c)throw"Cannot find full moon.";a=57.29577951308232*S(c).geo_eclip_lat;if(1.8>Math.abs(a)&&(a=Cc(c),a.rb;++b){var c=wa(0,a,40);if(!c)throw"Cannot find new moon";a=57.29577951308232*S(c).geo_eclip_lat;if(1.8>Math.abs(a)&&(a=Dc(c),a.r=d?d+=360:180a.r)throw"Unexpected shadow distance from geoid intersection = "+a.r;h=.014Math.abs(c)){var d=Fc(a,b);if(d.rja(a,d)&&(b=Ec(a,c,d),b.r=m&&0=d.ut+e)return null;q=m.time;m=h(m.time);n=h(u.time)}};var Pb=function(a,b){this.time=a;this.hor=b};g.HourAngleEvent=Pb;g.SearchHourAngle=xa;var sc=function(a,b,c,d){this.mar_equinox=a;this.jun_solstice=b;this.sep_equinox=c;this.dec_solstice=d};g.SeasonInfo=sc;g.Seasons=function(a){function b(l,k,f){k=new Date(Date.UTC(a,k-1,f));l=Lb(l,k,4);if(!l)throw"Cannot find season change near "+ +k.toISOString();return l}a instanceof Date&&Number.isFinite(a.getTime())&&(a=a.getUTCFullYear());if(!Number.isSafeInteger(a))throw"Cannot calculate seasons because year argument "+a+" is neither a Date nor a safe integer.";var c=b(0,3,19),d=b(90,6,19),e=b(180,9,21),h=b(270,12,20);return new sc(c,d,e,h)};var Rb=function(a,b,c,d){this.time=a;this.visibility=b;this.elongation=c;this.ecliptic_separation=d};g.ElongationEvent=Rb;g.Elongation=Qb;g.SearchMaxElongation=function(a,b){function c(m){var n=m.AddDays(-.005); +m=m.AddDays(.005);n=ja(a,n);m=ja(a,m);return(n-m)/.01}b=y(b);var d={Mercury:{s1:50,s2:85},Venus:{s1:40,s2:50}}[a];if(!d)throw"SearchMaxElongation works for Mercury and Venus only.";for(var e=0;2>=++e;){var h=ea(a,b),l=ea("Earth",b),k=ua(h-l),f=h=l=void 0;k>=-d.s1&&k<+d.s1?(f=0,l=+d.s1,h=+d.s2):k>=+d.s2||k<-d.s2?(f=0,l=-d.s2,h=-d.s1):0<=k?(f=-va(a)/4,l=+d.s1,h=+d.s2):(f=-va(a)/4,l=-d.s2,h=-d.s1);k=b.AddDays(f);l=ka(a,l,k);h=ka(a,h,l);k=c(l);if(0<=k)throw"SearchMaxElongation: internal error: m1 = "+ +k;f=c(h);if(0>=f)throw"SearchMaxElongation: internal error: m2 = "+f;k=E(c,l,h,{init_f1:k,init_f2:f,dt_tolerance_seconds:10});if(!k)throw"SearchMaxElongation: failed search iter "+e+" (t1="+l.toString()+", t2="+h.toString()+")";if(k.tt>=b.tt)return Qb(a,k);b=h.AddDays(1)}throw"SearchMaxElongation: failed to find event after 2 tries.";};g.SearchPeakMagnitude=function(a,b){function c(f){var m=f.AddDays(-.005);f=f.AddDays(.005);m=Qa(a,m).mag;return(Qa(a,f).mag-m)/.01}if("Venus"!==a)throw"SearchPeakMagnitude currently works for Venus only."; +b=y(b);for(var d=0;2>=++d;){var e=ea(a,b),h=ea("Earth",b),l=ua(e-h),k=e=h=void 0;-10<=l&&10>l?(k=0,h=10,e=30):30<=l||-30>l?(k=0,h=-30,e=-10):0<=l?(k=-va(a)/4,h=10,e=30):(k=-va(a)/4,h=-30,e=-10);l=b.AddDays(k);h=ka(a,h,l);e=ka(a,e,h);l=c(h);if(0<=l)throw"SearchPeakMagnitude: internal error: m1 = "+l;k=c(e);if(0>=k)throw"SearchPeakMagnitude: internal error: m2 = "+k;l=E(c,h,e,{init_f1:l,init_f2:k,dt_tolerance_seconds:10});if(!l)throw"SearchPeakMagnitude: failed search iter "+d+" (t1="+h.toString()+ +", t2="+e.toString()+")";if(l.tt>=b.tt)return Qa(a,l);b=e.AddDays(1)}throw"SearchPeakMagnitude: failed to find event after 2 tries.";};var ya=function(a,b,c){this.time=a;this.kind=b;this.dist_au=c;this.dist_km=1.4959787069098932E8*c};g.Apsis=ya;g.SearchLunarApsis=Sb;g.NextLunarApsis=function(a){var b=Sb(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};g.SearchPlanetApsis=Ub;g.NextPlanetApsis=function(a,b){if(0!==b.kind&&1!==b.kind)throw"Invalid apsis kind: "+b.kind;var c=b.time.AddDays(.25*Y[a].OrbitalPeriod);a=Ub(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};g.InverseRotation=la;g.CombineRotation=ma;g.VectorFromSphere=ib;g.VectorFromEquator=Vb;g.EquatorFromVector=Wb;g.SphereFromVector=jb;g.HorizonFromVector=function(a,b){a=jb(a);a.lon=Xb(a.lon);a.lat+=qa(b, +a.lat);return a};g.VectorFromHorizon=function(a,b,c){var d=Xb(a.lon);c=a.lat+Yb(c,a.lat);a=new Ra(c,d,a.dist);return ib(a,b)};g.Refraction=qa;g.InverseRefraction=Yb;g.RotateVector=za;g.Rotation_EQJ_ECL=Zb;g.Rotation_ECL_EQJ=function(){return new M([[1,0,0],[0,.9174821430670688,.3977769691083922],[0,-.3977769691083922,.9174821430670688]])};g.Rotation_EQJ_EQD=kb;g.Rotation_EQD_EQJ=lb;g.Rotation_EQD_HOR=mb;g.Rotation_HOR_EQD=$b;g.Rotation_HOR_EQJ=ac;g.Rotation_EQJ_HOR=function(a,b){a=ac(a,b);return la(a)}; +g.Rotation_EQD_ECL=bc;g.Rotation_ECL_EQD=cc;g.Rotation_ECL_HOR=dc;g.Rotation_HOR_ECL=function(a,b){a=dc(a,b);return la(a)};var Hc=[["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"]],Ic=[[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]],qb,tc,uc=function(a,b,c,d){this.symbol=a;this.name=b;this.ra1875=c;this.dec1875=d};g.ConstellationInfo=uc;g.Constellation=function(a,b){r(a);r(b);if(-90>b||90a&&(a+=24);qb||(qb=kb(new P(-45655.74141261017)),tc=new P(0));a=new Ha(a,b,1);a=Vb(a,tc);a=za(qb,a);a=Wb(a);b=10/240;for(var c=b/15,d=$jscomp.makeIterator(Ic), +e=d.next();!e.done;e=d.next()){e=e.value;var h=e[1]*c,l=e[2]*c;if(e[3]*b<=a.dec&&h<=a.ra&&a.ra 0) { + // If the body is not exactly straight up/down, it has an azimuth. + // Invert the angle to produce degrees eastward from north. az = -Math.atan2(pw, pn) * RAD2DEG; if (az < 0) az += 360; - if (az >= 360) - az -= 360; } + else { + // The body is straight up/down, so it does not have an azimuth. + // Report an arbitrary but reasonable value. + az = 0; + } + // zd = the angle of the body away from the observer's zenith, in degrees. let zd = Math.atan2(proj, pz) * RAD2DEG; let out_ra = ra; let out_dec = dec; @@ -1968,9 +2003,6 @@ function Horizon(date, observer, ra, dec, refraction) { if (out_ra < 0) { out_ra += 24; } - if (out_ra >= 24) { - out_ra -= 24; - } } else { out_ra = 0; diff --git a/source/js/astronomy.min.js b/source/js/astronomy.min.js index d791c341..c101b7a8 100644 --- a/source/js/astronomy.min.js +++ b/source/js/astronomy.min.js @@ -123,9 +123,9 @@ var Vector=function(a,b,c,d){this.x=a;this.y=b;this.z=c;this.t=d};Vector.prototy function IsValidRotationArray(a){if(!(a instanceof Array)||3!==a.length)return!1;for(var b=0;3>b;++b){if(!(a[b]instanceof Array)||3!==a[b].length)return!1;for(var c=0;3>c;++c)if(!Number.isFinite(a[b][c]))return!1}return!0}var RotationMatrix=function(a){this.rot=a};exports.RotationMatrix=RotationMatrix;function MakeRotation(a){if(!IsValidRotationArray(a))throw"Argument must be a [3][3] array of numbers";return new RotationMatrix(a)}exports.MakeRotation=MakeRotation; var HorizontalCoordinates=function(a,b,c,d){this.azimuth=VerifyNumber(a);this.altitude=VerifyNumber(b);this.ra=VerifyNumber(c);this.dec=VerifyNumber(d)};exports.HorizontalCoordinates=HorizontalCoordinates;var EclipticCoordinates=function(a,b,c,d,e){this.ex=VerifyNumber(a);this.ey=VerifyNumber(b);this.ez=VerifyNumber(c);this.elat=VerifyNumber(d);this.elon=VerifyNumber(e)};exports.EclipticCoordinates=EclipticCoordinates; function vector2radec(a){var b=a[0]*a[0]+a[1]*a[1],c=Math.sqrt(b+a[2]*a[2]);if(0===b){if(0===a[2])throw"Indeterminate sky coordinates";return 0>a[2]?{ra:0,dec:-90,dist:c}:{ra:0,dec:90,dist:c}}var d=Math.atan2(a[1],a[0])/(15*DEG2RAD);0>d&&(d+=24);return new EquatorialCoordinates(d,Math.atan2(a[2],Math.sqrt(b))/DEG2RAD,c)}function spin(a,b){var c=a*DEG2RAD;a=Math.cos(c);c=Math.sin(c);return[a*b[0]+c*b[1]+0*b[2],-c*b[0]+a*b[1]+0*b[2],0*b[0]+0*b[1]+1*b[2]]} -function Horizon(a,b,c,d,e){a=MakeTime(a);VerifyObserver(b);VerifyNumber(c);VerifyNumber(d);var f=Math.sin(b.latitude*DEG2RAD),g=Math.cos(b.latitude*DEG2RAD),k=Math.sin(b.longitude*DEG2RAD),h=Math.cos(b.longitude*DEG2RAD);b=Math.sin(d*DEG2RAD);var l=Math.cos(d*DEG2RAD),m=Math.sin(15*c*DEG2RAD),n=Math.cos(15*c*DEG2RAD),p=[g*h,g*k,f];f=[-f*h,-f*k,g];k=[k,-h,0];g=-15*sidereal_time(a);a=spin(g,p);p=spin(g,f);k=spin(g,k);b=[l*n,l*m,b];m=b[0]*a[0]+b[1]*a[1]+b[2]*a[2];p=b[0]*p[0]+b[1]*p[1]+b[2]*p[2];k=b[0]* -k[0]+b[1]*k[1]+b[2]*k[2];n=Math.sqrt(p*p+k*k);l=0;0l&&(l+=360),360<=l&&(l-=360));m=Math.atan2(n,m)*RAD2DEG;n=d;if(e&&(d=m,e=Refraction(e,90-m),m-=e,0k;++k)e.push((b[k]-d*a[k])/p*c+a[k]*n);n=Math.sqrt(e[0]*e[0]+e[1]*e[1]);0c&&(c+=24),24<=c&&(c-=24)):c=0;n=Math.atan2(e[2],n)*RAD2DEG}return new HorizontalCoordinates(l, -90-m,c,n)}exports.Horizon=Horizon;function VerifyObserver(a){if(!(a instanceof Observer))throw"Not an instance of the Observer class: "+a;VerifyNumber(a.latitude);VerifyNumber(a.longitude);VerifyNumber(a.height);if(-90>a.latitude||90l&&(l+=360)):l=0;m=Math.atan2(n,m)*RAD2DEG;n=d;if(e&&(d=m,e=Refraction(e,90-m),m-=e,0k;++k)e.push((b[k]-d*a[k])/p*c+a[k]*n);n=Math.sqrt(e[0]*e[0]+e[1]*e[1]);0c&&(c+=24)):c=0;n=Math.atan2(e[2],n)*RAD2DEG}return new HorizontalCoordinates(l,90-m,c,n)} +exports.Horizon=Horizon;function VerifyObserver(a){if(!(a instanceof Observer))throw"Not an instance of the Observer class: "+a;VerifyNumber(a.latitude);VerifyNumber(a.longitude);VerifyNumber(a.height);if(-90>a.latitude||90d&&(d+=360));return new EclipticCoordinates(a,f,b,RAD2DEG*Math.atan2(b,c),d)} function Ecliptic(a,b,c){void 0===ob2000&&(ob2000=DEG2RAD*e_tilt(MakeTime(J2000)).mobl,cos_ob2000=Math.cos(ob2000),sin_ob2000=Math.sin(ob2000));VerifyNumber(a);VerifyNumber(b);VerifyNumber(c);return RotateEquatorialToEcliptic(a,b,c,cos_ob2000,sin_ob2000)}exports.Ecliptic=Ecliptic; diff --git a/source/js/astronomy.ts b/source/js/astronomy.ts index 7b0ccb8f..f2f9b283 100644 --- a/source/js/astronomy.ts +++ b/source/js/astronomy.ts @@ -1660,7 +1660,7 @@ function sidereal_time(time: AstroTime): number { // calculates Greenwi if (gst < 0) { gst += 24; } - return gst; + return gst; // return sidereal hours in the half-open range [0, 24). } function terra(observer: Observer, st: number): TerraInfo { @@ -2068,28 +2068,70 @@ export function Horizon(date: FlexibleDateTime, observer: Observer, ra: number, const cosdc = Math.cos(dec * DEG2RAD); const sinra = Math.sin(ra * 15 * DEG2RAD); const cosra = Math.cos(ra * 15 * DEG2RAD); + + // Calculate three mutually perpendicular unit vectors + // in equatorial coordinates: uze, une, uwe. + // + // uze = The direction of the observer's local zenith (straight up). + // une = The direction toward due north on the observer's horizon. + // uwe = The direction toward due west on the observer's horizon. + // + // HOWEVER, these are uncorrected for the Earth's rotation due to the time of day. + // + // The components of these 3 vectors are as follows: + // x = direction from center of Earth toward 0 degrees longitude (the prime meridian) on equator. + // y = direction from center of Earth toward 90 degrees west longitude on equator. + // z = direction from center of Earth toward the north pole. + let uze: ArrayVector = [coslat*coslon, coslat*sinlon, sinlat]; let une: ArrayVector = [-sinlat*coslon, -sinlat*sinlon, coslat]; let uwe: ArrayVector = [sinlon, -coslon, 0]; + // Correct the vectors uze, une, uwe for the Earth's rotation by calculating + // sideral time. Call spin() for each uncorrected vector to rotate about + // the Earth's axis to yield corrected unit vectors uz, un, uw. + // Multiply sidereal hours by -15 to convert to degrees and flip eastward + // rotation of the Earth to westward apparent movement of objects with time. + const spin_angle = -15 * sidereal_time(time); let uz = spin(spin_angle, uze); let un = spin(spin_angle, une); let uw = spin(spin_angle, uwe); + // Convert angular equatorial coordinates (RA, DEC) to + // cartesian equatorial coordinates in 'p', using the + // same orientation system as uze, une, uwe. + let p = [cosdc*cosra, cosdc*sinra, sindc]; + // Use dot products of p with the zenith, north, and west + // vectors to obtain the cartesian coordinates of the body in + // the observer's horizontal orientation system. + // pz = zenith component [-1, +1] + // pn = north component [-1, +1] + // pw = west component [-1, +1] + const pz = p[0]*uz[0] + p[1]*uz[1] + p[2]*uz[2]; const pn = p[0]*un[0] + p[1]*un[1] + p[2]*un[2]; const pw = p[0]*uw[0] + p[1]*uw[1] + p[2]*uw[2]; + // proj is the "shadow" of the body vector along the observer's flat ground. let proj = Math.sqrt(pn*pn + pw*pw); - let az = 0; + + // Calculate az = azimuth (compass direction clockwise from East.) + let az: number; if (proj > 0) { + // If the body is not exactly straight up/down, it has an azimuth. + // Invert the angle to produce degrees eastward from north. az = -Math.atan2(pw, pn) * RAD2DEG; if (az < 0) az += 360; - if (az >= 360) az -= 360; + } else { + // The body is straight up/down, so it does not have an azimuth. + // Report an arbitrary but reasonable value. + az = 0; } + + // zd = the angle of the body away from the observer's zenith, in degrees. let zd = Math.atan2(proj, pz) * RAD2DEG; let out_ra = ra; let out_dec = dec; @@ -2113,9 +2155,6 @@ export function Horizon(date: FlexibleDateTime, observer: Observer, ra: number, if (out_ra < 0) { out_ra += 24; } - if (out_ra >= 24) { - out_ra -= 24; - } } else { out_ra = 0; } diff --git a/source/js/esm/astronomy.js b/source/js/esm/astronomy.js index 848af746..adbede11 100644 --- a/source/js/esm/astronomy.js +++ b/source/js/esm/astronomy.js @@ -1555,7 +1555,7 @@ function sidereal_time(time) { if (gst < 0) { gst += 24; } - return gst; + return gst; // return sidereal hours in the half-open range [0, 24). } function terra(observer, st) { const df = 1 - 0.003352819697896; // flattening of the Earth @@ -1910,26 +1910,61 @@ export function Horizon(date, observer, ra, dec, refraction) { const cosdc = Math.cos(dec * DEG2RAD); const sinra = Math.sin(ra * 15 * DEG2RAD); const cosra = Math.cos(ra * 15 * DEG2RAD); + // Calculate three mutually perpendicular unit vectors + // in equatorial coordinates: uze, une, uwe. + // + // uze = The direction of the observer's local zenith (straight up). + // une = The direction toward due north on the observer's horizon. + // uwe = The direction toward due west on the observer's horizon. + // + // HOWEVER, these are uncorrected for the Earth's rotation due to the time of day. + // + // The components of these 3 vectors are as follows: + // x = direction from center of Earth toward 0 degrees longitude (the prime meridian) on equator. + // y = direction from center of Earth toward 90 degrees west longitude on equator. + // z = direction from center of Earth toward the north pole. let uze = [coslat * coslon, coslat * sinlon, sinlat]; let une = [-sinlat * coslon, -sinlat * sinlon, coslat]; let uwe = [sinlon, -coslon, 0]; + // Correct the vectors uze, une, uwe for the Earth's rotation by calculating + // sideral time. Call spin() for each uncorrected vector to rotate about + // the Earth's axis to yield corrected unit vectors uz, un, uw. + // Multiply sidereal hours by -15 to convert to degrees and flip eastward + // rotation of the Earth to westward apparent movement of objects with time. const spin_angle = -15 * sidereal_time(time); let uz = spin(spin_angle, uze); let un = spin(spin_angle, une); let uw = spin(spin_angle, uwe); + // Convert angular equatorial coordinates (RA, DEC) to + // cartesian equatorial coordinates in 'p', using the + // same orientation system as uze, une, uwe. let p = [cosdc * cosra, cosdc * sinra, sindc]; + // Use dot products of p with the zenith, north, and west + // vectors to obtain the cartesian coordinates of the body in + // the observer's horizontal orientation system. + // pz = zenith component [-1, +1] + // pn = north component [-1, +1] + // pw = west component [-1, +1] const pz = p[0] * uz[0] + p[1] * uz[1] + p[2] * uz[2]; const pn = p[0] * un[0] + p[1] * un[1] + p[2] * un[2]; const pw = p[0] * uw[0] + p[1] * uw[1] + p[2] * uw[2]; + // proj is the "shadow" of the body vector along the observer's flat ground. let proj = Math.sqrt(pn * pn + pw * pw); - let az = 0; + // Calculate az = azimuth (compass direction clockwise from East.) + let az; if (proj > 0) { + // If the body is not exactly straight up/down, it has an azimuth. + // Invert the angle to produce degrees eastward from north. az = -Math.atan2(pw, pn) * RAD2DEG; if (az < 0) az += 360; - if (az >= 360) - az -= 360; } + else { + // The body is straight up/down, so it does not have an azimuth. + // Report an arbitrary but reasonable value. + az = 0; + } + // zd = the angle of the body away from the observer's zenith, in degrees. let zd = Math.atan2(proj, pz) * RAD2DEG; let out_ra = ra; let out_dec = dec; @@ -1952,9 +1987,6 @@ export function Horizon(date, observer, ra, dec, refraction) { if (out_ra < 0) { out_ra += 24; } - if (out_ra >= 24) { - out_ra -= 24; - } } else { out_ra = 0; diff --git a/source/python/astronomy.py b/source/python/astronomy.py index b9df9b9b..fc7c6679 100644 --- a/source/python/astronomy.py +++ b/source/python/astronomy.py @@ -1416,6 +1416,7 @@ def _sidereal_time(time): gst = math.fmod((st/3600.0 + theta), 360.0) / 15.0 if gst < 0.0: gst += 24.0 + # return sidereal hours in the half-open range [0, 24). return gst @@ -3885,29 +3886,69 @@ def Horizon(time, observer, ra, dec, refraction): sinra = math.sin(rarad) cosra = math.cos(rarad) + # Calculate three mutually perpendicular unit vectors + # in equatorial coordinates: uze, une, uwe. + # + # uze = The direction of the observer's local zenith (straight up). + # une = The direction toward due north on the observer's horizon. + # uwe = The direction toward due west on the observer's horizon. + # + # HOWEVER, these are uncorrected for the Earth's rotation due to the time of day. + # + # The components of these 3 vectors are as follows: + # [0] = x = direction from center of Earth toward 0 degrees longitude (the prime meridian) on equator. + # [1] = y = direction from center of Earth toward 90 degrees west longitude on equator. + # [2] = z = direction from center of Earth toward the north pole. + uze = [coslat*coslon, coslat*sinlon, sinlat] une = [-sinlat*coslon, -sinlat*sinlon, coslat] uwe = [sinlon, -coslon, 0.0] + # Correct the vectors uze, une, uwe for the Earth's rotation by calculating + # sideral time. Call spin() for each uncorrected vector to rotate about + # the Earth's axis to yield corrected unit vectors uz, un, uw. + # Multiply sidereal hours by -15 to convert to degrees and flip eastward + # rotation of the Earth to westward apparent movement of objects with time. + angle = -15.0 * _sidereal_time(time) uz = _spin(angle, uze) un = _spin(angle, une) uw = _spin(angle, uwe) + # Convert angular equatorial coordinates (RA, DEC) to + # cartesian equatorial coordinates in 'p', using the + # same orientation system as uze, une, uwe. + p = [cosdc*cosra, cosdc*sinra, sindc] + # Use dot products of p with the zenith, north, and west + # vectors to obtain the cartesian coordinates of the body in + # the observer's horizontal orientation system. + # + # pz = zenith component [-1, +1] + # pn = north component [-1, +1] + # pw = west component [-1, +1] + pz = p[0]*uz[0] + p[1]*uz[1] + p[2]*uz[2] pn = p[0]*un[0] + p[1]*un[1] + p[2]*un[2] pw = p[0]*uw[0] + p[1]*uw[1] + p[2]*uw[2] + # proj is the "shadow" of the body vector along the observer's flat ground. proj = math.sqrt(pn*pn + pw*pw) - az = 0.0 + + # Calculate az = azimuth (compass direction clockwise from East.) if proj > 0.0: + # If the body is not exactly straight up/down, it has an azimuth. + # Invert the angle to produce degrees eastward from north. az = math.degrees(-math.atan2(pw, pn)) if az < 0: az += 360 - if az >= 360: - az -= 360 + else: + # The body is straight up/down, so it does not have an azimuth. + # Report an arbitrary but reasonable value. + az = 0.0 + + # zd = the angle of the body away from the observer's zenith. zd = math.degrees(math.atan2(proj, pz)) hor_ra = ra hor_dec = dec @@ -3930,8 +3971,6 @@ def Horizon(time, observer, ra, dec, refraction): hor_ra = math.degrees(math.atan2(pr[1], pr[0])) / 15 if hor_ra < 0: hor_ra += 24 - if hor_ra >= 24: - hor_ra -= 24 else: hor_ra = 0 hor_dec = math.degrees(math.atan2(pr[2], proj)) diff --git a/website/src/assets/documentation.json b/website/src/assets/documentation.json index b4d17f0c..e9b6d170 100644 --- a/website/src/assets/documentation.json +++ b/website/src/assets/documentation.json @@ -16281,7 +16281,7 @@ "meta": { "range": [ 72586, - 73082 + 73139 ], "filename": "astronomy.js", "lineno": 1553, @@ -16464,8 +16464,8 @@ "comment": "", "meta": { "range": [ - 73083, - 73923 + 73140, + 73980 ], "filename": "astronomy.js", "lineno": 1569, @@ -16506,8 +16506,8 @@ "comment": "", "meta": { "range": [ - 73124, - 73150 + 73181, + 73207 ], "filename": "astronomy.js", "lineno": 1570, @@ -16531,8 +16531,8 @@ "comment": "", "meta": { "range": [ - 73189, - 73202 + 73246, + 73259 ], "filename": "astronomy.js", "lineno": 1571, @@ -16556,8 +16556,8 @@ "comment": "", "meta": { "range": [ - 73214, - 73247 + 73271, + 73304 ], "filename": "astronomy.js", "lineno": 1572, @@ -16581,8 +16581,8 @@ "comment": "", "meta": { "range": [ - 73259, - 73281 + 73316, + 73338 ], "filename": "astronomy.js", "lineno": 1573, @@ -16606,8 +16606,8 @@ "comment": "", "meta": { "range": [ - 73293, - 73315 + 73350, + 73372 ], "filename": "astronomy.js", "lineno": 1574, @@ -16631,8 +16631,8 @@ "comment": "", "meta": { "range": [ - 73327, - 73385 + 73384, + 73442 ], "filename": "astronomy.js", "lineno": 1575, @@ -16656,8 +16656,8 @@ "comment": "", "meta": { "range": [ - 73397, - 73408 + 73454, + 73465 ], "filename": "astronomy.js", "lineno": 1576, @@ -16681,8 +16681,8 @@ "comment": "", "meta": { "range": [ - 73420, - 73450 + 73477, + 73507 ], "filename": "astronomy.js", "lineno": 1577, @@ -16706,8 +16706,8 @@ "comment": "", "meta": { "range": [ - 73462, - 73506 + 73519, + 73563 ], "filename": "astronomy.js", "lineno": 1578, @@ -16731,8 +16731,8 @@ "comment": "", "meta": { "range": [ - 73518, - 73562 + 73575, + 73619 ], "filename": "astronomy.js", "lineno": 1579, @@ -16756,8 +16756,8 @@ "comment": "", "meta": { "range": [ - 73574, - 73623 + 73631, + 73680 ], "filename": "astronomy.js", "lineno": 1580, @@ -16781,8 +16781,8 @@ "comment": "", "meta": { "range": [ - 73635, - 73659 + 73692, + 73716 ], "filename": "astronomy.js", "lineno": 1581, @@ -16806,8 +16806,8 @@ "comment": "", "meta": { "range": [ - 73671, - 73695 + 73728, + 73752 ], "filename": "astronomy.js", "lineno": 1582, @@ -16831,8 +16831,8 @@ "comment": "", "meta": { "range": [ - 73718, - 73817 + 73775, + 73874 ], "filename": "astronomy.js", "lineno": 1584, @@ -16854,8 +16854,8 @@ "comment": "", "meta": { "range": [ - 73827, - 73914 + 73884, + 73971 ], "filename": "astronomy.js", "lineno": 1585, @@ -16877,8 +16877,8 @@ "comment": "", "meta": { "range": [ - 73924, - 74259 + 73981, + 74316 ], "filename": "astronomy.js", "lineno": 1588, @@ -16908,8 +16908,8 @@ "comment": "", "meta": { "range": [ - 73976, - 74009 + 74033, + 74066 ], "filename": "astronomy.js", "lineno": 1589, @@ -16933,8 +16933,8 @@ "comment": "", "meta": { "range": [ - 74260, - 75289 + 74317, + 75346 ], "filename": "astronomy.js", "lineno": 1596, @@ -16981,8 +16981,8 @@ "comment": "", "meta": { "range": [ - 74311, - 74330 + 74368, + 74387 ], "filename": "astronomy.js", "lineno": 1597, @@ -17006,8 +17006,8 @@ "comment": "", "meta": { "range": [ - 74342, - 74368 + 74399, + 74425 ], "filename": "astronomy.js", "lineno": 1598, @@ -17031,8 +17031,8 @@ "comment": "", "meta": { "range": [ - 74380, - 74406 + 74437, + 74463 ], "filename": "astronomy.js", "lineno": 1599, @@ -17056,8 +17056,8 @@ "comment": "", "meta": { "range": [ - 74418, - 74444 + 74475, + 74501 ], "filename": "astronomy.js", "lineno": 1600, @@ -17081,8 +17081,8 @@ "comment": "", "meta": { "range": [ - 74456, - 74477 + 74513, + 74534 ], "filename": "astronomy.js", "lineno": 1601, @@ -17106,8 +17106,8 @@ "comment": "", "meta": { "range": [ - 74489, - 74510 + 74546, + 74567 ], "filename": "astronomy.js", "lineno": 1602, @@ -17131,8 +17131,8 @@ "comment": "", "meta": { "range": [ - 74522, - 74543 + 74579, + 74600 ], "filename": "astronomy.js", "lineno": 1603, @@ -17156,8 +17156,8 @@ "comment": "", "meta": { "range": [ - 74555, - 74576 + 74612, + 74633 ], "filename": "astronomy.js", "lineno": 1604, @@ -17181,8 +17181,8 @@ "comment": "", "meta": { "range": [ - 74588, - 74608 + 74645, + 74665 ], "filename": "astronomy.js", "lineno": 1605, @@ -17206,8 +17206,8 @@ "comment": "", "meta": { "range": [ - 74620, - 74640 + 74677, + 74697 ], "filename": "astronomy.js", "lineno": 1606, @@ -17231,8 +17231,8 @@ "comment": "", "meta": { "range": [ - 74652, - 74661 + 74709, + 74718 ], "filename": "astronomy.js", "lineno": 1607, @@ -17256,8 +17256,8 @@ "comment": "", "meta": { "range": [ - 74673, - 74690 + 74730, + 74747 ], "filename": "astronomy.js", "lineno": 1608, @@ -17281,8 +17281,8 @@ "comment": "", "meta": { "range": [ - 74702, - 74719 + 74759, + 74776 ], "filename": "astronomy.js", "lineno": 1609, @@ -17306,8 +17306,8 @@ "comment": "", "meta": { "range": [ - 74731, - 74747 + 74788, + 74804 ], "filename": "astronomy.js", "lineno": 1610, @@ -17331,8 +17331,8 @@ "comment": "", "meta": { "range": [ - 74759, - 74796 + 74816, + 74853 ], "filename": "astronomy.js", "lineno": 1611, @@ -17356,8 +17356,8 @@ "comment": "", "meta": { "range": [ - 74808, - 74845 + 74865, + 74902 ], "filename": "astronomy.js", "lineno": 1612, @@ -17381,8 +17381,8 @@ "comment": "", "meta": { "range": [ - 74857, - 74873 + 74914, + 74930 ], "filename": "astronomy.js", "lineno": 1613, @@ -17406,8 +17406,8 @@ "comment": "", "meta": { "range": [ - 74885, - 74922 + 74942, + 74979 ], "filename": "astronomy.js", "lineno": 1614, @@ -17431,8 +17431,8 @@ "comment": "", "meta": { "range": [ - 74934, - 74971 + 74991, + 75028 ], "filename": "astronomy.js", "lineno": 1615, @@ -17456,8 +17456,8 @@ "comment": "", "meta": { "range": [ - 75290, - 75515 + 75347, + 75572 ], "filename": "astronomy.js", "lineno": 1631, @@ -17489,8 +17489,8 @@ "comment": "", "meta": { "range": [ - 75335, - 75361 + 75392, + 75418 ], "filename": "astronomy.js", "lineno": 1632, @@ -17514,8 +17514,8 @@ "comment": "", "meta": { "range": [ - 75373, - 75405 + 75430, + 75462 ], "filename": "astronomy.js", "lineno": 1633, @@ -17539,8 +17539,8 @@ "comment": "", "meta": { "range": [ - 75417, - 75448 + 75474, + 75505 ], "filename": "astronomy.js", "lineno": 1634, @@ -17564,8 +17564,8 @@ "comment": "", "meta": { "range": [ - 75460, - 75495 + 75517, + 75552 ], "filename": "astronomy.js", "lineno": 1635, @@ -17589,8 +17589,8 @@ "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": [ - 76031, - 76372 + 76088, + 76429 ], "filename": "astronomy.js", "lineno": 1649, @@ -17663,8 +17663,8 @@ "comment": "", "meta": { "range": [ - 76050, - 76161 + 76107, + 76218 ], "filename": "astronomy.js", "lineno": 1650, @@ -17695,8 +17695,8 @@ "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": [ - 76031, - 76372 + 76088, + 76429 ], "filename": "astronomy.js", "lineno": 1649, @@ -17768,8 +17768,8 @@ "comment": "", "meta": { "range": [ - 76084, - 76094 + 76141, + 76151 ], "filename": "astronomy.js", "lineno": 1651, @@ -17793,8 +17793,8 @@ "comment": "", "meta": { "range": [ - 76104, - 76114 + 76161, + 76171 ], "filename": "astronomy.js", "lineno": 1652, @@ -17818,8 +17818,8 @@ "comment": "", "meta": { "range": [ - 76124, - 76134 + 76181, + 76191 ], "filename": "astronomy.js", "lineno": 1653, @@ -17843,8 +17843,8 @@ "comment": "", "meta": { "range": [ - 76144, - 76154 + 76201, + 76211 ], "filename": "astronomy.js", "lineno": 1654, @@ -17868,8 +17868,8 @@ "comment": "/**\n * Returns the length of the vector in astronomical units (AU).\n * @returns {number}\n */", "meta": { "range": [ - 76275, - 76370 + 76332, + 76427 ], "filename": "astronomy.js", "lineno": 1660, @@ -17905,8 +17905,8 @@ "comment": "", "meta": { "range": [ - 76373, - 76396 + 76430, + 76453 ], "filename": "astronomy.js", "lineno": 1664, @@ -17929,8 +17929,8 @@ "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": [ - 76764, - 76939 + 76821, + 76996 ], "filename": "astronomy.js", "lineno": 1675, @@ -17993,8 +17993,8 @@ "comment": "", "meta": { "range": [ - 76786, - 76937 + 76843, + 76994 ], "filename": "astronomy.js", "lineno": 1676, @@ -18024,8 +18024,8 @@ "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": [ - 76764, - 76939 + 76821, + 76996 ], "filename": "astronomy.js", "lineno": 1675, @@ -18087,8 +18087,8 @@ "comment": "", "meta": { "range": [ - 76824, - 76852 + 76881, + 76909 ], "filename": "astronomy.js", "lineno": 1677, @@ -18112,8 +18112,8 @@ "comment": "", "meta": { "range": [ - 76862, - 76890 + 76919, + 76947 ], "filename": "astronomy.js", "lineno": 1678, @@ -18137,8 +18137,8 @@ "comment": "", "meta": { "range": [ - 76900, - 76930 + 76957, + 76987 ], "filename": "astronomy.js", "lineno": 1679, @@ -18162,8 +18162,8 @@ "comment": "", "meta": { "range": [ - 76940, - 76969 + 76997, + 77026 ], "filename": "astronomy.js", "lineno": 1682, @@ -18186,8 +18186,8 @@ "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 */", "meta": { "range": [ - 77393, - 77577 + 77450, + 77634 ], "filename": "astronomy.js", "lineno": 1696, @@ -18250,8 +18250,8 @@ "comment": "", "meta": { "range": [ - 77427, - 77575 + 77484, + 77632 ], "filename": "astronomy.js", "lineno": 1697, @@ -18281,8 +18281,8 @@ "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 */", "meta": { "range": [ - 77393, - 77577 + 77450, + 77634 ], "filename": "astronomy.js", "lineno": 1696, @@ -18344,8 +18344,8 @@ "comment": "", "meta": { "range": [ - 77464, - 77490 + 77521, + 77547 ], "filename": "astronomy.js", "lineno": 1698, @@ -18369,8 +18369,8 @@ "comment": "", "meta": { "range": [ - 77500, - 77528 + 77557, + 77585 ], "filename": "astronomy.js", "lineno": 1699, @@ -18394,8 +18394,8 @@ "comment": "", "meta": { "range": [ - 77538, - 77568 + 77595, + 77625 ], "filename": "astronomy.js", "lineno": 1700, @@ -18419,8 +18419,8 @@ "comment": "", "meta": { "range": [ - 77578, - 77631 + 77635, + 77688 ], "filename": "astronomy.js", "lineno": 1703, @@ -18443,8 +18443,8 @@ "comment": "", "meta": { "range": [ - 77633, - 78007 + 77690, + 78064 ], "filename": "astronomy.js", "lineno": 1704, @@ -18473,8 +18473,8 @@ "comment": "", "meta": { "range": [ - 77760, - 77765 + 77817, + 77822 ], "filename": "astronomy.js", "lineno": 1707, @@ -18498,8 +18498,8 @@ "comment": "", "meta": { "range": [ - 77889, - 77894 + 77946, + 77951 ], "filename": "astronomy.js", "lineno": 1710, @@ -18523,8 +18523,8 @@ "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": [ - 78288, - 78365 + 78345, + 78422 ], "filename": "astronomy.js", "lineno": 1723, @@ -18567,8 +18567,8 @@ "comment": "", "meta": { "range": [ - 78315, - 78363 + 78372, + 78420 ], "filename": "astronomy.js", "lineno": 1724, @@ -18596,8 +18596,8 @@ "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": [ - 78288, - 78365 + 78345, + 78422 ], "filename": "astronomy.js", "lineno": 1723, @@ -18639,8 +18639,8 @@ "comment": "", "meta": { "range": [ - 78342, - 78356 + 78399, + 78413 ], "filename": "astronomy.js", "lineno": 1725, @@ -18664,8 +18664,8 @@ "comment": "", "meta": { "range": [ - 78366, - 78405 + 78423, + 78462 ], "filename": "astronomy.js", "lineno": 1728, @@ -18688,8 +18688,8 @@ "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": [ - 78961, - 79123 + 79018, + 79180 ], "filename": "astronomy.js", "lineno": 1742, @@ -18740,8 +18740,8 @@ "comment": "", "meta": { "range": [ - 79124, - 79159 + 79181, + 79216 ], "filename": "astronomy.js", "lineno": 1747, @@ -18764,8 +18764,8 @@ "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": [ - 80719, - 80970 + 80776, + 81027 ], "filename": "astronomy.js", "lineno": 1781, @@ -18838,8 +18838,8 @@ "comment": "", "meta": { "range": [ - 80753, - 80968 + 80810, + 81025 ], "filename": "astronomy.js", "lineno": 1782, @@ -18870,8 +18870,8 @@ "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": [ - 80719, - 80970 + 80776, + 81027 ], "filename": "astronomy.js", "lineno": 1781, @@ -18943,8 +18943,8 @@ "comment": "", "meta": { "range": [ - 80803, - 80839 + 80860, + 80896 ], "filename": "astronomy.js", "lineno": 1783, @@ -18968,8 +18968,8 @@ "comment": "", "meta": { "range": [ - 80849, - 80887 + 80906, + 80944 ], "filename": "astronomy.js", "lineno": 1784, @@ -18993,8 +18993,8 @@ "comment": "", "meta": { "range": [ - 80897, - 80923 + 80954, + 80980 ], "filename": "astronomy.js", "lineno": 1785, @@ -19018,8 +19018,8 @@ "comment": "", "meta": { "range": [ - 80933, - 80961 + 80990, + 81018 ], "filename": "astronomy.js", "lineno": 1786, @@ -19043,8 +19043,8 @@ "comment": "", "meta": { "range": [ - 80971, - 81024 + 81028, + 81081 ], "filename": "astronomy.js", "lineno": 1789, @@ -19067,8 +19067,8 @@ "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 {number} ex\n * The Cartesian x-coordinate of the body in astronomical units (AU).\n * The x-axis is within the ecliptic plane and is oriented in the direction of the\n * equinox.\n *\n * @property {number} ey\n * The Cartesian y-coordinate of the body in astronomical units (AU).\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 *\n * @property {number} ez\n * The Cartesian z-coordinate of the body in astronomical units (AU).\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": [ - 82931, - 83196 + 82988, + 83253 ], "filename": "astronomy.js", "lineno": 1829, @@ -19151,8 +19151,8 @@ "comment": "", "meta": { "range": [ - 82963, - 83194 + 83020, + 83251 ], "filename": "astronomy.js", "lineno": 1830, @@ -19184,8 +19184,8 @@ "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 {number} ex\n * The Cartesian x-coordinate of the body in astronomical units (AU).\n * The x-axis is within the ecliptic plane and is oriented in the direction of the\n * equinox.\n *\n * @property {number} ey\n * The Cartesian y-coordinate of the body in astronomical units (AU).\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 *\n * @property {number} ez\n * The Cartesian z-coordinate of the body in astronomical units (AU).\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": [ - 82931, - 83196 + 82988, + 83253 ], "filename": "astronomy.js", "lineno": 1829, @@ -19267,8 +19267,8 @@ "comment": "", "meta": { "range": [ - 83009, - 83035 + 83066, + 83092 ], "filename": "astronomy.js", "lineno": 1831, @@ -19292,8 +19292,8 @@ "comment": "", "meta": { "range": [ - 83045, - 83071 + 83102, + 83128 ], "filename": "astronomy.js", "lineno": 1832, @@ -19317,8 +19317,8 @@ "comment": "", "meta": { "range": [ - 83081, - 83107 + 83138, + 83164 ], "filename": "astronomy.js", "lineno": 1833, @@ -19342,8 +19342,8 @@ "comment": "", "meta": { "range": [ - 83117, - 83147 + 83174, + 83204 ], "filename": "astronomy.js", "lineno": 1834, @@ -19367,8 +19367,8 @@ "comment": "", "meta": { "range": [ - 83157, - 83187 + 83214, + 83244 ], "filename": "astronomy.js", "lineno": 1835, @@ -19392,8 +19392,8 @@ "comment": "", "meta": { "range": [ - 83197, - 83246 + 83254, + 83303 ], "filename": "astronomy.js", "lineno": 1838, @@ -19416,8 +19416,8 @@ "comment": "", "meta": { "range": [ - 83248, - 83833 + 83305, + 83890 ], "filename": "astronomy.js", "lineno": 1839, @@ -19448,8 +19448,8 @@ "comment": "", "meta": { "range": [ - 83287, - 83329 + 83344, + 83386 ], "filename": "astronomy.js", "lineno": 1840, @@ -19473,8 +19473,8 @@ "comment": "", "meta": { "range": [ - 83341, - 83383 + 83398, + 83440 ], "filename": "astronomy.js", "lineno": 1841, @@ -19498,8 +19498,8 @@ "comment": "", "meta": { "range": [ - 83531, - 83536 + 83588, + 83593 ], "filename": "astronomy.js", "lineno": 1846, @@ -19521,8 +19521,8 @@ "comment": "", "meta": { "range": [ - 83538, - 83546 + 83595, + 83603 ], "filename": "astronomy.js", "lineno": 1846, @@ -19544,8 +19544,8 @@ "comment": "", "meta": { "range": [ - 83548, - 83558 + 83605, + 83615 ], "filename": "astronomy.js", "lineno": 1846, @@ -19567,8 +19567,8 @@ "comment": "", "meta": { "range": [ - 83579, - 83584 + 83636, + 83641 ], "filename": "astronomy.js", "lineno": 1847, @@ -19590,8 +19590,8 @@ "comment": "", "meta": { "range": [ - 83586, - 83594 + 83643, + 83651 ], "filename": "astronomy.js", "lineno": 1847, @@ -19613,8 +19613,8 @@ "comment": "", "meta": { "range": [ - 83596, - 83606 + 83653, + 83663 ], "filename": "astronomy.js", "lineno": 1847, @@ -19636,8 +19636,8 @@ "comment": "", "meta": { "range": [ - 83624, - 83672 + 83681, + 83729 ], "filename": "astronomy.js", "lineno": 1849, @@ -19661,8 +19661,8 @@ "comment": "", "meta": { "range": [ - 83700, - 83708 + 83757, + 83765 ], "filename": "astronomy.js", "lineno": 1851, @@ -19687,8 +19687,8 @@ "comment": "", "meta": { "range": [ - 83724, - 83777 + 83781, + 83834 ], "filename": "astronomy.js", "lineno": 1853, @@ -19712,8 +19712,8 @@ "comment": "", "meta": { "range": [ - 83834, - 84326 + 83891, + 84383 ], "filename": "astronomy.js", "lineno": 1856, @@ -19753,8 +19753,8 @@ "comment": "", "meta": { "range": [ - 83873, - 83895 + 83930, + 83952 ], "filename": "astronomy.js", "lineno": 1857, @@ -19778,8 +19778,8 @@ "comment": "", "meta": { "range": [ - 83907, - 83930 + 83964, + 83987 ], "filename": "astronomy.js", "lineno": 1858, @@ -19803,8 +19803,8 @@ "comment": "", "meta": { "range": [ - 83942, - 83965 + 83999, + 84022 ], "filename": "astronomy.js", "lineno": 1859, @@ -19828,8 +19828,8 @@ "comment": "", "meta": { "range": [ - 83977, - 83988 + 84034, + 84045 ], "filename": "astronomy.js", "lineno": 1860, @@ -19853,8 +19853,8 @@ "comment": "", "meta": { "range": [ - 84000, - 84011 + 84057, + 84068 ], "filename": "astronomy.js", "lineno": 1861, @@ -19878,8 +19878,8 @@ "comment": "", "meta": { "range": [ - 84023, - 84029 + 84080, + 84086 ], "filename": "astronomy.js", "lineno": 1862, @@ -19903,8 +19903,8 @@ "comment": "", "meta": { "range": [ - 84041, - 84053 + 84098, + 84110 ], "filename": "astronomy.js", "lineno": 1863, @@ -19928,8 +19928,8 @@ "comment": "", "meta": { "range": [ - 84065, - 84076 + 84122, + 84133 ], "filename": "astronomy.js", "lineno": 1864, @@ -19953,8 +19953,8 @@ "comment": "", "meta": { "range": [ - 84088, - 84094 + 84145, + 84151 ], "filename": "astronomy.js", "lineno": 1865, @@ -19978,8 +19978,8 @@ "comment": "", "meta": { "range": [ - 84106, - 84112 + 84163, + 84169 ], "filename": "astronomy.js", "lineno": 1866, @@ -20003,8 +20003,8 @@ "comment": "", "meta": { "range": [ - 84124, - 84130 + 84181, + 84187 ], "filename": "astronomy.js", "lineno": 1867, @@ -20028,8 +20028,8 @@ "comment": "", "meta": { "range": [ - 84142, - 84148 + 84199, + 84205 ], "filename": "astronomy.js", "lineno": 1868, @@ -20053,8 +20053,8 @@ "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": [ - 86388, - 88918 + 86445, + 90957 ], "filename": "astronomy.js", "lineno": 1915, @@ -20180,8 +20180,8 @@ "comment": "", "meta": { "range": [ - 86484, - 86505 + 86541, + 86562 ], "filename": "astronomy.js", "lineno": 1917, @@ -20205,8 +20205,8 @@ "comment": "", "meta": { "range": [ - 86592, - 86638 + 86649, + 86695 ], "filename": "astronomy.js", "lineno": 1921, @@ -20230,8 +20230,8 @@ "comment": "", "meta": { "range": [ - 86650, - 86696 + 86707, + 86753 ], "filename": "astronomy.js", "lineno": 1922, @@ -20255,8 +20255,8 @@ "comment": "", "meta": { "range": [ - 86708, - 86755 + 86765, + 86812 ], "filename": "astronomy.js", "lineno": 1923, @@ -20280,8 +20280,8 @@ "comment": "", "meta": { "range": [ - 86767, - 86814 + 86824, + 86871 ], "filename": "astronomy.js", "lineno": 1924, @@ -20305,8 +20305,8 @@ "comment": "", "meta": { "range": [ - 86826, - 86857 + 86883, + 86914 ], "filename": "astronomy.js", "lineno": 1925, @@ -20330,8 +20330,8 @@ "comment": "", "meta": { "range": [ - 86869, - 86900 + 86926, + 86957 ], "filename": "astronomy.js", "lineno": 1926, @@ -20355,8 +20355,8 @@ "comment": "", "meta": { "range": [ - 86912, - 86947 + 86969, + 87004 ], "filename": "astronomy.js", "lineno": 1927, @@ -20380,8 +20380,8 @@ "comment": "", "meta": { "range": [ - 86959, - 86994 + 87016, + 87051 ], "filename": "astronomy.js", "lineno": 1928, @@ -20405,11 +20405,11 @@ "comment": "", "meta": { "range": [ - 87004, - 87052 + 87802, + 87850 ], "filename": "astronomy.js", - "lineno": 1929, + "lineno": 1942, "columnno": 8, "code": { "id": "astnode100010315", @@ -20430,11 +20430,11 @@ "comment": "", "meta": { "range": [ - 87062, - 87112 + 87860, + 87910 ], "filename": "astronomy.js", - "lineno": 1930, + "lineno": 1943, "columnno": 8, "code": { "id": "astnode100010326", @@ -20455,11 +20455,11 @@ "comment": "", "meta": { "range": [ - 87122, - 87148 + 87920, + 87946 ], "filename": "astronomy.js", - "lineno": 1931, + "lineno": 1944, "columnno": 8, "code": { "id": "astnode100010339", @@ -20480,11 +20480,11 @@ "comment": "", "meta": { "range": [ - 87160, - 87198 + 88343, + 88381 ], "filename": "astronomy.js", - "lineno": 1932, + "lineno": 1950, "columnno": 10, "code": { "id": "astnode100010347", @@ -20505,11 +20505,11 @@ "comment": "", "meta": { "range": [ - 87208, - 87234 + 88391, + 88417 ], "filename": "astronomy.js", - "lineno": 1933, + "lineno": 1951, "columnno": 8, "code": { "id": "astnode100010356", @@ -20530,11 +20530,11 @@ "comment": "", "meta": { "range": [ - 87244, - 87270 + 88427, + 88453 ], "filename": "astronomy.js", - "lineno": 1934, + "lineno": 1952, "columnno": 8, "code": { "id": "astnode100010363", @@ -20555,11 +20555,11 @@ "comment": "", "meta": { "range": [ - 87280, - 87306 + 88463, + 88489 ], "filename": "astronomy.js", - "lineno": 1935, + "lineno": 1953, "columnno": 8, "code": { "id": "astnode100010370", @@ -20580,11 +20580,11 @@ "comment": "", "meta": { "range": [ - 87316, - 87357 + 88665, + 88706 ], "filename": "astronomy.js", - "lineno": 1936, + "lineno": 1957, "columnno": 8, "code": { "id": "astnode100010377", @@ -20605,11 +20605,11 @@ "comment": "", "meta": { "range": [ - 87369, - 87416 + 89013, + 89060 ], "filename": "astronomy.js", - "lineno": 1937, + "lineno": 1964, "columnno": 10, "code": { "id": "astnode100010388", @@ -20630,11 +20630,11 @@ "comment": "", "meta": { "range": [ - 87428, - 87475 + 89072, + 89119 ], "filename": "astronomy.js", - "lineno": 1938, + "lineno": 1965, "columnno": 10, "code": { "id": "astnode100010414", @@ -20655,11 +20655,11 @@ "comment": "", "meta": { "range": [ - 87487, - 87534 + 89131, + 89178 ], "filename": "astronomy.js", - "lineno": 1939, + "lineno": 1966, "columnno": 10, "code": { "id": "astnode100010440", @@ -20680,11 +20680,11 @@ "comment": "", "meta": { "range": [ - 87544, - 87579 + 89269, + 89304 ], "filename": "astronomy.js", - "lineno": 1940, + "lineno": 1968, "columnno": 8, "code": { "id": "astnode100010466", @@ -20705,17 +20705,15 @@ "comment": "", "meta": { "range": [ - 87589, - 87595 + 89385, + 89387 ], "filename": "astronomy.js", - "lineno": 1941, + "lineno": 1970, "columnno": 8, "code": { "id": "astnode100010480", - "name": "az", - "type": "Literal", - "value": 0 + "name": "az" } }, "undocumented": true, @@ -20730,14 +20728,14 @@ "comment": "", "meta": { "range": [ - 87625, - 87659 + 89560, + 89594 ], "filename": "astronomy.js", - "lineno": 1943, + "lineno": 1974, "columnno": 8, "code": { - "id": "astnode100010489", + "id": "astnode100010488", "name": "az", "type": "BinaryExpression", "funcscope": "Horizon", @@ -20756,14 +20754,14 @@ "comment": "", "meta": { "range": [ - 87693, - 87702 + 89628, + 89637 ], "filename": "astronomy.js", - "lineno": 1945, + "lineno": 1976, "columnno": 12, "code": { - "id": "astnode100010505", + "id": "astnode100010504", "name": "az", "type": "Literal", "funcscope": "Horizon", @@ -20782,40 +20780,40 @@ "comment": "", "meta": { "range": [ - 87739, - 87748 + 89790, + 89796 ], "filename": "astronomy.js", - "lineno": 1947, - "columnno": 12, - "code": { - "id": "astnode100010513", - "name": "az", - "type": "Literal", - "funcscope": "Horizon", - "value": 360, - "paramnames": [] - } - }, - "undocumented": true, - "name": "az", - "longname": "Horizon~az", - "kind": "member", - "memberof": "Horizon", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 87764, - 87799 - ], - "filename": "astronomy.js", - "lineno": 1949, + "lineno": 1981, "columnno": 8, "code": { - "id": "astnode100010517", + "id": "astnode100010509", + "name": "az", + "type": "Literal", + "funcscope": "Horizon", + "value": 0, + "paramnames": [] + } + }, + "undocumented": true, + "name": "az", + "longname": "Horizon~az", + "kind": "member", + "memberof": "Horizon", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 89891, + 89926 + ], + "filename": "astronomy.js", + "lineno": 1984, + "columnno": 8, + "code": { + "id": "astnode100010513", "name": "zd", "type": "BinaryExpression", "value": "" @@ -20833,14 +20831,14 @@ "comment": "", "meta": { "range": [ - 87809, - 87820 + 89936, + 89947 ], "filename": "astronomy.js", - "lineno": 1950, + "lineno": 1985, "columnno": 8, "code": { - "id": "astnode100010528", + "id": "astnode100010524", "name": "out_ra", "type": "Identifier", "value": "ra" @@ -20858,14 +20856,14 @@ "comment": "", "meta": { "range": [ - 87830, - 87843 + 89957, + 89970 ], "filename": "astronomy.js", - "lineno": 1951, + "lineno": 1986, "columnno": 8, "code": { - "id": "astnode100010532", + "id": "astnode100010528", "name": "out_dec", "type": "Identifier", "value": "dec" @@ -20883,14 +20881,14 @@ "comment": "", "meta": { "range": [ - 87879, - 87887 + 90006, + 90014 ], "filename": "astronomy.js", - "lineno": 1953, + "lineno": 1988, "columnno": 12, "code": { - "id": "astnode100010539", + "id": "astnode100010535", "name": "zd0", "type": "Identifier", "value": "zd" @@ -20908,14 +20906,14 @@ "comment": "", "meta": { "range": [ - 87901, - 87939 + 90028, + 90066 ], "filename": "astronomy.js", - "lineno": 1954, + "lineno": 1989, "columnno": 12, "code": { - "id": "astnode100010543", + "id": "astnode100010539", "name": "refr", "type": "CallExpression", "value": "" @@ -20933,14 +20931,14 @@ "comment": "", "meta": { "range": [ - 87949, - 87959 + 90076, + 90086 ], "filename": "astronomy.js", - "lineno": 1955, + "lineno": 1990, "columnno": 8, "code": { - "id": "astnode100010552", + "id": "astnode100010548", "name": "zd", "type": "Identifier", "funcscope": "Horizon", @@ -20959,14 +20957,14 @@ "comment": "", "meta": { "range": [ - 88020, - 88050 + 90147, + 90177 ], "filename": "astronomy.js", - "lineno": 1957, + "lineno": 1992, "columnno": 18, "code": { - "id": "astnode100010565", + "id": "astnode100010561", "name": "sinzd", "type": "CallExpression", "value": "" @@ -20984,14 +20982,14 @@ "comment": "", "meta": { "range": [ - 88070, - 88100 + 90197, + 90227 ], "filename": "astronomy.js", - "lineno": 1958, + "lineno": 1993, "columnno": 18, "code": { - "id": "astnode100010575", + "id": "astnode100010571", "name": "coszd", "type": "CallExpression", "value": "" @@ -21009,14 +21007,14 @@ "comment": "", "meta": { "range": [ - 88120, - 88152 + 90247, + 90279 ], "filename": "astronomy.js", - "lineno": 1959, + "lineno": 1994, "columnno": 18, "code": { - "id": "astnode100010585", + "id": "astnode100010581", "name": "sinzd0", "type": "CallExpression", "value": "" @@ -21034,14 +21032,14 @@ "comment": "", "meta": { "range": [ - 88172, - 88204 + 90299, + 90331 ], "filename": "astronomy.js", - "lineno": 1960, + "lineno": 1995, "columnno": 18, "code": { - "id": "astnode100010595", + "id": "astnode100010591", "name": "coszd0", "type": "CallExpression", "value": "" @@ -21059,14 +21057,14 @@ "comment": "", "meta": { "range": [ - 88222, - 88229 + 90349, + 90356 ], "filename": "astronomy.js", - "lineno": 1961, + "lineno": 1996, "columnno": 16, "code": { - "id": "astnode100010605", + "id": "astnode100010601", "name": "pr", "type": "ArrayExpression", "value": "[]" @@ -21084,14 +21082,14 @@ "comment": "", "meta": { "range": [ - 88252, - 88257 + 90379, + 90384 ], "filename": "astronomy.js", - "lineno": 1962, + "lineno": 1997, "columnno": 21, "code": { - "id": "astnode100010610", + "id": "astnode100010606", "name": "j", "type": "Literal", "value": 0 @@ -21109,14 +21107,14 @@ "comment": "", "meta": { "range": [ - 88384, - 88431 + 90511, + 90558 ], "filename": "astronomy.js", - "lineno": 1965, + "lineno": 2000, "columnno": 12, "code": { - "id": "astnode100010644", + "id": "astnode100010640", "name": "proj", "type": "CallExpression", "funcscope": "Horizon", @@ -21135,14 +21133,14 @@ "comment": "", "meta": { "range": [ - 88477, - 88525 + 90604, + 90652 ], "filename": "astronomy.js", - "lineno": 1967, + "lineno": 2002, "columnno": 16, "code": { - "id": "astnode100010671", + "id": "astnode100010667", "name": "out_ra", "type": "BinaryExpression", "funcscope": "Horizon", @@ -21161,14 +21159,14 @@ "comment": "", "meta": { "range": [ - 88581, - 88593 + 90708, + 90720 ], "filename": "astronomy.js", - "lineno": 1969, + "lineno": 2004, "columnno": 20, "code": { - "id": "astnode100010693", + "id": "astnode100010689", "name": "out_ra", "type": "Literal", "funcscope": "Horizon", @@ -21187,40 +21185,14 @@ "comment": "", "meta": { "range": [ - 88669, - 88681 + 90789, + 90799 ], "filename": "astronomy.js", - "lineno": 1972, - "columnno": 20, - "code": { - "id": "astnode100010702", - "name": "out_ra", - "type": "Literal", - "funcscope": "Horizon", - "value": 24, - "paramnames": [] - } - }, - "undocumented": true, - "name": "out_ra", - "longname": "Horizon~out_ra", - "kind": "member", - "memberof": "Horizon", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 88750, - 88760 - ], - "filename": "astronomy.js", - "lineno": 1976, + "lineno": 2008, "columnno": 16, "code": { - "id": "astnode100010707", + "id": "astnode100010694", "name": "out_ra", "type": "Literal", "funcscope": "Horizon", @@ -21239,14 +21211,14 @@ "comment": "", "meta": { "range": [ - 88788, - 88831 + 90827, + 90870 ], "filename": "astronomy.js", - "lineno": 1978, + "lineno": 2010, "columnno": 12, "code": { - "id": "astnode100010711", + "id": "astnode100010698", "name": "out_dec", "type": "BinaryExpression", "funcscope": "Horizon", @@ -21265,14 +21237,14 @@ "comment": "", "meta": { "range": [ - 88919, - 88944 + 90958, + 90983 ], "filename": "astronomy.js", - "lineno": 1983, + "lineno": 2015, "columnno": 0, "code": { - "id": "astnode100010733", + "id": "astnode100010720", "name": "exports.Horizon", "type": "Identifier", "value": "Horizon", @@ -21289,14 +21261,14 @@ "comment": "", "meta": { "range": [ - 88946, - 89381 + 90985, + 91420 ], "filename": "astronomy.js", - "lineno": 1984, + "lineno": 2016, "columnno": 0, "code": { - "id": "astnode100010738", + "id": "astnode100010725", "name": "VerifyObserver", "type": "FunctionDeclaration", "paramnames": [ @@ -21315,14 +21287,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": [ - 90139, - 90340 + 92178, + 92379 ], "filename": "astronomy.js", - "lineno": 2013, + "lineno": 2045, "columnno": 0, "code": { - "id": "astnode100010795", + "id": "astnode100010782", "name": "Observer", "type": "ClassDeclaration", "paramnames": [ @@ -21379,14 +21351,14 @@ "comment": "", "meta": { "range": [ - 90160, - 90338 + 92199, + 92377 ], "filename": "astronomy.js", - "lineno": 2014, + "lineno": 2046, "columnno": 4, "code": { - "id": "astnode100010798", + "id": "astnode100010785", "name": "Observer", "type": "MethodDefinition", "paramnames": [ @@ -21410,14 +21382,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": [ - 90139, - 90340 + 92178, + 92379 ], "filename": "astronomy.js", - "lineno": 2013, + "lineno": 2045, "columnno": 0, "code": { - "id": "astnode100010795", + "id": "astnode100010782", "name": "Observer", "type": "ClassDeclaration", "paramnames": [ @@ -21473,14 +21445,14 @@ "comment": "", "meta": { "range": [ - 90211, - 90235 + 92250, + 92274 ], "filename": "astronomy.js", - "lineno": 2015, + "lineno": 2047, "columnno": 8, "code": { - "id": "astnode100010806", + "id": "astnode100010793", "name": "this.latitude", "type": "Identifier", "value": "latitude", @@ -21498,14 +21470,14 @@ "comment": "", "meta": { "range": [ - 90245, - 90271 + 92284, + 92310 ], "filename": "astronomy.js", - "lineno": 2016, + "lineno": 2048, "columnno": 8, "code": { - "id": "astnode100010812", + "id": "astnode100010799", "name": "this.longitude", "type": "Identifier", "value": "longitude", @@ -21523,14 +21495,14 @@ "comment": "", "meta": { "range": [ - 90281, - 90301 + 92320, + 92340 ], "filename": "astronomy.js", - "lineno": 2017, + "lineno": 2049, "columnno": 8, "code": { - "id": "astnode100010818", + "id": "astnode100010805", "name": "this.height", "type": "Identifier", "value": "height", @@ -21548,14 +21520,14 @@ "comment": "", "meta": { "range": [ - 90341, - 90368 + 92380, + 92407 ], "filename": "astronomy.js", - "lineno": 2021, + "lineno": 2053, "columnno": 0, "code": { - "id": "astnode100010828", + "id": "astnode100010815", "name": "exports.Observer", "type": "Identifier", "value": "Observer", @@ -21572,14 +21544,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": [ - 91185, - 92164 + 93224, + 94203 ], "filename": "astronomy.js", - "lineno": 2041, + "lineno": 2073, "columnno": 0, "code": { - "id": "astnode100010833", + "id": "astnode100010820", "name": "SunPosition", "type": "FunctionDeclaration", "paramnames": [ @@ -21635,14 +21607,14 @@ "comment": "", "meta": { "range": [ - 91431, - 91474 + 93470, + 93513 ], "filename": "astronomy.js", - "lineno": 2045, + "lineno": 2077, "columnno": 10, "code": { - "id": "astnode100010838", + "id": "astnode100010825", "name": "time", "type": "CallExpression", "value": "" @@ -21660,14 +21632,14 @@ "comment": "", "meta": { "range": [ - 91551, - 91589 + 93590, + 93628 ], "filename": "astronomy.js", - "lineno": 2047, + "lineno": 2079, "columnno": 10, "code": { - "id": "astnode100010851", + "id": "astnode100010838", "name": "earth2000", "type": "CallExpression", "value": "" @@ -21685,14 +21657,14 @@ "comment": "", "meta": { "range": [ - 91651, - 91703 + 93690, + 93742 ], "filename": "astronomy.js", - "lineno": 2049, + "lineno": 2081, "columnno": 10, "code": { - "id": "astnode100010860", + "id": "astnode100010847", "name": "sun2000", "type": "ArrayExpression", "value": "[\"-earth2000.x\",\"-earth2000.y\",\"-earth2000.z\"]" @@ -21710,14 +21682,14 @@ "comment": "", "meta": { "range": [ - 91783, - 91822 + 93822, + 93861 ], "filename": "astronomy.js", - "lineno": 2051, + "lineno": 2083, "columnno": 10, "code": { - "id": "astnode100010876", + "id": "astnode100010863", "name": "stemp", "type": "CallExpression", "value": "" @@ -21735,14 +21707,14 @@ "comment": "", "meta": { "range": [ - 91933, - 91973 + 93972, + 94012 ], "filename": "astronomy.js", - "lineno": 2054, + "lineno": 2086, "columnno": 10, "code": { - "id": "astnode100010894", + "id": "astnode100010881", "name": "true_obliq", "type": "BinaryExpression", "value": "" @@ -21760,14 +21732,14 @@ "comment": "", "meta": { "range": [ - 91985, - 92014 + 94024, + 94053 ], "filename": "astronomy.js", - "lineno": 2055, + "lineno": 2087, "columnno": 10, "code": { - "id": "astnode100010904", + "id": "astnode100010891", "name": "cos_ob", "type": "CallExpression", "value": "" @@ -21785,14 +21757,14 @@ "comment": "", "meta": { "range": [ - 92026, - 92055 + 94065, + 94094 ], "filename": "astronomy.js", - "lineno": 2056, + "lineno": 2088, "columnno": 10, "code": { - "id": "astnode100010912", + "id": "astnode100010899", "name": "sin_ob", "type": "CallExpression", "value": "" @@ -21810,14 +21782,14 @@ "comment": "", "meta": { "range": [ - 92067, - 92136 + 94106, + 94175 ], "filename": "astronomy.js", - "lineno": 2057, + "lineno": 2089, "columnno": 10, "code": { - "id": "astnode100010920", + "id": "astnode100010907", "name": "sun_ecliptic", "type": "CallExpression", "value": "" @@ -21835,14 +21807,14 @@ "comment": "", "meta": { "range": [ - 92165, - 92198 + 94204, + 94237 ], "filename": "astronomy.js", - "lineno": 2060, + "lineno": 2092, "columnno": 0, "code": { - "id": "astnode100010932", + "id": "astnode100010919", "name": "exports.SunPosition", "type": "Identifier", "value": "SunPosition", @@ -21859,14 +21831,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 {string} body\n * The name of 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": [ - 94069, - 94652 + 96108, + 96691 ], "filename": "astronomy.js", - "lineno": 2101, + "lineno": 2133, "columnno": 0, "code": { - "id": "astnode100010937", + "id": "astnode100010924", "name": "Equator", "type": "FunctionDeclaration", "paramnames": [ @@ -21960,14 +21932,14 @@ "comment": "", "meta": { "range": [ - 94228, - 94249 + 96267, + 96288 ], "filename": "astronomy.js", - "lineno": 2105, + "lineno": 2137, "columnno": 10, "code": { - "id": "astnode100010958", + "id": "astnode100010945", "name": "time", "type": "CallExpression", "value": "" @@ -21985,14 +21957,14 @@ "comment": "", "meta": { "range": [ - 94261, - 94298 + 96300, + 96337 ], "filename": "astronomy.js", - "lineno": 2106, + "lineno": 2138, "columnno": 10, "code": { - "id": "astnode100010964", + "id": "astnode100010951", "name": "gc_observer", "type": "CallExpression", "value": "" @@ -22010,14 +21982,14 @@ "comment": "", "meta": { "range": [ - 94310, - 94348 + 96349, + 96387 ], "filename": "astronomy.js", - "lineno": 2107, + "lineno": 2139, "columnno": 10, "code": { - "id": "astnode100010971", + "id": "astnode100010958", "name": "gc", "type": "CallExpression", "value": "" @@ -22035,14 +22007,14 @@ "comment": "", "meta": { "range": [ - 94360, - 94467 + 96399, + 96506 ], "filename": "astronomy.js", - "lineno": 2108, + "lineno": 2140, "columnno": 10, "code": { - "id": "astnode100010979", + "id": "astnode100010966", "name": "j2000", "type": "ArrayExpression", "value": "[\"\",\"\",\"\"]" @@ -22060,14 +22032,14 @@ "comment": "", "meta": { "range": [ - 94532, - 94568 + 96571, + 96607 ], "filename": "astronomy.js", - "lineno": 2115, + "lineno": 2147, "columnno": 10, "code": { - "id": "astnode100011011", + "id": "astnode100010998", "name": "temp", "type": "CallExpression", "value": "" @@ -22085,14 +22057,14 @@ "comment": "", "meta": { "range": [ - 94580, - 94614 + 96619, + 96653 ], "filename": "astronomy.js", - "lineno": 2116, + "lineno": 2148, "columnno": 10, "code": { - "id": "astnode100011021", + "id": "astnode100011008", "name": "datevect", "type": "CallExpression", "value": "" @@ -22110,14 +22082,14 @@ "comment": "", "meta": { "range": [ - 94653, - 94678 + 96692, + 96717 ], "filename": "astronomy.js", - "lineno": 2119, + "lineno": 2151, "columnno": 0, "code": { - "id": "astnode100011033", + "id": "astnode100011020", "name": "exports.Equator", "type": "Identifier", "value": "Equator", @@ -22134,14 +22106,14 @@ "comment": "", "meta": { "range": [ - 94680, - 95206 + 96719, + 97245 ], "filename": "astronomy.js", - "lineno": 2120, + "lineno": 2152, "columnno": 0, "code": { - "id": "astnode100011038", + "id": "astnode100011025", "name": "RotateEquatorialToEcliptic", "type": "FunctionDeclaration", "paramnames": [ @@ -22172,14 +22144,14 @@ "comment": "", "meta": { "range": [ - 94815, - 94822 + 96854, + 96861 ], "filename": "astronomy.js", - "lineno": 2122, + "lineno": 2154, "columnno": 10, "code": { - "id": "astnode100011047", + "id": "astnode100011034", "name": "ex", "type": "Identifier", "value": "gx" @@ -22197,14 +22169,14 @@ "comment": "", "meta": { "range": [ - 94834, - 94864 + 96873, + 96903 ], "filename": "astronomy.js", - "lineno": 2123, + "lineno": 2155, "columnno": 10, "code": { - "id": "astnode100011051", + "id": "astnode100011038", "name": "ey", "type": "BinaryExpression", "value": "" @@ -22222,14 +22194,14 @@ "comment": "", "meta": { "range": [ - 94876, - 94907 + 96915, + 96946 ], "filename": "astronomy.js", - "lineno": 2124, + "lineno": 2156, "columnno": 10, "code": { - "id": "astnode100011061", + "id": "astnode100011048", "name": "ez", "type": "BinaryExpression", "value": "" @@ -22247,14 +22219,14 @@ "comment": "", "meta": { "range": [ - 94919, - 94956 + 96958, + 96995 ], "filename": "astronomy.js", - "lineno": 2125, + "lineno": 2157, "columnno": 10, "code": { - "id": "astnode100011072", + "id": "astnode100011059", "name": "xyproj", "type": "CallExpression", "value": "" @@ -22272,14 +22244,14 @@ "comment": "", "meta": { "range": [ - 94966, - 94974 + 97005, + 97013 ], "filename": "astronomy.js", - "lineno": 2126, + "lineno": 2158, "columnno": 8, "code": { - "id": "astnode100011086", + "id": "astnode100011073", "name": "elon", "type": "Literal", "value": 0 @@ -22297,14 +22269,14 @@ "comment": "", "meta": { "range": [ - 95006, - 95041 + 97045, + 97080 ], "filename": "astronomy.js", - "lineno": 2128, + "lineno": 2160, "columnno": 8, "code": { - "id": "astnode100011095", + "id": "astnode100011082", "name": "elon", "type": "BinaryExpression", "funcscope": "RotateEquatorialToEcliptic", @@ -22323,14 +22295,14 @@ "comment": "", "meta": { "range": [ - 95077, - 95088 + 97116, + 97127 ], "filename": "astronomy.js", - "lineno": 2130, + "lineno": 2162, "columnno": 12, "code": { - "id": "astnode100011110", + "id": "astnode100011097", "name": "elon", "type": "Literal", "funcscope": "RotateEquatorialToEcliptic", @@ -22349,14 +22321,14 @@ "comment": "", "meta": { "range": [ - 95104, - 95143 + 97143, + 97182 ], "filename": "astronomy.js", - "lineno": 2132, + "lineno": 2164, "columnno": 8, "code": { - "id": "astnode100011114", + "id": "astnode100011101", "name": "elat", "type": "BinaryExpression", "value": "" @@ -22374,14 +22346,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 use its (x, y, z) return values\n * to pass into this function.\n *\n * @param {number} gx\n * The x-coordinate of a 3D vector in the J2000 equatorial coordinate system.\n *\n * @param {number} gy\n * The y-coordinate of a 3D vector in the J2000 equatorial coordinate system.\n *\n * @param {number} gz\n * The z-coordinate of a 3D vector in the J2000 equatorial coordinate system.\n *\n * @returns {EclipticCoordinates}\n */", "meta": { "range": [ - 95902, - 96461 + 97941, + 98500 ], "filename": "astronomy.js", - "lineno": 2154, + "lineno": 2186, "columnno": 0, "code": { - "id": "astnode100011132", + "id": "astnode100011119", "name": "Ecliptic", "type": "FunctionDeclaration", "paramnames": [ @@ -22451,14 +22423,14 @@ "comment": "", "meta": { "range": [ - 96186, - 96233 + 98225, + 98272 ], "filename": "astronomy.js", - "lineno": 2159, + "lineno": 2191, "columnno": 8, "code": { - "id": "astnode100011144", + "id": "astnode100011131", "name": "ob2000", "type": "BinaryExpression", "funcscope": "Ecliptic", @@ -22477,14 +22449,14 @@ "comment": "", "meta": { "range": [ - 96243, - 96272 + 98282, + 98311 ], "filename": "astronomy.js", - "lineno": 2160, + "lineno": 2192, "columnno": 8, "code": { - "id": "astnode100011156", + "id": "astnode100011143", "name": "cos_ob2000", "type": "CallExpression", "funcscope": "Ecliptic", @@ -22503,14 +22475,14 @@ "comment": "", "meta": { "range": [ - 96282, - 96311 + 98321, + 98350 ], "filename": "astronomy.js", - "lineno": 2161, + "lineno": 2193, "columnno": 8, "code": { - "id": "astnode100011164", + "id": "astnode100011151", "name": "sin_ob2000", "type": "CallExpression", "funcscope": "Ecliptic", @@ -22529,14 +22501,14 @@ "comment": "", "meta": { "range": [ - 96462, - 96489 + 98501, + 98528 ], "filename": "astronomy.js", - "lineno": 2168, + "lineno": 2200, "columnno": 0, "code": { - "id": "astnode100011192", + "id": "astnode100011179", "name": "exports.Ecliptic", "type": "Identifier", "value": "Ecliptic", @@ -22553,14 +22525,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": [ - 97068, - 97782 + 99107, + 99821 ], "filename": "astronomy.js", - "lineno": 2183, + "lineno": 2215, "columnno": 0, "code": { - "id": "astnode100011197", + "id": "astnode100011184", "name": "GeoMoon", "type": "FunctionDeclaration", "paramnames": [ @@ -22613,14 +22585,14 @@ "comment": "", "meta": { "range": [ - 97101, - 97122 + 99140, + 99161 ], "filename": "astronomy.js", - "lineno": 2184, + "lineno": 2216, "columnno": 8, "code": { - "id": "astnode100011202", + "id": "astnode100011189", "name": "time", "type": "CallExpression", "value": "" @@ -22638,14 +22610,14 @@ "comment": "", "meta": { "range": [ - 97132, - 97153 + 99171, + 99192 ], "filename": "astronomy.js", - "lineno": 2185, + "lineno": 2217, "columnno": 8, "code": { - "id": "astnode100011208", + "id": "astnode100011195", "name": "moon", "type": "CallExpression", "value": "" @@ -22663,14 +22635,14 @@ "comment": "", "meta": { "range": [ - 97236, - 97298 + 99275, + 99337 ], "filename": "astronomy.js", - "lineno": 2187, + "lineno": 2219, "columnno": 8, "code": { - "id": "astnode100011214", + "id": "astnode100011201", "name": "dist_cos_lat", "type": "BinaryExpression", "value": "" @@ -22688,14 +22660,14 @@ "comment": "", "meta": { "range": [ - 97308, - 97485 + 99347, + 99524 ], "filename": "astronomy.js", - "lineno": 2188, + "lineno": 2220, "columnno": 8, "code": { - "id": "astnode100011228", + "id": "astnode100011215", "name": "gepos", "type": "ArrayExpression", "value": "[\"\",\"\",\"\"]" @@ -22713,14 +22685,14 @@ "comment": "", "meta": { "range": [ - 97588, - 97620 + 99627, + 99659 ], "filename": "astronomy.js", - "lineno": 2194, + "lineno": 2226, "columnno": 8, "code": { - "id": "astnode100011261", + "id": "astnode100011248", "name": "mpos1", "type": "CallExpression", "value": "" @@ -22738,14 +22710,14 @@ "comment": "", "meta": { "range": [ - 97683, - 97720 + 99722, + 99759 ], "filename": "astronomy.js", - "lineno": 2196, + "lineno": 2228, "columnno": 8, "code": { - "id": "astnode100011268", + "id": "astnode100011255", "name": "mpos2", "type": "CallExpression", "value": "" @@ -22763,14 +22735,14 @@ "comment": "", "meta": { "range": [ - 97783, - 97808 + 99822, + 99847 ], "filename": "astronomy.js", - "lineno": 2199, + "lineno": 2231, "columnno": 0, "code": { - "id": "astnode100011291", + "id": "astnode100011278", "name": "exports.GeoMoon", "type": "Identifier", "value": "GeoMoon", @@ -22787,14 +22759,14 @@ "comment": "", "meta": { "range": [ - 97810, - 98130 + 99849, + 100169 ], "filename": "astronomy.js", - "lineno": 2200, + "lineno": 2232, "columnno": 0, "code": { - "id": "astnode100011296", + "id": "astnode100011283", "name": "VsopFormula", "type": "FunctionDeclaration", "paramnames": [ @@ -22821,14 +22793,14 @@ "comment": "", "meta": { "range": [ - 97853, - 97863 + 99892, + 99902 ], "filename": "astronomy.js", - "lineno": 2201, + "lineno": 2233, "columnno": 8, "code": { - "id": "astnode100011302", + "id": "astnode100011289", "name": "tpower", "type": "Literal", "value": 1 @@ -22846,14 +22818,14 @@ "comment": "", "meta": { "range": [ - 97873, - 97882 + 99912, + 99921 ], "filename": "astronomy.js", - "lineno": 2202, + "lineno": 2234, "columnno": 8, "code": { - "id": "astnode100011306", + "id": "astnode100011293", "name": "coord", "type": "Literal", "value": 0 @@ -22871,14 +22843,14 @@ "comment": "", "meta": { "range": [ - 97897, - 97903 + 99936, + 99942 ], "filename": "astronomy.js", - "lineno": 2203, + "lineno": 2235, "columnno": 13, "code": { - "id": "astnode100011311", + "id": "astnode100011298", "name": "series" } }, @@ -22894,14 +22866,14 @@ "comment": "", "meta": { "range": [ - 97930, - 97937 + 99969, + 99976 ], "filename": "astronomy.js", - "lineno": 2204, + "lineno": 2236, "columnno": 12, "code": { - "id": "astnode100011316", + "id": "astnode100011303", "name": "sum", "type": "Literal", "value": 0 @@ -22919,14 +22891,14 @@ "comment": "", "meta": { "range": [ - 98000, - 98041 + 100039, + 100080 ], "filename": "astronomy.js", - "lineno": 2206, + "lineno": 2238, "columnno": 12, "code": { - "id": "astnode100011326", + "id": "astnode100011313", "name": "sum", "type": "BinaryExpression", "funcscope": "VsopFormula", @@ -22945,14 +22917,14 @@ "comment": "", "meta": { "range": [ - 98061, - 98082 + 100100, + 100121 ], "filename": "astronomy.js", - "lineno": 2208, + "lineno": 2240, "columnno": 8, "code": { - "id": "astnode100011340", + "id": "astnode100011327", "name": "coord", "type": "BinaryExpression", "funcscope": "VsopFormula", @@ -22971,14 +22943,14 @@ "comment": "", "meta": { "range": [ - 98092, - 98103 + 100131, + 100142 ], "filename": "astronomy.js", - "lineno": 2209, + "lineno": 2241, "columnno": 8, "code": { - "id": "astnode100011346", + "id": "astnode100011333", "name": "tpower", "type": "Identifier", "funcscope": "VsopFormula", @@ -22997,14 +22969,14 @@ "comment": "", "meta": { "range": [ - 98131, - 98732 + 100170, + 100771 ], "filename": "astronomy.js", - "lineno": 2213, + "lineno": 2245, "columnno": 0, "code": { - "id": "astnode100011351", + "id": "astnode100011338", "name": "VsopDeriv", "type": "FunctionDeclaration", "paramnames": [ @@ -23035,14 +23007,14 @@ "comment": "", "meta": { "range": [ - 98172, - 98182 + 100211, + 100221 ], "filename": "astronomy.js", - "lineno": 2214, + "lineno": 2246, "columnno": 8, "code": { - "id": "astnode100011357", + "id": "astnode100011344", "name": "tpower", "type": "Literal", "value": 1 @@ -23060,14 +23032,14 @@ "comment": "", "meta": { "range": [ - 98199, - 98209 + 100238, + 100248 ], "filename": "astronomy.js", - "lineno": 2215, + "lineno": 2247, "columnno": 8, "code": { - "id": "astnode100011361", + "id": "astnode100011348", "name": "dpower", "type": "Literal", "value": 0 @@ -23085,14 +23057,14 @@ "comment": "", "meta": { "range": [ - 98230, - 98239 + 100269, + 100278 ], "filename": "astronomy.js", - "lineno": 2216, + "lineno": 2248, "columnno": 8, "code": { - "id": "astnode100011365", + "id": "astnode100011352", "name": "deriv", "type": "Literal", "value": 0 @@ -23110,14 +23082,14 @@ "comment": "", "meta": { "range": [ - 98249, - 98254 + 100288, + 100293 ], "filename": "astronomy.js", - "lineno": 2217, + "lineno": 2249, "columnno": 8, "code": { - "id": "astnode100011369", + "id": "astnode100011356", "name": "s", "type": "Literal", "value": 0 @@ -23135,14 +23107,14 @@ "comment": "", "meta": { "range": [ - 98269, - 98275 + 100308, + 100314 ], "filename": "astronomy.js", - "lineno": 2218, + "lineno": 2250, "columnno": 13, "code": { - "id": "astnode100011374", + "id": "astnode100011361", "name": "series" } }, @@ -23158,14 +23130,14 @@ "comment": "", "meta": { "range": [ - 98302, - 98313 + 100341, + 100352 ], "filename": "astronomy.js", - "lineno": 2219, + "lineno": 2251, "columnno": 12, "code": { - "id": "astnode100011379", + "id": "astnode100011366", "name": "sin_sum", "type": "Literal", "value": 0 @@ -23183,14 +23155,14 @@ "comment": "", "meta": { "range": [ - 98327, - 98338 + 100366, + 100377 ], "filename": "astronomy.js", - "lineno": 2220, + "lineno": 2252, "columnno": 12, "code": { - "id": "astnode100011383", + "id": "astnode100011370", "name": "cos_sum", "type": "Literal", "value": 0 @@ -23208,14 +23180,14 @@ "comment": "", "meta": { "range": [ - 98405, - 98430 + 100444, + 100469 ], "filename": "astronomy.js", - "lineno": 2222, + "lineno": 2254, "columnno": 16, "code": { - "id": "astnode100011393", + "id": "astnode100011380", "name": "angle", "type": "BinaryExpression", "value": "" @@ -23233,14 +23205,14 @@ "comment": "", "meta": { "range": [ - 98444, - 98484 + 100483, + 100523 ], "filename": "astronomy.js", - "lineno": 2223, + "lineno": 2255, "columnno": 12, "code": { - "id": "astnode100011401", + "id": "astnode100011388", "name": "sin_sum", "type": "BinaryExpression", "funcscope": "VsopDeriv", @@ -23259,14 +23231,14 @@ "comment": "", "meta": { "range": [ - 98527, - 98560 + 100566, + 100599 ], "filename": "astronomy.js", - "lineno": 2225, + "lineno": 2257, "columnno": 16, "code": { - "id": "astnode100011418", + "id": "astnode100011405", "name": "cos_sum", "type": "BinaryExpression", "funcscope": "VsopDeriv", @@ -23285,14 +23257,14 @@ "comment": "", "meta": { "range": [ - 98594, - 98646 + 100633, + 100685 ], "filename": "astronomy.js", - "lineno": 2228, + "lineno": 2260, "columnno": 8, "code": { - "id": "astnode100011428", + "id": "astnode100011415", "name": "deriv", "type": "BinaryExpression", "funcscope": "VsopDeriv", @@ -23311,14 +23283,14 @@ "comment": "", "meta": { "range": [ - 98656, - 98671 + 100695, + 100710 ], "filename": "astronomy.js", - "lineno": 2229, + "lineno": 2261, "columnno": 8, "code": { - "id": "astnode100011440", + "id": "astnode100011427", "name": "dpower", "type": "Identifier", "funcscope": "VsopDeriv", @@ -23337,14 +23309,14 @@ "comment": "", "meta": { "range": [ - 98681, - 98692 + 100720, + 100731 ], "filename": "astronomy.js", - "lineno": 2230, + "lineno": 2262, "columnno": 8, "code": { - "id": "astnode100011444", + "id": "astnode100011431", "name": "tpower", "type": "Identifier", "funcscope": "VsopDeriv", @@ -23363,14 +23335,14 @@ "comment": "", "meta": { "range": [ - 98739, - 98767 + 100778, + 100806 ], "filename": "astronomy.js", - "lineno": 2235, + "lineno": 2267, "columnno": 6, "code": { - "id": "astnode100011453", + "id": "astnode100011440", "name": "DAYS_PER_MILLENNIUM", "type": "Literal", "value": 365250 @@ -23387,14 +23359,14 @@ "comment": "", "meta": { "range": [ - 98775, - 98788 + 100814, + 100827 ], "filename": "astronomy.js", - "lineno": 2236, + "lineno": 2268, "columnno": 6, "code": { - "id": "astnode100011457", + "id": "astnode100011444", "name": "LON_INDEX", "type": "Literal", "value": 0 @@ -23411,14 +23383,14 @@ "comment": "", "meta": { "range": [ - 98796, - 98809 + 100835, + 100848 ], "filename": "astronomy.js", - "lineno": 2237, + "lineno": 2269, "columnno": 6, "code": { - "id": "astnode100011461", + "id": "astnode100011448", "name": "LAT_INDEX", "type": "Literal", "value": 1 @@ -23435,14 +23407,14 @@ "comment": "", "meta": { "range": [ - 98817, - 98830 + 100856, + 100869 ], "filename": "astronomy.js", - "lineno": 2238, + "lineno": 2270, "columnno": 6, "code": { - "id": "astnode100011465", + "id": "astnode100011452", "name": "RAD_INDEX", "type": "Literal", "value": 2 @@ -23459,14 +23431,14 @@ "comment": "", "meta": { "range": [ - 98832, - 99178 + 100871, + 101217 ], "filename": "astronomy.js", - "lineno": 2239, + "lineno": 2271, "columnno": 0, "code": { - "id": "astnode100011468", + "id": "astnode100011455", "name": "VsopRotate", "type": "FunctionDeclaration", "paramnames": [ @@ -23485,14 +23457,14 @@ "comment": "", "meta": { "range": [ - 99179, - 99462 + 101218, + 101501 ], "filename": "astronomy.js", - "lineno": 2243, + "lineno": 2275, "columnno": 0, "code": { - "id": "astnode100011519", + "id": "astnode100011506", "name": "VsopSphereToRect", "type": "FunctionDeclaration", "paramnames": [ @@ -23516,14 +23488,14 @@ "comment": "", "meta": { "range": [ - 99307, - 99340 + 101346, + 101379 ], "filename": "astronomy.js", - "lineno": 2245, + "lineno": 2277, "columnno": 10, "code": { - "id": "astnode100011526", + "id": "astnode100011513", "name": "r_coslat", "type": "BinaryExpression", "value": "" @@ -23541,14 +23513,14 @@ "comment": "", "meta": { "range": [ - 99463, - 99817 + 101502, + 101856 ], "filename": "astronomy.js", - "lineno": 2252, + "lineno": 2284, "columnno": 0, "code": { - "id": "astnode100011558", + "id": "astnode100011545", "name": "CalcVsop", "type": "FunctionDeclaration", "paramnames": [ @@ -23575,14 +23547,14 @@ "comment": "", "meta": { "range": [ - 99506, - 99539 + 101545, + 101578 ], "filename": "astronomy.js", - "lineno": 2253, + "lineno": 2285, "columnno": 10, "code": { - "id": "astnode100011564", + "id": "astnode100011551", "name": "t", "type": "BinaryExpression", "value": "" @@ -23600,14 +23572,14 @@ "comment": "", "meta": { "range": [ - 99575, - 99613 + 101614, + 101652 ], "filename": "astronomy.js", - "lineno": 2254, + "lineno": 2286, "columnno": 10, "code": { - "id": "astnode100011572", + "id": "astnode100011559", "name": "lon", "type": "CallExpression", "value": "" @@ -23625,14 +23597,14 @@ "comment": "", "meta": { "range": [ - 99625, - 99663 + 101664, + 101702 ], "filename": "astronomy.js", - "lineno": 2255, + "lineno": 2287, "columnno": 10, "code": { - "id": "astnode100011581", + "id": "astnode100011568", "name": "lat", "type": "CallExpression", "value": "" @@ -23650,14 +23622,14 @@ "comment": "", "meta": { "range": [ - 99675, - 99713 + 101714, + 101752 ], "filename": "astronomy.js", - "lineno": 2256, + "lineno": 2288, "columnno": 10, "code": { - "id": "astnode100011590", + "id": "astnode100011577", "name": "rad", "type": "CallExpression", "value": "" @@ -23675,14 +23647,14 @@ "comment": "", "meta": { "range": [ - 99725, - 99764 + 101764, + 101803 ], "filename": "astronomy.js", - "lineno": 2257, + "lineno": 2289, "columnno": 10, "code": { - "id": "astnode100011599", + "id": "astnode100011586", "name": "eclip", "type": "CallExpression", "value": "" @@ -23700,14 +23672,14 @@ "comment": "", "meta": { "range": [ - 99818, - 101348 + 101857, + 103387 ], "filename": "astronomy.js", - "lineno": 2260, + "lineno": 2292, "columnno": 0, "code": { - "id": "astnode100011614", + "id": "astnode100011601", "name": "CalcVsopPosVel", "type": "FunctionDeclaration", "paramnames": [ @@ -23747,14 +23719,14 @@ "comment": "", "meta": { "range": [ - 99865, - 99893 + 101904, + 101932 ], "filename": "astronomy.js", - "lineno": 2261, + "lineno": 2293, "columnno": 10, "code": { - "id": "astnode100011620", + "id": "astnode100011607", "name": "t", "type": "BinaryExpression", "value": "" @@ -23772,14 +23744,14 @@ "comment": "", "meta": { "range": [ - 99998, - 100036 + 102037, + 102075 ], "filename": "astronomy.js", - "lineno": 2263, + "lineno": 2295, "columnno": 10, "code": { - "id": "astnode100011626", + "id": "astnode100011613", "name": "lon", "type": "CallExpression", "value": "" @@ -23797,14 +23769,14 @@ "comment": "", "meta": { "range": [ - 100048, - 100086 + 102087, + 102125 ], "filename": "astronomy.js", - "lineno": 2264, + "lineno": 2296, "columnno": 10, "code": { - "id": "astnode100011635", + "id": "astnode100011622", "name": "lat", "type": "CallExpression", "value": "" @@ -23822,14 +23794,14 @@ "comment": "", "meta": { "range": [ - 100098, - 100136 + 102137, + 102175 ], "filename": "astronomy.js", - "lineno": 2265, + "lineno": 2297, "columnno": 10, "code": { - "id": "astnode100011644", + "id": "astnode100011631", "name": "rad", "type": "CallExpression", "value": "" @@ -23847,14 +23819,14 @@ "comment": "", "meta": { "range": [ - 100148, - 100188 + 102187, + 102227 ], "filename": "astronomy.js", - "lineno": 2266, + "lineno": 2298, "columnno": 10, "code": { - "id": "astnode100011653", + "id": "astnode100011640", "name": "dlon_dt", "type": "CallExpression", "value": "" @@ -23872,14 +23844,14 @@ "comment": "", "meta": { "range": [ - 100200, - 100240 + 102239, + 102279 ], "filename": "astronomy.js", - "lineno": 2267, + "lineno": 2299, "columnno": 10, "code": { - "id": "astnode100011662", + "id": "astnode100011649", "name": "dlat_dt", "type": "CallExpression", "value": "" @@ -23897,14 +23869,14 @@ "comment": "", "meta": { "range": [ - 100252, - 100292 + 102291, + 102331 ], "filename": "astronomy.js", - "lineno": 2268, + "lineno": 2300, "columnno": 10, "code": { - "id": "astnode100011671", + "id": "astnode100011658", "name": "drad_dt", "type": "CallExpression", "value": "" @@ -23922,14 +23894,14 @@ "comment": "", "meta": { "range": [ - 100426, - 100448 + 102465, + 102487 ], "filename": "astronomy.js", - "lineno": 2271, + "lineno": 2303, "columnno": 10, "code": { - "id": "astnode100011680", + "id": "astnode100011667", "name": "coslon", "type": "CallExpression", "value": "" @@ -23947,14 +23919,14 @@ "comment": "", "meta": { "range": [ - 100460, - 100482 + 102499, + 102521 ], "filename": "astronomy.js", - "lineno": 2272, + "lineno": 2304, "columnno": 10, "code": { - "id": "astnode100011688", + "id": "astnode100011675", "name": "sinlon", "type": "CallExpression", "value": "" @@ -23972,14 +23944,14 @@ "comment": "", "meta": { "range": [ - 100494, - 100516 + 102533, + 102555 ], "filename": "astronomy.js", - "lineno": 2273, + "lineno": 2305, "columnno": 10, "code": { - "id": "astnode100011696", + "id": "astnode100011683", "name": "coslat", "type": "CallExpression", "value": "" @@ -23997,14 +23969,14 @@ "comment": "", "meta": { "range": [ - 100528, - 100550 + 102567, + 102589 ], "filename": "astronomy.js", - "lineno": 2274, + "lineno": 2306, "columnno": 10, "code": { - "id": "astnode100011704", + "id": "astnode100011691", "name": "sinlat", "type": "CallExpression", "value": "" @@ -24022,14 +23994,14 @@ "comment": "", "meta": { "range": [ - 100562, - 100685 + 102601, + 102724 ], "filename": "astronomy.js", - "lineno": 2275, + "lineno": 2307, "columnno": 10, "code": { - "id": "astnode100011712", + "id": "astnode100011699", "name": "vx", "type": "BinaryExpression", "value": "" @@ -24047,14 +24019,14 @@ "comment": "", "meta": { "range": [ - 100697, - 100820 + 102736, + 102859 ], "filename": "astronomy.js", - "lineno": 2278, + "lineno": 2310, "columnno": 10, "code": { - "id": "astnode100011737", + "id": "astnode100011724", "name": "vy", "type": "BinaryExpression", "value": "" @@ -24072,14 +24044,14 @@ "comment": "", "meta": { "range": [ - 100832, - 100893 + 102871, + 102932 ], "filename": "astronomy.js", - "lineno": 2281, + "lineno": 2313, "columnno": 10, "code": { - "id": "astnode100011762", + "id": "astnode100011749", "name": "vz", "type": "BinaryExpression", "value": "" @@ -24097,14 +24069,14 @@ "comment": "", "meta": { "range": [ - 100905, - 100948 + 102944, + 102987 ], "filename": "astronomy.js", - "lineno": 2283, + "lineno": 2315, "columnno": 10, "code": { - "id": "astnode100011775", + "id": "astnode100011762", "name": "eclip_pos", "type": "CallExpression", "value": "" @@ -24122,14 +24094,14 @@ "comment": "", "meta": { "range": [ - 101021, - 101141 + 103060, + 103180 ], "filename": "astronomy.js", - "lineno": 2285, + "lineno": 2317, "columnno": 10, "code": { - "id": "astnode100011783", + "id": "astnode100011770", "name": "eclip_vel", "type": "ArrayExpression", "value": "[\"\",\"\",\"\"]" @@ -24147,14 +24119,14 @@ "comment": "", "meta": { "range": [ - 101220, - 101251 + 103259, + 103290 ], "filename": "astronomy.js", - "lineno": 2291, + "lineno": 2323, "columnno": 10, "code": { - "id": "astnode100011796", + "id": "astnode100011783", "name": "equ_pos", "type": "CallExpression", "value": "" @@ -24172,14 +24144,14 @@ "comment": "", "meta": { "range": [ - 101263, - 101294 + 103302, + 103333 ], "filename": "astronomy.js", - "lineno": 2292, + "lineno": 2324, "columnno": 10, "code": { - "id": "astnode100011802", + "id": "astnode100011789", "name": "equ_vel", "type": "CallExpression", "value": "" @@ -24197,14 +24169,14 @@ "comment": "", "meta": { "range": [ - 101349, - 101586 + 103388, + 103625 ], "filename": "astronomy.js", - "lineno": 2295, + "lineno": 2327, "columnno": 0, "code": { - "id": "astnode100011813", + "id": "astnode100011800", "name": "AdjustBarycenter", "type": "FunctionDeclaration", "paramnames": [ @@ -24233,14 +24205,14 @@ "comment": "", "meta": { "range": [ - 101411, - 101443 + 103450, + 103482 ], "filename": "astronomy.js", - "lineno": 2296, + "lineno": 2328, "columnno": 10, "code": { - "id": "astnode100011821", + "id": "astnode100011808", "name": "shift", "type": "BinaryExpression", "value": "" @@ -24258,14 +24230,14 @@ "comment": "", "meta": { "range": [ - 101455, - 101490 + 103494, + 103529 ], "filename": "astronomy.js", - "lineno": 2297, + "lineno": 2329, "columnno": 10, "code": { - "id": "astnode100011829", + "id": "astnode100011816", "name": "planet", "type": "CallExpression", "value": "" @@ -24283,14 +24255,14 @@ "comment": "", "meta": { "range": [ - 101496, - 101521 + 103535, + 103560 ], "filename": "astronomy.js", - "lineno": 2298, + "lineno": 2330, "columnno": 4, "code": { - "id": "astnode100011838", + "id": "astnode100011825", "name": "ssb.x", "type": "BinaryExpression", "value": "", @@ -24308,14 +24280,14 @@ "comment": "", "meta": { "range": [ - 101527, - 101552 + 103566, + 103591 ], "filename": "astronomy.js", - "lineno": 2299, + "lineno": 2331, "columnno": 4, "code": { - "id": "astnode100011848", + "id": "astnode100011835", "name": "ssb.y", "type": "BinaryExpression", "value": "", @@ -24333,14 +24305,14 @@ "comment": "", "meta": { "range": [ - 101558, - 101583 + 103597, + 103622 ], "filename": "astronomy.js", - "lineno": 2300, + "lineno": 2332, "columnno": 4, "code": { - "id": "astnode100011858", + "id": "astnode100011845", "name": "ssb.z", "type": "BinaryExpression", "value": "", @@ -24358,14 +24330,14 @@ "comment": "", "meta": { "range": [ - 101587, - 101916 + 103626, + 103955 ], "filename": "astronomy.js", - "lineno": 2302, + "lineno": 2334, "columnno": 0, "code": { - "id": "astnode100011867", + "id": "astnode100011854", "name": "CalcSolarSystemBarycenter", "type": "FunctionDeclaration", "paramnames": [ @@ -24387,14 +24359,14 @@ "comment": "", "meta": { "range": [ - 101640, - 101677 + 103679, + 103716 ], "filename": "astronomy.js", - "lineno": 2303, + "lineno": 2335, "columnno": 10, "code": { - "id": "astnode100011872", + "id": "astnode100011859", "name": "ssb", "type": "NewExpression", "value": "" @@ -24412,14 +24384,14 @@ "comment": "", "meta": { "range": [ - 102003, - 102024 + 104042, + 104063 ], "filename": "astronomy.js", - "lineno": 2311, + "lineno": 2343, "columnno": 6, "code": { - "id": "astnode100011911", + "id": "astnode100011898", "name": "PLUTO_NUM_STATES", "type": "Literal", "value": 41 @@ -24436,14 +24408,14 @@ "comment": "", "meta": { "range": [ - 102032, - 102055 + 104071, + 104094 ], "filename": "astronomy.js", - "lineno": 2312, + "lineno": 2344, "columnno": 6, "code": { - "id": "astnode100011915", + "id": "astnode100011902", "name": "PLUTO_TIME_STEP", "type": "Literal", "value": 36500 @@ -24460,14 +24432,14 @@ "comment": "", "meta": { "range": [ - 102063, - 107796 + 104102, + 109835 ], "filename": "astronomy.js", - "lineno": 2313, + "lineno": 2345, "columnno": 6, "code": { - "id": "astnode100011919", + "id": "astnode100011906", "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]\\\"]\"]" @@ -24484,14 +24456,14 @@ "comment": "", "meta": { "range": [ - 107798, - 108858 + 109837, + 110897 ], "filename": "astronomy.js", - "lineno": 2356, + "lineno": 2388, "columnno": 0, "code": { - "id": "astnode100012470", + "id": "astnode100012457", "name": "TerseVector", "type": "ClassDeclaration", "paramnames": [ @@ -24511,14 +24483,14 @@ "comment": "", "meta": { "range": [ - 107822, - 107910 + 109861, + 109949 ], "filename": "astronomy.js", - "lineno": 2357, + "lineno": 2389, "columnno": 4, "code": { - "id": "astnode100012473", + "id": "astnode100012460", "name": "TerseVector", "type": "MethodDefinition", "paramnames": [ @@ -24542,14 +24514,14 @@ "comment": "", "meta": { "range": [ - 107853, - 107863 + 109892, + 109902 ], "filename": "astronomy.js", - "lineno": 2358, + "lineno": 2390, "columnno": 8, "code": { - "id": "astnode100012481", + "id": "astnode100012468", "name": "this.x", "type": "Identifier", "value": "x", @@ -24567,14 +24539,14 @@ "comment": "", "meta": { "range": [ - 107873, - 107883 + 109912, + 109922 ], "filename": "astronomy.js", - "lineno": 2359, + "lineno": 2391, "columnno": 8, "code": { - "id": "astnode100012487", + "id": "astnode100012474", "name": "this.y", "type": "Identifier", "value": "y", @@ -24592,14 +24564,14 @@ "comment": "", "meta": { "range": [ - 107893, - 107903 + 109932, + 109942 ], "filename": "astronomy.js", - "lineno": 2360, + "lineno": 2392, "columnno": 8, "code": { - "id": "astnode100012493", + "id": "astnode100012480", "name": "this.z", "type": "Identifier", "value": "z", @@ -24617,14 +24589,14 @@ "comment": "", "meta": { "range": [ - 107915, - 107993 + 109954, + 110032 ], "filename": "astronomy.js", - "lineno": 2362, + "lineno": 2394, "columnno": 4, "code": { - "id": "astnode100012498", + "id": "astnode100012485", "name": "TerseVector#ToAstroVector", "type": "MethodDefinition", "paramnames": [ @@ -24647,14 +24619,14 @@ "comment": "", "meta": { "range": [ - 107998, - 108086 + 110037, + 110125 ], "filename": "astronomy.js", - "lineno": 2365, + "lineno": 2397, "columnno": 4, "code": { - "id": "astnode100012516", + "id": "astnode100012503", "name": "TerseVector#quadrature", "type": "MethodDefinition", "paramnames": [] @@ -24675,14 +24647,14 @@ "comment": "", "meta": { "range": [ - 108091, - 108195 + 110130, + 110234 ], "filename": "astronomy.js", - "lineno": 2368, + "lineno": 2400, "columnno": 4, "code": { - "id": "astnode100012544", + "id": "astnode100012531", "name": "TerseVector#add", "type": "MethodDefinition", "paramnames": [ @@ -24705,14 +24677,14 @@ "comment": "", "meta": { "range": [ - 108200, - 108304 + 110239, + 110343 ], "filename": "astronomy.js", - "lineno": 2371, + "lineno": 2403, "columnno": 4, "code": { - "id": "astnode100012573", + "id": "astnode100012560", "name": "TerseVector#sub", "type": "MethodDefinition", "paramnames": [ @@ -24735,14 +24707,14 @@ "comment": "", "meta": { "range": [ - 108309, - 108409 + 110348, + 110448 ], "filename": "astronomy.js", - "lineno": 2374, + "lineno": 2406, "columnno": 4, "code": { - "id": "astnode100012602", + "id": "astnode100012589", "name": "TerseVector#incr", "type": "MethodDefinition", "paramnames": [ @@ -24765,14 +24737,14 @@ "comment": "", "meta": { "range": [ - 108331, - 108348 + 110370, + 110387 ], "filename": "astronomy.js", - "lineno": 2375, + "lineno": 2407, "columnno": 8, "code": { - "id": "astnode100012608", + "id": "astnode100012595", "name": "this.x", "type": "MemberExpression", "value": "other.x", @@ -24790,14 +24762,14 @@ "comment": "", "meta": { "range": [ - 108358, - 108375 + 110397, + 110414 ], "filename": "astronomy.js", - "lineno": 2376, + "lineno": 2408, "columnno": 8, "code": { - "id": "astnode100012616", + "id": "astnode100012603", "name": "this.y", "type": "MemberExpression", "value": "other.y", @@ -24815,14 +24787,14 @@ "comment": "", "meta": { "range": [ - 108385, - 108402 + 110424, + 110441 ], "filename": "astronomy.js", - "lineno": 2377, + "lineno": 2409, "columnno": 8, "code": { - "id": "astnode100012624", + "id": "astnode100012611", "name": "this.z", "type": "MemberExpression", "value": "other.z", @@ -24840,14 +24812,14 @@ "comment": "", "meta": { "range": [ - 108414, - 108514 + 110453, + 110553 ], "filename": "astronomy.js", - "lineno": 2379, + "lineno": 2411, "columnno": 4, "code": { - "id": "astnode100012631", + "id": "astnode100012618", "name": "TerseVector#decr", "type": "MethodDefinition", "paramnames": [ @@ -24870,14 +24842,14 @@ "comment": "", "meta": { "range": [ - 108436, - 108453 + 110475, + 110492 ], "filename": "astronomy.js", - "lineno": 2380, + "lineno": 2412, "columnno": 8, "code": { - "id": "astnode100012637", + "id": "astnode100012624", "name": "this.x", "type": "MemberExpression", "value": "other.x", @@ -24895,14 +24867,14 @@ "comment": "", "meta": { "range": [ - 108463, - 108480 + 110502, + 110519 ], "filename": "astronomy.js", - "lineno": 2381, + "lineno": 2413, "columnno": 8, "code": { - "id": "astnode100012645", + "id": "astnode100012632", "name": "this.y", "type": "MemberExpression", "value": "other.y", @@ -24920,14 +24892,14 @@ "comment": "", "meta": { "range": [ - 108490, - 108507 + 110529, + 110546 ], "filename": "astronomy.js", - "lineno": 2382, + "lineno": 2414, "columnno": 8, "code": { - "id": "astnode100012653", + "id": "astnode100012640", "name": "this.z", "type": "MemberExpression", "value": "other.z", @@ -24945,14 +24917,14 @@ "comment": "", "meta": { "range": [ - 108519, - 108621 + 110558, + 110660 ], "filename": "astronomy.js", - "lineno": 2384, + "lineno": 2416, "columnno": 4, "code": { - "id": "astnode100012660", + "id": "astnode100012647", "name": "TerseVector#mul", "type": "MethodDefinition", "paramnames": [ @@ -24975,14 +24947,14 @@ "comment": "", "meta": { "range": [ - 108626, - 108728 + 110665, + 110767 ], "filename": "astronomy.js", - "lineno": 2387, + "lineno": 2419, "columnno": 4, "code": { - "id": "astnode100012683", + "id": "astnode100012670", "name": "TerseVector#div", "type": "MethodDefinition", "paramnames": [ @@ -25005,14 +24977,14 @@ "comment": "", "meta": { "range": [ - 108733, - 108856 + 110772, + 110895 ], "filename": "astronomy.js", - "lineno": 2390, + "lineno": 2422, "columnno": 4, "code": { - "id": "astnode100012706", + "id": "astnode100012693", "name": "TerseVector#mean", "type": "MethodDefinition", "paramnames": [ @@ -25035,14 +25007,14 @@ "comment": "", "meta": { "range": [ - 108859, - 108977 + 110898, + 111016 ], "filename": "astronomy.js", - "lineno": 2394, + "lineno": 2426, "columnno": 0, "code": { - "id": "astnode100012741", + "id": "astnode100012728", "name": "body_state_t", "type": "ClassDeclaration", "paramnames": [ @@ -25062,14 +25034,14 @@ "comment": "", "meta": { "range": [ - 108884, - 108975 + 110923, + 111014 ], "filename": "astronomy.js", - "lineno": 2395, + "lineno": 2427, "columnno": 4, "code": { - "id": "astnode100012744", + "id": "astnode100012731", "name": "body_state_t", "type": "MethodDefinition", "paramnames": [ @@ -25093,14 +25065,14 @@ "comment": "", "meta": { "range": [ - 108916, - 108928 + 110955, + 110967 ], "filename": "astronomy.js", - "lineno": 2396, + "lineno": 2428, "columnno": 8, "code": { - "id": "astnode100012752", + "id": "astnode100012739", "name": "this.tt", "type": "Identifier", "value": "tt", @@ -25118,14 +25090,14 @@ "comment": "", "meta": { "range": [ - 108938, - 108948 + 110977, + 110987 ], "filename": "astronomy.js", - "lineno": 2397, + "lineno": 2429, "columnno": 8, "code": { - "id": "astnode100012758", + "id": "astnode100012745", "name": "this.r", "type": "Identifier", "value": "r", @@ -25143,14 +25115,14 @@ "comment": "", "meta": { "range": [ - 108958, - 108968 + 110997, + 111007 ], "filename": "astronomy.js", - "lineno": 2398, + "lineno": 2430, "columnno": 8, "code": { - "id": "astnode100012764", + "id": "astnode100012751", "name": "this.v", "type": "Identifier", "value": "v", @@ -25168,14 +25140,14 @@ "comment": "", "meta": { "range": [ - 108978, - 109157 + 111017, + 111196 ], "filename": "astronomy.js", - "lineno": 2401, + "lineno": 2433, "columnno": 0, "code": { - "id": "astnode100012769", + "id": "astnode100012756", "name": "BodyStateFromTable", "type": "FunctionDeclaration", "paramnames": [ @@ -25197,14 +25169,14 @@ "comment": "", "meta": { "range": [ - 109158, - 109415 + 111197, + 111454 ], "filename": "astronomy.js", - "lineno": 2405, + "lineno": 2437, "columnno": 0, "code": { - "id": "astnode100012793", + "id": "astnode100012780", "name": "AdjustBarycenterPosVel", "type": "FunctionDeclaration", "paramnames": [ @@ -25230,14 +25202,14 @@ "comment": "", "meta": { "range": [ - 109228, - 109268 + 111267, + 111307 ], "filename": "astronomy.js", - "lineno": 2406, + "lineno": 2438, "columnno": 10, "code": { - "id": "astnode100012801", + "id": "astnode100012788", "name": "shift", "type": "BinaryExpression", "value": "" @@ -25255,14 +25227,14 @@ "comment": "", "meta": { "range": [ - 109280, - 109319 + 111319, + 111358 ], "filename": "astronomy.js", - "lineno": 2407, + "lineno": 2439, "columnno": 10, "code": { - "id": "astnode100012809", + "id": "astnode100012796", "name": "planet", "type": "CallExpression", "value": "" @@ -25280,14 +25252,14 @@ "comment": "", "meta": { "range": [ - 109416, - 109604 + 111455, + 111643 ], "filename": "astronomy.js", - "lineno": 2412, + "lineno": 2444, "columnno": 0, "code": { - "id": "astnode100012847", + "id": "astnode100012834", "name": "AccelerationIncrement", "type": "FunctionDeclaration", "paramnames": [ @@ -25312,14 +25284,14 @@ "comment": "", "meta": { "range": [ - 109485, - 109517 + 111524, + 111556 ], "filename": "astronomy.js", - "lineno": 2413, + "lineno": 2445, "columnno": 10, "code": { - "id": "astnode100012854", + "id": "astnode100012841", "name": "delta", "type": "CallExpression", "value": "" @@ -25337,14 +25309,14 @@ "comment": "", "meta": { "range": [ - 109529, - 109552 + 111568, + 111591 ], "filename": "astronomy.js", - "lineno": 2414, + "lineno": 2446, "columnno": 10, "code": { - "id": "astnode100012862", + "id": "astnode100012849", "name": "r2", "type": "CallExpression", "value": "" @@ -25362,14 +25334,14 @@ "comment": "", "meta": { "range": [ - 109605, - 111180 + 111644, + 113219 ], "filename": "astronomy.js", - "lineno": 2417, + "lineno": 2449, "columnno": 0, "code": { - "id": "astnode100012882", + "id": "astnode100012869", "name": "major_bodies_t", "type": "ClassDeclaration", "paramnames": [ @@ -25387,14 +25359,14 @@ "comment": "", "meta": { "range": [ - 109632, - 110609 + 111671, + 112648 ], "filename": "astronomy.js", - "lineno": 2418, + "lineno": 2450, "columnno": 4, "code": { - "id": "astnode100012885", + "id": "astnode100012872", "name": "major_bodies_t", "type": "MethodDefinition", "paramnames": [ @@ -25416,14 +25388,14 @@ "comment": "", "meta": { "range": [ - 109722, - 109800 + 111761, + 111839 ], "filename": "astronomy.js", - "lineno": 2420, + "lineno": 2452, "columnno": 12, "code": { - "id": "astnode100012891", + "id": "astnode100012878", "name": "ssb", "type": "NewExpression", "value": "" @@ -25441,14 +25413,14 @@ "comment": "", "meta": { "range": [ - 109810, - 109879 + 111849, + 111918 ], "filename": "astronomy.js", - "lineno": 2421, + "lineno": 2453, "columnno": 8, "code": { - "id": "astnode100012907", + "id": "astnode100012894", "name": "this.Jupiter", "type": "CallExpression", "value": "", @@ -25466,14 +25438,14 @@ "comment": "", "meta": { "range": [ - 109889, - 109955 + 111928, + 111994 ], "filename": "astronomy.js", - "lineno": 2422, + "lineno": 2454, "columnno": 8, "code": { - "id": "astnode100012918", + "id": "astnode100012905", "name": "this.Saturn", "type": "CallExpression", "value": "", @@ -25491,14 +25463,14 @@ "comment": "", "meta": { "range": [ - 109965, - 110031 + 112004, + 112070 ], "filename": "astronomy.js", - "lineno": 2423, + "lineno": 2455, "columnno": 8, "code": { - "id": "astnode100012929", + "id": "astnode100012916", "name": "this.Uranus", "type": "CallExpression", "value": "", @@ -25516,14 +25488,14 @@ "comment": "", "meta": { "range": [ - 110041, - 110110 + 112080, + 112149 ], "filename": "astronomy.js", - "lineno": 2424, + "lineno": 2456, "columnno": 8, "code": { - "id": "astnode100012940", + "id": "astnode100012927", "name": "this.Neptune", "type": "CallExpression", "value": "", @@ -25541,14 +25513,14 @@ "comment": "", "meta": { "range": [ - 110541, - 110602 + 112580, + 112641 ], "filename": "astronomy.js", - "lineno": 2435, + "lineno": 2467, "columnno": 8, "code": { - "id": "astnode100013047", + "id": "astnode100013034", "name": "this.Sun", "type": "NewExpression", "value": "", @@ -25566,14 +25538,14 @@ "comment": "", "meta": { "range": [ - 110614, - 111178 + 112653, + 113217 ], "filename": "astronomy.js", - "lineno": 2437, + "lineno": 2469, "columnno": 4, "code": { - "id": "astnode100013070", + "id": "astnode100013057", "name": "major_bodies_t#Acceleration", "type": "MethodDefinition", "paramnames": [ @@ -25596,14 +25568,14 @@ "comment": "", "meta": { "range": [ - 110807, - 110859 + 112846, + 112898 ], "filename": "astronomy.js", - "lineno": 2440, + "lineno": 2472, "columnno": 12, "code": { - "id": "astnode100013076", + "id": "astnode100013063", "name": "acc", "type": "CallExpression", "value": "" @@ -25621,14 +25593,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": [ - 111701, - 111846 + 113740, + 113885 ], "filename": "astronomy.js", - "lineno": 2469, + "lineno": 2501, "columnno": 0, "code": { - "id": "astnode100013145", + "id": "astnode100013132", "name": "body_grav_calc_t", "type": "ClassDeclaration", "paramnames": [ @@ -25676,14 +25648,14 @@ "comment": "", "meta": { "range": [ - 111730, - 111844 + 113769, + 113883 ], "filename": "astronomy.js", - "lineno": 2470, + "lineno": 2502, "columnno": 4, "code": { - "id": "astnode100013148", + "id": "astnode100013135", "name": "body_grav_calc_t", "type": "MethodDefinition", "paramnames": [ @@ -25708,14 +25680,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": [ - 111701, - 111846 + 113740, + 113885 ], "filename": "astronomy.js", - "lineno": 2469, + "lineno": 2501, "columnno": 0, "code": { - "id": "astnode100013145", + "id": "astnode100013132", "name": "body_grav_calc_t", "type": "ClassDeclaration", "paramnames": [ @@ -25762,14 +25734,14 @@ "comment": "", "meta": { "range": [ - 111765, - 111777 + 113804, + 113816 ], "filename": "astronomy.js", - "lineno": 2471, + "lineno": 2503, "columnno": 8, "code": { - "id": "astnode100013157", + "id": "astnode100013144", "name": "this.tt", "type": "Identifier", "value": "tt", @@ -25787,14 +25759,14 @@ "comment": "", "meta": { "range": [ - 111787, - 111797 + 113826, + 113836 ], "filename": "astronomy.js", - "lineno": 2472, + "lineno": 2504, "columnno": 8, "code": { - "id": "astnode100013163", + "id": "astnode100013150", "name": "this.r", "type": "Identifier", "value": "r", @@ -25812,14 +25784,14 @@ "comment": "", "meta": { "range": [ - 111807, - 111817 + 113846, + 113856 ], "filename": "astronomy.js", - "lineno": 2473, + "lineno": 2505, "columnno": 8, "code": { - "id": "astnode100013169", + "id": "astnode100013156", "name": "this.v", "type": "Identifier", "value": "v", @@ -25837,14 +25809,14 @@ "comment": "", "meta": { "range": [ - 111827, - 111837 + 113866, + 113876 ], "filename": "astronomy.js", - "lineno": 2474, + "lineno": 2506, "columnno": 8, "code": { - "id": "astnode100013175", + "id": "astnode100013162", "name": "this.a", "type": "Identifier", "value": "a", @@ -25862,14 +25834,14 @@ "comment": "", "meta": { "range": [ - 111847, - 111955 + 113886, + 113994 ], "filename": "astronomy.js", - "lineno": 2477, + "lineno": 2509, "columnno": 0, "code": { - "id": "astnode100013180", + "id": "astnode100013167", "name": "grav_sim_t", "type": "ClassDeclaration", "paramnames": [ @@ -25888,14 +25860,14 @@ "comment": "", "meta": { "range": [ - 111870, - 111953 + 113909, + 113992 ], "filename": "astronomy.js", - "lineno": 2478, + "lineno": 2510, "columnno": 4, "code": { - "id": "astnode100013183", + "id": "astnode100013170", "name": "grav_sim_t", "type": "MethodDefinition", "paramnames": [ @@ -25918,14 +25890,14 @@ "comment": "", "meta": { "range": [ - 111904, - 111920 + 113943, + 113959 ], "filename": "astronomy.js", - "lineno": 2479, + "lineno": 2511, "columnno": 8, "code": { - "id": "astnode100013190", + "id": "astnode100013177", "name": "this.bary", "type": "Identifier", "value": "bary", @@ -25943,14 +25915,14 @@ "comment": "", "meta": { "range": [ - 111930, - 111946 + 113969, + 113985 ], "filename": "astronomy.js", - "lineno": 2480, + "lineno": 2512, "columnno": 8, "code": { - "id": "astnode100013196", + "id": "astnode100013183", "name": "this.grav", "type": "Identifier", "value": "grav", @@ -25968,14 +25940,14 @@ "comment": "", "meta": { "range": [ - 111956, - 112123 + 113995, + 114162 ], "filename": "astronomy.js", - "lineno": 2483, + "lineno": 2515, "columnno": 0, "code": { - "id": "astnode100013201", + "id": "astnode100013188", "name": "UpdatePosition", "type": "FunctionDeclaration", "paramnames": [ @@ -25997,14 +25969,14 @@ "comment": "", "meta": { "range": [ - 112124, - 113041 + 114163, + 115080 ], "filename": "astronomy.js", - "lineno": 2486, + "lineno": 2518, "columnno": 0, "code": { - "id": "astnode100013262", + "id": "astnode100013249", "name": "GravSim", "type": "FunctionDeclaration", "paramnames": [ @@ -26034,14 +26006,14 @@ "comment": "", "meta": { "range": [ - 112165, - 112184 + 114204, + 114223 ], "filename": "astronomy.js", - "lineno": 2487, + "lineno": 2519, "columnno": 10, "code": { - "id": "astnode100013268", + "id": "astnode100013255", "name": "dt", "type": "BinaryExpression", "value": "" @@ -26059,14 +26031,14 @@ "comment": "", "meta": { "range": [ - 112277, - 112308 + 114316, + 114347 ], "filename": "astronomy.js", - "lineno": 2489, + "lineno": 2521, "columnno": 10, "code": { - "id": "astnode100013276", + "id": "astnode100013263", "name": "bary2", "type": "NewExpression", "value": "" @@ -26084,14 +26056,14 @@ "comment": "", "meta": { "range": [ - 112426, - 112484 + 114465, + 114523 ], "filename": "astronomy.js", - "lineno": 2491, + "lineno": 2523, "columnno": 10, "code": { - "id": "astnode100013282", + "id": "astnode100013269", "name": "approx_pos", "type": "CallExpression", "value": "" @@ -26109,14 +26081,14 @@ "comment": "", "meta": { "range": [ - 112649, - 112704 + 114688, + 114743 ], "filename": "astronomy.js", - "lineno": 2494, + "lineno": 2526, "columnno": 10, "code": { - "id": "astnode100013297", + "id": "astnode100013284", "name": "mean_acc", "type": "CallExpression", "value": "" @@ -26134,14 +26106,14 @@ "comment": "", "meta": { "range": [ - 112799, - 112851 + 114838, + 114890 ], "filename": "astronomy.js", - "lineno": 2496, + "lineno": 2528, "columnno": 10, "code": { - "id": "astnode100013311", + "id": "astnode100013298", "name": "pos", "type": "CallExpression", "value": "" @@ -26159,14 +26131,14 @@ "comment": "", "meta": { "range": [ - 112863, - 112898 + 114902, + 114937 ], "filename": "astronomy.js", - "lineno": 2497, + "lineno": 2529, "columnno": 10, "code": { - "id": "astnode100013324", + "id": "astnode100013311", "name": "vel", "type": "CallExpression", "value": "" @@ -26184,14 +26156,14 @@ "comment": "", "meta": { "range": [ - 112910, - 112939 + 114949, + 114978 ], "filename": "astronomy.js", - "lineno": 2498, + "lineno": 2530, "columnno": 10, "code": { - "id": "astnode100013338", + "id": "astnode100013325", "name": "acc", "type": "CallExpression", "value": "" @@ -26209,14 +26181,14 @@ "comment": "", "meta": { "range": [ - 112951, - 112998 + 114990, + 115037 ], "filename": "astronomy.js", - "lineno": 2499, + "lineno": 2531, "columnno": 10, "code": { - "id": "astnode100013346", + "id": "astnode100013333", "name": "grav", "type": "NewExpression", "value": "" @@ -26234,14 +26206,14 @@ "comment": "", "meta": { "range": [ - 113048, - 113062 + 115087, + 115101 ], "filename": "astronomy.js", - "lineno": 2502, + "lineno": 2534, "columnno": 6, "code": { - "id": "astnode100013360", + "id": "astnode100013347", "name": "PLUTO_DT", "type": "Literal", "value": 250 @@ -26258,14 +26230,14 @@ "comment": "", "meta": { "range": [ - 113070, - 113117 + 115109, + 115156 ], "filename": "astronomy.js", - "lineno": 2503, + "lineno": 2535, "columnno": 6, "code": { - "id": "astnode100013364", + "id": "astnode100013351", "name": "PLUTO_NSTEPS", "type": "BinaryExpression", "value": "" @@ -26282,14 +26254,14 @@ "comment": "", "meta": { "range": [ - 113125, - 113141 + 115164, + 115180 ], "filename": "astronomy.js", - "lineno": 2504, + "lineno": 2536, "columnno": 6, "code": { - "id": "astnode100013372", + "id": "astnode100013359", "name": "pluto_cache", "type": "ArrayExpression", "value": "[]" @@ -26306,14 +26278,14 @@ "comment": "", "meta": { "range": [ - 113143, - 113339 + 115182, + 115378 ], "filename": "astronomy.js", - "lineno": 2505, + "lineno": 2537, "columnno": 0, "code": { - "id": "astnode100013375", + "id": "astnode100013362", "name": "ClampIndex", "type": "FunctionDeclaration", "paramnames": [ @@ -26336,14 +26308,14 @@ "comment": "", "meta": { "range": [ - 113189, - 113213 + 115228, + 115252 ], "filename": "astronomy.js", - "lineno": 2506, + "lineno": 2538, "columnno": 10, "code": { - "id": "astnode100013381", + "id": "astnode100013368", "name": "index", "type": "CallExpression", "value": "" @@ -26361,14 +26333,14 @@ "comment": "", "meta": { "range": [ - 113340, - 113676 + 115379, + 115715 ], "filename": "astronomy.js", - "lineno": 2515, + "lineno": 2547, "columnno": 0, "code": { - "id": "astnode100013406", + "id": "astnode100013393", "name": "GravFromState", "type": "FunctionDeclaration", "paramnames": [ @@ -26395,14 +26367,14 @@ "comment": "", "meta": { "range": [ - 113382, - 113415 + 115421, + 115454 ], "filename": "astronomy.js", - "lineno": 2516, + "lineno": 2548, "columnno": 10, "code": { - "id": "astnode100013411", + "id": "astnode100013398", "name": "state", "type": "CallExpression", "value": "" @@ -26420,14 +26392,14 @@ "comment": "", "meta": { "range": [ - 113427, - 113462 + 115466, + 115501 ], "filename": "astronomy.js", - "lineno": 2517, + "lineno": 2549, "columnno": 10, "code": { - "id": "astnode100013417", + "id": "astnode100013404", "name": "bary", "type": "NewExpression", "value": "" @@ -26445,14 +26417,14 @@ "comment": "", "meta": { "range": [ - 113474, - 113501 + 115513, + 115540 ], "filename": "astronomy.js", - "lineno": 2518, + "lineno": 2550, "columnno": 10, "code": { - "id": "astnode100013425", + "id": "astnode100013412", "name": "r", "type": "CallExpression", "value": "" @@ -26470,14 +26442,14 @@ "comment": "", "meta": { "range": [ - 113513, - 113540 + 115552, + 115579 ], "filename": "astronomy.js", - "lineno": 2519, + "lineno": 2551, "columnno": 10, "code": { - "id": "astnode100013439", + "id": "astnode100013426", "name": "v", "type": "CallExpression", "value": "" @@ -26495,14 +26467,14 @@ "comment": "", "meta": { "range": [ - 113552, - 113576 + 115591, + 115615 ], "filename": "astronomy.js", - "lineno": 2520, + "lineno": 2552, "columnno": 10, "code": { - "id": "astnode100013453", + "id": "astnode100013440", "name": "a", "type": "CallExpression", "value": "" @@ -26520,14 +26492,14 @@ "comment": "", "meta": { "range": [ - 113588, - 113634 + 115627, + 115673 ], "filename": "astronomy.js", - "lineno": 2521, + "lineno": 2553, "columnno": 10, "code": { - "id": "astnode100013461", + "id": "astnode100013448", "name": "grav", "type": "NewExpression", "value": "" @@ -26545,14 +26517,14 @@ "comment": "", "meta": { "range": [ - 113677, - 115253 + 115716, + 117292 ], "filename": "astronomy.js", - "lineno": 2524, + "lineno": 2556, "columnno": 0, "code": { - "id": "astnode100013476", + "id": "astnode100013463", "name": "GetSegment", "type": "FunctionDeclaration", "paramnames": [ @@ -26588,14 +26560,14 @@ "comment": "", "meta": { "range": [ - 113720, - 113746 + 115759, + 115785 ], "filename": "astronomy.js", - "lineno": 2525, + "lineno": 2557, "columnno": 10, "code": { - "id": "astnode100013482", + "id": "astnode100013469", "name": "t0", "type": "MemberExpression", "value": "PlutoStateTable[0][0]" @@ -26613,14 +26585,14 @@ "comment": "", "meta": { "range": [ - 113952, - 114025 + 115991, + 116064 ], "filename": "astronomy.js", - "lineno": 2530, + "lineno": 2562, "columnno": 10, "code": { - "id": "astnode100013507", + "id": "astnode100013494", "name": "seg_index", "type": "CallExpression", "value": "" @@ -26638,14 +26610,14 @@ "comment": "", "meta": { "range": [ - 114070, - 114097 + 116109, + 116136 ], "filename": "astronomy.js", - "lineno": 2532, + "lineno": 2564, "columnno": 14, "code": { - "id": "astnode100013526", + "id": "astnode100013513", "name": "seg", "type": "AssignmentExpression", "value": "cache[undefined]" @@ -26663,14 +26635,14 @@ "comment": "", "meta": { "range": [ - 114076, - 114097 + 116115, + 116136 ], "filename": "astronomy.js", - "lineno": 2532, + "lineno": 2564, "columnno": 20, "code": { - "id": "astnode100013528", + "id": "astnode100013515", "name": "cache[undefined]", "type": "ArrayExpression", "value": "[]", @@ -26687,14 +26659,14 @@ "comment": "", "meta": { "range": [ - 114142, - 114197 + 116181, + 116236 ], "filename": "astronomy.js", - "lineno": 2534, + "lineno": 2566, "columnno": 8, "code": { - "id": "astnode100013534", + "id": "astnode100013521", "name": "seg[0]", "type": "MemberExpression", "funcscope": "GetSegment", @@ -26713,14 +26685,14 @@ "comment": "", "meta": { "range": [ - 114207, - 114281 + 116246, + 116320 ], "filename": "astronomy.js", - "lineno": 2535, + "lineno": 2567, "columnno": 8, "code": { - "id": "astnode100013546", + "id": "astnode100013533", "name": "seg[undefined]", "type": "MemberExpression", "funcscope": "GetSegment", @@ -26739,14 +26711,14 @@ "comment": "", "meta": { "range": [ - 114351, - 114352 + 116390, + 116391 ], "filename": "astronomy.js", - "lineno": 2537, + "lineno": 2569, "columnno": 12, "code": { - "id": "astnode100013562", + "id": "astnode100013549", "name": "i" } }, @@ -26762,14 +26734,14 @@ "comment": "", "meta": { "range": [ - 114366, - 114385 + 116405, + 116424 ], "filename": "astronomy.js", - "lineno": 2538, + "lineno": 2570, "columnno": 12, "code": { - "id": "astnode100013565", + "id": "astnode100013552", "name": "step_tt", "type": "MemberExpression", "value": "seg[0].tt" @@ -26787,14 +26759,14 @@ "comment": "", "meta": { "range": [ - 114400, - 114405 + 116439, + 116444 ], "filename": "astronomy.js", - "lineno": 2539, + "lineno": 2571, "columnno": 13, "code": { - "id": "astnode100013573", + "id": "astnode100013560", "name": "i", "type": "Literal", "funcscope": "GetSegment", @@ -26813,14 +26785,14 @@ "comment": "", "meta": { "range": [ - 114446, - 114500 + 116485, + 116539 ], "filename": "astronomy.js", - "lineno": 2540, + "lineno": 2572, "columnno": 12, "code": { - "id": "astnode100013584", + "id": "astnode100013571", "name": "seg[undefined]", "type": "MemberExpression", "funcscope": "GetSegment", @@ -26839,14 +26811,14 @@ "comment": "", "meta": { "range": [ - 114463, - 114482 + 116502, + 116521 ], "filename": "astronomy.js", - "lineno": 2540, + "lineno": 2572, "columnno": 29, "code": { - "id": "astnode100013591", + "id": "astnode100013578", "name": "step_tt", "type": "Identifier", "funcscope": "GetSegment", @@ -26865,14 +26837,14 @@ "comment": "", "meta": { "range": [ - 114567, - 114601 + 116606, + 116640 ], "filename": "astronomy.js", - "lineno": 2542, + "lineno": 2574, "columnno": 8, "code": { - "id": "astnode100013601", + "id": "astnode100013588", "name": "step_tt", "type": "MemberExpression", "funcscope": "GetSegment", @@ -26891,14 +26863,14 @@ "comment": "", "meta": { "range": [ - 114615, - 114627 + 116654, + 116666 ], "filename": "astronomy.js", - "lineno": 2543, + "lineno": 2575, "columnno": 12, "code": { - "id": "astnode100013611", + "id": "astnode100013598", "name": "reverse", "type": "ArrayExpression", "value": "[]" @@ -26916,14 +26888,14 @@ "comment": "", "meta": { "range": [ - 114637, - 114686 + 116676, + 116725 ], "filename": "astronomy.js", - "lineno": 2544, + "lineno": 2576, "columnno": 8, "code": { - "id": "astnode100013615", + "id": "astnode100013602", "name": "reverse[undefined]", "type": "MemberExpression", "funcscope": "GetSegment", @@ -26942,14 +26914,14 @@ "comment": "", "meta": { "range": [ - 114701, - 114721 + 116740, + 116760 ], "filename": "astronomy.js", - "lineno": 2545, + "lineno": 2577, "columnno": 13, "code": { - "id": "astnode100013627", + "id": "astnode100013614", "name": "i", "type": "BinaryExpression", "funcscope": "GetSegment", @@ -26968,14 +26940,14 @@ "comment": "", "meta": { "range": [ - 114747, - 114809 + 116786, + 116848 ], "filename": "astronomy.js", - "lineno": 2546, + "lineno": 2578, "columnno": 12, "code": { - "id": "astnode100013638", + "id": "astnode100013625", "name": "reverse[undefined]", "type": "MemberExpression", "funcscope": "GetSegment", @@ -26994,14 +26966,14 @@ "comment": "", "meta": { "range": [ - 114768, - 114787 + 116807, + 116826 ], "filename": "astronomy.js", - "lineno": 2546, + "lineno": 2578, "columnno": 33, "code": { - "id": "astnode100013645", + "id": "astnode100013632", "name": "step_tt", "type": "Identifier", "funcscope": "GetSegment", @@ -27020,14 +26992,14 @@ "comment": "", "meta": { "range": [ - 114897, - 114917 + 116936, + 116956 ], "filename": "astronomy.js", - "lineno": 2548, + "lineno": 2580, "columnno": 13, "code": { - "id": "astnode100013655", + "id": "astnode100013642", "name": "i", "type": "BinaryExpression", "funcscope": "GetSegment", @@ -27046,14 +27018,14 @@ "comment": "", "meta": { "range": [ - 114951, - 114980 + 116990, + 117019 ], "filename": "astronomy.js", - "lineno": 2549, + "lineno": 2581, "columnno": 18, "code": { - "id": "astnode100013667", + "id": "astnode100013654", "name": "ramp", "type": "BinaryExpression", "value": "" @@ -27071,14 +27043,14 @@ "comment": "", "meta": { "range": [ - 114994, - 115055 + 117033, + 117094 ], "filename": "astronomy.js", - "lineno": 2550, + "lineno": 2582, "columnno": 12, "code": { - "id": "astnode100013675", + "id": "astnode100013662", "name": "seg[undefined].r", "type": "CallExpression", "funcscope": "GetSegment", @@ -27097,14 +27069,14 @@ "comment": "", "meta": { "range": [ - 115069, - 115130 + 117108, + 117169 ], "filename": "astronomy.js", - "lineno": 2551, + "lineno": 2583, "columnno": 12, "code": { - "id": "astnode100013705", + "id": "astnode100013692", "name": "seg[undefined].v", "type": "CallExpression", "funcscope": "GetSegment", @@ -27123,14 +27095,14 @@ "comment": "", "meta": { "range": [ - 115144, - 115205 + 117183, + 117244 ], "filename": "astronomy.js", - "lineno": 2552, + "lineno": 2584, "columnno": 12, "code": { - "id": "astnode100013735", + "id": "astnode100013722", "name": "seg[undefined].a", "type": "CallExpression", "funcscope": "GetSegment", @@ -27149,14 +27121,14 @@ "comment": "", "meta": { "range": [ - 115254, - 115534 + 117293, + 117573 ], "filename": "astronomy.js", - "lineno": 2557, + "lineno": 2589, "columnno": 0, "code": { - "id": "astnode100013768", + "id": "astnode100013755", "name": "CalcPlutoOneWay", "type": "FunctionDeclaration", "paramnames": [ @@ -27182,14 +27154,14 @@ "comment": "", "meta": { "range": [ - 115311, - 115337 + 117350, + 117376 ], "filename": "astronomy.js", - "lineno": 2558, + "lineno": 2590, "columnno": 8, "code": { - "id": "astnode100013775", + "id": "astnode100013762", "name": "sim", "type": "CallExpression", "value": "" @@ -27207,14 +27179,14 @@ "comment": "", "meta": { "range": [ - 115349, - 115394 + 117388, + 117433 ], "filename": "astronomy.js", - "lineno": 2559, + "lineno": 2591, "columnno": 10, "code": { - "id": "astnode100013781", + "id": "astnode100013768", "name": "n", "type": "CallExpression", "value": "" @@ -27232,14 +27204,14 @@ "comment": "", "meta": { "range": [ - 115409, - 115414 + 117448, + 117453 ], "filename": "astronomy.js", - "lineno": 2560, + "lineno": 2592, "columnno": 13, "code": { - "id": "astnode100013798", + "id": "astnode100013785", "name": "i", "type": "Literal", "value": 0 @@ -27257,14 +27229,14 @@ "comment": "", "meta": { "range": [ - 115438, - 115509 + 117477, + 117548 ], "filename": "astronomy.js", - "lineno": 2561, + "lineno": 2593, "columnno": 8, "code": { - "id": "astnode100013808", + "id": "astnode100013795", "name": "sim", "type": "CallExpression", "funcscope": "CalcPlutoOneWay", @@ -27283,14 +27255,14 @@ "comment": "", "meta": { "range": [ - 115535, - 117033 + 117574, + 119072 ], "filename": "astronomy.js", - "lineno": 2565, + "lineno": 2597, "columnno": 0, "code": { - "id": "astnode100013831", + "id": "astnode100013818", "name": "CalcPluto", "type": "FunctionDeclaration", "paramnames": [ @@ -27322,14 +27294,14 @@ "comment": "", "meta": { "range": [ - 115570, - 115571 + 117609, + 117610 ], "filename": "astronomy.js", - "lineno": 2566, + "lineno": 2598, "columnno": 8, "code": { - "id": "astnode100013836", + "id": "astnode100013823", "name": "r" } }, @@ -27345,14 +27317,14 @@ "comment": "", "meta": { "range": [ - 115573, - 115577 + 117612, + 117616 ], "filename": "astronomy.js", - "lineno": 2566, + "lineno": 2598, "columnno": 11, "code": { - "id": "astnode100013838", + "id": "astnode100013825", "name": "bary" } }, @@ -27368,14 +27340,14 @@ "comment": "", "meta": { "range": [ - 115589, - 115627 + 117628, + 117666 ], "filename": "astronomy.js", - "lineno": 2567, + "lineno": 2599, "columnno": 10, "code": { - "id": "astnode100013841", + "id": "astnode100013828", "name": "seg", "type": "CallExpression", "value": "" @@ -27393,14 +27365,14 @@ "comment": "", "meta": { "range": [ - 115892, - 115895 + 117931, + 117934 ], "filename": "astronomy.js", - "lineno": 2572, + "lineno": 2604, "columnno": 12, "code": { - "id": "astnode100013854", + "id": "astnode100013841", "name": "sim" } }, @@ -27416,11 +27388,37 @@ "comment": "", "meta": { "range": [ - 115954, - 116015 + 117993, + 118054 ], "filename": "astronomy.js", - "lineno": 2574, + "lineno": 2606, + "columnno": 12, + "code": { + "id": "astnode100013854", + "name": "sim", + "type": "CallExpression", + "funcscope": "CalcPluto", + "value": "", + "paramnames": [] + } + }, + "undocumented": true, + "name": "sim", + "longname": "CalcPluto~sim", + "kind": "member", + "memberof": "CalcPluto", + "scope": "inner" + }, + { + "comment": "", + "meta": { + "range": [ + 118081, + 118161 + ], + "filename": "astronomy.js", + "lineno": 2608, "columnno": 12, "code": { "id": "astnode100013867", @@ -27442,40 +27440,14 @@ "comment": "", "meta": { "range": [ - 116042, - 116122 + 118171, + 118185 ], "filename": "astronomy.js", - "lineno": 2576, - "columnno": 12, - "code": { - "id": "astnode100013880", - "name": "sim", - "type": "CallExpression", - "funcscope": "CalcPluto", - "value": "", - "paramnames": [] - } - }, - "undocumented": true, - "name": "sim", - "longname": "CalcPluto~sim", - "kind": "member", - "memberof": "CalcPluto", - "scope": "inner" - }, - { - "comment": "", - "meta": { - "range": [ - 116132, - 116146 - ], - "filename": "astronomy.js", - "lineno": 2577, + "lineno": 2609, "columnno": 8, "code": { - "id": "astnode100013895", + "id": "astnode100013882", "name": "r", "type": "MemberExpression", "funcscope": "CalcPluto", @@ -27494,14 +27466,14 @@ "comment": "", "meta": { "range": [ - 116156, - 116171 + 118195, + 118210 ], "filename": "astronomy.js", - "lineno": 2578, + "lineno": 2610, "columnno": 8, "code": { - "id": "astnode100013903", + "id": "astnode100013890", "name": "bary", "type": "MemberExpression", "funcscope": "CalcPluto", @@ -27520,14 +27492,14 @@ "comment": "", "meta": { "range": [ - 116204, - 116273 + 118243, + 118312 ], "filename": "astronomy.js", - "lineno": 2581, + "lineno": 2613, "columnno": 14, "code": { - "id": "astnode100013910", + "id": "astnode100013897", "name": "left", "type": "CallExpression", "value": "" @@ -27545,14 +27517,14 @@ "comment": "", "meta": { "range": [ - 116289, - 116303 + 118328, + 118342 ], "filename": "astronomy.js", - "lineno": 2582, + "lineno": 2614, "columnno": 14, "code": { - "id": "astnode100013929", + "id": "astnode100013916", "name": "s1", "type": "MemberExpression", "value": "seg[undefined]" @@ -27570,14 +27542,14 @@ "comment": "", "meta": { "range": [ - 116319, - 116337 + 118358, + 118376 ], "filename": "astronomy.js", - "lineno": 2583, + "lineno": 2615, "columnno": 14, "code": { - "id": "astnode100013935", + "id": "astnode100013922", "name": "s2", "type": "MemberExpression", "value": "seg[undefined]" @@ -27595,14 +27567,14 @@ "comment": "", "meta": { "range": [ - 116413, - 116434 + 118452, + 118473 ], "filename": "astronomy.js", - "lineno": 2585, + "lineno": 2617, "columnno": 14, "code": { - "id": "astnode100013943", + "id": "astnode100013930", "name": "acc", "type": "CallExpression", "value": "" @@ -27620,14 +27592,14 @@ "comment": "", "meta": { "range": [ - 116545, - 116598 + 118584, + 118637 ], "filename": "astronomy.js", - "lineno": 2587, + "lineno": 2619, "columnno": 14, "code": { - "id": "astnode100013955", + "id": "astnode100013942", "name": "ra", "type": "CallExpression", "value": "" @@ -27645,14 +27617,14 @@ "comment": "", "meta": { "range": [ - 116709, - 116762 + 118748, + 118801 ], "filename": "astronomy.js", - "lineno": 2589, + "lineno": 2621, "columnno": 14, "code": { - "id": "astnode100013974", + "id": "astnode100013961", "name": "rb", "type": "CallExpression", "value": "" @@ -27670,14 +27642,14 @@ "comment": "", "meta": { "range": [ - 116847, - 116882 + 118886, + 118921 ], "filename": "astronomy.js", - "lineno": 2591, + "lineno": 2623, "columnno": 14, "code": { - "id": "astnode100013993", + "id": "astnode100013980", "name": "ramp", "type": "BinaryExpression", "value": "" @@ -27695,14 +27667,14 @@ "comment": "", "meta": { "range": [ - 116892, - 116930 + 118931, + 118969 ], "filename": "astronomy.js", - "lineno": 2592, + "lineno": 2624, "columnno": 8, "code": { - "id": "astnode100014005", + "id": "astnode100013992", "name": "r", "type": "CallExpression", "funcscope": "CalcPluto", @@ -27721,14 +27693,14 @@ "comment": "", "meta": { "range": [ - 116940, - 116974 + 118979, + 119013 ], "filename": "astronomy.js", - "lineno": 2593, + "lineno": 2625, "columnno": 8, "code": { - "id": "astnode100014023", + "id": "astnode100014010", "name": "bary", "type": "NewExpression", "funcscope": "CalcPluto", @@ -27747,14 +27719,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 {string} 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": [ - 117828, - 118669 + 119867, + 120708 ], "filename": "astronomy.js", - "lineno": 2617, + "lineno": 2649, "columnno": 0, "code": { - "id": "astnode100014044", + "id": "astnode100014031", "name": "HelioVector", "type": "FunctionDeclaration", "paramnames": [ @@ -27815,14 +27787,14 @@ "comment": "", "meta": { "range": [ - 117871, - 117892 + 119910, + 119931 ], "filename": "astronomy.js", - "lineno": 2618, + "lineno": 2650, "columnno": 8, "code": { - "id": "astnode100014050", + "id": "astnode100014037", "name": "time", "type": "CallExpression", "value": "" @@ -27840,14 +27812,14 @@ "comment": "", "meta": { "range": [ - 118146, - 118176 + 120185, + 120215 ], "filename": "astronomy.js", - "lineno": 2629, + "lineno": 2661, "columnno": 12, "code": { - "id": "astnode100014094", + "id": "astnode100014081", "name": "e", "type": "CallExpression", "value": "" @@ -27865,14 +27837,14 @@ "comment": "", "meta": { "range": [ - 118190, - 118207 + 120229, + 120246 ], "filename": "astronomy.js", - "lineno": 2630, + "lineno": 2662, "columnno": 12, "code": { - "id": "astnode100014103", + "id": "astnode100014090", "name": "m", "type": "CallExpression", "value": "" @@ -27890,14 +27862,14 @@ "comment": "", "meta": { "range": [ - 118321, - 118351 + 120360, + 120390 ], "filename": "astronomy.js", - "lineno": 2634, + "lineno": 2666, "columnno": 14, "code": { - "id": "astnode100014139", + "id": "astnode100014126", "name": "e", "type": "CallExpression", "value": "" @@ -27915,14 +27887,14 @@ "comment": "", "meta": { "range": [ - 118367, - 118384 + 120406, + 120423 ], "filename": "astronomy.js", - "lineno": 2635, + "lineno": 2667, "columnno": 14, "code": { - "id": "astnode100014148", + "id": "astnode100014135", "name": "m", "type": "CallExpression", "value": "" @@ -27940,14 +27912,14 @@ "comment": "", "meta": { "range": [ - 118400, - 118435 + 120439, + 120474 ], "filename": "astronomy.js", - "lineno": 2636, + "lineno": 2668, "columnno": 14, "code": { - "id": "astnode100014154", + "id": "astnode100014141", "name": "denom", "type": "BinaryExpression", "value": "" @@ -27965,14 +27937,14 @@ "comment": "", "meta": { "range": [ - 118670, - 118703 + 120709, + 120742 ], "filename": "astronomy.js", - "lineno": 2644, + "lineno": 2676, "columnno": 0, "code": { - "id": "astnode100014205", + "id": "astnode100014192", "name": "exports.HelioVector", "type": "Identifier", "value": "HelioVector", @@ -27989,14 +27961,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 {string} 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": [ - 119417, - 119645 + 121456, + 121684 ], "filename": "astronomy.js", - "lineno": 2665, + "lineno": 2697, "columnno": 0, "code": { - "id": "astnode100014211", + "id": "astnode100014198", "name": "HelioDistance", "type": "FunctionDeclaration", "paramnames": [ @@ -28055,14 +28027,14 @@ "comment": "", "meta": { "range": [ - 119464, - 119485 + 121503, + 121524 ], "filename": "astronomy.js", - "lineno": 2666, + "lineno": 2698, "columnno": 10, "code": { - "id": "astnode100014217", + "id": "astnode100014204", "name": "time", "type": "CallExpression", "value": "" @@ -28080,14 +28052,14 @@ "comment": "", "meta": { "range": [ - 119646, - 119683 + 121685, + 121722 ], "filename": "astronomy.js", - "lineno": 2672, + "lineno": 2704, "columnno": 0, "code": { - "id": "astnode100014249", + "id": "astnode100014236", "name": "exports.HelioDistance", "type": "Identifier", "value": "HelioDistance", @@ -28104,14 +28076,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 {string} 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": [ - 120941, - 122955 + 122980, + 124994 ], "filename": "astronomy.js", - "lineno": 2702, + "lineno": 2734, "columnno": 0, "code": { - "id": "astnode100014254", + "id": "astnode100014241", "name": "GeoVector", "type": "FunctionDeclaration", "paramnames": [ @@ -28186,14 +28158,14 @@ "comment": "", "meta": { "range": [ - 121027, - 121048 + 123066, + 123087 ], "filename": "astronomy.js", - "lineno": 2704, + "lineno": 2736, "columnno": 10, "code": { - "id": "astnode100014265", + "id": "astnode100014252", "name": "time", "type": "CallExpression", "value": "" @@ -28211,14 +28183,14 @@ "comment": "", "meta": { "range": [ - 121197, - 121209 + 123236, + 123248 ], "filename": "astronomy.js", - "lineno": 2711, + "lineno": 2743, "columnno": 8, "code": { - "id": "astnode100014292", + "id": "astnode100014279", "name": "earth", "type": "Literal", "value": null @@ -28236,14 +28208,14 @@ "comment": "", "meta": { "range": [ - 121219, - 121220 + 123258, + 123259 ], "filename": "astronomy.js", - "lineno": 2712, + "lineno": 2744, "columnno": 8, "code": { - "id": "astnode100014296", + "id": "astnode100014283", "name": "h" } }, @@ -28259,14 +28231,14 @@ "comment": "", "meta": { "range": [ - 121230, - 121233 + 123269, + 123272 ], "filename": "astronomy.js", - "lineno": 2713, + "lineno": 2745, "columnno": 8, "code": { - "id": "astnode100014299", + "id": "astnode100014286", "name": "geo" } }, @@ -28282,14 +28254,14 @@ "comment": "", "meta": { "range": [ - 121243, - 121249 + 123282, + 123288 ], "filename": "astronomy.js", - "lineno": 2714, + "lineno": 2746, "columnno": 8, "code": { - "id": "astnode100014302", + "id": "astnode100014289", "name": "dt", "type": "Literal", "value": 0 @@ -28307,14 +28279,14 @@ "comment": "", "meta": { "range": [ - 121259, - 121271 + 123298, + 123310 ], "filename": "astronomy.js", - "lineno": 2715, + "lineno": 2747, "columnno": 8, "code": { - "id": "astnode100014306", + "id": "astnode100014293", "name": "ltime", "type": "Identifier", "value": "time" @@ -28332,14 +28304,14 @@ "comment": "", "meta": { "range": [ - 121377, - 121385 + 123416, + 123424 ], "filename": "astronomy.js", - "lineno": 2717, + "lineno": 2749, "columnno": 13, "code": { - "id": "astnode100014311", + "id": "astnode100014298", "name": "iter", "type": "Literal", "value": 0 @@ -28357,14 +28329,14 @@ "comment": "", "meta": { "range": [ - 121416, - 121444 + 123455, + 123483 ], "filename": "astronomy.js", - "lineno": 2718, + "lineno": 2750, "columnno": 8, "code": { - "id": "astnode100014321", + "id": "astnode100014308", "name": "h", "type": "CallExpression", "funcscope": "GeoVector", @@ -28383,14 +28355,14 @@ "comment": "", "meta": { "range": [ - 122354, - 122389 + 124393, + 124428 ], "filename": "astronomy.js", - "lineno": 2733, + "lineno": 2765, "columnno": 12, "code": { - "id": "astnode100014331", + "id": "astnode100014318", "name": "earth", "type": "CallExpression", "funcscope": "GeoVector", @@ -28409,14 +28381,14 @@ "comment": "", "meta": { "range": [ - 122556, - 122590 + 124595, + 124629 ], "filename": "astronomy.js", - "lineno": 2738, + "lineno": 2770, "columnno": 16, "code": { - "id": "astnode100014345", + "id": "astnode100014332", "name": "earth", "type": "CallExpression", "funcscope": "GeoVector", @@ -28435,14 +28407,14 @@ "comment": "", "meta": { "range": [ - 122624, - 122691 + 124663, + 124730 ], "filename": "astronomy.js", - "lineno": 2741, + "lineno": 2773, "columnno": 8, "code": { - "id": "astnode100014354", + "id": "astnode100014341", "name": "geo", "type": "NewExpression", "funcscope": "GeoVector", @@ -28461,14 +28433,14 @@ "comment": "", "meta": { "range": [ - 122705, - 122751 + 124744, + 124790 ], "filename": "astronomy.js", - "lineno": 2742, + "lineno": 2774, "columnno": 12, "code": { - "id": "astnode100014381", + "id": "astnode100014368", "name": "ltime2", "type": "CallExpression", "value": "" @@ -28486,14 +28458,14 @@ "comment": "", "meta": { "range": [ - 122761, - 122796 + 124800, + 124835 ], "filename": "astronomy.js", - "lineno": 2743, + "lineno": 2775, "columnno": 8, "code": { - "id": "astnode100014395", + "id": "astnode100014382", "name": "dt", "type": "CallExpression", "funcscope": "GeoVector", @@ -28512,14 +28484,14 @@ "comment": "", "meta": { "range": [ - 122867, - 122881 + 124906, + 124920 ], "filename": "astronomy.js", - "lineno": 2747, + "lineno": 2779, "columnno": 8, "code": { - "id": "astnode100014416", + "id": "astnode100014403", "name": "ltime", "type": "Identifier", "funcscope": "GeoVector", @@ -28538,14 +28510,14 @@ "comment": "", "meta": { "range": [ - 122956, - 122985 + 124995, + 125024 ], "filename": "astronomy.js", - "lineno": 2751, + "lineno": 2783, "columnno": 0, "code": { - "id": "astnode100014425", + "id": "astnode100014412", "name": "exports.GeoVector", "type": "Identifier", "value": "GeoVector", @@ -28562,14 +28534,14 @@ "comment": "", "meta": { "range": [ - 122987, - 124014 + 125026, + 126053 ], "filename": "astronomy.js", - "lineno": 2752, + "lineno": 2784, "columnno": 0, "code": { - "id": "astnode100014430", + "id": "astnode100014417", "name": "QuadInterp", "type": "FunctionDeclaration", "paramnames": [ @@ -28604,14 +28576,14 @@ "comment": "", "meta": { "range": [ - 123037, - 123059 + 125076, + 125098 ], "filename": "astronomy.js", - "lineno": 2753, + "lineno": 2785, "columnno": 8, "code": { - "id": "astnode100014439", + "id": "astnode100014426", "name": "Q", "type": "BinaryExpression", "value": "" @@ -28629,14 +28601,14 @@ "comment": "", "meta": { "range": [ - 123069, - 123086 + 125108, + 125125 ], "filename": "astronomy.js", - "lineno": 2754, + "lineno": 2786, "columnno": 8, "code": { - "id": "astnode100014449", + "id": "astnode100014436", "name": "R", "type": "BinaryExpression", "value": "" @@ -28654,14 +28626,14 @@ "comment": "", "meta": { "range": [ - 123096, - 123102 + 125135, + 125141 ], "filename": "astronomy.js", - "lineno": 2755, + "lineno": 2787, "columnno": 8, "code": { - "id": "astnode100014457", + "id": "astnode100014444", "name": "S", "type": "Identifier", "value": "fm" @@ -28679,14 +28651,14 @@ "comment": "", "meta": { "range": [ - 123112, - 123113 + 125151, + 125152 ], "filename": "astronomy.js", - "lineno": 2756, + "lineno": 2788, "columnno": 8, "code": { - "id": "astnode100014461", + "id": "astnode100014448", "name": "x" } }, @@ -28702,14 +28674,14 @@ "comment": "", "meta": { "range": [ - 123306, - 123316 + 125345, + 125355 ], "filename": "astronomy.js", - "lineno": 2763, + "lineno": 2795, "columnno": 8, "code": { - "id": "astnode100014476", + "id": "astnode100014463", "name": "x", "type": "BinaryExpression", "funcscope": "QuadInterp", @@ -28728,14 +28700,14 @@ "comment": "", "meta": { "range": [ - 123474, - 123495 + 125513, + 125534 ], "filename": "astronomy.js", - "lineno": 2769, + "lineno": 2801, "columnno": 12, "code": { - "id": "astnode100014496", + "id": "astnode100014483", "name": "u", "type": "BinaryExpression", "value": "" @@ -28753,14 +28725,14 @@ "comment": "", "meta": { "range": [ - 123554, - 123571 + 125593, + 125610 ], "filename": "astronomy.js", - "lineno": 2772, + "lineno": 2804, "columnno": 12, "code": { - "id": "astnode100014514", + "id": "astnode100014501", "name": "ru", "type": "CallExpression", "value": "" @@ -28778,14 +28750,14 @@ "comment": "", "meta": { "range": [ - 123585, - 123609 + 125624, + 125648 ], "filename": "astronomy.js", - "lineno": 2773, + "lineno": 2805, "columnno": 12, "code": { - "id": "astnode100014522", + "id": "astnode100014509", "name": "x1", "type": "BinaryExpression", "value": "" @@ -28803,14 +28775,14 @@ "comment": "", "meta": { "range": [ - 123623, - 123647 + 125662, + 125686 ], "filename": "astronomy.js", - "lineno": 2774, + "lineno": 2806, "columnno": 12, "code": { - "id": "astnode100014533", + "id": "astnode100014520", "name": "x2", "type": "BinaryExpression", "value": "" @@ -28828,14 +28800,14 @@ "comment": "", "meta": { "range": [ - 123764, - 123770 + 125803, + 125809 ], "filename": "astronomy.js", - "lineno": 2778, + "lineno": 2810, "columnno": 12, "code": { - "id": "astnode100014567", + "id": "astnode100014554", "name": "x", "type": "Identifier", "funcscope": "QuadInterp", @@ -28854,14 +28826,14 @@ "comment": "", "meta": { "range": [ - 123835, - 123841 + 125874, + 125880 ], "filename": "astronomy.js", - "lineno": 2781, + "lineno": 2813, "columnno": 12, "code": { - "id": "astnode100014582", + "id": "astnode100014569", "name": "x", "type": "Identifier", "funcscope": "QuadInterp", @@ -28880,14 +28852,14 @@ "comment": "", "meta": { "range": [ - 123917, - 123932 + 125956, + 125971 ], "filename": "astronomy.js", - "lineno": 2787, + "lineno": 2819, "columnno": 8, "code": { - "id": "astnode100014589", + "id": "astnode100014576", "name": "t", "type": "BinaryExpression", "value": "" @@ -28905,14 +28877,14 @@ "comment": "", "meta": { "range": [ - 123942, - 123970 + 125981, + 126009 ], "filename": "astronomy.js", - "lineno": 2788, + "lineno": 2820, "columnno": 8, "code": { - "id": "astnode100014597", + "id": "astnode100014584", "name": "df_dt", "type": "BinaryExpression", "value": "" @@ -28930,14 +28902,14 @@ "comment": "", "meta": { "range": [ - 123985, - 123989 + 126024, + 126028 ], "filename": "astronomy.js", - "lineno": 2789, + "lineno": 2821, "columnno": 13, "code": { - "id": "astnode100014610", + "id": "astnode100014597", "name": "x", "type": "Identifier", "value": "x" @@ -28953,14 +28925,14 @@ "comment": "", "meta": { "range": [ - 123991, - 123995 + 126030, + 126034 ], "filename": "astronomy.js", - "lineno": 2789, + "lineno": 2821, "columnno": 19, "code": { - "id": "astnode100014612", + "id": "astnode100014599", "name": "t", "type": "Identifier", "value": "t" @@ -28976,14 +28948,14 @@ "comment": "", "meta": { "range": [ - 123997, - 124009 + 126036, + 126048 ], "filename": "astronomy.js", - "lineno": 2789, + "lineno": 2821, "columnno": 25, "code": { - "id": "astnode100014614", + "id": "astnode100014601", "name": "df_dt", "type": "Identifier", "value": "df_dt" @@ -28999,7 +28971,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": 2791, + "lineno": 2823, "columnno": 0, "code": {} }, @@ -29066,14 +29038,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": [ - 126604, - 129596 + 128643, + 131635 ], "filename": "astronomy.js", - "lineno": 2848, + "lineno": 2880, "columnno": 0, "code": { - "id": "astnode100014616", + "id": "astnode100014603", "name": "Search", "type": "FunctionDeclaration", "paramnames": [ @@ -29173,14 +29145,14 @@ "comment": "", "meta": { "range": [ - 126652, - 126735 + 128691, + 128774 ], "filename": "astronomy.js", - "lineno": 2849, + "lineno": 2881, "columnno": 10, "code": { - "id": "astnode100014624", + "id": "astnode100014611", "name": "dt_tolerance_seconds", "type": "CallExpression", "value": "" @@ -29198,14 +29170,14 @@ "comment": "", "meta": { "range": [ - 126747, - 126805 + 128786, + 128844 ], "filename": "astronomy.js", - "lineno": 2850, + "lineno": 2882, "columnno": 10, "code": { - "id": "astnode100014636", + "id": "astnode100014623", "name": "dt_days", "type": "CallExpression", "value": "" @@ -29223,14 +29195,14 @@ "comment": "", "meta": { "range": [ - 126815, - 126857 + 128854, + 128896 ], "filename": "astronomy.js", - "lineno": 2851, + "lineno": 2883, "columnno": 8, "code": { - "id": "astnode100014646", + "id": "astnode100014633", "name": "f1", "type": "LogicalExpression", "value": "" @@ -29248,14 +29220,14 @@ "comment": "", "meta": { "range": [ - 126867, - 126909 + 128906, + 128948 ], "filename": "astronomy.js", - "lineno": 2852, + "lineno": 2884, "columnno": 8, "code": { - "id": "astnode100014658", + "id": "astnode100014645", "name": "f2", "type": "LogicalExpression", "value": "" @@ -29273,14 +29245,14 @@ "comment": "", "meta": { "range": [ - 126919, - 126929 + 128958, + 128968 ], "filename": "astronomy.js", - "lineno": 2853, + "lineno": 2885, "columnno": 8, "code": { - "id": "astnode100014670", + "id": "astnode100014657", "name": "fmid", "type": "Identifier", "value": "NaN" @@ -29298,14 +29270,14 @@ "comment": "", "meta": { "range": [ - 126939, - 126947 + 128978, + 128986 ], "filename": "astronomy.js", - "lineno": 2854, + "lineno": 2886, "columnno": 8, "code": { - "id": "astnode100014674", + "id": "astnode100014661", "name": "iter", "type": "Literal", "value": 0 @@ -29323,14 +29295,14 @@ "comment": "", "meta": { "range": [ - 126957, - 127007 + 128996, + 129046 ], "filename": "astronomy.js", - "lineno": 2855, + "lineno": 2887, "columnno": 8, "code": { - "id": "astnode100014678", + "id": "astnode100014665", "name": "iter_limit", "type": "LogicalExpression", "value": "" @@ -29348,14 +29320,14 @@ "comment": "", "meta": { "range": [ - 127017, - 127033 + 129056, + 129072 ], "filename": "astronomy.js", - "lineno": 2856, + "lineno": 2888, "columnno": 8, "code": { - "id": "astnode100014688", + "id": "astnode100014675", "name": "calc_fmid", "type": "Literal", "value": true @@ -29373,14 +29345,14 @@ "comment": "", "meta": { "range": [ - 127152, - 127187 + 129191, + 129226 ], "filename": "astronomy.js", - "lineno": 2860, + "lineno": 2892, "columnno": 12, "code": { - "id": "astnode100014703", + "id": "astnode100014690", "name": "tmid", "type": "CallExpression", "value": "" @@ -29398,14 +29370,14 @@ "comment": "", "meta": { "range": [ - 127201, - 127221 + 129240, + 129260 ], "filename": "astronomy.js", - "lineno": 2861, + "lineno": 2893, "columnno": 12, "code": { - "id": "astnode100014711", + "id": "astnode100014698", "name": "dt", "type": "BinaryExpression", "value": "" @@ -29423,14 +29395,14 @@ "comment": "", "meta": { "range": [ - 127399, - 127413 + 129438, + 129452 ], "filename": "astronomy.js", - "lineno": 2867, + "lineno": 2899, "columnno": 12, "code": { - "id": "astnode100014734", + "id": "astnode100014721", "name": "fmid", "type": "CallExpression", "funcscope": "Search", @@ -29449,14 +29421,14 @@ "comment": "", "meta": { "range": [ - 127440, - 127456 + 129479, + 129495 ], "filename": "astronomy.js", - "lineno": 2869, + "lineno": 2901, "columnno": 12, "code": { - "id": "astnode100014740", + "id": "astnode100014727", "name": "calc_fmid", "type": "Literal", "funcscope": "Search", @@ -29475,14 +29447,14 @@ "comment": "", "meta": { "range": [ - 127700, - 127754 + 129739, + 129793 ], "filename": "astronomy.js", - "lineno": 2873, + "lineno": 2905, "columnno": 12, "code": { - "id": "astnode100014744", + "id": "astnode100014731", "name": "q", "type": "CallExpression", "value": "" @@ -29500,14 +29472,14 @@ "comment": "", "meta": { "range": [ - 127906, - 127924 + 129945, + 129963 ], "filename": "astronomy.js", - "lineno": 2877, + "lineno": 2909, "columnno": 16, "code": { - "id": "astnode100014765", + "id": "astnode100014752", "name": "tq", "type": "CallExpression", "value": "" @@ -29525,14 +29497,14 @@ "comment": "", "meta": { "range": [ - 127942, - 127952 + 129981, + 129991 ], "filename": "astronomy.js", - "lineno": 2878, + "lineno": 2910, "columnno": 16, "code": { - "id": "astnode100014773", + "id": "astnode100014760", "name": "fq", "type": "CallExpression", "value": "" @@ -29550,14 +29522,14 @@ "comment": "", "meta": { "range": [ - 128291, - 128330 + 130330, + 130369 ], "filename": "astronomy.js", - "lineno": 2885, + "lineno": 2917, "columnno": 20, "code": { - "id": "astnode100014801", + "id": "astnode100014788", "name": "dt_guess", "type": "BinaryExpression", "value": "" @@ -29575,14 +29547,14 @@ "comment": "", "meta": { "range": [ - 128398, - 128427 + 130437, + 130466 ], "filename": "astronomy.js", - "lineno": 2887, + "lineno": 2919, "columnno": 24, "code": { - "id": "astnode100014822", + "id": "astnode100014809", "name": "tleft", "type": "CallExpression", "value": "" @@ -29600,14 +29572,14 @@ "comment": "", "meta": { "range": [ - 128453, - 128483 + 130492, + 130522 ], "filename": "astronomy.js", - "lineno": 2888, + "lineno": 2920, "columnno": 24, "code": { - "id": "astnode100014831", + "id": "astnode100014818", "name": "tright", "type": "CallExpression", "value": "" @@ -29625,14 +29597,14 @@ "comment": "", "meta": { "range": [ - 128665, - 128681 + 130704, + 130720 ], "filename": "astronomy.js", - "lineno": 2891, + "lineno": 2923, "columnno": 32, "code": { - "id": "astnode100014878", + "id": "astnode100014865", "name": "fleft", "type": "CallExpression", "value": "" @@ -29650,14 +29622,14 @@ "comment": "", "meta": { "range": [ - 128715, - 128733 + 130754, + 130772 ], "filename": "astronomy.js", - "lineno": 2892, + "lineno": 2924, "columnno": 32, "code": { - "id": "astnode100014884", + "id": "astnode100014871", "name": "fright", "type": "CallExpression", "value": "" @@ -29675,14 +29647,14 @@ "comment": "", "meta": { "range": [ - 128827, - 128837 + 130866, + 130876 ], "filename": "astronomy.js", - "lineno": 2894, + "lineno": 2926, "columnno": 32, "code": { - "id": "astnode100014899", + "id": "astnode100014886", "name": "f1", "type": "Identifier", "funcscope": "Search", @@ -29701,14 +29673,14 @@ "comment": "", "meta": { "range": [ - 128871, - 128882 + 130910, + 130921 ], "filename": "astronomy.js", - "lineno": 2895, + "lineno": 2927, "columnno": 32, "code": { - "id": "astnode100014903", + "id": "astnode100014890", "name": "f2", "type": "Identifier", "funcscope": "Search", @@ -29727,14 +29699,14 @@ "comment": "", "meta": { "range": [ - 128916, - 128926 + 130955, + 130965 ], "filename": "astronomy.js", - "lineno": 2896, + "lineno": 2928, "columnno": 32, "code": { - "id": "astnode100014907", + "id": "astnode100014894", "name": "t1", "type": "Identifier", "funcscope": "Search", @@ -29753,14 +29725,14 @@ "comment": "", "meta": { "range": [ - 128960, - 128971 + 130999, + 131010 ], "filename": "astronomy.js", - "lineno": 2897, + "lineno": 2929, "columnno": 32, "code": { - "id": "astnode100014911", + "id": "astnode100014898", "name": "t2", "type": "Identifier", "funcscope": "Search", @@ -29779,14 +29751,14 @@ "comment": "", "meta": { "range": [ - 129005, - 129014 + 131044, + 131053 ], "filename": "astronomy.js", - "lineno": 2898, + "lineno": 2930, "columnno": 32, "code": { - "id": "astnode100014915", + "id": "astnode100014902", "name": "fmid", "type": "Identifier", "funcscope": "Search", @@ -29805,14 +29777,14 @@ "comment": "", "meta": { "range": [ - 129048, - 129065 + 131087, + 131104 ], "filename": "astronomy.js", - "lineno": 2899, + "lineno": 2931, "columnno": 32, "code": { - "id": "astnode100014919", + "id": "astnode100014906", "name": "calc_fmid", "type": "Literal", "funcscope": "Search", @@ -29831,14 +29803,14 @@ "comment": "", "meta": { "range": [ - 129276, - 129285 + 131315, + 131324 ], "filename": "astronomy.js", - "lineno": 2908, + "lineno": 2940, "columnno": 12, "code": { - "id": "astnode100014933", + "id": "astnode100014920", "name": "t2", "type": "Identifier", "funcscope": "Search", @@ -29857,14 +29829,14 @@ "comment": "", "meta": { "range": [ - 129299, - 129308 + 131338, + 131347 ], "filename": "astronomy.js", - "lineno": 2909, + "lineno": 2941, "columnno": 12, "code": { - "id": "astnode100014937", + "id": "astnode100014924", "name": "f2", "type": "Identifier", "funcscope": "Search", @@ -29883,14 +29855,14 @@ "comment": "", "meta": { "range": [ - 129389, - 129398 + 131428, + 131437 ], "filename": "astronomy.js", - "lineno": 2913, + "lineno": 2945, "columnno": 12, "code": { - "id": "astnode100014951", + "id": "astnode100014938", "name": "t1", "type": "Identifier", "funcscope": "Search", @@ -29909,14 +29881,14 @@ "comment": "", "meta": { "range": [ - 129412, - 129421 + 131451, + 131460 ], "filename": "astronomy.js", - "lineno": 2914, + "lineno": 2946, "columnno": 12, "code": { - "id": "astnode100014955", + "id": "astnode100014942", "name": "f1", "type": "Identifier", "funcscope": "Search", @@ -29935,14 +29907,14 @@ "comment": "", "meta": { "range": [ - 129597, - 129620 + 131636, + 131659 ], "filename": "astronomy.js", - "lineno": 2922, + "lineno": 2954, "columnno": 0, "code": { - "id": "astnode100014962", + "id": "astnode100014949", "name": "exports.Search", "type": "Identifier", "value": "Search", @@ -29959,14 +29931,14 @@ "comment": "", "meta": { "range": [ - 129622, - 129796 + 131661, + 131835 ], "filename": "astronomy.js", - "lineno": 2923, + "lineno": 2955, "columnno": 0, "code": { - "id": "astnode100014967", + "id": "astnode100014954", "name": "LongitudeOffset", "type": "FunctionDeclaration", "paramnames": [ @@ -29988,14 +29960,14 @@ "comment": "", "meta": { "range": [ - 129663, - 129676 + 131702, + 131715 ], "filename": "astronomy.js", - "lineno": 2924, + "lineno": 2956, "columnno": 8, "code": { - "id": "astnode100014972", + "id": "astnode100014959", "name": "offset", "type": "Identifier", "value": "diff" @@ -30013,14 +29985,14 @@ "comment": "", "meta": { "range": [ - 129713, - 129726 + 131752, + 131765 ], "filename": "astronomy.js", - "lineno": 2926, + "lineno": 2958, "columnno": 8, "code": { - "id": "astnode100014981", + "id": "astnode100014968", "name": "offset", "type": "Literal", "funcscope": "LongitudeOffset", @@ -30039,14 +30011,14 @@ "comment": "", "meta": { "range": [ - 129761, - 129774 + 131800, + 131813 ], "filename": "astronomy.js", - "lineno": 2928, + "lineno": 2960, "columnno": 8, "code": { - "id": "astnode100014989", + "id": "astnode100014976", "name": "offset", "type": "Literal", "funcscope": "LongitudeOffset", @@ -30065,14 +30037,14 @@ "comment": "", "meta": { "range": [ - 129797, - 129932 + 131836, + 131971 ], "filename": "astronomy.js", - "lineno": 2931, + "lineno": 2963, "columnno": 0, "code": { - "id": "astnode100014994", + "id": "astnode100014981", "name": "NormalizeLongitude", "type": "FunctionDeclaration", "paramnames": [ @@ -30094,14 +30066,14 @@ "comment": "", "meta": { "range": [ - 129860, - 129870 + 131899, + 131909 ], "filename": "astronomy.js", - "lineno": 2933, + "lineno": 2965, "columnno": 8, "code": { - "id": "astnode100015003", + "id": "astnode100014990", "name": "lon", "type": "Literal", "funcscope": "NormalizeLongitude", @@ -30120,14 +30092,14 @@ "comment": "", "meta": { "range": [ - 129903, - 129913 + 131942, + 131952 ], "filename": "astronomy.js", - "lineno": 2935, + "lineno": 2967, "columnno": 8, "code": { - "id": "astnode100015011", + "id": "astnode100014998", "name": "lon", "type": "Literal", "funcscope": "NormalizeLongitude", @@ -30146,14 +30118,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": [ - 132325, - 132679 + 134364, + 134718 ], "filename": "astronomy.js", - "lineno": 2984, + "lineno": 3016, "columnno": 0, "code": { - "id": "astnode100015016", + "id": "astnode100015003", "name": "SearchSunLongitude", "type": "FunctionDeclaration", "paramnames": [ @@ -30225,14 +30197,14 @@ "comment": "", "meta": { "range": [ - 132392, - 132510 + 134431, + 134549 ], "filename": "astronomy.js", - "lineno": 2985, + "lineno": 3017, "columnno": 4, "code": { - "id": "astnode100015022", + "id": "astnode100015009", "name": "sun_offset", "type": "FunctionDeclaration", "paramnames": [ @@ -30255,14 +30227,14 @@ "comment": "", "meta": { "range": [ - 132429, - 132449 + 134468, + 134488 ], "filename": "astronomy.js", - "lineno": 2986, + "lineno": 3018, "columnno": 12, "code": { - "id": "astnode100015027", + "id": "astnode100015014", "name": "pos", "type": "CallExpression", "value": "" @@ -30280,14 +30252,14 @@ "comment": "", "meta": { "range": [ - 132577, - 132601 + 134616, + 134640 ], "filename": "astronomy.js", - "lineno": 2991, + "lineno": 3023, "columnno": 8, "code": { - "id": "astnode100015049", + "id": "astnode100015036", "name": "t1", "type": "CallExpression", "value": "" @@ -30305,14 +30277,14 @@ "comment": "", "meta": { "range": [ - 132611, - 132637 + 134650, + 134676 ], "filename": "astronomy.js", - "lineno": 2992, + "lineno": 3024, "columnno": 8, "code": { - "id": "astnode100015055", + "id": "astnode100015042", "name": "t2", "type": "CallExpression", "value": "" @@ -30330,14 +30302,14 @@ "comment": "", "meta": { "range": [ - 132680, - 132727 + 134719, + 134766 ], "filename": "astronomy.js", - "lineno": 2995, + "lineno": 3027, "columnno": 0, "code": { - "id": "astnode100015069", + "id": "astnode100015056", "name": "exports.SearchSunLongitude", "type": "Identifier", "value": "SearchSunLongitude", @@ -30354,14 +30326,14 @@ "comment": "/**\n * @brief Calculates the longitude separation between the Sun and the given body.\n *\n * Calculates the ecliptic longitude difference\n * between the given body and the Sun as seen from\n * the Earth at a given moment in time.\n * The returned value ranges [0, 360) degrees.\n * By definition, the Earth and the Sun are both in the plane of the ecliptic.\n * Ignores the height of the `body` above or below the ecliptic plane;\n * the resulting angle is measured around the ecliptic plane for the \"shadow\"\n * of the body onto that plane.\n *\n * Use {@link AngleFromSun} instead, if you wish to calculate the full angle\n * between the Sun and a body, instead of just their longitude difference.\n *\n * @param {string} body\n * The name of a supported celestial body other than the Earth.\n *\n * @param {FlexibleDateTime} date\n * The time at which the relative longitude is to be found.\n *\n * @returns {number}\n * An angle in degrees in the range [0, 360).\n * Values less than 180 indicate that the body is to the east\n * of the Sun as seen from the Earth; that is, the body sets after\n * the Sun does and is visible in the evening sky.\n * Values greater than 180 indicate that the body is to the west of\n * the Sun and is visible in the morning sky.\n */", "meta": { "range": [ - 134015, - 134403 + 136054, + 136442 ], "filename": "astronomy.js", - "lineno": 3025, + "lineno": 3057, "columnno": 0, "code": { - "id": "astnode100015074", + "id": "astnode100015061", "name": "LongitudeFromSun", "type": "FunctionDeclaration", "paramnames": [ @@ -30424,14 +30396,14 @@ "comment": "", "meta": { "range": [ - 134165, - 134183 + 136204, + 136222 ], "filename": "astronomy.js", - "lineno": 3028, + "lineno": 3060, "columnno": 10, "code": { - "id": "astnode100015086", + "id": "astnode100015073", "name": "t", "type": "CallExpression", "value": "" @@ -30449,14 +30421,14 @@ "comment": "", "meta": { "range": [ - 134193, - 134223 + 136232, + 136262 ], "filename": "astronomy.js", - "lineno": 3029, + "lineno": 3061, "columnno": 8, "code": { - "id": "astnode100015092", + "id": "astnode100015079", "name": "gb", "type": "CallExpression", "value": "" @@ -30474,14 +30446,14 @@ "comment": "", "meta": { "range": [ - 134235, - 134266 + 136274, + 136305 ], "filename": "astronomy.js", - "lineno": 3030, + "lineno": 3062, "columnno": 10, "code": { - "id": "astnode100015100", + "id": "astnode100015087", "name": "eb", "type": "CallExpression", "value": "" @@ -30499,14 +30471,14 @@ "comment": "", "meta": { "range": [ - 134276, - 134307 + 136315, + 136346 ], "filename": "astronomy.js", - "lineno": 3031, + "lineno": 3063, "columnno": 8, "code": { - "id": "astnode100015114", + "id": "astnode100015101", "name": "gs", "type": "CallExpression", "value": "" @@ -30524,14 +30496,14 @@ "comment": "", "meta": { "range": [ - 134319, - 134350 + 136358, + 136389 ], "filename": "astronomy.js", - "lineno": 3032, + "lineno": 3064, "columnno": 10, "code": { - "id": "astnode100015122", + "id": "astnode100015109", "name": "es", "type": "CallExpression", "value": "" @@ -30549,14 +30521,14 @@ "comment": "", "meta": { "range": [ - 134404, - 134447 + 136443, + 136486 ], "filename": "astronomy.js", - "lineno": 3035, + "lineno": 3067, "columnno": 0, "code": { - "id": "astnode100015146", + "id": "astnode100015133", "name": "exports.LongitudeFromSun", "type": "Identifier", "value": "LongitudeFromSun", @@ -30573,14 +30545,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 LongitudeFromSun}, 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 {string} 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": [ - 135126, - 135400 + 137165, + 137439 ], "filename": "astronomy.js", - "lineno": 3055, + "lineno": 3087, "columnno": 0, "code": { - "id": "astnode100015151", + "id": "astnode100015138", "name": "AngleFromSun", "type": "FunctionDeclaration", "paramnames": [ @@ -30641,14 +30613,14 @@ "comment": "", "meta": { "range": [ - 135266, - 135299 + 137305, + 137338 ], "filename": "astronomy.js", - "lineno": 3058, + "lineno": 3090, "columnno": 8, "code": { - "id": "astnode100015163", + "id": "astnode100015150", "name": "sv", "type": "CallExpression", "value": "" @@ -30666,14 +30638,14 @@ "comment": "", "meta": { "range": [ - 135309, - 135341 + 137348, + 137380 ], "filename": "astronomy.js", - "lineno": 3059, + "lineno": 3091, "columnno": 8, "code": { - "id": "astnode100015171", + "id": "astnode100015158", "name": "bv", "type": "CallExpression", "value": "" @@ -30691,14 +30663,14 @@ "comment": "", "meta": { "range": [ - 135351, - 135379 + 137390, + 137418 ], "filename": "astronomy.js", - "lineno": 3060, + "lineno": 3092, "columnno": 8, "code": { - "id": "astnode100015179", + "id": "astnode100015166", "name": "angle", "type": "CallExpression", "value": "" @@ -30716,14 +30688,14 @@ "comment": "", "meta": { "range": [ - 135401, - 135436 + 137440, + 137475 ], "filename": "astronomy.js", - "lineno": 3063, + "lineno": 3095, "columnno": 0, "code": { - "id": "astnode100015188", + "id": "astnode100015175", "name": "exports.AngleFromSun", "type": "Identifier", "value": "AngleFromSun", @@ -30740,14 +30712,14 @@ "comment": "/**\n * @brief Calculates heliocentric ecliptic longitude based on the J2000 equinox.\n *\n * @param {string} 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": [ - 136198, - 136438 + 138237, + 138477 ], "filename": "astronomy.js", - "lineno": 3081, + "lineno": 3113, "columnno": 0, "code": { - "id": "astnode100015193", + "id": "astnode100015180", "name": "EclipticLongitude", "type": "FunctionDeclaration", "paramnames": [ @@ -30807,14 +30779,14 @@ "comment": "", "meta": { "range": [ - 136340, - 136368 + 138379, + 138407 ], "filename": "astronomy.js", - "lineno": 3084, + "lineno": 3116, "columnno": 8, "code": { - "id": "astnode100015205", + "id": "astnode100015192", "name": "hv", "type": "CallExpression", "value": "" @@ -30832,14 +30804,14 @@ "comment": "", "meta": { "range": [ - 136378, - 136412 + 138417, + 138451 ], "filename": "astronomy.js", - "lineno": 3085, + "lineno": 3117, "columnno": 8, "code": { - "id": "astnode100015212", + "id": "astnode100015199", "name": "eclip", "type": "CallExpression", "value": "" @@ -30857,14 +30829,14 @@ "comment": "", "meta": { "range": [ - 136439, - 136484 + 138478, + 138523 ], "filename": "astronomy.js", - "lineno": 3088, + "lineno": 3120, "columnno": 0, "code": { - "id": "astnode100015230", + "id": "astnode100015217", "name": "exports.EclipticLongitude", "type": "Identifier", "value": "EclipticLongitude", @@ -30881,14 +30853,14 @@ "comment": "", "meta": { "range": [ - 136486, - 137759 + 138525, + 139798 ], "filename": "astronomy.js", - "lineno": 3089, + "lineno": 3121, "columnno": 0, "code": { - "id": "astnode100015235", + "id": "astnode100015222", "name": "VisualMagnitude", "type": "FunctionDeclaration", "paramnames": [ @@ -30918,14 +30890,14 @@ "comment": "", "meta": { "range": [ - 136642, - 136644 + 138681, + 138683 ], "filename": "astronomy.js", - "lineno": 3091, + "lineno": 3123, "columnno": 8, "code": { - "id": "astnode100015243", + "id": "astnode100015230", "name": "c0" } }, @@ -30941,14 +30913,14 @@ "comment": "", "meta": { "range": [ - 136646, - 136652 + 138685, + 138691 ], "filename": "astronomy.js", - "lineno": 3091, + "lineno": 3123, "columnno": 12, "code": { - "id": "astnode100015245", + "id": "astnode100015232", "name": "c1", "type": "Literal", "value": 0 @@ -30966,14 +30938,14 @@ "comment": "", "meta": { "range": [ - 136654, - 136660 + 138693, + 138699 ], "filename": "astronomy.js", - "lineno": 3091, + "lineno": 3123, "columnno": 20, "code": { - "id": "astnode100015248", + "id": "astnode100015235", "name": "c2", "type": "Literal", "value": 0 @@ -30991,14 +30963,14 @@ "comment": "", "meta": { "range": [ - 136662, - 136668 + 138701, + 138707 ], "filename": "astronomy.js", - "lineno": 3091, + "lineno": 3123, "columnno": 28, "code": { - "id": "astnode100015251", + "id": "astnode100015238", "name": "c3", "type": "Literal", "value": 0 @@ -31016,14 +30988,14 @@ "comment": "", "meta": { "range": [ - 136726, - 136736 + 138765, + 138775 ], "filename": "astronomy.js", - "lineno": 3094, + "lineno": 3126, "columnno": 12, "code": { - "id": "astnode100015259", + "id": "astnode100015246", "name": "c0", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -31042,14 +31014,14 @@ "comment": "", "meta": { "range": [ - 136750, - 136760 + 138789, + 138799 ], "filename": "astronomy.js", - "lineno": 3095, + "lineno": 3127, "columnno": 12, "code": { - "id": "astnode100015264", + "id": "astnode100015251", "name": "c1", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -31068,14 +31040,14 @@ "comment": "", "meta": { "range": [ - 136774, - 136784 + 138813, + 138823 ], "filename": "astronomy.js", - "lineno": 3096, + "lineno": 3128, "columnno": 12, "code": { - "id": "astnode100015269", + "id": "astnode100015256", "name": "c2", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -31094,14 +31066,14 @@ "comment": "", "meta": { "range": [ - 136798, - 136808 + 138837, + 138847 ], "filename": "astronomy.js", - "lineno": 3097, + "lineno": 3129, "columnno": 12, "code": { - "id": "astnode100015274", + "id": "astnode100015261", "name": "c3", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -31120,14 +31092,14 @@ "comment": "", "meta": { "range": [ - 136900, - 136910 + 138939, + 138949 ], "filename": "astronomy.js", - "lineno": 3101, + "lineno": 3133, "columnno": 16, "code": { - "id": "astnode100015287", + "id": "astnode100015274", "name": "c0", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -31146,14 +31118,14 @@ "comment": "", "meta": { "range": [ - 136928, - 136938 + 138967, + 138977 ], "filename": "astronomy.js", - "lineno": 3102, + "lineno": 3134, "columnno": 16, "code": { - "id": "astnode100015292", + "id": "astnode100015279", "name": "c1", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -31172,14 +31144,14 @@ "comment": "", "meta": { "range": [ - 136956, - 136966 + 138995, + 139005 ], "filename": "astronomy.js", - "lineno": 3103, + "lineno": 3135, "columnno": 16, "code": { - "id": "astnode100015297", + "id": "astnode100015284", "name": "c2", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -31198,14 +31170,14 @@ "comment": "", "meta": { "range": [ - 136984, - 136994 + 139023, + 139033 ], "filename": "astronomy.js", - "lineno": 3104, + "lineno": 3136, "columnno": 16, "code": { - "id": "astnode100015302", + "id": "astnode100015289", "name": "c3", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -31224,14 +31196,14 @@ "comment": "", "meta": { "range": [ - 137045, - 137054 + 139084, + 139093 ], "filename": "astronomy.js", - "lineno": 3107, + "lineno": 3139, "columnno": 16, "code": { - "id": "astnode100015308", + "id": "astnode100015295", "name": "c0", "type": "Literal", "funcscope": "VisualMagnitude", @@ -31250,14 +31222,14 @@ "comment": "", "meta": { "range": [ - 137072, - 137082 + 139111, + 139121 ], "filename": "astronomy.js", - "lineno": 3108, + "lineno": 3140, "columnno": 16, "code": { - "id": "astnode100015312", + "id": "astnode100015299", "name": "c1", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -31276,14 +31248,14 @@ "comment": "", "meta": { "range": [ - 137150, - 137160 + 139189, + 139199 ], "filename": "astronomy.js", - "lineno": 3112, + "lineno": 3144, "columnno": 12, "code": { - "id": "astnode100015320", + "id": "astnode100015307", "name": "c0", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -31302,14 +31274,14 @@ "comment": "", "meta": { "range": [ - 137174, - 137184 + 139213, + 139223 ], "filename": "astronomy.js", - "lineno": 3113, + "lineno": 3145, "columnno": 12, "code": { - "id": "astnode100015325", + "id": "astnode100015312", "name": "c1", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -31328,14 +31300,14 @@ "comment": "", "meta": { "range": [ - 137241, - 137251 + 139280, + 139290 ], "filename": "astronomy.js", - "lineno": 3116, + "lineno": 3148, "columnno": 12, "code": { - "id": "astnode100015333", + "id": "astnode100015320", "name": "c0", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -31354,14 +31326,14 @@ "comment": "", "meta": { "range": [ - 137265, - 137275 + 139304, + 139314 ], "filename": "astronomy.js", - "lineno": 3117, + "lineno": 3149, "columnno": 12, "code": { - "id": "astnode100015338", + "id": "astnode100015325", "name": "c1", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -31380,14 +31352,14 @@ "comment": "", "meta": { "range": [ - 137331, - 137341 + 139370, + 139380 ], "filename": "astronomy.js", - "lineno": 3120, + "lineno": 3152, "columnno": 12, "code": { - "id": "astnode100015346", + "id": "astnode100015333", "name": "c0", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -31406,14 +31378,14 @@ "comment": "", "meta": { "range": [ - 137355, - 137365 + 139394, + 139404 ], "filename": "astronomy.js", - "lineno": 3121, + "lineno": 3153, "columnno": 12, "code": { - "id": "astnode100015351", + "id": "astnode100015338", "name": "c1", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -31432,14 +31404,14 @@ "comment": "", "meta": { "range": [ - 137422, - 137432 + 139461, + 139471 ], "filename": "astronomy.js", - "lineno": 3124, + "lineno": 3156, "columnno": 12, "code": { - "id": "astnode100015359", + "id": "astnode100015346", "name": "c0", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -31458,14 +31430,14 @@ "comment": "", "meta": { "range": [ - 137487, - 137497 + 139526, + 139536 ], "filename": "astronomy.js", - "lineno": 3127, + "lineno": 3159, "columnno": 12, "code": { - "id": "astnode100015367", + "id": "astnode100015354", "name": "c0", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -31484,14 +31456,14 @@ "comment": "", "meta": { "range": [ - 137511, - 137521 + 139550, + 139560 ], "filename": "astronomy.js", - "lineno": 3128, + "lineno": 3160, "columnno": 12, "code": { - "id": "astnode100015372", + "id": "astnode100015359", "name": "c1", "type": "UnaryExpression", "funcscope": "VisualMagnitude", @@ -31510,14 +31482,14 @@ "comment": "", "meta": { "range": [ - 137626, - 137641 + 139665, + 139680 ], "filename": "astronomy.js", - "lineno": 3132, + "lineno": 3164, "columnno": 10, "code": { - "id": "astnode100015384", + "id": "astnode100015371", "name": "x", "type": "BinaryExpression", "value": "" @@ -31535,14 +31507,14 @@ "comment": "", "meta": { "range": [ - 137651, - 137690 + 139690, + 139729 ], "filename": "astronomy.js", - "lineno": 3133, + "lineno": 3165, "columnno": 8, "code": { - "id": "astnode100015390", + "id": "astnode100015377", "name": "mag", "type": "BinaryExpression", "value": "" @@ -31560,14 +31532,14 @@ "comment": "", "meta": { "range": [ - 137696, - 137740 + 139735, + 139779 ], "filename": "astronomy.js", - "lineno": 3134, + "lineno": 3166, "columnno": 4, "code": { - "id": "astnode100015406", + "id": "astnode100015393", "name": "mag", "type": "BinaryExpression", "funcscope": "VisualMagnitude", @@ -31586,14 +31558,14 @@ "comment": "", "meta": { "range": [ - 137760, - 138784 + 139799, + 140823 ], "filename": "astronomy.js", - "lineno": 3137, + "lineno": 3169, "columnno": 0, "code": { - "id": "astnode100015419", + "id": "astnode100015406", "name": "SaturnMagnitude", "type": "FunctionDeclaration", "paramnames": [ @@ -31626,14 +31598,14 @@ "comment": "", "meta": { "range": [ - 138082, - 138116 + 140121, + 140155 ], "filename": "astronomy.js", - "lineno": 3142, + "lineno": 3174, "columnno": 10, "code": { - "id": "astnode100015428", + "id": "astnode100015415", "name": "eclip", "type": "CallExpression", "value": "" @@ -31651,14 +31623,14 @@ "comment": "", "meta": { "range": [ - 138128, - 138148 + 140167, + 140187 ], "filename": "astronomy.js", - "lineno": 3143, + "lineno": 3175, "columnno": 10, "code": { - "id": "astnode100015442", + "id": "astnode100015429", "name": "ir", "type": "BinaryExpression", "value": "" @@ -31676,14 +31648,14 @@ "comment": "", "meta": { "range": [ - 138214, - 138259 + 140253, + 140298 ], "filename": "astronomy.js", - "lineno": 3144, + "lineno": 3176, "columnno": 10, "code": { - "id": "astnode100015448", + "id": "astnode100015435", "name": "Nr", "type": "BinaryExpression", "value": "" @@ -31701,14 +31673,14 @@ "comment": "", "meta": { "range": [ - 138375, - 138401 + 140414, + 140440 ], "filename": "astronomy.js", - "lineno": 3146, + "lineno": 3178, "columnno": 10, "code": { - "id": "astnode100015460", + "id": "astnode100015447", "name": "lat", "type": "BinaryExpression", "value": "" @@ -31726,14 +31698,14 @@ "comment": "", "meta": { "range": [ - 138413, - 138439 + 140452, + 140478 ], "filename": "astronomy.js", - "lineno": 3147, + "lineno": 3179, "columnno": 10, "code": { - "id": "astnode100015468", + "id": "astnode100015455", "name": "lon", "type": "BinaryExpression", "value": "" @@ -31751,14 +31723,14 @@ "comment": "", "meta": { "range": [ - 138451, - 138549 + 140490, + 140588 ], "filename": "astronomy.js", - "lineno": 3148, + "lineno": 3180, "columnno": 10, "code": { - "id": "astnode100015476", + "id": "astnode100015463", "name": "tilt", "type": "CallExpression", "value": "" @@ -31776,14 +31748,14 @@ "comment": "", "meta": { "range": [ - 138561, - 138596 + 140600, + 140635 ], "filename": "astronomy.js", - "lineno": 3149, + "lineno": 3181, "columnno": 10, "code": { - "id": "astnode100015514", + "id": "astnode100015501", "name": "sin_tilt", "type": "CallExpression", "value": "" @@ -31801,14 +31773,14 @@ "comment": "", "meta": { "range": [ - 138606, - 138632 + 140645, + 140671 ], "filename": "astronomy.js", - "lineno": 3150, + "lineno": 3182, "columnno": 8, "code": { - "id": "astnode100015526", + "id": "astnode100015513", "name": "mag", "type": "BinaryExpression", "value": "" @@ -31826,14 +31798,14 @@ "comment": "", "meta": { "range": [ - 138638, - 138679 + 140677, + 140718 ], "filename": "astronomy.js", - "lineno": 3151, + "lineno": 3183, "columnno": 4, "code": { - "id": "astnode100015535", + "id": "astnode100015522", "name": "mag", "type": "BinaryExpression", "funcscope": "SaturnMagnitude", @@ -31852,14 +31824,14 @@ "comment": "", "meta": { "range": [ - 138685, - 138729 + 140724, + 140768 ], "filename": "astronomy.js", - "lineno": 3152, + "lineno": 3184, "columnno": 4, "code": { - "id": "astnode100015546", + "id": "astnode100015533", "name": "mag", "type": "BinaryExpression", "funcscope": "SaturnMagnitude", @@ -31878,14 +31850,14 @@ "comment": "", "meta": { "range": [ - 138744, - 138752 + 140783, + 140791 ], "filename": "astronomy.js", - "lineno": 3153, + "lineno": 3185, "columnno": 13, "code": { - "id": "astnode100015559", + "id": "astnode100015546", "name": "mag", "type": "Identifier", "value": "mag" @@ -31901,14 +31873,14 @@ "comment": "", "meta": { "range": [ - 138754, - 138779 + 140793, + 140818 ], "filename": "astronomy.js", - "lineno": 3153, + "lineno": 3185, "columnno": 23, "code": { - "id": "astnode100015561", + "id": "astnode100015548", "name": "ring_tilt", "type": "BinaryExpression", "value": "" @@ -31924,14 +31896,14 @@ "comment": "", "meta": { "range": [ - 138785, - 139291 + 140824, + 141330 ], "filename": "astronomy.js", - "lineno": 3155, + "lineno": 3187, "columnno": 0, "code": { - "id": "astnode100015565", + "id": "astnode100015552", "name": "MoonMagnitude", "type": "FunctionDeclaration", "paramnames": [ @@ -31960,14 +31932,14 @@ "comment": "", "meta": { "range": [ - 138980, - 139001 + 141019, + 141040 ], "filename": "astronomy.js", - "lineno": 3157, + "lineno": 3189, "columnno": 8, "code": { - "id": "astnode100015572", + "id": "astnode100015559", "name": "rad", "type": "BinaryExpression", "value": "" @@ -31985,14 +31957,14 @@ "comment": "", "meta": { "range": [ - 139011, - 139027 + 141050, + 141066 ], "filename": "astronomy.js", - "lineno": 3158, + "lineno": 3190, "columnno": 8, "code": { - "id": "astnode100015578", + "id": "astnode100015565", "name": "rad2", "type": "BinaryExpression", "value": "" @@ -32010,14 +31982,14 @@ "comment": "", "meta": { "range": [ - 139037, - 139055 + 141076, + 141094 ], "filename": "astronomy.js", - "lineno": 3159, + "lineno": 3191, "columnno": 8, "code": { - "id": "astnode100015584", + "id": "astnode100015571", "name": "rad4", "type": "BinaryExpression", "value": "" @@ -32035,14 +32007,14 @@ "comment": "", "meta": { "range": [ - 139065, - 139117 + 141104, + 141156 ], "filename": "astronomy.js", - "lineno": 3160, + "lineno": 3192, "columnno": 8, "code": { - "id": "astnode100015590", + "id": "astnode100015577", "name": "mag", "type": "BinaryExpression", "value": "" @@ -32060,14 +32032,14 @@ "comment": "", "meta": { "range": [ - 139129, - 139173 + 141168, + 141212 ], "filename": "astronomy.js", - "lineno": 3161, + "lineno": 3193, "columnno": 10, "code": { - "id": "astnode100015607", + "id": "astnode100015594", "name": "moon_mean_distance_au", "type": "BinaryExpression", "value": "" @@ -32085,14 +32057,14 @@ "comment": "", "meta": { "range": [ - 139183, - 139224 + 141222, + 141263 ], "filename": "astronomy.js", - "lineno": 3162, + "lineno": 3194, "columnno": 8, "code": { - "id": "astnode100015613", + "id": "astnode100015600", "name": "geo_au", "type": "BinaryExpression", "value": "" @@ -32110,14 +32082,14 @@ "comment": "", "meta": { "range": [ - 139230, - 139272 + 141269, + 141311 ], "filename": "astronomy.js", - "lineno": 3163, + "lineno": 3195, "columnno": 4, "code": { - "id": "astnode100015619", + "id": "astnode100015606", "name": "mag", "type": "BinaryExpression", "funcscope": "MoonMagnitude", @@ -32136,14 +32108,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": [ - 142240, - 142670 + 144279, + 144709 ], "filename": "astronomy.js", - "lineno": 3219, + "lineno": 3251, "columnno": 0, "code": { - "id": "astnode100015632", + "id": "astnode100015619", "name": "IlluminationInfo", "type": "ClassDeclaration", "paramnames": [ @@ -32260,14 +32232,14 @@ "comment": "", "meta": { "range": [ - 142269, - 142668 + 144308, + 144707 ], "filename": "astronomy.js", - "lineno": 3220, + "lineno": 3252, "columnno": 4, "code": { - "id": "astnode100015635", + "id": "astnode100015622", "name": "IlluminationInfo", "type": "MethodDefinition", "paramnames": [ @@ -32296,14 +32268,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": [ - 142240, - 142670 + 144279, + 144709 ], "filename": "astronomy.js", - "lineno": 3219, + "lineno": 3251, "columnno": 0, "code": { - "id": "astnode100015632", + "id": "astnode100015619", "name": "IlluminationInfo", "type": "ClassDeclaration", "paramnames": [ @@ -32419,14 +32391,14 @@ "comment": "", "meta": { "range": [ - 142356, - 142372 + 144395, + 144411 ], "filename": "astronomy.js", - "lineno": 3221, + "lineno": 3253, "columnno": 8, "code": { - "id": "astnode100015648", + "id": "astnode100015635", "name": "this.time", "type": "Identifier", "value": "time", @@ -32444,14 +32416,14 @@ "comment": "", "meta": { "range": [ - 142382, - 142396 + 144421, + 144435 ], "filename": "astronomy.js", - "lineno": 3222, + "lineno": 3254, "columnno": 8, "code": { - "id": "astnode100015654", + "id": "astnode100015641", "name": "this.mag", "type": "Identifier", "value": "mag", @@ -32469,14 +32441,14 @@ "comment": "", "meta": { "range": [ - 142406, - 142436 + 144445, + 144475 ], "filename": "astronomy.js", - "lineno": 3223, + "lineno": 3255, "columnno": 8, "code": { - "id": "astnode100015660", + "id": "astnode100015647", "name": "this.phase_angle", "type": "Identifier", "value": "phase_angle", @@ -32494,14 +32466,14 @@ "comment": "", "meta": { "range": [ - 142446, - 142474 + 144485, + 144513 ], "filename": "astronomy.js", - "lineno": 3224, + "lineno": 3256, "columnno": 8, "code": { - "id": "astnode100015666", + "id": "astnode100015653", "name": "this.helio_dist", "type": "Identifier", "value": "helio_dist", @@ -32519,14 +32491,14 @@ "comment": "", "meta": { "range": [ - 142484, - 142508 + 144523, + 144547 ], "filename": "astronomy.js", - "lineno": 3225, + "lineno": 3257, "columnno": 8, "code": { - "id": "astnode100015672", + "id": "astnode100015659", "name": "this.geo_dist", "type": "Identifier", "value": "geo_dist", @@ -32544,14 +32516,14 @@ "comment": "", "meta": { "range": [ - 142518, - 142530 + 144557, + 144569 ], "filename": "astronomy.js", - "lineno": 3226, + "lineno": 3258, "columnno": 8, "code": { - "id": "astnode100015678", + "id": "astnode100015665", "name": "this.gc", "type": "Identifier", "value": "gc", @@ -32569,14 +32541,14 @@ "comment": "", "meta": { "range": [ - 142540, - 142552 + 144579, + 144591 ], "filename": "astronomy.js", - "lineno": 3227, + "lineno": 3259, "columnno": 8, "code": { - "id": "astnode100015684", + "id": "astnode100015671", "name": "this.hc", "type": "Identifier", "value": "hc", @@ -32594,14 +32566,14 @@ "comment": "", "meta": { "range": [ - 142562, - 142588 + 144601, + 144627 ], "filename": "astronomy.js", - "lineno": 3228, + "lineno": 3260, "columnno": 8, "code": { - "id": "astnode100015690", + "id": "astnode100015677", "name": "this.ring_tilt", "type": "Identifier", "value": "ring_tilt", @@ -32619,14 +32591,14 @@ "comment": "", "meta": { "range": [ - 142598, - 142661 + 144637, + 144700 ], "filename": "astronomy.js", - "lineno": 3229, + "lineno": 3261, "columnno": 8, "code": { - "id": "astnode100015696", + "id": "astnode100015683", "name": "this.phase_fraction", "type": "BinaryExpression", "value": "", @@ -32644,14 +32616,14 @@ "comment": "", "meta": { "range": [ - 142671, - 142714 + 144710, + 144753 ], "filename": "astronomy.js", - "lineno": 3232, + "lineno": 3264, "columnno": 0, "code": { - "id": "astnode100015712", + "id": "astnode100015699", "name": "exports.IlluminationInfo", "type": "Identifier", "value": "IlluminationInfo", @@ -32668,14 +32640,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 {string} 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": [ - 143244, - 145163 + 145283, + 147202 ], "filename": "astronomy.js", - "lineno": 3249, + "lineno": 3281, "columnno": 0, "code": { - "id": "astnode100015717", + "id": "astnode100015704", "name": "Illumination", "type": "FunctionDeclaration", "paramnames": [ @@ -32742,14 +32714,14 @@ "comment": "", "meta": { "range": [ - 143379, - 143400 + 145418, + 145439 ], "filename": "astronomy.js", - "lineno": 3252, + "lineno": 3284, "columnno": 10, "code": { - "id": "astnode100015730", + "id": "astnode100015717", "name": "time", "type": "CallExpression", "value": "" @@ -32767,14 +32739,14 @@ "comment": "", "meta": { "range": [ - 143412, - 143446 + 145451, + 145485 ], "filename": "astronomy.js", - "lineno": 3253, + "lineno": 3285, "columnno": 10, "code": { - "id": "astnode100015736", + "id": "astnode100015723", "name": "earth", "type": "CallExpression", "value": "" @@ -32792,14 +32764,14 @@ "comment": "", "meta": { "range": [ - 143456, - 143461 + 145495, + 145500 ], "filename": "astronomy.js", - "lineno": 3254, + "lineno": 3286, "columnno": 8, "code": { - "id": "astnode100015745", + "id": "astnode100015732", "name": "phase" } }, @@ -32815,14 +32787,14 @@ "comment": "", "meta": { "range": [ - 143537, - 143539 + 145576, + 145578 ], "filename": "astronomy.js", - "lineno": 3255, + "lineno": 3287, "columnno": 8, "code": { - "id": "astnode100015748", + "id": "astnode100015735", "name": "hc" } }, @@ -32838,14 +32810,14 @@ "comment": "", "meta": { "range": [ - 143576, - 143578 + 145615, + 145617 ], "filename": "astronomy.js", - "lineno": 3256, + "lineno": 3288, "columnno": 8, "code": { - "id": "astnode100015751", + "id": "astnode100015738", "name": "gc" } }, @@ -32861,14 +32833,14 @@ "comment": "", "meta": { "range": [ - 143617, - 143620 + 145656, + 145659 ], "filename": "astronomy.js", - "lineno": 3257, + "lineno": 3289, "columnno": 8, "code": { - "id": "astnode100015754", + "id": "astnode100015741", "name": "mag" } }, @@ -32884,14 +32856,14 @@ "comment": "", "meta": { "range": [ - 143676, - 143727 + 145715, + 145766 ], "filename": "astronomy.js", - "lineno": 3259, + "lineno": 3291, "columnno": 8, "code": { - "id": "astnode100015762", + "id": "astnode100015749", "name": "gc", "type": "NewExpression", "funcscope": "Illumination", @@ -32910,14 +32882,14 @@ "comment": "", "meta": { "range": [ - 143737, - 143767 + 145776, + 145806 ], "filename": "astronomy.js", - "lineno": 3260, + "lineno": 3292, "columnno": 8, "code": { - "id": "astnode100015780", + "id": "astnode100015767", "name": "hc", "type": "NewExpression", "funcscope": "Illumination", @@ -32936,14 +32908,14 @@ "comment": "", "meta": { "range": [ - 143777, - 143786 + 145816, + 145825 ], "filename": "astronomy.js", - "lineno": 3261, + "lineno": 3293, "columnno": 8, "code": { - "id": "astnode100015789", + "id": "astnode100015776", "name": "phase", "type": "Literal", "funcscope": "Illumination", @@ -32962,14 +32934,14 @@ "comment": "", "meta": { "range": [ - 144045, - 144063 + 146084, + 146102 ], "filename": "astronomy.js", - "lineno": 3266, + "lineno": 3298, "columnno": 12, "code": { - "id": "astnode100015799", + "id": "astnode100015786", "name": "gc", "type": "CallExpression", "funcscope": "Illumination", @@ -32988,14 +32960,14 @@ "comment": "", "meta": { "range": [ - 144077, - 144146 + 146116, + 146185 ], "filename": "astronomy.js", - "lineno": 3267, + "lineno": 3299, "columnno": 12, "code": { - "id": "astnode100015805", + "id": "astnode100015792", "name": "hc", "type": "NewExpression", "funcscope": "Illumination", @@ -33014,14 +32986,14 @@ "comment": "", "meta": { "range": [ - 144262, - 144290 + 146301, + 146329 ], "filename": "astronomy.js", - "lineno": 3271, + "lineno": 3303, "columnno": 12, "code": { - "id": "astnode100015833", + "id": "astnode100015820", "name": "hc", "type": "CallExpression", "funcscope": "Illumination", @@ -33040,14 +33012,14 @@ "comment": "", "meta": { "range": [ - 144304, - 144373 + 146343, + 146412 ], "filename": "astronomy.js", - "lineno": 3272, + "lineno": 3304, "columnno": 12, "code": { - "id": "astnode100015840", + "id": "astnode100015827", "name": "gc", "type": "NewExpression", "funcscope": "Illumination", @@ -33066,14 +33038,14 @@ "comment": "", "meta": { "range": [ - 144393, - 144421 + 146432, + 146460 ], "filename": "astronomy.js", - "lineno": 3274, + "lineno": 3306, "columnno": 8, "code": { - "id": "astnode100015867", + "id": "astnode100015854", "name": "phase", "type": "CallExpression", "funcscope": "Illumination", @@ -33092,14 +33064,14 @@ "comment": "", "meta": { "range": [ - 144437, - 144459 + 146476, + 146498 ], "filename": "astronomy.js", - "lineno": 3276, + "lineno": 3308, "columnno": 8, "code": { - "id": "astnode100015874", + "id": "astnode100015861", "name": "geo_dist", "type": "CallExpression", "value": "" @@ -33117,14 +33089,14 @@ "comment": "", "meta": { "range": [ - 144510, - 144534 + 146549, + 146573 ], "filename": "astronomy.js", - "lineno": 3277, + "lineno": 3309, "columnno": 8, "code": { - "id": "astnode100015881", + "id": "astnode100015868", "name": "helio_dist", "type": "CallExpression", "value": "" @@ -33142,14 +33114,14 @@ "comment": "", "meta": { "range": [ - 144583, - 144592 + 146622, + 146631 ], "filename": "astronomy.js", - "lineno": 3278, + "lineno": 3310, "columnno": 8, "code": { - "id": "astnode100015888", + "id": "astnode100015875", "name": "ring_tilt" } }, @@ -33165,14 +33137,14 @@ "comment": "", "meta": { "range": [ - 144656, - 144700 + 146695, + 146739 ], "filename": "astronomy.js", - "lineno": 3280, + "lineno": 3312, "columnno": 8, "code": { - "id": "astnode100015896", + "id": "astnode100015883", "name": "mag", "type": "BinaryExpression", "funcscope": "Illumination", @@ -33191,14 +33163,14 @@ "comment": "", "meta": { "range": [ - 144748, - 144796 + 146787, + 146835 ], "filename": "astronomy.js", - "lineno": 3283, + "lineno": 3315, "columnno": 8, "code": { - "id": "astnode100015913", + "id": "astnode100015900", "name": "mag", "type": "CallExpression", "funcscope": "Illumination", @@ -33217,14 +33189,14 @@ "comment": "", "meta": { "range": [ - 144852, - 144915 + 146891, + 146954 ], "filename": "astronomy.js", - "lineno": 3286, + "lineno": 3318, "columnno": 14, "code": { - "id": "astnode100015926", + "id": "astnode100015913", "name": "saturn", "type": "CallExpression", "value": "" @@ -33242,14 +33214,14 @@ "comment": "", "meta": { "range": [ - 144925, - 144941 + 146964, + 146980 ], "filename": "astronomy.js", - "lineno": 3287, + "lineno": 3319, "columnno": 8, "code": { - "id": "astnode100015936", + "id": "astnode100015923", "name": "mag", "type": "MemberExpression", "funcscope": "Illumination", @@ -33268,14 +33240,14 @@ "comment": "", "meta": { "range": [ - 144951, - 144979 + 146990, + 147018 ], "filename": "astronomy.js", - "lineno": 3288, + "lineno": 3320, "columnno": 8, "code": { - "id": "astnode100015942", + "id": "astnode100015929", "name": "ring_tilt", "type": "MemberExpression", "funcscope": "Illumination", @@ -33294,14 +33266,14 @@ "comment": "", "meta": { "range": [ - 145006, - 145062 + 147045, + 147101 ], "filename": "astronomy.js", - "lineno": 3291, + "lineno": 3323, "columnno": 8, "code": { - "id": "astnode100015949", + "id": "astnode100015936", "name": "mag", "type": "CallExpression", "funcscope": "Illumination", @@ -33320,14 +33292,14 @@ "comment": "", "meta": { "range": [ - 145164, - 145199 + 147203, + 147238 ], "filename": "astronomy.js", - "lineno": 3295, + "lineno": 3327, "columnno": 0, "code": { - "id": "astnode100015969", + "id": "astnode100015956", "name": "exports.Illumination", "type": "Identifier", "value": "Illumination", @@ -33344,14 +33316,14 @@ "comment": "", "meta": { "range": [ - 145201, - 146106 + 147240, + 148145 ], "filename": "astronomy.js", - "lineno": 3296, + "lineno": 3328, "columnno": 0, "code": { - "id": "astnode100015974", + "id": "astnode100015961", "name": "SynodicPeriod", "type": "FunctionDeclaration", "paramnames": [ @@ -33376,14 +33348,14 @@ "comment": "", "meta": { "range": [ - 145727, - 145748 + 147766, + 147787 ], "filename": "astronomy.js", - "lineno": 3305, + "lineno": 3337, "columnno": 8, "code": { - "id": "astnode100015991", + "id": "astnode100015978", "name": "planet", "type": "MemberExpression", "value": "Planet[undefined]" @@ -33401,14 +33373,14 @@ "comment": "", "meta": { "range": [ - 145953, - 145984 + 147992, + 148023 ], "filename": "astronomy.js", - "lineno": 3310, + "lineno": 3342, "columnno": 10, "code": { - "id": "astnode100016005", + "id": "astnode100015992", "name": "Te", "type": "MemberExpression", "value": "Planet.Earth.OrbitalPeriod" @@ -33426,14 +33398,14 @@ "comment": "", "meta": { "range": [ - 145996, - 146021 + 148035, + 148060 ], "filename": "astronomy.js", - "lineno": 3311, + "lineno": 3343, "columnno": 10, "code": { - "id": "astnode100016013", + "id": "astnode100016000", "name": "Tp", "type": "MemberExpression", "value": "planet.OrbitalPeriod" @@ -33451,14 +33423,14 @@ "comment": "", "meta": { "range": [ - 146033, - 146077 + 148072, + 148116 ], "filename": "astronomy.js", - "lineno": 3312, + "lineno": 3344, "columnno": 10, "code": { - "id": "astnode100016019", + "id": "astnode100016006", "name": "synodicPeriod", "type": "CallExpression", "value": "" @@ -33476,14 +33448,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 {string} 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": [ - 147514, - 149750 + 149553, + 151789 ], "filename": "astronomy.js", - "lineno": 3343, + "lineno": 3375, "columnno": 0, "code": { - "id": "astnode100016034", + "id": "astnode100016021", "name": "SearchRelativeLongitude", "type": "FunctionDeclaration", "paramnames": [ @@ -33561,14 +33533,14 @@ "comment": "", "meta": { "range": [ - 147622, - 147643 + 149661, + 149682 ], "filename": "astronomy.js", - "lineno": 3345, + "lineno": 3377, "columnno": 10, "code": { - "id": "astnode100016045", + "id": "astnode100016032", "name": "planet", "type": "MemberExpression", "value": "Planet[undefined]" @@ -33586,14 +33558,14 @@ "comment": "", "meta": { "range": [ - 147981, - 148054 + 150020, + 150093 ], "filename": "astronomy.js", - "lineno": 3352, + "lineno": 3384, "columnno": 10, "code": { - "id": "astnode100016065", + "id": "astnode100016052", "name": "direction", "type": "ConditionalExpression", "value": "" @@ -33611,14 +33583,14 @@ "comment": "", "meta": { "range": [ - 148060, - 148288 + 150099, + 150327 ], "filename": "astronomy.js", - "lineno": 3353, + "lineno": 3385, "columnno": 4, "code": { - "id": "astnode100016081", + "id": "astnode100016068", "name": "offset", "type": "FunctionDeclaration", "paramnames": [ @@ -33643,14 +33615,14 @@ "comment": "", "meta": { "range": [ - 148095, - 148128 + 150134, + 150167 ], "filename": "astronomy.js", - "lineno": 3354, + "lineno": 3386, "columnno": 14, "code": { - "id": "astnode100016086", + "id": "astnode100016073", "name": "plon", "type": "CallExpression", "value": "" @@ -33668,14 +33640,14 @@ "comment": "", "meta": { "range": [ - 148144, - 148180 + 150183, + 150219 ], "filename": "astronomy.js", - "lineno": 3355, + "lineno": 3387, "columnno": 14, "code": { - "id": "astnode100016093", + "id": "astnode100016080", "name": "elon", "type": "CallExpression", "value": "" @@ -33693,14 +33665,14 @@ "comment": "", "meta": { "range": [ - 148196, - 148228 + 150235, + 150267 ], "filename": "astronomy.js", - "lineno": 3356, + "lineno": 3388, "columnno": 14, "code": { - "id": "astnode100016100", + "id": "astnode100016087", "name": "diff", "type": "BinaryExpression", "value": "" @@ -33718,14 +33690,14 @@ "comment": "", "meta": { "range": [ - 148297, - 148322 + 150336, + 150361 ], "filename": "astronomy.js", - "lineno": 3359, + "lineno": 3391, "columnno": 8, "code": { - "id": "astnode100016114", + "id": "astnode100016101", "name": "syn", "type": "CallExpression", "value": "" @@ -33743,14 +33715,14 @@ "comment": "", "meta": { "range": [ - 148332, - 148358 + 150371, + 150397 ], "filename": "astronomy.js", - "lineno": 3360, + "lineno": 3392, "columnno": 8, "code": { - "id": "astnode100016120", + "id": "astnode100016107", "name": "time", "type": "CallExpression", "value": "" @@ -33768,14 +33740,14 @@ "comment": "", "meta": { "range": [ - 148563, - 148589 + 150602, + 150628 ], "filename": "astronomy.js", - "lineno": 3364, + "lineno": 3396, "columnno": 8, "code": { - "id": "astnode100016126", + "id": "astnode100016113", "name": "error_angle", "type": "CallExpression", "value": "" @@ -33793,14 +33765,14 @@ "comment": "", "meta": { "range": [ - 148624, - 148642 + 150663, + 150681 ], "filename": "astronomy.js", - "lineno": 3366, + "lineno": 3398, "columnno": 8, "code": { - "id": "astnode100016136", + "id": "astnode100016123", "name": "error_angle", "type": "Literal", "funcscope": "SearchRelativeLongitude", @@ -33819,14 +33791,14 @@ "comment": "", "meta": { "range": [ - 148692, - 148700 + 150731, + 150739 ], "filename": "astronomy.js", - "lineno": 3367, + "lineno": 3399, "columnno": 13, "code": { - "id": "astnode100016141", + "id": "astnode100016128", "name": "iter", "type": "Literal", "value": 0 @@ -33844,14 +33816,14 @@ "comment": "", "meta": { "range": [ - 148887, - 148926 + 150926, + 150965 ], "filename": "astronomy.js", - "lineno": 3370, + "lineno": 3402, "columnno": 12, "code": { - "id": "astnode100016151", + "id": "astnode100016138", "name": "day_adjust", "type": "BinaryExpression", "value": "" @@ -33869,14 +33841,14 @@ "comment": "", "meta": { "range": [ - 148936, - 148967 + 150975, + 151006 ], "filename": "astronomy.js", - "lineno": 3371, + "lineno": 3403, "columnno": 8, "code": { - "id": "astnode100016160", + "id": "astnode100016147", "name": "time", "type": "CallExpression", "funcscope": "SearchRelativeLongitude", @@ -33895,14 +33867,14 @@ "comment": "", "meta": { "range": [ - 149062, - 149086 + 151101, + 151125 ], "filename": "astronomy.js", - "lineno": 3374, + "lineno": 3406, "columnno": 12, "code": { - "id": "astnode100016180", + "id": "astnode100016167", "name": "prev_angle", "type": "Identifier", "value": "error_angle" @@ -33920,14 +33892,14 @@ "comment": "", "meta": { "range": [ - 149096, - 149122 + 151135, + 151161 ], "filename": "astronomy.js", - "lineno": 3375, + "lineno": 3407, "columnno": 8, "code": { - "id": "astnode100016184", + "id": "astnode100016171", "name": "error_angle", "type": "CallExpression", "funcscope": "SearchRelativeLongitude", @@ -33946,14 +33918,14 @@ "comment": "", "meta": { "range": [ - 149462, - 149509 + 151501, + 151548 ], "filename": "astronomy.js", - "lineno": 3381, + "lineno": 3413, "columnno": 20, "code": { - "id": "astnode100016204", + "id": "astnode100016191", "name": "ratio", "type": "BinaryExpression", "value": "" @@ -33971,14 +33943,14 @@ "comment": "", "meta": { "range": [ - 149579, - 149591 + 151618, + 151630 ], "filename": "astronomy.js", - "lineno": 3383, + "lineno": 3415, "columnno": 20, "code": { - "id": "astnode100016220", + "id": "astnode100016207", "name": "syn", "type": "Identifier", "funcscope": "SearchRelativeLongitude", @@ -33997,14 +33969,14 @@ "comment": "", "meta": { "range": [ - 149751, - 149808 + 151790, + 151847 ], "filename": "astronomy.js", - "lineno": 3389, + "lineno": 3421, "columnno": 0, "code": { - "id": "astnode100016236", + "id": "astnode100016223", "name": "exports.SearchRelativeLongitude", "type": "Identifier", "value": "SearchRelativeLongitude", @@ -34021,14 +33993,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": [ - 150370, - 150441 + 152409, + 152480 ], "filename": "astronomy.js", - "lineno": 3407, + "lineno": 3439, "columnno": 0, "code": { - "id": "astnode100016241", + "id": "astnode100016228", "name": "MoonPhase", "type": "FunctionDeclaration", "paramnames": [ @@ -34074,14 +34046,14 @@ "comment": "", "meta": { "range": [ - 150442, - 150471 + 152481, + 152510 ], "filename": "astronomy.js", - "lineno": 3410, + "lineno": 3442, "columnno": 0, "code": { - "id": "astnode100016251", + "id": "astnode100016238", "name": "exports.MoonPhase", "type": "Identifier", "value": "MoonPhase", @@ -34098,14 +34070,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": [ - 151985, - 153439 + 154024, + 155478 ], "filename": "astronomy.js", - "lineno": 3445, + "lineno": 3477, "columnno": 0, "code": { - "id": "astnode100016256", + "id": "astnode100016243", "name": "SearchMoonPhase", "type": "FunctionDeclaration", "paramnames": [ @@ -34183,14 +34155,14 @@ "comment": "", "meta": { "range": [ - 152049, - 152163 + 154088, + 154202 ], "filename": "astronomy.js", - "lineno": 3446, + "lineno": 3478, "columnno": 4, "code": { - "id": "astnode100016262", + "id": "astnode100016249", "name": "moon_offset", "type": "FunctionDeclaration", "paramnames": [ @@ -34213,14 +34185,14 @@ "comment": "", "meta": { "range": [ - 152087, - 152106 + 154126, + 154145 ], "filename": "astronomy.js", - "lineno": 3447, + "lineno": 3479, "columnno": 12, "code": { - "id": "astnode100016267", + "id": "astnode100016254", "name": "mlon", "type": "CallExpression", "value": "" @@ -34238,14 +34210,14 @@ "comment": "", "meta": { "range": [ - 152913, - 152930 + 154952, + 154969 ], "filename": "astronomy.js", - "lineno": 3462, + "lineno": 3494, "columnno": 10, "code": { - "id": "astnode100016287", + "id": "astnode100016274", "name": "uncertainty", "type": "Literal", "value": 1.5 @@ -34263,14 +34235,14 @@ "comment": "", "meta": { "range": [ - 152940, - 152964 + 154979, + 155003 ], "filename": "astronomy.js", - "lineno": 3463, + "lineno": 3495, "columnno": 8, "code": { - "id": "astnode100016291", + "id": "astnode100016278", "name": "ta", "type": "CallExpression", "value": "" @@ -34288,14 +34260,14 @@ "comment": "", "meta": { "range": [ - 152974, - 152994 + 155013, + 155033 ], "filename": "astronomy.js", - "lineno": 3464, + "lineno": 3496, "columnno": 8, "code": { - "id": "astnode100016297", + "id": "astnode100016284", "name": "ya", "type": "CallExpression", "value": "" @@ -34313,14 +34285,14 @@ "comment": "", "meta": { "range": [ - 153020, - 153029 + 155059, + 155068 ], "filename": "astronomy.js", - "lineno": 3466, + "lineno": 3498, "columnno": 8, "code": { - "id": "astnode100016307", + "id": "astnode100016294", "name": "ya", "type": "Literal", "funcscope": "SearchMoonPhase", @@ -34339,14 +34311,14 @@ "comment": "", "meta": { "range": [ - 153088, - 153129 + 155127, + 155168 ], "filename": "astronomy.js", - "lineno": 3467, + "lineno": 3499, "columnno": 8, "code": { - "id": "astnode100016311", + "id": "astnode100016298", "name": "est_dt", "type": "BinaryExpression", "value": "" @@ -34364,14 +34336,14 @@ "comment": "", "meta": { "range": [ - 153139, - 153165 + 155178, + 155204 ], "filename": "astronomy.js", - "lineno": 3468, + "lineno": 3500, "columnno": 8, "code": { - "id": "astnode100016320", + "id": "astnode100016307", "name": "dt1", "type": "BinaryExpression", "value": "" @@ -34389,14 +34361,14 @@ "comment": "", "meta": { "range": [ - 153289, - 153336 + 155328, + 155375 ], "filename": "astronomy.js", - "lineno": 3471, + "lineno": 3503, "columnno": 8, "code": { - "id": "astnode100016332", + "id": "astnode100016319", "name": "dt2", "type": "CallExpression", "value": "" @@ -34414,14 +34386,14 @@ "comment": "", "meta": { "range": [ - 153346, - 153366 + 155385, + 155405 ], "filename": "astronomy.js", - "lineno": 3472, + "lineno": 3504, "columnno": 8, "code": { - "id": "astnode100016343", + "id": "astnode100016330", "name": "t1", "type": "CallExpression", "value": "" @@ -34439,14 +34411,14 @@ "comment": "", "meta": { "range": [ - 153376, - 153396 + 155415, + 155435 ], "filename": "astronomy.js", - "lineno": 3473, + "lineno": 3505, "columnno": 8, "code": { - "id": "astnode100016351", + "id": "astnode100016338", "name": "t2", "type": "CallExpression", "value": "" @@ -34464,14 +34436,14 @@ "comment": "", "meta": { "range": [ - 153440, - 153481 + 155479, + 155520 ], "filename": "astronomy.js", - "lineno": 3476, + "lineno": 3508, "columnno": 0, "code": { - "id": "astnode100016365", + "id": "astnode100016352", "name": "exports.SearchMoonPhase", "type": "Identifier", "value": "SearchMoonPhase", @@ -34488,14 +34460,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": [ - 153801, - 153919 + 155840, + 155958 ], "filename": "astronomy.js", - "lineno": 3490, + "lineno": 3522, "columnno": 0, "code": { - "id": "astnode100016370", + "id": "astnode100016357", "name": "MoonQuarter", "type": "ClassDeclaration", "paramnames": [ @@ -34542,14 +34514,14 @@ "comment": "", "meta": { "range": [ - 153825, - 153917 + 155864, + 155956 ], "filename": "astronomy.js", - "lineno": 3491, + "lineno": 3523, "columnno": 4, "code": { - "id": "astnode100016373", + "id": "astnode100016360", "name": "MoonQuarter", "type": "MethodDefinition", "paramnames": [ @@ -34572,14 +34544,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": [ - 153801, - 153919 + 155840, + 155958 ], "filename": "astronomy.js", - "lineno": 3490, + "lineno": 3522, "columnno": 0, "code": { - "id": "astnode100016370", + "id": "astnode100016357", "name": "MoonQuarter", "type": "ClassDeclaration", "paramnames": [ @@ -34625,14 +34597,14 @@ "comment": "", "meta": { "range": [ - 153862, - 153884 + 155901, + 155923 ], "filename": "astronomy.js", - "lineno": 3492, + "lineno": 3524, "columnno": 8, "code": { - "id": "astnode100016380", + "id": "astnode100016367", "name": "this.quarter", "type": "Identifier", "value": "quarter", @@ -34650,14 +34622,14 @@ "comment": "", "meta": { "range": [ - 153894, - 153910 + 155933, + 155949 ], "filename": "astronomy.js", - "lineno": 3493, + "lineno": 3525, "columnno": 8, "code": { - "id": "astnode100016386", + "id": "astnode100016373", "name": "this.time", "type": "Identifier", "value": "time", @@ -34675,14 +34647,14 @@ "comment": "", "meta": { "range": [ - 153920, - 153953 + 155959, + 155992 ], "filename": "astronomy.js", - "lineno": 3496, + "lineno": 3528, "columnno": 0, "code": { - "id": "astnode100016392", + "id": "astnode100016379", "name": "exports.MoonQuarter", "type": "Identifier", "value": "MoonQuarter", @@ -34699,14 +34671,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": [ - 154557, - 154950 + 156596, + 156989 ], "filename": "astronomy.js", - "lineno": 3511, + "lineno": 3543, "columnno": 0, "code": { - "id": "astnode100016397", + "id": "astnode100016384", "name": "SearchMoonQuarter", "type": "FunctionDeclaration", "paramnames": [ @@ -34757,14 +34729,14 @@ "comment": "", "meta": { "range": [ - 154659, - 154692 + 156698, + 156731 ], "filename": "astronomy.js", - "lineno": 3513, + "lineno": 3545, "columnno": 8, "code": { - "id": "astnode100016402", + "id": "astnode100016389", "name": "phaseStart", "type": "CallExpression", "value": "" @@ -34782,14 +34754,14 @@ "comment": "", "meta": { "range": [ - 154702, - 154744 + 156741, + 156783 ], "filename": "astronomy.js", - "lineno": 3514, + "lineno": 3546, "columnno": 8, "code": { - "id": "astnode100016408", + "id": "astnode100016395", "name": "quarterStart", "type": "CallExpression", "value": "" @@ -34807,14 +34779,14 @@ "comment": "", "meta": { "range": [ - 154754, - 154786 + 156793, + 156825 ], "filename": "astronomy.js", - "lineno": 3515, + "lineno": 3547, "columnno": 8, "code": { - "id": "astnode100016418", + "id": "astnode100016405", "name": "quarter", "type": "BinaryExpression", "value": "" @@ -34832,14 +34804,14 @@ "comment": "", "meta": { "range": [ - 154796, - 154847 + 156835, + 156886 ], "filename": "astronomy.js", - "lineno": 3516, + "lineno": 3548, "columnno": 8, "code": { - "id": "astnode100016426", + "id": "astnode100016413", "name": "time", "type": "CallExpression", "value": "" @@ -34857,14 +34829,14 @@ "comment": "", "meta": { "range": [ - 154951, - 154996 + 156990, + 157035 ], "filename": "astronomy.js", - "lineno": 3521, + "lineno": 3553, "columnno": 0, "code": { - "id": "astnode100016446", + "id": "astnode100016433", "name": "exports.SearchMoonQuarter", "type": "Identifier", "value": "SearchMoonQuarter", @@ -34881,14 +34853,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": [ - 155343, - 155700 + 157382, + 157739 ], "filename": "astronomy.js", - "lineno": 3532, + "lineno": 3564, "columnno": 0, "code": { - "id": "astnode100016451", + "id": "astnode100016438", "name": "NextMoonQuarter", "type": "FunctionDeclaration", "paramnames": [ @@ -34927,14 +34899,14 @@ "comment": "", "meta": { "range": [ - 155601, - 155661 + 157640, + 157700 ], "filename": "astronomy.js", - "lineno": 3536, + "lineno": 3568, "columnno": 8, "code": { - "id": "astnode100016456", + "id": "astnode100016443", "name": "date", "type": "NewExpression", "value": "" @@ -34952,14 +34924,14 @@ "comment": "", "meta": { "range": [ - 155701, - 155742 + 157740, + 157781 ], "filename": "astronomy.js", - "lineno": 3539, + "lineno": 3571, "columnno": 0, "code": { - "id": "astnode100016477", + "id": "astnode100016464", "name": "exports.NextMoonQuarter", "type": "Identifier", "value": "NextMoonQuarter", @@ -34976,14 +34948,14 @@ "comment": "", "meta": { "range": [ - 155744, - 156139 + 157783, + 158178 ], "filename": "astronomy.js", - "lineno": 3540, + "lineno": 3572, "columnno": 0, "code": { - "id": "astnode100016482", + "id": "astnode100016469", "name": "BodyRadiusAu", "type": "FunctionDeclaration", "paramnames": [ @@ -35002,14 +34974,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 {string} 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": [ - 157433, - 161218 + 159472, + 163257 ], "filename": "astronomy.js", - "lineno": 3583, + "lineno": 3615, "columnno": 0, "code": { - "id": "astnode100016499", + "id": "astnode100016486", "name": "SearchRiseSet", "type": "FunctionDeclaration", "paramnames": [ @@ -35109,14 +35081,14 @@ "comment": "", "meta": { "range": [ - 157574, - 157609 + 159613, + 159648 ], "filename": "astronomy.js", - "lineno": 3586, + "lineno": 3618, "columnno": 8, "code": { - "id": "astnode100016516", + "id": "astnode100016503", "name": "body_radius_au", "type": "CallExpression", "value": "" @@ -35134,14 +35106,14 @@ "comment": "", "meta": { "range": [ - 157615, - 158430 + 159654, + 160469 ], "filename": "astronomy.js", - "lineno": 3587, + "lineno": 3619, "columnno": 4, "code": { - "id": "astnode100016521", + "id": "astnode100016508", "name": "peak_altitude", "type": "FunctionDeclaration", "paramnames": [ @@ -35166,14 +35138,14 @@ "comment": "", "meta": { "range": [ - 158176, - 158223 + 160215, + 160262 ], "filename": "astronomy.js", - "lineno": 3596, + "lineno": 3628, "columnno": 14, "code": { - "id": "astnode100016526", + "id": "astnode100016513", "name": "ofdate", "type": "CallExpression", "value": "" @@ -35191,14 +35163,14 @@ "comment": "", "meta": { "range": [ - 158239, - 158288 + 160278, + 160327 ], "filename": "astronomy.js", - "lineno": 3597, + "lineno": 3629, "columnno": 14, "code": { - "id": "astnode100016536", + "id": "astnode100016523", "name": "hor", "type": "CallExpression", "value": "" @@ -35216,14 +35188,14 @@ "comment": "", "meta": { "range": [ - 158304, - 158391 + 160343, + 160430 ], "filename": "astronomy.js", - "lineno": 3598, + "lineno": 3630, "columnno": 14, "code": { - "id": "astnode100016549", + "id": "astnode100016536", "name": "alt", "type": "BinaryExpression", "value": "" @@ -35241,14 +35213,14 @@ "comment": "", "meta": { "range": [ - 159107, - 159116 + 161146, + 161155 ], "filename": "astronomy.js", - "lineno": 3611, + "lineno": 3643, "columnno": 8, "code": { - "id": "astnode100016575", + "id": "astnode100016562", "name": "ha_before" } }, @@ -35264,14 +35236,14 @@ "comment": "", "meta": { "range": [ - 159118, - 159126 + 161157, + 161165 ], "filename": "astronomy.js", - "lineno": 3611, + "lineno": 3643, "columnno": 19, "code": { - "id": "astnode100016577", + "id": "astnode100016564", "name": "ha_after" } }, @@ -35287,14 +35259,14 @@ "comment": "", "meta": { "range": [ - 159164, - 159178 + 161203, + 161217 ], "filename": "astronomy.js", - "lineno": 3613, + "lineno": 3645, "columnno": 8, "code": { - "id": "astnode100016586", + "id": "astnode100016573", "name": "ha_before", "type": "Literal", "funcscope": "SearchRiseSet", @@ -35313,14 +35285,14 @@ "comment": "", "meta": { "range": [ - 159248, - 159260 + 161287, + 161299 ], "filename": "astronomy.js", - "lineno": 3614, + "lineno": 3646, "columnno": 8, "code": { - "id": "astnode100016590", + "id": "astnode100016577", "name": "ha_after", "type": "Literal", "funcscope": "SearchRiseSet", @@ -35339,14 +35311,14 @@ "comment": "", "meta": { "range": [ - 159373, - 159386 + 161412, + 161425 ], "filename": "astronomy.js", - "lineno": 3617, + "lineno": 3649, "columnno": 8, "code": { - "id": "astnode100016600", + "id": "astnode100016587", "name": "ha_before", "type": "Literal", "funcscope": "SearchRiseSet", @@ -35365,14 +35337,14 @@ "comment": "", "meta": { "range": [ - 159441, - 159454 + 161480, + 161493 ], "filename": "astronomy.js", - "lineno": 3618, + "lineno": 3650, "columnno": 8, "code": { - "id": "astnode100016604", + "id": "astnode100016591", "name": "ha_after", "type": "Literal", "funcscope": "SearchRiseSet", @@ -35391,14 +35363,14 @@ "comment": "", "meta": { "range": [ - 159619, - 159651 + 161658, + 161690 ], "filename": "astronomy.js", - "lineno": 3623, + "lineno": 3655, "columnno": 8, "code": { - "id": "astnode100016614", + "id": "astnode100016601", "name": "time_start", "type": "CallExpression", "value": "" @@ -35416,14 +35388,14 @@ "comment": "", "meta": { "range": [ - 159661, - 159672 + 161700, + 161711 ], "filename": "astronomy.js", - "lineno": 3624, + "lineno": 3656, "columnno": 8, "code": { - "id": "astnode100016620", + "id": "astnode100016607", "name": "time_before" } }, @@ -35439,14 +35411,14 @@ "comment": "", "meta": { "range": [ - 159682, - 159692 + 161721, + 161731 ], "filename": "astronomy.js", - "lineno": 3625, + "lineno": 3657, "columnno": 8, "code": { - "id": "astnode100016623", + "id": "astnode100016610", "name": "evt_before" } }, @@ -35462,14 +35434,14 @@ "comment": "", "meta": { "range": [ - 159702, - 159711 + 161741, + 161750 ], "filename": "astronomy.js", - "lineno": 3626, + "lineno": 3658, "columnno": 8, "code": { - "id": "astnode100016626", + "id": "astnode100016613", "name": "evt_after" } }, @@ -35485,14 +35457,14 @@ "comment": "", "meta": { "range": [ - 159721, - 159759 + 161760, + 161798 ], "filename": "astronomy.js", - "lineno": 3627, + "lineno": 3659, "columnno": 8, "code": { - "id": "astnode100016629", + "id": "astnode100016616", "name": "alt_before", "type": "CallExpression", "value": "" @@ -35510,14 +35482,14 @@ "comment": "", "meta": { "range": [ - 159769, - 159778 + 161808, + 161817 ], "filename": "astronomy.js", - "lineno": 3628, + "lineno": 3660, "columnno": 8, "code": { - "id": "astnode100016635", + "id": "astnode100016622", "name": "alt_after" } }, @@ -35533,14 +35505,14 @@ "comment": "", "meta": { "range": [ - 159917, - 159984 + 161956, + 162023 ], "filename": "astronomy.js", - "lineno": 3631, + "lineno": 3663, "columnno": 8, "code": { - "id": "astnode100016643", + "id": "astnode100016630", "name": "evt_before", "type": "CallExpression", "funcscope": "SearchRiseSet", @@ -35559,14 +35531,14 @@ "comment": "", "meta": { "range": [ - 159994, - 160023 + 162033, + 162062 ], "filename": "astronomy.js", - "lineno": 3632, + "lineno": 3664, "columnno": 8, "code": { - "id": "astnode100016652", + "id": "astnode100016639", "name": "time_before", "type": "MemberExpression", "funcscope": "SearchRiseSet", @@ -35585,14 +35557,14 @@ "comment": "", "meta": { "range": [ - 160033, - 160072 + 162072, + 162111 ], "filename": "astronomy.js", - "lineno": 3633, + "lineno": 3665, "columnno": 8, "code": { - "id": "astnode100016658", + "id": "astnode100016645", "name": "alt_before", "type": "CallExpression", "funcscope": "SearchRiseSet", @@ -35611,14 +35583,14 @@ "comment": "", "meta": { "range": [ - 160256, - 160280 + 162295, + 162319 ], "filename": "astronomy.js", - "lineno": 3638, + "lineno": 3670, "columnno": 8, "code": { - "id": "astnode100016665", + "id": "astnode100016652", "name": "time_before", "type": "Identifier", "funcscope": "SearchRiseSet", @@ -35637,14 +35609,14 @@ "comment": "", "meta": { "range": [ - 160292, - 160358 + 162331, + 162397 ], "filename": "astronomy.js", - "lineno": 3640, + "lineno": 3672, "columnno": 4, "code": { - "id": "astnode100016669", + "id": "astnode100016656", "name": "evt_after", "type": "CallExpression", "funcscope": "SearchRiseSet", @@ -35663,14 +35635,14 @@ "comment": "", "meta": { "range": [ - 160364, - 160405 + 162403, + 162444 ], "filename": "astronomy.js", - "lineno": 3641, + "lineno": 3673, "columnno": 4, "code": { - "id": "astnode100016678", + "id": "astnode100016665", "name": "alt_after", "type": "CallExpression", "funcscope": "SearchRiseSet", @@ -35689,14 +35661,14 @@ "comment": "", "meta": { "range": [ - 160568, - 160668 + 162607, + 162707 ], "filename": "astronomy.js", - "lineno": 3645, + "lineno": 3677, "columnno": 16, "code": { - "id": "astnode100016698", + "id": "astnode100016685", "name": "tx", "type": "CallExpression", "value": "" @@ -35714,14 +35686,14 @@ "comment": "", "meta": { "range": [ - 160626, - 160645 + 162665, + 162684 ], "filename": "astronomy.js", - "lineno": 3645, + "lineno": 3677, "columnno": 74, "code": { - "id": "astnode100016708", + "id": "astnode100016695", "name": "init_f1", "type": "Identifier", "value": "alt_before" @@ -35737,14 +35709,14 @@ "comment": "", "meta": { "range": [ - 160647, - 160665 + 162686, + 162704 ], "filename": "astronomy.js", - "lineno": 3645, + "lineno": 3677, "columnno": 95, "code": { - "id": "astnode100016710", + "id": "astnode100016697", "name": "init_f2", "type": "Identifier", "value": "alt_after" @@ -35760,14 +35732,14 @@ "comment": "", "meta": { "range": [ - 160829, - 160900 + 162868, + 162939 ], "filename": "astronomy.js", - "lineno": 3650, + "lineno": 3682, "columnno": 8, "code": { - "id": "astnode100016717", + "id": "astnode100016704", "name": "evt_before", "type": "CallExpression", "funcscope": "SearchRiseSet", @@ -35786,14 +35758,14 @@ "comment": "", "meta": { "range": [ - 160910, - 160980 + 162949, + 163019 ], "filename": "astronomy.js", - "lineno": 3651, + "lineno": 3683, "columnno": 8, "code": { - "id": "astnode100016728", + "id": "astnode100016715", "name": "evt_after", "type": "CallExpression", "funcscope": "SearchRiseSet", @@ -35812,14 +35784,14 @@ "comment": "", "meta": { "range": [ - 161076, - 161105 + 163115, + 163144 ], "filename": "astronomy.js", - "lineno": 3654, + "lineno": 3686, "columnno": 8, "code": { - "id": "astnode100016753", + "id": "astnode100016740", "name": "time_before", "type": "MemberExpression", "funcscope": "SearchRiseSet", @@ -35838,14 +35810,14 @@ "comment": "", "meta": { "range": [ - 161115, - 161158 + 163154, + 163197 ], "filename": "astronomy.js", - "lineno": 3655, + "lineno": 3687, "columnno": 8, "code": { - "id": "astnode100016759", + "id": "astnode100016746", "name": "alt_before", "type": "CallExpression", "funcscope": "SearchRiseSet", @@ -35864,14 +35836,14 @@ "comment": "", "meta": { "range": [ - 161168, - 161209 + 163207, + 163248 ], "filename": "astronomy.js", - "lineno": 3656, + "lineno": 3688, "columnno": 8, "code": { - "id": "astnode100016767", + "id": "astnode100016754", "name": "alt_after", "type": "CallExpression", "funcscope": "SearchRiseSet", @@ -35890,14 +35862,14 @@ "comment": "", "meta": { "range": [ - 161219, - 161256 + 163258, + 163295 ], "filename": "astronomy.js", - "lineno": 3659, + "lineno": 3691, "columnno": 0, "code": { - "id": "astnode100016775", + "id": "astnode100016762", "name": "exports.SearchRiseSet", "type": "Identifier", "value": "SearchRiseSet", @@ -35914,14 +35886,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": [ - 161767, - 161876 + 163806, + 163915 ], "filename": "astronomy.js", - "lineno": 3674, + "lineno": 3706, "columnno": 0, "code": { - "id": "astnode100016780", + "id": "astnode100016767", "name": "HourAngleEvent", "type": "ClassDeclaration", "paramnames": [ @@ -35968,14 +35940,14 @@ "comment": "", "meta": { "range": [ - 161794, - 161874 + 163833, + 163913 ], "filename": "astronomy.js", - "lineno": 3675, + "lineno": 3707, "columnno": 4, "code": { - "id": "astnode100016783", + "id": "astnode100016770", "name": "HourAngleEvent", "type": "MethodDefinition", "paramnames": [ @@ -35998,14 +35970,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": [ - 161767, - 161876 + 163806, + 163915 ], "filename": "astronomy.js", - "lineno": 3674, + "lineno": 3706, "columnno": 0, "code": { - "id": "astnode100016780", + "id": "astnode100016767", "name": "HourAngleEvent", "type": "ClassDeclaration", "paramnames": [ @@ -36051,14 +36023,14 @@ "comment": "", "meta": { "range": [ - 161827, - 161843 + 163866, + 163882 ], "filename": "astronomy.js", - "lineno": 3676, + "lineno": 3708, "columnno": 8, "code": { - "id": "astnode100016790", + "id": "astnode100016777", "name": "this.time", "type": "Identifier", "value": "time", @@ -36076,14 +36048,14 @@ "comment": "", "meta": { "range": [ - 161853, - 161867 + 163892, + 163906 ], "filename": "astronomy.js", - "lineno": 3677, + "lineno": 3709, "columnno": 8, "code": { - "id": "astnode100016796", + "id": "astnode100016783", "name": "this.hor", "type": "Identifier", "value": "hor", @@ -36101,14 +36073,14 @@ "comment": "", "meta": { "range": [ - 161877, - 161916 + 163916, + 163955 ], "filename": "astronomy.js", - "lineno": 3680, + "lineno": 3712, "columnno": 0, "code": { - "id": "astnode100016802", + "id": "astnode100016789", "name": "exports.HourAngleEvent", "type": "Identifier", "value": "HourAngleEvent", @@ -36125,14 +36097,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 {string} 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": [ - 163609, - 165476 + 165648, + 167515 ], "filename": "astronomy.js", - "lineno": 3717, + "lineno": 3749, "columnno": 0, "code": { - "id": "astnode100016807", + "id": "astnode100016794", "name": "SearchHourAngle", "type": "FunctionDeclaration", "paramnames": [ @@ -36216,14 +36188,14 @@ "comment": "", "meta": { "range": [ - 163712, - 163738 + 165751, + 165777 ], "filename": "astronomy.js", - "lineno": 3719, + "lineno": 3751, "columnno": 8, "code": { - "id": "astnode100016819", + "id": "astnode100016806", "name": "time", "type": "CallExpression", "value": "" @@ -36241,14 +36213,14 @@ "comment": "", "meta": { "range": [ - 163748, - 163756 + 165787, + 165795 ], "filename": "astronomy.js", - "lineno": 3720, + "lineno": 3752, "columnno": 8, "code": { - "id": "astnode100016825", + "id": "astnode100016812", "name": "iter", "type": "Literal", "value": 0 @@ -36266,14 +36238,14 @@ "comment": "", "meta": { "range": [ - 164095, - 164121 + 166134, + 166160 ], "filename": "astronomy.js", - "lineno": 3729, + "lineno": 3761, "columnno": 12, "code": { - "id": "astnode100016858", + "id": "astnode100016845", "name": "gast", "type": "CallExpression", "value": "" @@ -36291,14 +36263,14 @@ "comment": "", "meta": { "range": [ - 164135, - 164185 + 166174, + 166224 ], "filename": "astronomy.js", - "lineno": 3730, + "lineno": 3762, "columnno": 12, "code": { - "id": "astnode100016864", + "id": "astnode100016851", "name": "ofdate", "type": "CallExpression", "value": "" @@ -36316,14 +36288,14 @@ "comment": "", "meta": { "range": [ - 164316, - 164402 + 166355, + 166441 ], "filename": "astronomy.js", - "lineno": 3733, + "lineno": 3765, "columnno": 12, "code": { - "id": "astnode100016874", + "id": "astnode100016861", "name": "delta_sidereal_hours", "type": "BinaryExpression", "value": "" @@ -36341,14 +36313,14 @@ "comment": "", "meta": { "range": [ - 164558, - 164584 + 166597, + 166623 ], "filename": "astronomy.js", - "lineno": 3737, + "lineno": 3769, "columnno": 16, "code": { - "id": "astnode100016901", + "id": "astnode100016888", "name": "delta_sidereal_hours", "type": "Literal", "funcscope": "SearchHourAngle", @@ -36367,14 +36339,14 @@ "comment": "", "meta": { "range": [ - 164805, - 164831 + 166844, + 166870 ], "filename": "astronomy.js", - "lineno": 3743, + "lineno": 3775, "columnno": 16, "code": { - "id": "astnode100016911", + "id": "astnode100016898", "name": "delta_sidereal_hours", "type": "Literal", "funcscope": "SearchHourAngle", @@ -36393,14 +36365,14 @@ "comment": "", "meta": { "range": [ - 164898, - 164924 + 166937, + 166963 ], "filename": "astronomy.js", - "lineno": 3745, + "lineno": 3777, "columnno": 16, "code": { - "id": "astnode100016920", + "id": "astnode100016907", "name": "delta_sidereal_hours", "type": "Literal", "funcscope": "SearchHourAngle", @@ -36419,14 +36391,14 @@ "comment": "", "meta": { "range": [ - 165091, - 165153 + 167130, + 167192 ], "filename": "astronomy.js", - "lineno": 3749, + "lineno": 3781, "columnno": 18, "code": { - "id": "astnode100016935", + "id": "astnode100016922", "name": "hor", "type": "CallExpression", "value": "" @@ -36444,14 +36416,14 @@ "comment": "", "meta": { "range": [ - 165356, - 165426 + 167395, + 167465 ], "filename": "astronomy.js", - "lineno": 3754, + "lineno": 3786, "columnno": 12, "code": { - "id": "astnode100016954", + "id": "astnode100016941", "name": "delta_days", "type": "BinaryExpression", "value": "" @@ -36469,14 +36441,14 @@ "comment": "", "meta": { "range": [ - 165436, - 165467 + 167475, + 167506 ], "filename": "astronomy.js", - "lineno": 3755, + "lineno": 3787, "columnno": 8, "code": { - "id": "astnode100016962", + "id": "astnode100016949", "name": "time", "type": "CallExpression", "funcscope": "SearchHourAngle", @@ -36495,14 +36467,14 @@ "comment": "", "meta": { "range": [ - 165477, - 165518 + 167516, + 167557 ], "filename": "astronomy.js", - "lineno": 3758, + "lineno": 3790, "columnno": 0, "code": { - "id": "astnode100016970", + "id": "astnode100016957", "name": "exports.SearchHourAngle", "type": "Identifier", "value": "SearchHourAngle", @@ -36519,14 +36491,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": [ - 167659, - 167921 + 169698, + 169960 ], "filename": "astronomy.js", - "lineno": 3802, + "lineno": 3834, "columnno": 0, "code": { - "id": "astnode100016975", + "id": "astnode100016962", "name": "SeasonInfo", "type": "ClassDeclaration", "paramnames": [ @@ -36593,14 +36565,14 @@ "comment": "", "meta": { "range": [ - 167682, - 167919 + 169721, + 169958 ], "filename": "astronomy.js", - "lineno": 3803, + "lineno": 3835, "columnno": 4, "code": { - "id": "astnode100016978", + "id": "astnode100016965", "name": "SeasonInfo", "type": "MethodDefinition", "paramnames": [ @@ -36625,14 +36597,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": [ - 167659, - 167921 + 169698, + 169960 ], "filename": "astronomy.js", - "lineno": 3802, + "lineno": 3834, "columnno": 0, "code": { - "id": "astnode100016975", + "id": "astnode100016962", "name": "SeasonInfo", "type": "ClassDeclaration", "paramnames": [ @@ -36698,14 +36670,14 @@ "comment": "", "meta": { "range": [ - 167758, - 167788 + 169797, + 169827 ], "filename": "astronomy.js", - "lineno": 3804, + "lineno": 3836, "columnno": 8, "code": { - "id": "astnode100016987", + "id": "astnode100016974", "name": "this.mar_equinox", "type": "Identifier", "value": "mar_equinox", @@ -36723,14 +36695,14 @@ "comment": "", "meta": { "range": [ - 167798, - 167830 + 169837, + 169869 ], "filename": "astronomy.js", - "lineno": 3805, + "lineno": 3837, "columnno": 8, "code": { - "id": "astnode100016993", + "id": "astnode100016980", "name": "this.jun_solstice", "type": "Identifier", "value": "jun_solstice", @@ -36748,14 +36720,14 @@ "comment": "", "meta": { "range": [ - 167840, - 167870 + 169879, + 169909 ], "filename": "astronomy.js", - "lineno": 3806, + "lineno": 3838, "columnno": 8, "code": { - "id": "astnode100016999", + "id": "astnode100016986", "name": "this.sep_equinox", "type": "Identifier", "value": "sep_equinox", @@ -36773,14 +36745,14 @@ "comment": "", "meta": { "range": [ - 167880, - 167912 + 169919, + 169951 ], "filename": "astronomy.js", - "lineno": 3807, + "lineno": 3839, "columnno": 8, "code": { - "id": "astnode100017005", + "id": "astnode100016992", "name": "this.dec_solstice", "type": "Identifier", "value": "dec_solstice", @@ -36798,14 +36770,14 @@ "comment": "", "meta": { "range": [ - 167922, - 167953 + 169961, + 169992 ], "filename": "astronomy.js", - "lineno": 3810, + "lineno": 3842, "columnno": 0, "code": { - "id": "astnode100017011", + "id": "astnode100016998", "name": "exports.SeasonInfo", "type": "Identifier", "value": "SeasonInfo", @@ -36822,14 +36794,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": [ - 168237, - 169070 + 170276, + 171109 ], "filename": "astronomy.js", - "lineno": 3820, + "lineno": 3852, "columnno": 0, "code": { - "id": "astnode100017016", + "id": "astnode100017003", "name": "Seasons", "type": "FunctionDeclaration", "paramnames": [ @@ -36883,14 +36855,14 @@ "comment": "", "meta": { "range": [ - 168266, - 168559 + 170305, + 170598 ], "filename": "astronomy.js", - "lineno": 3821, + "lineno": 3853, "columnno": 4, "code": { - "id": "astnode100017020", + "id": "astnode100017007", "name": "find", "type": "FunctionDeclaration", "paramnames": [ @@ -36916,14 +36888,14 @@ "comment": "", "meta": { "range": [ - 168317, - 168369 + 170356, + 170408 ], "filename": "astronomy.js", - "lineno": 3822, + "lineno": 3854, "columnno": 12, "code": { - "id": "astnode100017027", + "id": "astnode100017014", "name": "startDate", "type": "NewExpression", "value": "" @@ -36941,14 +36913,14 @@ "comment": "", "meta": { "range": [ - 168383, - 168433 + 170422, + 170472 ], "filename": "astronomy.js", - "lineno": 3823, + "lineno": 3855, "columnno": 12, "code": { - "id": "astnode100017041", + "id": "astnode100017028", "name": "time", "type": "CallExpression", "value": "" @@ -36966,14 +36938,14 @@ "comment": "", "meta": { "range": [ - 168637, - 168665 + 170676, + 170704 ], "filename": "astronomy.js", - "lineno": 3829, + "lineno": 3861, "columnno": 8, "code": { - "id": "astnode100017076", + "id": "astnode100017063", "name": "year", "type": "CallExpression", "funcscope": "Seasons", @@ -36992,14 +36964,14 @@ "comment": "", "meta": { "range": [ - 168836, - 168864 + 170875, + 170903 ], "filename": "astronomy.js", - "lineno": 3834, + "lineno": 3866, "columnno": 8, "code": { - "id": "astnode100017096", + "id": "astnode100017083", "name": "mar_equinox", "type": "CallExpression", "value": "" @@ -37017,14 +36989,14 @@ "comment": "", "meta": { "range": [ - 168874, - 168904 + 170913, + 170943 ], "filename": "astronomy.js", - "lineno": 3835, + "lineno": 3867, "columnno": 8, "code": { - "id": "astnode100017104", + "id": "astnode100017091", "name": "jun_solstice", "type": "CallExpression", "value": "" @@ -37042,14 +37014,14 @@ "comment": "", "meta": { "range": [ - 168914, - 168944 + 170953, + 170983 ], "filename": "astronomy.js", - "lineno": 3836, + "lineno": 3868, "columnno": 8, "code": { - "id": "astnode100017112", + "id": "astnode100017099", "name": "sep_equinox", "type": "CallExpression", "value": "" @@ -37067,14 +37039,14 @@ "comment": "", "meta": { "range": [ - 168954, - 168986 + 170993, + 171025 ], "filename": "astronomy.js", - "lineno": 3837, + "lineno": 3869, "columnno": 8, "code": { - "id": "astnode100017120", + "id": "astnode100017107", "name": "dec_solstice", "type": "CallExpression", "value": "" @@ -37092,14 +37064,14 @@ "comment": "", "meta": { "range": [ - 169071, - 169096 + 171110, + 171135 ], "filename": "astronomy.js", - "lineno": 3840, + "lineno": 3872, "columnno": 0, "code": { - "id": "astnode100017135", + "id": "astnode100017122", "name": "exports.Seasons", "type": "Identifier", "value": "Seasons", @@ -37116,14 +37088,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": [ - 170513, - 170771 + 172552, + 172810 ], "filename": "astronomy.js", - "lineno": 3871, + "lineno": 3903, "columnno": 0, "code": { - "id": "astnode100017140", + "id": "astnode100017127", "name": "ElongationEvent", "type": "ClassDeclaration", "paramnames": [ @@ -37193,14 +37165,14 @@ "comment": "", "meta": { "range": [ - 170541, - 170769 + 172580, + 172808 ], "filename": "astronomy.js", - "lineno": 3872, + "lineno": 3904, "columnno": 4, "code": { - "id": "astnode100017143", + "id": "astnode100017130", "name": "ElongationEvent", "type": "MethodDefinition", "paramnames": [ @@ -37225,14 +37197,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": [ - 170513, - 170771 + 172552, + 172810 ], "filename": "astronomy.js", - "lineno": 3871, + "lineno": 3903, "columnno": 0, "code": { - "id": "astnode100017140", + "id": "astnode100017127", "name": "ElongationEvent", "type": "ClassDeclaration", "paramnames": [ @@ -37301,14 +37273,14 @@ "comment": "", "meta": { "range": [ - 170614, - 170630 + 172653, + 172669 ], "filename": "astronomy.js", - "lineno": 3873, + "lineno": 3905, "columnno": 8, "code": { - "id": "astnode100017152", + "id": "astnode100017139", "name": "this.time", "type": "Identifier", "value": "time", @@ -37326,14 +37298,14 @@ "comment": "", "meta": { "range": [ - 170640, - 170668 + 172679, + 172707 ], "filename": "astronomy.js", - "lineno": 3874, + "lineno": 3906, "columnno": 8, "code": { - "id": "astnode100017158", + "id": "astnode100017145", "name": "this.visibility", "type": "Identifier", "value": "visibility", @@ -37351,14 +37323,14 @@ "comment": "", "meta": { "range": [ - 170678, - 170706 + 172717, + 172745 ], "filename": "astronomy.js", - "lineno": 3875, + "lineno": 3907, "columnno": 8, "code": { - "id": "astnode100017164", + "id": "astnode100017151", "name": "this.elongation", "type": "Identifier", "value": "elongation", @@ -37376,14 +37348,14 @@ "comment": "", "meta": { "range": [ - 170716, - 170762 + 172755, + 172801 ], "filename": "astronomy.js", - "lineno": 3876, + "lineno": 3908, "columnno": 8, "code": { - "id": "astnode100017170", + "id": "astnode100017157", "name": "this.ecliptic_separation", "type": "Identifier", "value": "ecliptic_separation", @@ -37401,14 +37373,14 @@ "comment": "", "meta": { "range": [ - 170772, - 170813 + 172811, + 172852 ], "filename": "astronomy.js", - "lineno": 3879, + "lineno": 3911, "columnno": 0, "code": { - "id": "astnode100017176", + "id": "astnode100017163", "name": "exports.ElongationEvent", "type": "Identifier", "value": "ElongationEvent", @@ -37425,14 +37397,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 {string} body\n * The name of the observed body. Not allowed to be `\"Earth\"`.\n *\n * @returns {ElongationEvent}\n */", "meta": { "range": [ - 171620, - 171959 + 173659, + 173998 ], "filename": "astronomy.js", - "lineno": 3898, + "lineno": 3930, "columnno": 0, "code": { - "id": "astnode100017181", + "id": "astnode100017168", "name": "Elongation", "type": "FunctionDeclaration", "paramnames": [ @@ -37484,14 +37456,14 @@ "comment": "", "meta": { "range": [ - 171662, - 171683 + 173701, + 173722 ], "filename": "astronomy.js", - "lineno": 3899, + "lineno": 3931, "columnno": 8, "code": { - "id": "astnode100017187", + "id": "astnode100017174", "name": "time", "type": "CallExpression", "value": "" @@ -37509,14 +37481,14 @@ "comment": "", "meta": { "range": [ - 171693, - 171727 + 173732, + 173766 ], "filename": "astronomy.js", - "lineno": 3900, + "lineno": 3932, "columnno": 8, "code": { - "id": "astnode100017193", + "id": "astnode100017180", "name": "lon", "type": "CallExpression", "value": "" @@ -37534,14 +37506,14 @@ "comment": "", "meta": { "range": [ - 171737, - 171740 + 173776, + 173779 ], "filename": "astronomy.js", - "lineno": 3901, + "lineno": 3933, "columnno": 8, "code": { - "id": "astnode100017200", + "id": "astnode100017187", "name": "vis" } }, @@ -37557,14 +37529,14 @@ "comment": "", "meta": { "range": [ - 171771, - 171786 + 173810, + 173825 ], "filename": "astronomy.js", - "lineno": 3903, + "lineno": 3935, "columnno": 8, "code": { - "id": "astnode100017208", + "id": "astnode100017195", "name": "vis", "type": "Literal", "funcscope": "Elongation", @@ -37583,14 +37555,14 @@ "comment": "", "meta": { "range": [ - 171796, - 171811 + 173835, + 173850 ], "filename": "astronomy.js", - "lineno": 3904, + "lineno": 3936, "columnno": 8, "code": { - "id": "astnode100017212", + "id": "astnode100017199", "name": "lon", "type": "BinaryExpression", "funcscope": "Elongation", @@ -37609,14 +37581,14 @@ "comment": "", "meta": { "range": [ - 171838, - 171853 + 173877, + 173892 ], "filename": "astronomy.js", - "lineno": 3907, + "lineno": 3939, "columnno": 8, "code": { - "id": "astnode100017219", + "id": "astnode100017206", "name": "vis", "type": "Literal", "funcscope": "Elongation", @@ -37635,14 +37607,14 @@ "comment": "", "meta": { "range": [ - 171869, - 171901 + 173908, + 173940 ], "filename": "astronomy.js", - "lineno": 3909, + "lineno": 3941, "columnno": 8, "code": { - "id": "astnode100017223", + "id": "astnode100017210", "name": "angle", "type": "CallExpression", "value": "" @@ -37660,14 +37632,14 @@ "comment": "", "meta": { "range": [ - 171960, - 171991 + 173999, + 174030 ], "filename": "astronomy.js", - "lineno": 3912, + "lineno": 3944, "columnno": 0, "code": { - "id": "astnode100017237", + "id": "astnode100017224", "name": "exports.Elongation", "type": "Identifier", "value": "Elongation", @@ -37684,14 +37656,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 {string} 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": [ - 172789, - 176912 + 174828, + 178951 ], "filename": "astronomy.js", - "lineno": 3930, + "lineno": 3962, "columnno": 0, "code": { - "id": "astnode100017242", + "id": "astnode100017229", "name": "SearchMaxElongation", "type": "FunctionDeclaration", "paramnames": [ @@ -37766,14 +37738,14 @@ "comment": "", "meta": { "range": [ - 172847, - 172856 + 174886, + 174895 ], "filename": "astronomy.js", - "lineno": 3931, + "lineno": 3963, "columnno": 10, "code": { - "id": "astnode100017248", + "id": "astnode100017235", "name": "dt", "type": "Literal", "value": 0.01 @@ -37791,14 +37763,14 @@ "comment": "", "meta": { "range": [ - 172862, - 173324 + 174901, + 175363 ], "filename": "astronomy.js", - "lineno": 3932, + "lineno": 3964, "columnno": 4, "code": { - "id": "astnode100017251", + "id": "astnode100017238", "name": "neg_slope", "type": "FunctionDeclaration", "paramnames": [ @@ -37825,14 +37797,14 @@ "comment": "", "meta": { "range": [ - 173123, - 173146 + 175162, + 175185 ], "filename": "astronomy.js", - "lineno": 3936, + "lineno": 3968, "columnno": 14, "code": { - "id": "astnode100017256", + "id": "astnode100017243", "name": "t1", "type": "CallExpression", "value": "" @@ -37850,14 +37822,14 @@ "comment": "", "meta": { "range": [ - 173162, - 173185 + 175201, + 175224 ], "filename": "astronomy.js", - "lineno": 3937, + "lineno": 3969, "columnno": 14, "code": { - "id": "astnode100017267", + "id": "astnode100017254", "name": "t2", "type": "CallExpression", "value": "" @@ -37875,14 +37847,14 @@ "comment": "", "meta": { "range": [ - 173199, - 173226 + 175238, + 175265 ], "filename": "astronomy.js", - "lineno": 3938, + "lineno": 3970, "columnno": 12, "code": { - "id": "astnode100017278", + "id": "astnode100017265", "name": "e1", "type": "CallExpression", "value": "" @@ -37900,14 +37872,14 @@ "comment": "", "meta": { "range": [ - 173240, - 173267 + 175279, + 175306 ], "filename": "astronomy.js", - "lineno": 3939, + "lineno": 3971, "columnno": 12, "code": { - "id": "astnode100017285", + "id": "astnode100017272", "name": "e2", "type": "CallExpression", "value": "" @@ -37925,14 +37897,14 @@ "comment": "", "meta": { "range": [ - 173281, - 173299 + 175320, + 175338 ], "filename": "astronomy.js", - "lineno": 3940, + "lineno": 3972, "columnno": 12, "code": { - "id": "astnode100017292", + "id": "astnode100017279", "name": "m", "type": "BinaryExpression", "value": "" @@ -37950,14 +37922,14 @@ "comment": "", "meta": { "range": [ - 173333, - 173364 + 175372, + 175403 ], "filename": "astronomy.js", - "lineno": 3943, + "lineno": 3975, "columnno": 8, "code": { - "id": "astnode100017302", + "id": "astnode100017289", "name": "startTime", "type": "CallExpression", "value": "" @@ -37975,14 +37947,14 @@ "comment": "", "meta": { "range": [ - 173376, - 173470 + 175415, + 175509 ], "filename": "astronomy.js", - "lineno": 3944, + "lineno": 3976, "columnno": 10, "code": { - "id": "astnode100017308", + "id": "astnode100017295", "name": "table", "type": "ObjectExpression", "value": "{\"Mercury\":\"\",\"Venus\":\"\"}" @@ -38000,14 +37972,14 @@ "comment": "", "meta": { "range": [ - 173394, - 173425 + 175433, + 175464 ], "filename": "astronomy.js", - "lineno": 3945, + "lineno": 3977, "columnno": 8, "code": { - "id": "astnode100017311", + "id": "astnode100017298", "name": "Mercury", "type": "ObjectExpression", "value": "{\"s1\":50,\"s2\":85}" @@ -38024,14 +37996,14 @@ "comment": "", "meta": { "range": [ - 173405, - 173413 + 175444, + 175452 ], "filename": "astronomy.js", - "lineno": 3945, + "lineno": 3977, "columnno": 19, "code": { - "id": "astnode100017313", + "id": "astnode100017300", "name": "s1", "type": "Literal", "value": 50 @@ -38048,14 +38020,14 @@ "comment": "", "meta": { "range": [ - 173415, - 173423 + 175454, + 175462 ], "filename": "astronomy.js", - "lineno": 3945, + "lineno": 3977, "columnno": 29, "code": { - "id": "astnode100017315", + "id": "astnode100017302", "name": "s2", "type": "Literal", "value": 85 @@ -38072,14 +38044,14 @@ "comment": "", "meta": { "range": [ - 173435, - 173464 + 175474, + 175503 ], "filename": "astronomy.js", - "lineno": 3946, + "lineno": 3978, "columnno": 8, "code": { - "id": "astnode100017317", + "id": "astnode100017304", "name": "Venus", "type": "ObjectExpression", "value": "{\"s1\":40,\"s2\":50}" @@ -38096,14 +38068,14 @@ "comment": "", "meta": { "range": [ - 173444, - 173452 + 175483, + 175491 ], "filename": "astronomy.js", - "lineno": 3946, + "lineno": 3978, "columnno": 17, "code": { - "id": "astnode100017319", + "id": "astnode100017306", "name": "s1", "type": "Literal", "value": 40 @@ -38120,14 +38092,14 @@ "comment": "", "meta": { "range": [ - 173454, - 173462 + 175493, + 175501 ], "filename": "astronomy.js", - "lineno": 3946, + "lineno": 3978, "columnno": 27, "code": { - "id": "astnode100017321", + "id": "astnode100017308", "name": "s2", "type": "Literal", "value": 50 @@ -38144,14 +38116,14 @@ "comment": "", "meta": { "range": [ - 173482, - 173502 + 175521, + 175541 ], "filename": "astronomy.js", - "lineno": 3948, + "lineno": 3980, "columnno": 10, "code": { - "id": "astnode100017324", + "id": "astnode100017311", "name": "planet", "type": "MemberExpression", "value": "table[undefined]" @@ -38169,14 +38141,14 @@ "comment": "", "meta": { "range": [ - 173600, - 173608 + 175639, + 175647 ], "filename": "astronomy.js", - "lineno": 3951, + "lineno": 3983, "columnno": 8, "code": { - "id": "astnode100017335", + "id": "astnode100017322", "name": "iter", "type": "Literal", "value": 0 @@ -38194,14 +38166,14 @@ "comment": "", "meta": { "range": [ - 173758, - 173799 + 175797, + 175838 ], "filename": "astronomy.js", - "lineno": 3955, + "lineno": 3987, "columnno": 12, "code": { - "id": "astnode100017345", + "id": "astnode100017332", "name": "plon", "type": "CallExpression", "value": "" @@ -38219,14 +38191,14 @@ "comment": "", "meta": { "range": [ - 173813, - 173857 + 175852, + 175896 ], "filename": "astronomy.js", - "lineno": 3956, + "lineno": 3988, "columnno": 12, "code": { - "id": "astnode100017352", + "id": "astnode100017339", "name": "elon", "type": "CallExpression", "value": "" @@ -38244,14 +38216,14 @@ "comment": "", "meta": { "range": [ - 173871, - 173906 + 175910, + 175945 ], "filename": "astronomy.js", - "lineno": 3957, + "lineno": 3989, "columnno": 12, "code": { - "id": "astnode100017359", + "id": "astnode100017346", "name": "rlon", "type": "CallExpression", "value": "" @@ -38269,14 +38241,14 @@ "comment": "", "meta": { "range": [ - 174192, - 174199 + 176231, + 176238 ], "filename": "astronomy.js", - "lineno": 3961, + "lineno": 3993, "columnno": 12, "code": { - "id": "astnode100017367", + "id": "astnode100017354", "name": "rlon_lo" } }, @@ -38292,14 +38264,14 @@ "comment": "", "meta": { "range": [ - 174201, - 174208 + 176240, + 176247 ], "filename": "astronomy.js", - "lineno": 3961, + "lineno": 3993, "columnno": 21, "code": { - "id": "astnode100017369", + "id": "astnode100017356", "name": "rlon_hi" } }, @@ -38315,14 +38287,14 @@ "comment": "", "meta": { "range": [ - 174210, - 174221 + 176249, + 176260 ], "filename": "astronomy.js", - "lineno": 3961, + "lineno": 3993, "columnno": 30, "code": { - "id": "astnode100017371", + "id": "astnode100017358", "name": "adjust_days" } }, @@ -38338,14 +38310,14 @@ "comment": "", "meta": { "range": [ - 174336, - 174351 + 176375, + 176390 ], "filename": "astronomy.js", - "lineno": 3964, + "lineno": 3996, "columnno": 12, "code": { - "id": "astnode100017389", + "id": "astnode100017376", "name": "adjust_days", "type": "Literal", "funcscope": "SearchMaxElongation", @@ -38364,14 +38336,14 @@ "comment": "", "meta": { "range": [ - 174431, - 174451 + 176470, + 176490 ], "filename": "astronomy.js", - "lineno": 3966, + "lineno": 3998, "columnno": 12, "code": { - "id": "astnode100017393", + "id": "astnode100017380", "name": "rlon_lo", "type": "UnaryExpression", "funcscope": "SearchMaxElongation", @@ -38390,14 +38362,14 @@ "comment": "", "meta": { "range": [ - 174531, - 174551 + 176570, + 176590 ], "filename": "astronomy.js", - "lineno": 3968, + "lineno": 4000, "columnno": 12, "code": { - "id": "astnode100017400", + "id": "astnode100017387", "name": "rlon_hi", "type": "UnaryExpression", "funcscope": "SearchMaxElongation", @@ -38416,14 +38388,14 @@ "comment": "", "meta": { "range": [ - 174696, - 174711 + 176735, + 176750 ], "filename": "astronomy.js", - "lineno": 3972, + "lineno": 4004, "columnno": 12, "code": { - "id": "astnode100017422", + "id": "astnode100017409", "name": "adjust_days", "type": "Literal", "funcscope": "SearchMaxElongation", @@ -38442,14 +38414,14 @@ "comment": "", "meta": { "range": [ - 174791, - 174811 + 176830, + 176850 ], "filename": "astronomy.js", - "lineno": 3974, + "lineno": 4006, "columnno": 12, "code": { - "id": "astnode100017426", + "id": "astnode100017413", "name": "rlon_lo", "type": "UnaryExpression", "funcscope": "SearchMaxElongation", @@ -38468,14 +38440,14 @@ "comment": "", "meta": { "range": [ - 174891, - 174911 + 176930, + 176950 ], "filename": "astronomy.js", - "lineno": 3976, + "lineno": 4008, "columnno": 12, "code": { - "id": "astnode100017433", + "id": "astnode100017420", "name": "rlon_hi", "type": "UnaryExpression", "funcscope": "SearchMaxElongation", @@ -38494,14 +38466,14 @@ "comment": "", "meta": { "range": [ - 175100, - 175138 + 177139, + 177177 ], "filename": "astronomy.js", - "lineno": 3981, + "lineno": 4013, "columnno": 12, "code": { - "id": "astnode100017445", + "id": "astnode100017432", "name": "adjust_days", "type": "BinaryExpression", "funcscope": "SearchMaxElongation", @@ -38520,14 +38492,14 @@ "comment": "", "meta": { "range": [ - 175152, - 175172 + 177191, + 177211 ], "filename": "astronomy.js", - "lineno": 3982, + "lineno": 4014, "columnno": 12, "code": { - "id": "astnode100017454", + "id": "astnode100017441", "name": "rlon_lo", "type": "UnaryExpression", "funcscope": "SearchMaxElongation", @@ -38546,14 +38518,14 @@ "comment": "", "meta": { "range": [ - 175186, - 175206 + 177225, + 177245 ], "filename": "astronomy.js", - "lineno": 3983, + "lineno": 4015, "columnno": 12, "code": { - "id": "astnode100017461", + "id": "astnode100017448", "name": "rlon_hi", "type": "UnaryExpression", "funcscope": "SearchMaxElongation", @@ -38572,14 +38544,14 @@ "comment": "", "meta": { "range": [ - 175454, - 175492 + 177493, + 177531 ], "filename": "astronomy.js", - "lineno": 3989, + "lineno": 4021, "columnno": 12, "code": { - "id": "astnode100017469", + "id": "astnode100017456", "name": "adjust_days", "type": "BinaryExpression", "funcscope": "SearchMaxElongation", @@ -38598,14 +38570,14 @@ "comment": "", "meta": { "range": [ - 175506, - 175526 + 177545, + 177565 ], "filename": "astronomy.js", - "lineno": 3990, + "lineno": 4022, "columnno": 12, "code": { - "id": "astnode100017478", + "id": "astnode100017465", "name": "rlon_lo", "type": "UnaryExpression", "funcscope": "SearchMaxElongation", @@ -38624,14 +38596,14 @@ "comment": "", "meta": { "range": [ - 175614, - 175634 + 177653, + 177673 ], "filename": "astronomy.js", - "lineno": 3992, + "lineno": 4024, "columnno": 12, "code": { - "id": "astnode100017485", + "id": "astnode100017472", "name": "rlon_hi", "type": "UnaryExpression", "funcscope": "SearchMaxElongation", @@ -38650,14 +38622,14 @@ "comment": "", "meta": { "range": [ - 175658, - 175698 + 177697, + 177737 ], "filename": "astronomy.js", - "lineno": 3994, + "lineno": 4026, "columnno": 12, "code": { - "id": "astnode100017492", + "id": "astnode100017479", "name": "t_start", "type": "CallExpression", "value": "" @@ -38675,14 +38647,14 @@ "comment": "", "meta": { "range": [ - 175712, - 175764 + 177751, + 177803 ], "filename": "astronomy.js", - "lineno": 3995, + "lineno": 4027, "columnno": 12, "code": { - "id": "astnode100017500", + "id": "astnode100017487", "name": "t1", "type": "CallExpression", "value": "" @@ -38700,14 +38672,14 @@ "comment": "", "meta": { "range": [ - 175778, - 175825 + 177817, + 177864 ], "filename": "astronomy.js", - "lineno": 3996, + "lineno": 4028, "columnno": 12, "code": { - "id": "astnode100017508", + "id": "astnode100017495", "name": "t2", "type": "CallExpression", "value": "" @@ -38725,14 +38697,14 @@ "comment": "", "meta": { "range": [ - 175960, - 175978 + 177999, + 178017 ], "filename": "astronomy.js", - "lineno": 3999, + "lineno": 4031, "columnno": 12, "code": { - "id": "astnode100017516", + "id": "astnode100017503", "name": "m1", "type": "CallExpression", "value": "" @@ -38750,14 +38722,14 @@ "comment": "", "meta": { "range": [ - 176082, - 176100 + 178121, + 178139 ], "filename": "astronomy.js", - "lineno": 4002, + "lineno": 4034, "columnno": 12, "code": { - "id": "astnode100017531", + "id": "astnode100017518", "name": "m2", "type": "CallExpression", "value": "" @@ -38775,14 +38747,14 @@ "comment": "", "meta": { "range": [ - 176313, - 176399 + 178352, + 178438 ], "filename": "astronomy.js", - "lineno": 4006, + "lineno": 4038, "columnno": 12, "code": { - "id": "astnode100017546", + "id": "astnode100017533", "name": "tx", "type": "CallExpression", "value": "" @@ -38800,14 +38772,14 @@ "comment": "", "meta": { "range": [ - 176346, - 176357 + 178385, + 178396 ], "filename": "astronomy.js", - "lineno": 4006, + "lineno": 4038, "columnno": 45, "code": { - "id": "astnode100017554", + "id": "astnode100017541", "name": "init_f1", "type": "Identifier", "value": "m1" @@ -38823,14 +38795,14 @@ "comment": "", "meta": { "range": [ - 176359, - 176370 + 178398, + 178409 ], "filename": "astronomy.js", - "lineno": 4006, + "lineno": 4038, "columnno": 58, "code": { - "id": "astnode100017556", + "id": "astnode100017543", "name": "init_f2", "type": "Identifier", "value": "m2" @@ -38846,14 +38818,14 @@ "comment": "", "meta": { "range": [ - 176372, - 176396 + 178411, + 178435 ], "filename": "astronomy.js", - "lineno": 4006, + "lineno": 4038, "columnno": 71, "code": { - "id": "astnode100017558", + "id": "astnode100017545", "name": "dt_tolerance_seconds", "type": "Literal", "value": 10 @@ -38869,14 +38841,14 @@ "comment": "", "meta": { "range": [ - 176808, - 176833 + 178847, + 178872 ], "filename": "astronomy.js", - "lineno": 4014, + "lineno": 4046, "columnno": 8, "code": { - "id": "astnode100017592", + "id": "astnode100017579", "name": "startTime", "type": "CallExpression", "funcscope": "SearchMaxElongation", @@ -38895,14 +38867,14 @@ "comment": "", "meta": { "range": [ - 176913, - 176962 + 178952, + 179001 ], "filename": "astronomy.js", - "lineno": 4018, + "lineno": 4050, "columnno": 0, "code": { - "id": "astnode100017603", + "id": "astnode100017590", "name": "exports.SearchMaxElongation", "type": "Identifier", "value": "SearchMaxElongation", @@ -38919,14 +38891,14 @@ "comment": "/**\n * @brief Searches for the date and time Venus will next appear brightest as seen from the Earth.\n *\n * @param {string} 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": [ - 177782, - 181943 + 179821, + 183982 ], "filename": "astronomy.js", - "lineno": 4036, + "lineno": 4068, "columnno": 0, "code": { - "id": "astnode100017608", + "id": "astnode100017595", "name": "SearchPeakMagnitude", "type": "FunctionDeclaration", "paramnames": [ @@ -39001,14 +38973,14 @@ "comment": "", "meta": { "range": [ - 177935, - 177944 + 179974, + 179983 ], "filename": "astronomy.js", - "lineno": 4039, + "lineno": 4071, "columnno": 10, "code": { - "id": "astnode100017620", + "id": "astnode100017607", "name": "dt", "type": "Literal", "value": 0.01 @@ -39026,14 +38998,14 @@ "comment": "", "meta": { "range": [ - 177950, - 178545 + 179989, + 180584 ], "filename": "astronomy.js", - "lineno": 4040, + "lineno": 4072, "columnno": 4, "code": { - "id": "astnode100017623", + "id": "astnode100017610", "name": "slope", "type": "FunctionDeclaration", "paramnames": [ @@ -39060,14 +39032,14 @@ "comment": "", "meta": { "range": [ - 178330, - 178353 + 180369, + 180392 ], "filename": "astronomy.js", - "lineno": 4046, + "lineno": 4078, "columnno": 14, "code": { - "id": "astnode100017628", + "id": "astnode100017615", "name": "t1", "type": "CallExpression", "value": "" @@ -39085,14 +39057,14 @@ "comment": "", "meta": { "range": [ - 178369, - 178392 + 180408, + 180431 ], "filename": "astronomy.js", - "lineno": 4047, + "lineno": 4079, "columnno": 14, "code": { - "id": "astnode100017639", + "id": "astnode100017626", "name": "t2", "type": "CallExpression", "value": "" @@ -39110,14 +39082,14 @@ "comment": "", "meta": { "range": [ - 178408, - 178439 + 180447, + 180478 ], "filename": "astronomy.js", - "lineno": 4048, + "lineno": 4080, "columnno": 14, "code": { - "id": "astnode100017650", + "id": "astnode100017637", "name": "y1", "type": "MemberExpression", "value": ".mag" @@ -39135,14 +39107,14 @@ "comment": "", "meta": { "range": [ - 178455, - 178486 + 180494, + 180525 ], "filename": "astronomy.js", - "lineno": 4049, + "lineno": 4081, "columnno": 14, "code": { - "id": "astnode100017659", + "id": "astnode100017646", "name": "y2", "type": "MemberExpression", "value": ".mag" @@ -39160,14 +39132,14 @@ "comment": "", "meta": { "range": [ - 178502, - 178520 + 180541, + 180559 ], "filename": "astronomy.js", - "lineno": 4050, + "lineno": 4082, "columnno": 14, "code": { - "id": "astnode100017668", + "id": "astnode100017655", "name": "m", "type": "BinaryExpression", "value": "" @@ -39185,14 +39157,14 @@ "comment": "", "meta": { "range": [ - 178554, - 178585 + 180593, + 180624 ], "filename": "astronomy.js", - "lineno": 4053, + "lineno": 4085, "columnno": 8, "code": { - "id": "astnode100017678", + "id": "astnode100017665", "name": "startTime", "type": "CallExpression", "value": "" @@ -39210,14 +39182,14 @@ "comment": "", "meta": { "range": [ - 178686, - 178695 + 180725, + 180734 ], "filename": "astronomy.js", - "lineno": 4055, + "lineno": 4087, "columnno": 10, "code": { - "id": "astnode100017684", + "id": "astnode100017671", "name": "s1", "type": "Literal", "value": 10 @@ -39235,14 +39207,14 @@ "comment": "", "meta": { "range": [ - 178707, - 178716 + 180746, + 180755 ], "filename": "astronomy.js", - "lineno": 4056, + "lineno": 4088, "columnno": 10, "code": { - "id": "astnode100017688", + "id": "astnode100017675", "name": "s2", "type": "Literal", "value": 30 @@ -39260,14 +39232,14 @@ "comment": "", "meta": { "range": [ - 178726, - 178734 + 180765, + 180773 ], "filename": "astronomy.js", - "lineno": 4057, + "lineno": 4089, "columnno": 8, "code": { - "id": "astnode100017692", + "id": "astnode100017679", "name": "iter", "type": "Literal", "value": 0 @@ -39285,14 +39257,14 @@ "comment": "", "meta": { "range": [ - 178884, - 178925 + 180923, + 180964 ], "filename": "astronomy.js", - "lineno": 4061, + "lineno": 4093, "columnno": 12, "code": { - "id": "astnode100017702", + "id": "astnode100017689", "name": "plon", "type": "CallExpression", "value": "" @@ -39310,14 +39282,14 @@ "comment": "", "meta": { "range": [ - 178939, - 178983 + 180978, + 181022 ], "filename": "astronomy.js", - "lineno": 4062, + "lineno": 4094, "columnno": 12, "code": { - "id": "astnode100017709", + "id": "astnode100017696", "name": "elon", "type": "CallExpression", "value": "" @@ -39335,14 +39307,14 @@ "comment": "", "meta": { "range": [ - 178997, - 179032 + 181036, + 181071 ], "filename": "astronomy.js", - "lineno": 4063, + "lineno": 4095, "columnno": 12, "code": { - "id": "astnode100017716", + "id": "astnode100017703", "name": "rlon", "type": "CallExpression", "value": "" @@ -39360,14 +39332,14 @@ "comment": "", "meta": { "range": [ - 179318, - 179325 + 181357, + 181364 ], "filename": "astronomy.js", - "lineno": 4067, + "lineno": 4099, "columnno": 12, "code": { - "id": "astnode100017724", + "id": "astnode100017711", "name": "rlon_lo" } }, @@ -39383,14 +39355,14 @@ "comment": "", "meta": { "range": [ - 179327, - 179334 + 181366, + 181373 ], "filename": "astronomy.js", - "lineno": 4067, + "lineno": 4099, "columnno": 21, "code": { - "id": "astnode100017726", + "id": "astnode100017713", "name": "rlon_hi" } }, @@ -39406,14 +39378,14 @@ "comment": "", "meta": { "range": [ - 179336, - 179347 + 181375, + 181386 ], "filename": "astronomy.js", - "lineno": 4067, + "lineno": 4099, "columnno": 30, "code": { - "id": "astnode100017728", + "id": "astnode100017715", "name": "adjust_days" } }, @@ -39429,14 +39401,14 @@ "comment": "", "meta": { "range": [ - 179448, - 179463 + 181487, + 181502 ], "filename": "astronomy.js", - "lineno": 4070, + "lineno": 4102, "columnno": 12, "code": { - "id": "astnode100017742", + "id": "astnode100017729", "name": "adjust_days", "type": "Literal", "funcscope": "SearchPeakMagnitude", @@ -39455,14 +39427,14 @@ "comment": "", "meta": { "range": [ - 179543, - 179556 + 181582, + 181595 ], "filename": "astronomy.js", - "lineno": 4072, + "lineno": 4104, "columnno": 12, "code": { - "id": "astnode100017746", + "id": "astnode100017733", "name": "rlon_lo", "type": "UnaryExpression", "funcscope": "SearchPeakMagnitude", @@ -39481,14 +39453,14 @@ "comment": "", "meta": { "range": [ - 179636, - 179649 + 181675, + 181688 ], "filename": "astronomy.js", - "lineno": 4074, + "lineno": 4106, "columnno": 12, "code": { - "id": "astnode100017751", + "id": "astnode100017738", "name": "rlon_hi", "type": "UnaryExpression", "funcscope": "SearchPeakMagnitude", @@ -39507,14 +39479,14 @@ "comment": "", "meta": { "range": [ - 179780, - 179795 + 181819, + 181834 ], "filename": "astronomy.js", - "lineno": 4078, + "lineno": 4110, "columnno": 12, "code": { - "id": "astnode100017767", + "id": "astnode100017754", "name": "adjust_days", "type": "Literal", "funcscope": "SearchPeakMagnitude", @@ -39533,14 +39505,14 @@ "comment": "", "meta": { "range": [ - 179875, - 179888 + 181914, + 181927 ], "filename": "astronomy.js", - "lineno": 4080, + "lineno": 4112, "columnno": 12, "code": { - "id": "astnode100017771", + "id": "astnode100017758", "name": "rlon_lo", "type": "UnaryExpression", "funcscope": "SearchPeakMagnitude", @@ -39559,14 +39531,14 @@ "comment": "", "meta": { "range": [ - 179968, - 179981 + 182007, + 182020 ], "filename": "astronomy.js", - "lineno": 4082, + "lineno": 4114, "columnno": 12, "code": { - "id": "astnode100017776", + "id": "astnode100017763", "name": "rlon_hi", "type": "UnaryExpression", "funcscope": "SearchPeakMagnitude", @@ -39585,14 +39557,14 @@ "comment": "", "meta": { "range": [ - 180170, - 180208 + 182209, + 182247 ], "filename": "astronomy.js", - "lineno": 4087, + "lineno": 4119, "columnno": 12, "code": { - "id": "astnode100017786", + "id": "astnode100017773", "name": "adjust_days", "type": "BinaryExpression", "funcscope": "SearchPeakMagnitude", @@ -39611,14 +39583,14 @@ "comment": "", "meta": { "range": [ - 180222, - 180235 + 182261, + 182274 ], "filename": "astronomy.js", - "lineno": 4088, + "lineno": 4120, "columnno": 12, "code": { - "id": "astnode100017795", + "id": "astnode100017782", "name": "rlon_lo", "type": "UnaryExpression", "funcscope": "SearchPeakMagnitude", @@ -39637,14 +39609,14 @@ "comment": "", "meta": { "range": [ - 180323, - 180336 + 182362, + 182375 ], "filename": "astronomy.js", - "lineno": 4090, + "lineno": 4122, "columnno": 12, "code": { - "id": "astnode100017800", + "id": "astnode100017787", "name": "rlon_hi", "type": "UnaryExpression", "funcscope": "SearchPeakMagnitude", @@ -39663,14 +39635,14 @@ "comment": "", "meta": { "range": [ - 180510, - 180548 + 182549, + 182587 ], "filename": "astronomy.js", - "lineno": 4095, + "lineno": 4127, "columnno": 12, "code": { - "id": "astnode100017806", + "id": "astnode100017793", "name": "adjust_days", "type": "BinaryExpression", "funcscope": "SearchPeakMagnitude", @@ -39689,14 +39661,14 @@ "comment": "", "meta": { "range": [ - 180562, - 180575 + 182601, + 182614 ], "filename": "astronomy.js", - "lineno": 4096, + "lineno": 4128, "columnno": 12, "code": { - "id": "astnode100017815", + "id": "astnode100017802", "name": "rlon_lo", "type": "UnaryExpression", "funcscope": "SearchPeakMagnitude", @@ -39715,14 +39687,14 @@ "comment": "", "meta": { "range": [ - 180663, - 180676 + 182702, + 182715 ], "filename": "astronomy.js", - "lineno": 4098, + "lineno": 4130, "columnno": 12, "code": { - "id": "astnode100017820", + "id": "astnode100017807", "name": "rlon_hi", "type": "UnaryExpression", "funcscope": "SearchPeakMagnitude", @@ -39741,14 +39713,14 @@ "comment": "", "meta": { "range": [ - 180700, - 180740 + 182739, + 182779 ], "filename": "astronomy.js", - "lineno": 4100, + "lineno": 4132, "columnno": 12, "code": { - "id": "astnode100017825", + "id": "astnode100017812", "name": "t_start", "type": "CallExpression", "value": "" @@ -39766,14 +39738,14 @@ "comment": "", "meta": { "range": [ - 180754, - 180806 + 182793, + 182845 ], "filename": "astronomy.js", - "lineno": 4101, + "lineno": 4133, "columnno": 12, "code": { - "id": "astnode100017833", + "id": "astnode100017820", "name": "t1", "type": "CallExpression", "value": "" @@ -39791,14 +39763,14 @@ "comment": "", "meta": { "range": [ - 180820, - 180867 + 182859, + 182906 ], "filename": "astronomy.js", - "lineno": 4102, + "lineno": 4134, "columnno": 12, "code": { - "id": "astnode100017841", + "id": "astnode100017828", "name": "t2", "type": "CallExpression", "value": "" @@ -39816,14 +39788,14 @@ "comment": "", "meta": { "range": [ - 181001, - 181015 + 183040, + 183054 ], "filename": "astronomy.js", - "lineno": 4105, + "lineno": 4137, "columnno": 12, "code": { - "id": "astnode100017849", + "id": "astnode100017836", "name": "m1", "type": "CallExpression", "value": "" @@ -39841,14 +39813,14 @@ "comment": "", "meta": { "range": [ - 181119, - 181133 + 183158, + 183172 ], "filename": "astronomy.js", - "lineno": 4108, + "lineno": 4140, "columnno": 12, "code": { - "id": "astnode100017864", + "id": "astnode100017851", "name": "m2", "type": "CallExpression", "value": "" @@ -39866,14 +39838,14 @@ "comment": "", "meta": { "range": [ - 181346, - 181428 + 183385, + 183467 ], "filename": "astronomy.js", - "lineno": 4112, + "lineno": 4144, "columnno": 12, "code": { - "id": "astnode100017879", + "id": "astnode100017866", "name": "tx", "type": "CallExpression", "value": "" @@ -39891,14 +39863,14 @@ "comment": "", "meta": { "range": [ - 181375, - 181386 + 183414, + 183425 ], "filename": "astronomy.js", - "lineno": 4112, + "lineno": 4144, "columnno": 41, "code": { - "id": "astnode100017887", + "id": "astnode100017874", "name": "init_f1", "type": "Identifier", "value": "m1" @@ -39914,14 +39886,14 @@ "comment": "", "meta": { "range": [ - 181388, - 181399 + 183427, + 183438 ], "filename": "astronomy.js", - "lineno": 4112, + "lineno": 4144, "columnno": 54, "code": { - "id": "astnode100017889", + "id": "astnode100017876", "name": "init_f2", "type": "Identifier", "value": "m2" @@ -39937,14 +39909,14 @@ "comment": "", "meta": { "range": [ - 181401, - 181425 + 183440, + 183464 ], "filename": "astronomy.js", - "lineno": 4112, + "lineno": 4144, "columnno": 67, "code": { - "id": "astnode100017891", + "id": "astnode100017878", "name": "dt_tolerance_seconds", "type": "Literal", "value": 10 @@ -39960,14 +39932,14 @@ "comment": "", "meta": { "range": [ - 181839, - 181864 + 183878, + 183903 ], "filename": "astronomy.js", - "lineno": 4120, + "lineno": 4152, "columnno": 8, "code": { - "id": "astnode100017925", + "id": "astnode100017912", "name": "startTime", "type": "CallExpression", "funcscope": "SearchPeakMagnitude", @@ -39986,14 +39958,14 @@ "comment": "", "meta": { "range": [ - 181944, - 181993 + 183983, + 184032 ], "filename": "astronomy.js", - "lineno": 4124, + "lineno": 4156, "columnno": 0, "code": { - "id": "astnode100017936", + "id": "astnode100017923", "name": "exports.SearchPeakMagnitude", "type": "Identifier", "value": "SearchPeakMagnitude", @@ -40010,14 +39982,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": [ - 182784, - 182972 + 184823, + 185011 ], "filename": "astronomy.js", - "lineno": 4147, + "lineno": 4179, "columnno": 0, "code": { - "id": "astnode100017941", + "id": "astnode100017928", "name": "Apsis", "type": "ClassDeclaration", "paramnames": [ @@ -40087,14 +40059,14 @@ "comment": "", "meta": { "range": [ - 182802, - 182970 + 184841, + 185009 ], "filename": "astronomy.js", - "lineno": 4148, + "lineno": 4180, "columnno": 4, "code": { - "id": "astnode100017944", + "id": "astnode100017931", "name": "Apsis", "type": "MethodDefinition", "paramnames": [ @@ -40118,14 +40090,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": [ - 182784, - 182972 + 184823, + 185011 ], "filename": "astronomy.js", - "lineno": 4147, + "lineno": 4179, "columnno": 0, "code": { - "id": "astnode100017941", + "id": "astnode100017928", "name": "Apsis", "type": "ClassDeclaration", "paramnames": [ @@ -40194,14 +40166,14 @@ "comment": "", "meta": { "range": [ - 182845, - 182861 + 184884, + 184900 ], "filename": "astronomy.js", - "lineno": 4149, + "lineno": 4181, "columnno": 8, "code": { - "id": "astnode100017952", + "id": "astnode100017939", "name": "this.time", "type": "Identifier", "value": "time", @@ -40219,14 +40191,14 @@ "comment": "", "meta": { "range": [ - 182871, - 182887 + 184910, + 184926 ], "filename": "astronomy.js", - "lineno": 4150, + "lineno": 4182, "columnno": 8, "code": { - "id": "astnode100017958", + "id": "astnode100017945", "name": "this.kind", "type": "Identifier", "value": "kind", @@ -40244,14 +40216,14 @@ "comment": "", "meta": { "range": [ - 182897, - 182919 + 184936, + 184958 ], "filename": "astronomy.js", - "lineno": 4151, + "lineno": 4183, "columnno": 8, "code": { - "id": "astnode100017964", + "id": "astnode100017951", "name": "this.dist_au", "type": "Identifier", "value": "dist_au", @@ -40269,14 +40241,14 @@ "comment": "", "meta": { "range": [ - 182929, - 182963 + 184968, + 185002 ], "filename": "astronomy.js", - "lineno": 4152, + "lineno": 4184, "columnno": 8, "code": { - "id": "astnode100017970", + "id": "astnode100017957", "name": "this.dist_km", "type": "BinaryExpression", "value": "", @@ -40294,14 +40266,14 @@ "comment": "", "meta": { "range": [ - 182973, - 182994 + 185012, + 185033 ], "filename": "astronomy.js", - "lineno": 4155, + "lineno": 4187, "columnno": 0, "code": { - "id": "astnode100017978", + "id": "astnode100017965", "name": "exports.Apsis", "type": "Identifier", "value": "Apsis", @@ -40318,14 +40290,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": [ - 183337, - 186132 + 185376, + 188171 ], "filename": "astronomy.js", - "lineno": 4167, + "lineno": 4199, "columnno": 0, "code": { - "id": "astnode100017983", + "id": "astnode100017970", "name": "SearchLunarApsis", "type": "FunctionDeclaration", "paramnames": [ @@ -40383,14 +40355,14 @@ "comment": "", "meta": { "range": [ - 183386, - 183396 + 185425, + 185435 ], "filename": "astronomy.js", - "lineno": 4168, + "lineno": 4200, "columnno": 10, "code": { - "id": "astnode100017988", + "id": "astnode100017975", "name": "dt", "type": "Literal", "value": 0.001 @@ -40408,14 +40380,14 @@ "comment": "", "meta": { "range": [ - 183402, - 183646 + 185441, + 185685 ], "filename": "astronomy.js", - "lineno": 4169, + "lineno": 4201, "columnno": 4, "code": { - "id": "astnode100017991", + "id": "astnode100017978", "name": "distance_slope", "type": "FunctionDeclaration", "paramnames": [ @@ -40442,14 +40414,14 @@ "comment": "", "meta": { "range": [ - 183443, - 183466 + 185482, + 185505 ], "filename": "astronomy.js", - "lineno": 4170, + "lineno": 4202, "columnno": 12, "code": { - "id": "astnode100017996", + "id": "astnode100017983", "name": "t1", "type": "CallExpression", "value": "" @@ -40467,14 +40439,14 @@ "comment": "", "meta": { "range": [ - 183480, - 183503 + 185519, + 185542 ], "filename": "astronomy.js", - "lineno": 4171, + "lineno": 4203, "columnno": 12, "code": { - "id": "astnode100018007", + "id": "astnode100017994", "name": "t2", "type": "CallExpression", "value": "" @@ -40492,14 +40464,14 @@ "comment": "", "meta": { "range": [ - 183517, - 183546 + 185556, + 185585 ], "filename": "astronomy.js", - "lineno": 4172, + "lineno": 4204, "columnno": 12, "code": { - "id": "astnode100018018", + "id": "astnode100018005", "name": "r1", "type": "MemberExpression", "value": ".distance_au" @@ -40517,14 +40489,14 @@ "comment": "", "meta": { "range": [ - 183560, - 183589 + 185599, + 185628 ], "filename": "astronomy.js", - "lineno": 4173, + "lineno": 4205, "columnno": 12, "code": { - "id": "astnode100018026", + "id": "astnode100018013", "name": "r2", "type": "MemberExpression", "value": ".distance_au" @@ -40542,14 +40514,14 @@ "comment": "", "meta": { "range": [ - 183603, - 183621 + 185642, + 185660 ], "filename": "astronomy.js", - "lineno": 4174, + "lineno": 4206, "columnno": 12, "code": { - "id": "astnode100018034", + "id": "astnode100018021", "name": "m", "type": "BinaryExpression", "value": "" @@ -40567,14 +40539,14 @@ "comment": "", "meta": { "range": [ - 183651, - 183729 + 185690, + 185768 ], "filename": "astronomy.js", - "lineno": 4177, + "lineno": 4209, "columnno": 4, "code": { - "id": "astnode100018043", + "id": "astnode100018030", "name": "negative_distance_slope", "type": "FunctionDeclaration", "paramnames": [ @@ -40594,14 +40566,14 @@ "comment": "", "meta": { "range": [ - 184157, - 184181 + 186196, + 186220 ], "filename": "astronomy.js", - "lineno": 4186, + "lineno": 4218, "columnno": 8, "code": { - "id": "astnode100018053", + "id": "astnode100018040", "name": "t1", "type": "CallExpression", "value": "" @@ -40619,14 +40591,14 @@ "comment": "", "meta": { "range": [ - 184191, - 184214 + 186230, + 186253 ], "filename": "astronomy.js", - "lineno": 4187, + "lineno": 4219, "columnno": 8, "code": { - "id": "astnode100018059", + "id": "astnode100018046", "name": "m1", "type": "CallExpression", "value": "" @@ -40644,14 +40616,14 @@ "comment": "", "meta": { "range": [ - 184226, - 184239 + 186265, + 186278 ], "filename": "astronomy.js", - "lineno": 4188, + "lineno": 4220, "columnno": 10, "code": { - "id": "astnode100018065", + "id": "astnode100018052", "name": "increment", "type": "Literal", "value": 5 @@ -40669,14 +40641,14 @@ "comment": "", "meta": { "range": [ - 184298, - 184306 + 186337, + 186345 ], "filename": "astronomy.js", - "lineno": 4189, + "lineno": 4221, "columnno": 13, "code": { - "id": "astnode100018070", + "id": "astnode100018057", "name": "iter", "type": "Literal", "value": 0 @@ -40694,14 +40666,14 @@ "comment": "", "meta": { "range": [ - 184373, - 184399 + 186412, + 186438 ], "filename": "astronomy.js", - "lineno": 4190, + "lineno": 4222, "columnno": 12, "code": { - "id": "astnode100018084", + "id": "astnode100018071", "name": "t2", "type": "CallExpression", "value": "" @@ -40719,14 +40691,14 @@ "comment": "", "meta": { "range": [ - 184413, - 184436 + 186452, + 186475 ], "filename": "astronomy.js", - "lineno": 4191, + "lineno": 4223, "columnno": 12, "code": { - "id": "astnode100018092", + "id": "astnode100018079", "name": "m2", "type": "CallExpression", "value": "" @@ -40744,14 +40716,14 @@ "comment": "", "meta": { "range": [ - 184831, - 184896 + 186870, + 186935 ], "filename": "astronomy.js", - "lineno": 4199, + "lineno": 4231, "columnno": 20, "code": { - "id": "astnode100018114", + "id": "astnode100018101", "name": "tx", "type": "CallExpression", "value": "" @@ -40769,14 +40741,14 @@ "comment": "", "meta": { "range": [ - 184869, - 184880 + 186908, + 186919 ], "filename": "astronomy.js", - "lineno": 4199, + "lineno": 4231, "columnno": 58, "code": { - "id": "astnode100018122", + "id": "astnode100018109", "name": "init_f1", "type": "Identifier", "value": "m1" @@ -40792,14 +40764,14 @@ "comment": "", "meta": { "range": [ - 184882, - 184893 + 186921, + 186932 ], "filename": "astronomy.js", - "lineno": 4199, + "lineno": 4231, "columnno": 71, "code": { - "id": "astnode100018124", + "id": "astnode100018111", "name": "init_f2", "type": "Identifier", "value": "m2" @@ -40815,14 +40787,14 @@ "comment": "", "meta": { "range": [ - 185028, - 185059 + 187067, + 187098 ], "filename": "astronomy.js", - "lineno": 4202, + "lineno": 4234, "columnno": 20, "code": { - "id": "astnode100018132", + "id": "astnode100018119", "name": "dist", "type": "MemberExpression", "value": ".distance_au" @@ -40840,14 +40812,14 @@ "comment": "", "meta": { "range": [ - 185369, - 185445 + 187408, + 187484 ], "filename": "astronomy.js", - "lineno": 4209, + "lineno": 4241, "columnno": 20, "code": { - "id": "astnode100018155", + "id": "astnode100018142", "name": "tx", "type": "CallExpression", "value": "" @@ -40865,14 +40837,14 @@ "comment": "", "meta": { "range": [ - 185416, - 185428 + 187455, + 187467 ], "filename": "astronomy.js", - "lineno": 4209, + "lineno": 4241, "columnno": 67, "code": { - "id": "astnode100018163", + "id": "astnode100018150", "name": "init_f1", "type": "UnaryExpression", "value": "-m1" @@ -40888,14 +40860,14 @@ "comment": "", "meta": { "range": [ - 185430, - 185442 + 187469, + 187481 ], "filename": "astronomy.js", - "lineno": 4209, + "lineno": 4241, "columnno": 81, "code": { - "id": "astnode100018166", + "id": "astnode100018153", "name": "init_f2", "type": "UnaryExpression", "value": "-m2" @@ -40911,14 +40883,14 @@ "comment": "", "meta": { "range": [ - 185576, - 185607 + 187615, + 187646 ], "filename": "astronomy.js", - "lineno": 4212, + "lineno": 4244, "columnno": 20, "code": { - "id": "astnode100018175", + "id": "astnode100018162", "name": "dist", "type": "MemberExpression", "value": ".distance_au" @@ -40936,14 +40908,14 @@ "comment": "", "meta": { "range": [ - 185910, - 185917 + 187949, + 187956 ], "filename": "astronomy.js", - "lineno": 4219, + "lineno": 4251, "columnno": 8, "code": { - "id": "astnode100018191", + "id": "astnode100018178", "name": "t1", "type": "Identifier", "funcscope": "SearchLunarApsis", @@ -40962,14 +40934,14 @@ "comment": "", "meta": { "range": [ - 185927, - 185934 + 187966, + 187973 ], "filename": "astronomy.js", - "lineno": 4220, + "lineno": 4252, "columnno": 8, "code": { - "id": "astnode100018195", + "id": "astnode100018182", "name": "m1", "type": "Identifier", "funcscope": "SearchLunarApsis", @@ -40988,14 +40960,14 @@ "comment": "", "meta": { "range": [ - 186133, - 186176 + 188172, + 188215 ], "filename": "astronomy.js", - "lineno": 4225, + "lineno": 4257, "columnno": 0, "code": { - "id": "astnode100018201", + "id": "astnode100018188", "name": "exports.SearchLunarApsis", "type": "Identifier", "value": "SearchLunarApsis", @@ -41012,14 +40984,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": [ - 186689, - 187110 + 188728, + 189149 ], "filename": "astronomy.js", - "lineno": 4239, + "lineno": 4271, "columnno": 0, "code": { - "id": "astnode100018206", + "id": "astnode100018193", "name": "NextLunarApsis", "type": "FunctionDeclaration", "paramnames": [ @@ -41069,14 +41041,14 @@ "comment": "", "meta": { "range": [ - 186732, - 186741 + 188771, + 188780 ], "filename": "astronomy.js", - "lineno": 4240, + "lineno": 4272, "columnno": 10, "code": { - "id": "astnode100018211", + "id": "astnode100018198", "name": "skip", "type": "Literal", "value": 11 @@ -41094,14 +41066,14 @@ "comment": "", "meta": { "range": [ - 186815, - 186864 + 188854, + 188903 ], "filename": "astronomy.js", - "lineno": 4241, + "lineno": 4273, "columnno": 8, "code": { - "id": "astnode100018215", + "id": "astnode100018202", "name": "next", "type": "CallExpression", "value": "" @@ -41119,14 +41091,14 @@ "comment": "", "meta": { "range": [ - 187111, - 187150 + 189150, + 189189 ], "filename": "astronomy.js", - "lineno": 4247, + "lineno": 4279, "columnno": 0, "code": { - "id": "astnode100018265", + "id": "astnode100018252", "name": "exports.NextLunarApsis", "type": "Identifier", "value": "NextLunarApsis", @@ -41143,14 +41115,14 @@ "comment": "", "meta": { "range": [ - 187152, - 188145 + 189191, + 190184 ], "filename": "astronomy.js", - "lineno": 4248, + "lineno": 4280, "columnno": 0, "code": { - "id": "astnode100018270", + "id": "astnode100018257", "name": "PlanetExtreme", "type": "FunctionDeclaration", "paramnames": [ @@ -41186,14 +41158,14 @@ "comment": "", "meta": { "range": [ - 187220, - 187258 + 189259, + 189297 ], "filename": "astronomy.js", - "lineno": 4249, + "lineno": 4281, "columnno": 10, "code": { - "id": "astnode100018278", + "id": "astnode100018265", "name": "direction", "type": "ConditionalExpression", "value": "" @@ -41211,14 +41183,14 @@ "comment": "", "meta": { "range": [ - 187270, - 187282 + 189309, + 189321 ], "filename": "astronomy.js", - "lineno": 4250, + "lineno": 4282, "columnno": 10, "code": { - "id": "astnode100018289", + "id": "astnode100018276", "name": "npoints", "type": "Literal", "value": 10 @@ -41236,14 +41208,14 @@ "comment": "", "meta": { "range": [ - 187313, - 187347 + 189352, + 189386 ], "filename": "astronomy.js", - "lineno": 4252, + "lineno": 4284, "columnno": 14, "code": { - "id": "astnode100018295", + "id": "astnode100018282", "name": "interval", "type": "BinaryExpression", "value": "" @@ -41261,14 +41233,14 @@ "comment": "", "meta": { "range": [ - 187462, - 187509 + 189501, + 189548 ], "filename": "astronomy.js", - "lineno": 4254, + "lineno": 4286, "columnno": 18, "code": { - "id": "astnode100018310", + "id": "astnode100018297", "name": "apsis_time", "type": "CallExpression", "value": "" @@ -41286,14 +41258,14 @@ "comment": "", "meta": { "range": [ - 187529, - 187570 + 189568, + 189609 ], "filename": "astronomy.js", - "lineno": 4255, + "lineno": 4287, "columnno": 18, "code": { - "id": "astnode100018320", + "id": "astnode100018307", "name": "dist_au", "type": "CallExpression", "value": "" @@ -41311,14 +41283,14 @@ "comment": "", "meta": { "range": [ - 187651, - 187662 + 189690, + 189701 ], "filename": "astronomy.js", - "lineno": 4258, + "lineno": 4290, "columnno": 12, "code": { - "id": "astnode100018333", + "id": "astnode100018320", "name": "best_i", "type": "UnaryExpression", "value": -1 @@ -41336,14 +41308,14 @@ "comment": "", "meta": { "range": [ - 187676, - 187691 + 189715, + 189730 ], "filename": "astronomy.js", - "lineno": 4259, + "lineno": 4291, "columnno": 12, "code": { - "id": "astnode100018338", + "id": "astnode100018325", "name": "best_dist", "type": "Literal", "value": 0 @@ -41361,14 +41333,14 @@ "comment": "", "meta": { "range": [ - 187710, - 187715 + 189749, + 189754 ], "filename": "astronomy.js", - "lineno": 4260, + "lineno": 4292, "columnno": 17, "code": { - "id": "astnode100018343", + "id": "astnode100018330", "name": "i", "type": "Literal", "value": 0 @@ -41386,14 +41358,14 @@ "comment": "", "meta": { "range": [ - 187755, - 187794 + 189794, + 189833 ], "filename": "astronomy.js", - "lineno": 4261, + "lineno": 4293, "columnno": 18, "code": { - "id": "astnode100018353", + "id": "astnode100018340", "name": "time", "type": "CallExpression", "value": "" @@ -41411,14 +41383,14 @@ "comment": "", "meta": { "range": [ - 187814, - 187858 + 189853, + 189897 ], "filename": "astronomy.js", - "lineno": 4262, + "lineno": 4294, "columnno": 18, "code": { - "id": "astnode100018363", + "id": "astnode100018350", "name": "dist", "type": "BinaryExpression", "value": "" @@ -41436,14 +41408,14 @@ "comment": "", "meta": { "range": [ - 187922, - 187932 + 189961, + 189971 ], "filename": "astronomy.js", - "lineno": 4264, + "lineno": 4296, "columnno": 16, "code": { - "id": "astnode100018381", + "id": "astnode100018368", "name": "best_i", "type": "Identifier", "funcscope": "PlanetExtreme", @@ -41462,14 +41434,14 @@ "comment": "", "meta": { "range": [ - 187950, - 187966 + 189989, + 190005 ], "filename": "astronomy.js", - "lineno": 4265, + "lineno": 4297, "columnno": 16, "code": { - "id": "astnode100018385", + "id": "astnode100018372", "name": "best_dist", "type": "Identifier", "funcscope": "PlanetExtreme", @@ -41488,14 +41460,14 @@ "comment": "", "meta": { "range": [ - 188046, - 188102 + 190085, + 190141 ], "filename": "astronomy.js", - "lineno": 4269, + "lineno": 4301, "columnno": 8, "code": { - "id": "astnode100018389", + "id": "astnode100018376", "name": "start_time", "type": "CallExpression", "funcscope": "PlanetExtreme", @@ -41514,14 +41486,14 @@ "comment": "", "meta": { "range": [ - 188112, - 188136 + 190151, + 190175 ], "filename": "astronomy.js", - "lineno": 4270, + "lineno": 4302, "columnno": 8, "code": { - "id": "astnode100018401", + "id": "astnode100018388", "name": "dayspan", "type": "BinaryExpression", "funcscope": "PlanetExtreme", @@ -41540,14 +41512,14 @@ "comment": "", "meta": { "range": [ - 188146, - 190734 + 190185, + 192773 ], "filename": "astronomy.js", - "lineno": 4273, + "lineno": 4305, "columnno": 0, "code": { - "id": "astnode100018406", + "id": "astnode100018393", "name": "BruteSearchPlanetApsis", "type": "FunctionDeclaration", "paramnames": [ @@ -41582,14 +41554,14 @@ "comment": "", "meta": { "range": [ - 189437, - 189450 + 191476, + 191489 ], "filename": "astronomy.js", - "lineno": 4298, + "lineno": 4330, "columnno": 10, "code": { - "id": "astnode100018412", + "id": "astnode100018399", "name": "npoints", "type": "Literal", "value": 100 @@ -41607,14 +41579,14 @@ "comment": "", "meta": { "range": [ - 189462, - 189526 + 191501, + 191565 ], "filename": "astronomy.js", - "lineno": 4299, + "lineno": 4331, "columnno": 10, "code": { - "id": "astnode100018416", + "id": "astnode100018403", "name": "t1", "type": "CallExpression", "value": "" @@ -41632,14 +41604,14 @@ "comment": "", "meta": { "range": [ - 189538, - 189603 + 191577, + 191642 ], "filename": "astronomy.js", - "lineno": 4300, + "lineno": 4332, "columnno": 10, "code": { - "id": "astnode100018433", + "id": "astnode100018420", "name": "t2", "type": "CallExpression", "value": "" @@ -41657,14 +41629,14 @@ "comment": "", "meta": { "range": [ - 189613, - 189623 + 191652, + 191662 ], "filename": "astronomy.js", - "lineno": 4301, + "lineno": 4333, "columnno": 8, "code": { - "id": "astnode100018450", + "id": "astnode100018437", "name": "t_min", "type": "Identifier", "value": "t1" @@ -41682,14 +41654,14 @@ "comment": "", "meta": { "range": [ - 189633, - 189643 + 191672, + 191682 ], "filename": "astronomy.js", - "lineno": 4302, + "lineno": 4334, "columnno": 8, "code": { - "id": "astnode100018454", + "id": "astnode100018441", "name": "t_max", "type": "Identifier", "value": "t1" @@ -41707,14 +41679,14 @@ "comment": "", "meta": { "range": [ - 189653, - 189668 + 191692, + 191707 ], "filename": "astronomy.js", - "lineno": 4303, + "lineno": 4335, "columnno": 8, "code": { - "id": "astnode100018458", + "id": "astnode100018445", "name": "min_dist", "type": "UnaryExpression", "value": -1 @@ -41732,14 +41704,14 @@ "comment": "", "meta": { "range": [ - 189678, - 189693 + 191717, + 191732 ], "filename": "astronomy.js", - "lineno": 4304, + "lineno": 4336, "columnno": 8, "code": { - "id": "astnode100018463", + "id": "astnode100018450", "name": "max_dist", "type": "UnaryExpression", "value": -1 @@ -41757,14 +41729,14 @@ "comment": "", "meta": { "range": [ - 189705, - 189747 + 191744, + 191786 ], "filename": "astronomy.js", - "lineno": 4305, + "lineno": 4337, "columnno": 10, "code": { - "id": "astnode100018468", + "id": "astnode100018455", "name": "interval", "type": "BinaryExpression", "value": "" @@ -41782,14 +41754,14 @@ "comment": "", "meta": { "range": [ - 189762, - 189767 + 191801, + 191806 ], "filename": "astronomy.js", - "lineno": 4306, + "lineno": 4338, "columnno": 13, "code": { - "id": "astnode100018483", + "id": "astnode100018470", "name": "i", "type": "Literal", "value": 0 @@ -41807,14 +41779,14 @@ "comment": "", "meta": { "range": [ - 189803, - 189834 + 191842, + 191873 ], "filename": "astronomy.js", - "lineno": 4307, + "lineno": 4339, "columnno": 14, "code": { - "id": "astnode100018493", + "id": "astnode100018480", "name": "time", "type": "CallExpression", "value": "" @@ -41832,14 +41804,14 @@ "comment": "", "meta": { "range": [ - 189850, - 189882 + 191889, + 191921 ], "filename": "astronomy.js", - "lineno": 4308, + "lineno": 4340, "columnno": 14, "code": { - "id": "astnode100018503", + "id": "astnode100018490", "name": "dist", "type": "CallExpression", "value": "" @@ -41857,14 +41829,14 @@ "comment": "", "meta": { "range": [ - 189919, - 189945 + 191958, + 191984 ], "filename": "astronomy.js", - "lineno": 4310, + "lineno": 4342, "columnno": 12, "code": { - "id": "astnode100018515", + "id": "astnode100018502", "name": "max_dist", "type": "AssignmentExpression", "funcscope": "BruteSearchPlanetApsis", @@ -41883,14 +41855,14 @@ "comment": "", "meta": { "range": [ - 189930, - 189945 + 191969, + 191984 ], "filename": "astronomy.js", - "lineno": 4310, + "lineno": 4342, "columnno": 23, "code": { - "id": "astnode100018517", + "id": "astnode100018504", "name": "min_dist", "type": "Identifier", "funcscope": "BruteSearchPlanetApsis", @@ -41909,14 +41881,14 @@ "comment": "", "meta": { "range": [ - 190023, - 190038 + 192062, + 192077 ], "filename": "astronomy.js", - "lineno": 4314, + "lineno": 4346, "columnno": 16, "code": { - "id": "astnode100018527", + "id": "astnode100018514", "name": "max_dist", "type": "Identifier", "funcscope": "BruteSearchPlanetApsis", @@ -41935,14 +41907,14 @@ "comment": "", "meta": { "range": [ - 190056, - 190068 + 192095, + 192107 ], "filename": "astronomy.js", - "lineno": 4315, + "lineno": 4347, "columnno": 16, "code": { - "id": "astnode100018531", + "id": "astnode100018518", "name": "t_max", "type": "Identifier", "funcscope": "BruteSearchPlanetApsis", @@ -41961,14 +41933,14 @@ "comment": "", "meta": { "range": [ - 190135, - 190150 + 192174, + 192189 ], "filename": "astronomy.js", - "lineno": 4318, + "lineno": 4350, "columnno": 16, "code": { - "id": "astnode100018540", + "id": "astnode100018527", "name": "min_dist", "type": "Identifier", "funcscope": "BruteSearchPlanetApsis", @@ -41987,14 +41959,14 @@ "comment": "", "meta": { "range": [ - 190168, - 190180 + 192207, + 192219 ], "filename": "astronomy.js", - "lineno": 4319, + "lineno": 4351, "columnno": 16, "code": { - "id": "astnode100018544", + "id": "astnode100018531", "name": "t_min", "type": "Identifier", "funcscope": "BruteSearchPlanetApsis", @@ -42013,14 +41985,14 @@ "comment": "", "meta": { "range": [ - 190222, - 190301 + 192261, + 192340 ], "filename": "astronomy.js", - "lineno": 4323, + "lineno": 4355, "columnno": 10, "code": { - "id": "astnode100018548", + "id": "astnode100018535", "name": "perihelion", "type": "CallExpression", "value": "" @@ -42038,14 +42010,14 @@ "comment": "", "meta": { "range": [ - 190313, - 190390 + 192352, + 192429 ], "filename": "astronomy.js", - "lineno": 4324, + "lineno": 4356, "columnno": 10, "code": { - "id": "astnode100018566", + "id": "astnode100018553", "name": "aphelion", "type": "CallExpression", "value": "" @@ -42063,14 +42035,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 {string} 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": [ - 192069, - 194508 + 194108, + 196547 ], "filename": "astronomy.js", - "lineno": 4366, + "lineno": 4398, "columnno": 0, "code": { - "id": "astnode100018636", + "id": "astnode100018623", "name": "SearchPlanetApsis", "type": "FunctionDeclaration", "paramnames": [ @@ -42141,14 +42113,14 @@ "comment": "", "meta": { "range": [ - 192231, - 192499 + 194270, + 194538 ], "filename": "astronomy.js", - "lineno": 4370, + "lineno": 4402, "columnno": 4, "code": { - "id": "astnode100018655", + "id": "astnode100018642", "name": "positive_slope", "type": "FunctionDeclaration", "paramnames": [ @@ -42176,14 +42148,14 @@ "comment": "", "meta": { "range": [ - 192274, - 192284 + 194313, + 194323 ], "filename": "astronomy.js", - "lineno": 4371, + "lineno": 4403, "columnno": 14, "code": { - "id": "astnode100018660", + "id": "astnode100018647", "name": "dt", "type": "Literal", "value": 0.001 @@ -42201,14 +42173,14 @@ "comment": "", "meta": { "range": [ - 192298, - 192321 + 194337, + 194360 ], "filename": "astronomy.js", - "lineno": 4372, + "lineno": 4404, "columnno": 12, "code": { - "id": "astnode100018664", + "id": "astnode100018651", "name": "t1", "type": "CallExpression", "value": "" @@ -42226,14 +42198,14 @@ "comment": "", "meta": { "range": [ - 192335, - 192358 + 194374, + 194397 ], "filename": "astronomy.js", - "lineno": 4373, + "lineno": 4405, "columnno": 12, "code": { - "id": "astnode100018675", + "id": "astnode100018662", "name": "t2", "type": "CallExpression", "value": "" @@ -42251,14 +42223,14 @@ "comment": "", "meta": { "range": [ - 192372, - 192400 + 194411, + 194439 ], "filename": "astronomy.js", - "lineno": 4374, + "lineno": 4406, "columnno": 12, "code": { - "id": "astnode100018686", + "id": "astnode100018673", "name": "r1", "type": "CallExpression", "value": "" @@ -42276,14 +42248,14 @@ "comment": "", "meta": { "range": [ - 192414, - 192442 + 194453, + 194481 ], "filename": "astronomy.js", - "lineno": 4375, + "lineno": 4407, "columnno": 12, "code": { - "id": "astnode100018693", + "id": "astnode100018680", "name": "r2", "type": "CallExpression", "value": "" @@ -42301,14 +42273,14 @@ "comment": "", "meta": { "range": [ - 192456, - 192474 + 194495, + 194513 ], "filename": "astronomy.js", - "lineno": 4376, + "lineno": 4408, "columnno": 12, "code": { - "id": "astnode100018700", + "id": "astnode100018687", "name": "m", "type": "BinaryExpression", "value": "" @@ -42326,14 +42298,14 @@ "comment": "", "meta": { "range": [ - 192504, - 192573 + 194543, + 194612 ], "filename": "astronomy.js", - "lineno": 4379, + "lineno": 4411, "columnno": 4, "code": { - "id": "astnode100018709", + "id": "astnode100018696", "name": "negative_slope", "type": "FunctionDeclaration", "paramnames": [ @@ -42353,14 +42325,14 @@ "comment": "", "meta": { "range": [ - 192584, - 192630 + 194623, + 194669 ], "filename": "astronomy.js", - "lineno": 4382, + "lineno": 4414, "columnno": 10, "code": { - "id": "astnode100018719", + "id": "astnode100018706", "name": "orbit_period_days", "type": "MemberExpression", "value": "Planet[undefined].OrbitalPeriod" @@ -42378,14 +42350,14 @@ "comment": "", "meta": { "range": [ - 192642, - 192677 + 194681, + 194716 ], "filename": "astronomy.js", - "lineno": 4383, + "lineno": 4415, "columnno": 10, "code": { - "id": "astnode100018727", + "id": "astnode100018714", "name": "increment", "type": "BinaryExpression", "value": "" @@ -42403,14 +42375,14 @@ "comment": "", "meta": { "range": [ - 192687, - 192701 + 194726, + 194740 ], "filename": "astronomy.js", - "lineno": 4384, + "lineno": 4416, "columnno": 8, "code": { - "id": "astnode100018733", + "id": "astnode100018720", "name": "t1", "type": "Identifier", "value": "startTime" @@ -42428,14 +42400,14 @@ "comment": "", "meta": { "range": [ - 192711, - 192734 + 194750, + 194773 ], "filename": "astronomy.js", - "lineno": 4385, + "lineno": 4417, "columnno": 8, "code": { - "id": "astnode100018737", + "id": "astnode100018724", "name": "m1", "type": "CallExpression", "value": "" @@ -42453,14 +42425,14 @@ "comment": "", "meta": { "range": [ - 192749, - 192757 + 194788, + 194796 ], "filename": "astronomy.js", - "lineno": 4386, + "lineno": 4418, "columnno": 13, "code": { - "id": "astnode100018744", + "id": "astnode100018731", "name": "iter", "type": "Literal", "value": 0 @@ -42478,14 +42450,14 @@ "comment": "", "meta": { "range": [ - 192827, - 192853 + 194866, + 194892 ], "filename": "astronomy.js", - "lineno": 4387, + "lineno": 4419, "columnno": 14, "code": { - "id": "astnode100018758", + "id": "astnode100018745", "name": "t2", "type": "CallExpression", "value": "" @@ -42503,14 +42475,14 @@ "comment": "", "meta": { "range": [ - 192869, - 192892 + 194908, + 194931 ], "filename": "astronomy.js", - "lineno": 4388, + "lineno": 4420, "columnno": 14, "code": { - "id": "astnode100018766", + "id": "astnode100018753", "name": "m2", "type": "CallExpression", "value": "" @@ -42528,14 +42500,14 @@ "comment": "", "meta": { "range": [ - 193156, - 193166 + 195195, + 195205 ], "filename": "astronomy.js", - "lineno": 4393, + "lineno": 4425, "columnno": 16, "code": { - "id": "astnode100018779", + "id": "astnode100018766", "name": "slope_func" } }, @@ -42551,14 +42523,14 @@ "comment": "", "meta": { "range": [ - 193184, - 193188 + 195223, + 195227 ], "filename": "astronomy.js", - "lineno": 4394, + "lineno": 4426, "columnno": 16, "code": { - "id": "astnode100018782", + "id": "astnode100018769", "name": "kind" } }, @@ -42574,14 +42546,14 @@ "comment": "", "meta": { "range": [ - 193419, - 193446 + 195458, + 195485 ], "filename": "astronomy.js", - "lineno": 4398, + "lineno": 4430, "columnno": 16, "code": { - "id": "astnode100018794", + "id": "astnode100018781", "name": "slope_func", "type": "Identifier", "funcscope": "SearchPlanetApsis", @@ -42600,14 +42572,14 @@ "comment": "", "meta": { "range": [ - 193464, - 193472 + 195503, + 195511 ], "filename": "astronomy.js", - "lineno": 4399, + "lineno": 4431, "columnno": 16, "code": { - "id": "astnode100018798", + "id": "astnode100018785", "name": "kind", "type": "Literal", "funcscope": "SearchPlanetApsis", @@ -42626,14 +42598,14 @@ "comment": "", "meta": { "range": [ - 193734, - 193761 + 195773, + 195800 ], "filename": "astronomy.js", - "lineno": 4404, + "lineno": 4436, "columnno": 16, "code": { - "id": "astnode100018811", + "id": "astnode100018798", "name": "slope_func", "type": "Identifier", "funcscope": "SearchPlanetApsis", @@ -42652,14 +42624,14 @@ "comment": "", "meta": { "range": [ - 193779, - 193787 + 195818, + 195826 ], "filename": "astronomy.js", - "lineno": 4405, + "lineno": 4437, "columnno": 16, "code": { - "id": "astnode100018815", + "id": "astnode100018802", "name": "kind", "type": "Literal", "funcscope": "SearchPlanetApsis", @@ -42678,14 +42650,14 @@ "comment": "", "meta": { "range": [ - 194041, - 194076 + 196080, + 196115 ], "filename": "astronomy.js", - "lineno": 4411, + "lineno": 4443, "columnno": 18, "code": { - "id": "astnode100018822", + "id": "astnode100018809", "name": "search", "type": "CallExpression", "value": "" @@ -42703,14 +42675,14 @@ "comment": "", "meta": { "range": [ - 194205, - 194239 + 196244, + 196278 ], "filename": "astronomy.js", - "lineno": 4414, + "lineno": 4446, "columnno": 18, "code": { - "id": "astnode100018835", + "id": "astnode100018822", "name": "dist", "type": "CallExpression", "value": "" @@ -42728,14 +42700,14 @@ "comment": "", "meta": { "range": [ - 194386, - 194393 + 196425, + 196432 ], "filename": "astronomy.js", - "lineno": 4418, + "lineno": 4450, "columnno": 8, "code": { - "id": "astnode100018848", + "id": "astnode100018835", "name": "t1", "type": "Identifier", "funcscope": "SearchPlanetApsis", @@ -42754,14 +42726,14 @@ "comment": "", "meta": { "range": [ - 194403, - 194410 + 196442, + 196449 ], "filename": "astronomy.js", - "lineno": 4419, + "lineno": 4451, "columnno": 8, "code": { - "id": "astnode100018852", + "id": "astnode100018839", "name": "m1", "type": "Identifier", "funcscope": "SearchPlanetApsis", @@ -42780,14 +42752,14 @@ "comment": "", "meta": { "range": [ - 194509, - 194554 + 196548, + 196593 ], "filename": "astronomy.js", - "lineno": 4423, + "lineno": 4455, "columnno": 0, "code": { - "id": "astnode100018858", + "id": "astnode100018845", "name": "exports.SearchPlanetApsis", "type": "Identifier", "value": "SearchPlanetApsis", @@ -42804,14 +42776,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 {string} 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": [ - 195352, - 195943 + 197391, + 197982 ], "filename": "astronomy.js", - "lineno": 4443, + "lineno": 4475, "columnno": 0, "code": { - "id": "astnode100018863", + "id": "astnode100018850", "name": "NextPlanetApsis", "type": "FunctionDeclaration", "paramnames": [ @@ -42872,14 +42844,14 @@ "comment": "", "meta": { "range": [ - 195567, - 195607 + 197606, + 197646 ], "filename": "astronomy.js", - "lineno": 4448, + "lineno": 4480, "columnno": 10, "code": { - "id": "astnode100018889", + "id": "astnode100018876", "name": "skip", "type": "BinaryExpression", "value": "" @@ -42897,14 +42869,14 @@ "comment": "", "meta": { "range": [ - 195619, - 195650 + 197658, + 197689 ], "filename": "astronomy.js", - "lineno": 4449, + "lineno": 4481, "columnno": 10, "code": { - "id": "astnode100018899", + "id": "astnode100018886", "name": "time", "type": "CallExpression", "value": "" @@ -42922,14 +42894,14 @@ "comment": "", "meta": { "range": [ - 195662, - 195698 + 197701, + 197737 ], "filename": "astronomy.js", - "lineno": 4450, + "lineno": 4482, "columnno": 10, "code": { - "id": "astnode100018909", + "id": "astnode100018896", "name": "next", "type": "CallExpression", "value": "" @@ -42947,14 +42919,14 @@ "comment": "", "meta": { "range": [ - 195944, - 195985 + 197983, + 198024 ], "filename": "astronomy.js", - "lineno": 4457, + "lineno": 4489, "columnno": 0, "code": { - "id": "astnode100018940", + "id": "astnode100018927", "name": "exports.NextPlanetApsis", "type": "Identifier", "value": "NextPlanetApsis", @@ -42971,14 +42943,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": [ - 196339, - 196626 + 198378, + 198665 ], "filename": "astronomy.js", - "lineno": 4470, + "lineno": 4502, "columnno": 0, "code": { - "id": "astnode100018945", + "id": "astnode100018932", "name": "InverseRotation", "type": "FunctionDeclaration", "paramnames": [ @@ -43024,14 +42996,14 @@ "comment": "", "meta": { "range": [ - 196627, - 196668 + 198666, + 198707 ], "filename": "astronomy.js", - "lineno": 4477, + "lineno": 4509, "columnno": 0, "code": { - "id": "astnode100019020", + "id": "astnode100019007", "name": "exports.InverseRotation", "type": "Identifier", "value": "InverseRotation", @@ -43048,14 +43020,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": [ - 197123, - 198426 + 199162, + 200465 ], "filename": "astronomy.js", - "lineno": 4493, + "lineno": 4525, "columnno": 0, "code": { - "id": "astnode100019025", + "id": "astnode100019012", "name": "CombineRotation", "type": "FunctionDeclaration", "paramnames": [ @@ -43111,14 +43083,14 @@ "comment": "", "meta": { "range": [ - 198427, - 198468 + 200466, + 200507 ], "filename": "astronomy.js", - "lineno": 4519, + "lineno": 4551, "columnno": 0, "code": { - "id": "astnode100019461", + "id": "astnode100019448", "name": "exports.CombineRotation", "type": "Identifier", "value": "CombineRotation", @@ -43135,14 +43107,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": [ - 198991, - 199285 + 201030, + 201324 ], "filename": "astronomy.js", - "lineno": 4536, + "lineno": 4568, "columnno": 0, "code": { - "id": "astnode100019466", + "id": "astnode100019453", "name": "VectorFromSphere", "type": "FunctionDeclaration", "paramnames": [ @@ -43203,14 +43175,14 @@ "comment": "", "meta": { "range": [ - 199043, - 199072 + 201082, + 201111 ], "filename": "astronomy.js", - "lineno": 4537, + "lineno": 4569, "columnno": 10, "code": { - "id": "astnode100019472", + "id": "astnode100019459", "name": "radlat", "type": "BinaryExpression", "value": "" @@ -43228,14 +43200,14 @@ "comment": "", "meta": { "range": [ - 199084, - 199113 + 201123, + 201152 ], "filename": "astronomy.js", - "lineno": 4538, + "lineno": 4570, "columnno": 10, "code": { - "id": "astnode100019480", + "id": "astnode100019467", "name": "radlon", "type": "BinaryExpression", "value": "" @@ -43253,14 +43225,14 @@ "comment": "", "meta": { "range": [ - 199125, - 199165 + 201164, + 201204 ], "filename": "astronomy.js", - "lineno": 4539, + "lineno": 4571, "columnno": 10, "code": { - "id": "astnode100019488", + "id": "astnode100019475", "name": "rcoslat", "type": "BinaryExpression", "value": "" @@ -43278,14 +43250,14 @@ "comment": "", "meta": { "range": [ - 199286, - 199329 + 201325, + 201368 ], "filename": "astronomy.js", - "lineno": 4542, + "lineno": 4574, "columnno": 0, "code": { - "id": "astnode100019527", + "id": "astnode100019514", "name": "exports.VectorFromSphere", "type": "Identifier", "value": "VectorFromSphere", @@ -43302,14 +43274,14 @@ "comment": "/**\n * @brief Given angular equatorial coordinates, calculates the equatorial vector.\n *\n * @param {EquatorialCoordinates} equ\n * An object that contains angular equatorial coordinates to be converted to a vector.\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 * @returns {Vector}\n * A vector in the equatorial system.\n */", "meta": { "range": [ - 199823, - 199946 + 201862, + 201985 ], "filename": "astronomy.js", - "lineno": 4556, + "lineno": 4588, "columnno": 0, "code": { - "id": "astnode100019532", + "id": "astnode100019519", "name": "VectorFromEquator", "type": "FunctionDeclaration", "paramnames": [ @@ -43365,14 +43337,14 @@ "comment": "", "meta": { "range": [ - 199947, - 199992 + 201986, + 202031 ], "filename": "astronomy.js", - "lineno": 4559, + "lineno": 4591, "columnno": 0, "code": { - "id": "astnode100019555", + "id": "astnode100019542", "name": "exports.VectorFromEquator", "type": "Identifier", "value": "VectorFromEquator", @@ -43389,14 +43361,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": [ - 200279, - 200436 + 202318, + 202475 ], "filename": "astronomy.js", - "lineno": 4569, + "lineno": 4601, "columnno": 0, "code": { - "id": "astnode100019560", + "id": "astnode100019547", "name": "EquatorFromVector", "type": "FunctionDeclaration", "paramnames": [ @@ -43445,14 +43417,14 @@ "comment": "", "meta": { "range": [ - 200323, - 200353 + 202362, + 202392 ], "filename": "astronomy.js", - "lineno": 4570, + "lineno": 4602, "columnno": 10, "code": { - "id": "astnode100019565", + "id": "astnode100019552", "name": "sphere", "type": "CallExpression", "value": "" @@ -43470,14 +43442,14 @@ "comment": "", "meta": { "range": [ - 200437, - 200482 + 202476, + 202521 ], "filename": "astronomy.js", - "lineno": 4573, + "lineno": 4605, "columnno": 0, "code": { - "id": "astnode100019585", + "id": "astnode100019572", "name": "exports.EquatorFromVector", "type": "Identifier", "value": "EquatorFromVector", @@ -43494,14 +43466,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": [ - 200828, - 201438 + 202867, + 203477 ], "filename": "astronomy.js", - "lineno": 4585, + "lineno": 4617, "columnno": 0, "code": { - "id": "astnode100019590", + "id": "astnode100019577", "name": "SphereFromVector", "type": "FunctionDeclaration", "paramnames": [ @@ -43553,14 +43525,14 @@ "comment": "", "meta": { "range": [ - 200874, - 200924 + 202913, + 202963 ], "filename": "astronomy.js", - "lineno": 4586, + "lineno": 4618, "columnno": 10, "code": { - "id": "astnode100019595", + "id": "astnode100019582", "name": "xyproj", "type": "BinaryExpression", "value": "" @@ -43578,14 +43550,14 @@ "comment": "", "meta": { "range": [ - 200936, - 200982 + 202975, + 203021 ], "filename": "astronomy.js", - "lineno": 4587, + "lineno": 4619, "columnno": 10, "code": { - "id": "astnode100019613", + "id": "astnode100019600", "name": "dist", "type": "CallExpression", "value": "" @@ -43603,14 +43575,14 @@ "comment": "", "meta": { "range": [ - 200992, - 200995 + 203031, + 203034 ], "filename": "astronomy.js", - "lineno": 4588, + "lineno": 4620, "columnno": 8, "code": { - "id": "astnode100019629", + "id": "astnode100019616", "name": "lat" } }, @@ -43626,14 +43598,14 @@ "comment": "", "meta": { "range": [ - 200997, - 201000 + 203036, + 203039 ], "filename": "astronomy.js", - "lineno": 4588, + "lineno": 4620, "columnno": 13, "code": { - "id": "astnode100019631", + "id": "astnode100019618", "name": "lon" } }, @@ -43649,14 +43621,14 @@ "comment": "", "meta": { "range": [ - 201131, - 201140 + 203170, + 203179 ], "filename": "astronomy.js", - "lineno": 4593, + "lineno": 4625, "columnno": 8, "code": { - "id": "astnode100019648", + "id": "astnode100019635", "name": "lon", "type": "Literal", "funcscope": "SphereFromVector", @@ -43675,14 +43647,14 @@ "comment": "", "meta": { "range": [ - 201150, - 201188 + 203189, + 203227 ], "filename": "astronomy.js", - "lineno": 4594, + "lineno": 4626, "columnno": 8, "code": { - "id": "astnode100019652", + "id": "astnode100019639", "name": "lat", "type": "ConditionalExpression", "funcscope": "SphereFromVector", @@ -43701,14 +43673,14 @@ "comment": "", "meta": { "range": [ - 201215, - 201261 + 203254, + 203300 ], "filename": "astronomy.js", - "lineno": 4597, + "lineno": 4629, "columnno": 8, "code": { - "id": "astnode100019666", + "id": "astnode100019653", "name": "lon", "type": "BinaryExpression", "funcscope": "SphereFromVector", @@ -43727,14 +43699,14 @@ "comment": "", "meta": { "range": [ - 201300, - 201312 + 203339, + 203351 ], "filename": "astronomy.js", - "lineno": 4599, + "lineno": 4631, "columnno": 12, "code": { - "id": "astnode100019686", + "id": "astnode100019673", "name": "lon", "type": "Literal", "funcscope": "SphereFromVector", @@ -43753,14 +43725,14 @@ "comment": "", "meta": { "range": [ - 201332, - 201387 + 203371, + 203426 ], "filename": "astronomy.js", - "lineno": 4601, + "lineno": 4633, "columnno": 8, "code": { - "id": "astnode100019690", + "id": "astnode100019677", "name": "lat", "type": "BinaryExpression", "funcscope": "SphereFromVector", @@ -43779,14 +43751,14 @@ "comment": "", "meta": { "range": [ - 201439, - 201482 + 203478, + 203521 ], "filename": "astronomy.js", - "lineno": 4605, + "lineno": 4637, "columnno": 0, "code": { - "id": "astnode100019713", + "id": "astnode100019700", "name": "exports.SphereFromVector", "type": "Identifier", "value": "SphereFromVector", @@ -43803,14 +43775,14 @@ "comment": "", "meta": { "range": [ - 201484, - 201645 + 203523, + 203684 ], "filename": "astronomy.js", - "lineno": 4606, + "lineno": 4638, "columnno": 0, "code": { - "id": "astnode100019718", + "id": "astnode100019705", "name": "ToggleAzimuthDirection", "type": "FunctionDeclaration", "paramnames": [ @@ -43832,14 +43804,14 @@ "comment": "", "meta": { "range": [ - 201526, - 201541 + 203565, + 203580 ], "filename": "astronomy.js", - "lineno": 4607, + "lineno": 4639, "columnno": 4, "code": { - "id": "astnode100019723", + "id": "astnode100019710", "name": "az", "type": "BinaryExpression", "funcscope": "ToggleAzimuthDirection", @@ -43858,14 +43830,14 @@ "comment": "", "meta": { "range": [ - 201572, - 201583 + 203611, + 203622 ], "filename": "astronomy.js", - "lineno": 4609, + "lineno": 4641, "columnno": 8, "code": { - "id": "astnode100019733", + "id": "astnode100019720", "name": "az", "type": "Literal", "funcscope": "ToggleAzimuthDirection", @@ -43884,14 +43856,14 @@ "comment": "", "meta": { "range": [ - 201616, - 201627 + 203655, + 203666 ], "filename": "astronomy.js", - "lineno": 4611, + "lineno": 4643, "columnno": 8, "code": { - "id": "astnode100019741", + "id": "astnode100019728", "name": "az", "type": "Literal", "funcscope": "ToggleAzimuthDirection", @@ -43910,14 +43882,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": [ - 203107, - 203328 + 205146, + 205367 ], "filename": "astronomy.js", - "lineno": 4645, + "lineno": 4677, "columnno": 0, "code": { - "id": "astnode100019746", + "id": "astnode100019733", "name": "HorizonFromVector", "type": "FunctionDeclaration", "paramnames": [ @@ -43977,14 +43949,14 @@ "comment": "", "meta": { "range": [ - 203166, - 203199 + 205205, + 205238 ], "filename": "astronomy.js", - "lineno": 4646, + "lineno": 4678, "columnno": 10, "code": { - "id": "astnode100019752", + "id": "astnode100019739", "name": "sphere", "type": "CallExpression", "value": "" @@ -44002,14 +43974,14 @@ "comment": "", "meta": { "range": [ - 203205, - 203252 + 205244, + 205291 ], "filename": "astronomy.js", - "lineno": 4647, + "lineno": 4679, "columnno": 4, "code": { - "id": "astnode100019758", + "id": "astnode100019745", "name": "sphere.lon", "type": "CallExpression", "funcscope": "HorizonFromVector", @@ -44028,14 +44000,14 @@ "comment": "", "meta": { "range": [ - 203258, - 203306 + 205297, + 205345 ], "filename": "astronomy.js", - "lineno": 4648, + "lineno": 4680, "columnno": 4, "code": { - "id": "astnode100019768", + "id": "astnode100019755", "name": "sphere.lat", "type": "CallExpression", "funcscope": "HorizonFromVector", @@ -44054,14 +44026,14 @@ "comment": "", "meta": { "range": [ - 203329, - 203374 + 205368, + 205413 ], "filename": "astronomy.js", - "lineno": 4651, + "lineno": 4683, "columnno": 0, "code": { - "id": "astnode100019781", + "id": "astnode100019768", "name": "exports.HorizonFromVector", "type": "Identifier", "value": "HorizonFromVector", @@ -44078,14 +44050,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": [ - 204365, - 204773 + 206404, + 206812 ], "filename": "astronomy.js", - "lineno": 4673, + "lineno": 4705, "columnno": 0, "code": { - "id": "astnode100019786", + "id": "astnode100019773", "name": "VectorFromHorizon", "type": "FunctionDeclaration", "paramnames": [ @@ -44156,14 +44128,14 @@ "comment": "", "meta": { "range": [ - 204514, - 204554 + 206553, + 206593 ], "filename": "astronomy.js", - "lineno": 4675, + "lineno": 4707, "columnno": 10, "code": { - "id": "astnode100019793", + "id": "astnode100019780", "name": "lon", "type": "CallExpression", "value": "" @@ -44181,14 +44153,14 @@ "comment": "", "meta": { "range": [ - 204608, - 204668 + 206647, + 206707 ], "filename": "astronomy.js", - "lineno": 4677, + "lineno": 4709, "columnno": 10, "code": { - "id": "astnode100019801", + "id": "astnode100019788", "name": "lat", "type": "BinaryExpression", "value": "" @@ -44206,14 +44178,14 @@ "comment": "", "meta": { "range": [ - 204680, - 204726 + 206719, + 206765 ], "filename": "astronomy.js", - "lineno": 4678, + "lineno": 4710, "columnno": 10, "code": { - "id": "astnode100019814", + "id": "astnode100019801", "name": "xsphere", "type": "NewExpression", "value": "" @@ -44231,14 +44203,14 @@ "comment": "", "meta": { "range": [ - 204774, - 204819 + 206813, + 206858 ], "filename": "astronomy.js", - "lineno": 4681, + "lineno": 4713, "columnno": 0, "code": { - "id": "astnode100019829", + "id": "astnode100019816", "name": "exports.VectorFromHorizon", "type": "Identifier", "value": "VectorFromHorizon", @@ -44255,14 +44227,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": [ - 205709, - 207296 + 207748, + 209335 ], "filename": "astronomy.js", - "lineno": 4701, + "lineno": 4733, "columnno": 0, "code": { - "id": "astnode100019834", + "id": "astnode100019821", "name": "Refraction", "type": "FunctionDeclaration", "paramnames": [ @@ -44322,14 +44294,14 @@ "comment": "", "meta": { "range": [ - 205761, - 205765 + 207800, + 207804 ], "filename": "astronomy.js", - "lineno": 4702, + "lineno": 4734, "columnno": 8, "code": { - "id": "astnode100019840", + "id": "astnode100019827", "name": "refr" } }, @@ -44345,14 +44317,14 @@ "comment": "", "meta": { "range": [ - 206594, - 206607 + 208633, + 208646 ], "filename": "astronomy.js", - "lineno": 4715, + "lineno": 4747, "columnno": 12, "code": { - "id": "astnode100019868", + "id": "astnode100019855", "name": "hd", "type": "Identifier", "value": "altitude" @@ -44370,14 +44342,14 @@ "comment": "", "meta": { "range": [ - 206644, - 206653 + 208683, + 208692 ], "filename": "astronomy.js", - "lineno": 4717, + "lineno": 4749, "columnno": 12, "code": { - "id": "astnode100019877", + "id": "astnode100019864", "name": "hd", "type": "UnaryExpression", "funcscope": "Refraction", @@ -44396,14 +44368,14 @@ "comment": "", "meta": { "range": [ - 206663, - 206731 + 208702, + 208770 ], "filename": "astronomy.js", - "lineno": 4718, + "lineno": 4750, "columnno": 8, "code": { - "id": "astnode100019882", + "id": "astnode100019869", "name": "refr", "type": "BinaryExpression", "funcscope": "Refraction", @@ -44422,14 +44394,14 @@ "comment": "", "meta": { "range": [ - 207125, - 207157 + 209164, + 209196 ], "filename": "astronomy.js", - "lineno": 4724, + "lineno": 4756, "columnno": 12, "code": { - "id": "astnode100019912", + "id": "astnode100019899", "name": "refr", "type": "BinaryExpression", "funcscope": "Refraction", @@ -44448,14 +44420,14 @@ "comment": "", "meta": { "range": [ - 207260, - 207270 + 209299, + 209309 ], "filename": "astronomy.js", - "lineno": 4729, + "lineno": 4761, "columnno": 8, "code": { - "id": "astnode100019921", + "id": "astnode100019908", "name": "refr", "type": "Literal", "funcscope": "Refraction", @@ -44474,14 +44446,14 @@ "comment": "", "meta": { "range": [ - 207297, - 207328 + 209336, + 209367 ], "filename": "astronomy.js", - "lineno": 4733, + "lineno": 4765, "columnno": 0, "code": { - "id": "astnode100019927", + "id": "astnode100019914", "name": "exports.Refraction", "type": "Identifier", "value": "Refraction", @@ -44498,14 +44470,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": [ - 208326, - 208927 + 210365, + 210966 ], "filename": "astronomy.js", - "lineno": 4756, + "lineno": 4788, "columnno": 0, "code": { - "id": "astnode100019932", + "id": "astnode100019919", "name": "InverseRefraction", "type": "FunctionDeclaration", "paramnames": [ @@ -44565,14 +44537,14 @@ "comment": "", "meta": { "range": [ - 208612, - 208676 + 210651, + 210715 ], "filename": "astronomy.js", - "lineno": 4761, + "lineno": 4793, "columnno": 8, "code": { - "id": "astnode100019951", + "id": "astnode100019938", "name": "altitude", "type": "BinaryExpression", "value": "" @@ -44590,14 +44562,14 @@ "comment": "", "meta": { "range": [ - 208741, - 208809 + 210780, + 210848 ], "filename": "astronomy.js", - "lineno": 4764, + "lineno": 4796, "columnno": 12, "code": { - "id": "astnode100019962", + "id": "astnode100019949", "name": "diff", "type": "BinaryExpression", "value": "" @@ -44615,14 +44587,14 @@ "comment": "", "meta": { "range": [ - 208902, - 208918 + 210941, + 210957 ], "filename": "astronomy.js", - "lineno": 4767, + "lineno": 4799, "columnno": 8, "code": { - "id": "astnode100019985", + "id": "astnode100019972", "name": "altitude", "type": "Identifier", "funcscope": "InverseRefraction", @@ -44641,14 +44613,14 @@ "comment": "", "meta": { "range": [ - 208928, - 208973 + 210967, + 211012 ], "filename": "astronomy.js", - "lineno": 4770, + "lineno": 4802, "columnno": 0, "code": { - "id": "astnode100019989", + "id": "astnode100019976", "name": "exports.InverseRefraction", "type": "Identifier", "value": "InverseRefraction", @@ -44665,14 +44637,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": [ - 209451, - 209812 + 211490, + 211851 ], "filename": "astronomy.js", - "lineno": 4786, + "lineno": 4818, "columnno": 0, "code": { - "id": "astnode100019994", + "id": "astnode100019981", "name": "RotateVector", "type": "FunctionDeclaration", "paramnames": [ @@ -44728,14 +44700,14 @@ "comment": "", "meta": { "range": [ - 209813, - 209848 + 211852, + 211887 ], "filename": "astronomy.js", - "lineno": 4789, + "lineno": 4821, "columnno": 0, "code": { - "id": "astnode100020111", + "id": "astnode100020098", "name": "exports.RotateVector", "type": "Identifier", "value": "RotateVector", @@ -44752,14 +44724,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": [ - 210291, - 210601 + 212330, + 212640 ], "filename": "astronomy.js", - "lineno": 4801, + "lineno": 4833, "columnno": 0, "code": { - "id": "astnode100020116", + "id": "astnode100020103", "name": "Rotation_EQJ_ECL", "type": "FunctionDeclaration", "paramnames": [] @@ -44797,14 +44769,14 @@ "comment": "", "meta": { "range": [ - 210414, - 210436 + 212453, + 212475 ], "filename": "astronomy.js", - "lineno": 4803, + "lineno": 4835, "columnno": 10, "code": { - "id": "astnode100020120", + "id": "astnode100020107", "name": "c", "type": "Literal", "value": 0.9174821430670688 @@ -44822,14 +44794,14 @@ "comment": "", "meta": { "range": [ - 210462, - 210484 + 212501, + 212523 ], "filename": "astronomy.js", - "lineno": 4804, + "lineno": 4836, "columnno": 10, "code": { - "id": "astnode100020124", + "id": "astnode100020111", "name": "s", "type": "Literal", "value": 0.3977769691083922 @@ -44847,14 +44819,14 @@ "comment": "", "meta": { "range": [ - 210602, - 210645 + 212641, + 212684 ], "filename": "astronomy.js", - "lineno": 4811, + "lineno": 4843, "columnno": 0, "code": { - "id": "astnode100020148", + "id": "astnode100020135", "name": "exports.Rotation_EQJ_ECL", "type": "Identifier", "value": "Rotation_EQJ_ECL", @@ -44871,14 +44843,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": [ - 211088, - 211398 + 213127, + 213437 ], "filename": "astronomy.js", - "lineno": 4823, + "lineno": 4855, "columnno": 0, "code": { - "id": "astnode100020153", + "id": "astnode100020140", "name": "Rotation_ECL_EQJ", "type": "FunctionDeclaration", "paramnames": [] @@ -44916,14 +44888,14 @@ "comment": "", "meta": { "range": [ - 211211, - 211233 + 213250, + 213272 ], "filename": "astronomy.js", - "lineno": 4825, + "lineno": 4857, "columnno": 10, "code": { - "id": "astnode100020157", + "id": "astnode100020144", "name": "c", "type": "Literal", "value": 0.9174821430670688 @@ -44941,14 +44913,14 @@ "comment": "", "meta": { "range": [ - 211259, - 211281 + 213298, + 213320 ], "filename": "astronomy.js", - "lineno": 4826, + "lineno": 4858, "columnno": 10, "code": { - "id": "astnode100020161", + "id": "astnode100020148", "name": "s", "type": "Literal", "value": 0.3977769691083922 @@ -44966,14 +44938,14 @@ "comment": "", "meta": { "range": [ - 211399, - 211442 + 213438, + 213481 ], "filename": "astronomy.js", - "lineno": 4833, + "lineno": 4865, "columnno": 0, "code": { - "id": "astnode100020185", + "id": "astnode100020172", "name": "exports.Rotation_ECL_EQJ", "type": "Identifier", "value": "Rotation_ECL_EQJ", @@ -44990,14 +44962,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 {AstroTime} 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": [ - 212030, - 212190 + 214069, + 214229 ], "filename": "astronomy.js", - "lineno": 4848, + "lineno": 4880, "columnno": 0, "code": { - "id": "astnode100020190", + "id": "astnode100020177", "name": "Rotation_EQJ_EQD", "type": "FunctionDeclaration", "paramnames": [ @@ -45047,14 +45019,14 @@ "comment": "", "meta": { "range": [ - 212074, - 212109 + 214113, + 214148 ], "filename": "astronomy.js", - "lineno": 4849, + "lineno": 4881, "columnno": 10, "code": { - "id": "astnode100020195", + "id": "astnode100020182", "name": "prec", "type": "CallExpression", "value": "" @@ -45072,14 +45044,14 @@ "comment": "", "meta": { "range": [ - 212121, - 212148 + 214160, + 214187 ], "filename": "astronomy.js", - "lineno": 4850, + "lineno": 4882, "columnno": 10, "code": { - "id": "astnode100020204", + "id": "astnode100020191", "name": "nut", "type": "CallExpression", "value": "" @@ -45097,14 +45069,14 @@ "comment": "", "meta": { "range": [ - 212191, - 212234 + 214230, + 214273 ], "filename": "astronomy.js", - "lineno": 4853, + "lineno": 4885, "columnno": 0, "code": { - "id": "astnode100020216", + "id": "astnode100020203", "name": "exports.Rotation_EQJ_EQD", "type": "Identifier", "value": "Rotation_EQJ_EQD", @@ -45121,14 +45093,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 {AstroTime} 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": [ - 212822, - 212982 + 214861, + 215021 ], "filename": "astronomy.js", - "lineno": 4868, + "lineno": 4900, "columnno": 0, "code": { - "id": "astnode100020221", + "id": "astnode100020208", "name": "Rotation_EQD_EQJ", "type": "FunctionDeclaration", "paramnames": [ @@ -45178,14 +45150,14 @@ "comment": "", "meta": { "range": [ - 212866, - 212893 + 214905, + 214932 ], "filename": "astronomy.js", - "lineno": 4869, + "lineno": 4901, "columnno": 10, "code": { - "id": "astnode100020226", + "id": "astnode100020213", "name": "nut", "type": "CallExpression", "value": "" @@ -45203,14 +45175,14 @@ "comment": "", "meta": { "range": [ - 212905, - 212940 + 214944, + 214979 ], "filename": "astronomy.js", - "lineno": 4870, + "lineno": 4902, "columnno": 10, "code": { - "id": "astnode100020233", + "id": "astnode100020220", "name": "prec", "type": "CallExpression", "value": "" @@ -45228,14 +45200,14 @@ "comment": "", "meta": { "range": [ - 212983, - 213026 + 215022, + 215065 ], "filename": "astronomy.js", - "lineno": 4873, + "lineno": 4905, "columnno": 0, "code": { - "id": "astnode100020247", + "id": "astnode100020234", "name": "exports.Rotation_EQD_EQJ", "type": "Identifier", "value": "Rotation_EQD_EQJ", @@ -45252,14 +45224,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 {AstroTime} 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": [ - 214079, - 214815 + 216118, + 216854 ], "filename": "astronomy.js", - "lineno": 4898, + "lineno": 4930, "columnno": 0, "code": { - "id": "astnode100020252", + "id": "astnode100020239", "name": "Rotation_EQD_HOR", "type": "FunctionDeclaration", "paramnames": [ @@ -45328,14 +45300,14 @@ "comment": "", "meta": { "range": [ - 214133, - 214179 + 216172, + 216218 ], "filename": "astronomy.js", - "lineno": 4899, + "lineno": 4931, "columnno": 10, "code": { - "id": "astnode100020258", + "id": "astnode100020245", "name": "sinlat", "type": "CallExpression", "value": "" @@ -45353,14 +45325,14 @@ "comment": "", "meta": { "range": [ - 214191, - 214237 + 216230, + 216276 ], "filename": "astronomy.js", - "lineno": 4900, + "lineno": 4932, "columnno": 10, "code": { - "id": "astnode100020270", + "id": "astnode100020257", "name": "coslat", "type": "CallExpression", "value": "" @@ -45378,14 +45350,14 @@ "comment": "", "meta": { "range": [ - 214249, - 214296 + 216288, + 216335 ], "filename": "astronomy.js", - "lineno": 4901, + "lineno": 4933, "columnno": 10, "code": { - "id": "astnode100020282", + "id": "astnode100020269", "name": "sinlon", "type": "CallExpression", "value": "" @@ -45403,14 +45375,14 @@ "comment": "", "meta": { "range": [ - 214308, - 214355 + 216347, + 216394 ], "filename": "astronomy.js", - "lineno": 4902, + "lineno": 4934, "columnno": 10, "code": { - "id": "astnode100020294", + "id": "astnode100020281", "name": "coslon", "type": "CallExpression", "value": "" @@ -45428,14 +45400,14 @@ "comment": "", "meta": { "range": [ - 214367, - 214415 + 216406, + 216454 ], "filename": "astronomy.js", - "lineno": 4903, + "lineno": 4935, "columnno": 10, "code": { - "id": "astnode100020306", + "id": "astnode100020293", "name": "uze", "type": "ArrayExpression", "value": "[\"\",\"\",\"sinlat\"]" @@ -45453,14 +45425,14 @@ "comment": "", "meta": { "range": [ - 214427, - 214477 + 216466, + 216516 ], "filename": "astronomy.js", - "lineno": 4904, + "lineno": 4936, "columnno": 10, "code": { - "id": "astnode100020317", + "id": "astnode100020304", "name": "une", "type": "ArrayExpression", "value": "[\"\",\"\",\"coslat\"]" @@ -45478,14 +45450,14 @@ "comment": "", "meta": { "range": [ - 214489, - 214515 + 216528, + 216554 ], "filename": "astronomy.js", - "lineno": 4905, + "lineno": 4937, "columnno": 10, "code": { - "id": "astnode100020330", + "id": "astnode100020317", "name": "uwe", "type": "ArrayExpression", "value": "[\"sinlon\",\"-coslon\",0]" @@ -45503,14 +45475,14 @@ "comment": "", "meta": { "range": [ - 214527, - 214565 + 216566, + 216604 ], "filename": "astronomy.js", - "lineno": 4906, + "lineno": 4938, "columnno": 10, "code": { - "id": "astnode100020338", + "id": "astnode100020325", "name": "spin_angle", "type": "BinaryExpression", "value": "" @@ -45528,14 +45500,14 @@ "comment": "", "meta": { "range": [ - 214577, - 214603 + 216616, + 216642 ], "filename": "astronomy.js", - "lineno": 4907, + "lineno": 4939, "columnno": 10, "code": { - "id": "astnode100020347", + "id": "astnode100020334", "name": "uz", "type": "CallExpression", "value": "" @@ -45553,14 +45525,14 @@ "comment": "", "meta": { "range": [ - 214615, - 214641 + 216654, + 216680 ], "filename": "astronomy.js", - "lineno": 4908, + "lineno": 4940, "columnno": 10, "code": { - "id": "astnode100020354", + "id": "astnode100020341", "name": "un", "type": "CallExpression", "value": "" @@ -45578,14 +45550,14 @@ "comment": "", "meta": { "range": [ - 214653, - 214679 + 216692, + 216718 ], "filename": "astronomy.js", - "lineno": 4909, + "lineno": 4941, "columnno": 10, "code": { - "id": "astnode100020361", + "id": "astnode100020348", "name": "uw", "type": "CallExpression", "value": "" @@ -45603,14 +45575,14 @@ "comment": "", "meta": { "range": [ - 214816, - 214859 + 216855, + 216898 ], "filename": "astronomy.js", - "lineno": 4916, + "lineno": 4948, "columnno": 0, "code": { - "id": "astnode100020402", + "id": "astnode100020389", "name": "exports.Rotation_EQD_HOR", "type": "Identifier", "value": "Rotation_EQD_HOR", @@ -45627,14 +45599,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 {AstroTime} 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": [ - 215556, - 215684 + 217595, + 217723 ], "filename": "astronomy.js", - "lineno": 4934, + "lineno": 4966, "columnno": 0, "code": { - "id": "astnode100020407", + "id": "astnode100020394", "name": "Rotation_HOR_EQD", "type": "FunctionDeclaration", "paramnames": [ @@ -45693,14 +45665,14 @@ "comment": "", "meta": { "range": [ - 215610, - 215648 + 217649, + 217687 ], "filename": "astronomy.js", - "lineno": 4935, + "lineno": 4967, "columnno": 10, "code": { - "id": "astnode100020413", + "id": "astnode100020400", "name": "rot", "type": "CallExpression", "value": "" @@ -45718,14 +45690,14 @@ "comment": "", "meta": { "range": [ - 215685, - 215728 + 217724, + 217767 ], "filename": "astronomy.js", - "lineno": 4938, + "lineno": 4970, "columnno": 0, "code": { - "id": "astnode100020424", + "id": "astnode100020411", "name": "exports.Rotation_HOR_EQD", "type": "Identifier", "value": "Rotation_HOR_EQD", @@ -45742,14 +45714,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 {AstroTime} 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": [ - 216397, - 216586 + 218436, + 218625 ], "filename": "astronomy.js", - "lineno": 4956, + "lineno": 4988, "columnno": 0, "code": { - "id": "astnode100020429", + "id": "astnode100020416", "name": "Rotation_HOR_EQJ", "type": "FunctionDeclaration", "paramnames": [ @@ -45809,14 +45781,14 @@ "comment": "", "meta": { "range": [ - 216451, - 216493 + 218490, + 218532 ], "filename": "astronomy.js", - "lineno": 4957, + "lineno": 4989, "columnno": 10, "code": { - "id": "astnode100020435", + "id": "astnode100020422", "name": "hor_eqd", "type": "CallExpression", "value": "" @@ -45834,14 +45806,14 @@ "comment": "", "meta": { "range": [ - 216505, - 216537 + 218544, + 218576 ], "filename": "astronomy.js", - "lineno": 4958, + "lineno": 4990, "columnno": 10, "code": { - "id": "astnode100020442", + "id": "astnode100020429", "name": "eqd_eqj", "type": "CallExpression", "value": "" @@ -45859,14 +45831,14 @@ "comment": "", "meta": { "range": [ - 216587, - 216630 + 218626, + 218669 ], "filename": "astronomy.js", - "lineno": 4961, + "lineno": 4993, "columnno": 0, "code": { - "id": "astnode100020453", + "id": "astnode100020440", "name": "exports.Rotation_HOR_EQJ", "type": "Identifier", "value": "Rotation_HOR_EQJ", @@ -45883,14 +45855,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 time\n * The date and time of the desired horizontal orientation.\n *\n * @param 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": [ - 217643, - 217771 + 219682, + 219810 ], "filename": "astronomy.js", - "lineno": 4986, + "lineno": 5018, "columnno": 0, "code": { - "id": "astnode100020458", + "id": "astnode100020445", "name": "Rotation_EQJ_HOR", "type": "FunctionDeclaration", "paramnames": [ @@ -45934,14 +45906,14 @@ "comment": "", "meta": { "range": [ - 217697, - 217735 + 219736, + 219774 ], "filename": "astronomy.js", - "lineno": 4987, + "lineno": 5019, "columnno": 10, "code": { - "id": "astnode100020464", + "id": "astnode100020451", "name": "rot", "type": "CallExpression", "value": "" @@ -45959,14 +45931,14 @@ "comment": "", "meta": { "range": [ - 217772, - 217815 + 219811, + 219854 ], "filename": "astronomy.js", - "lineno": 4990, + "lineno": 5022, "columnno": 0, "code": { - "id": "astnode100020475", + "id": "astnode100020462", "name": "exports.Rotation_EQJ_HOR", "type": "Identifier", "value": "Rotation_EQJ_HOR", @@ -45983,14 +45955,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 {AstroTime} 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": [ - 218332, - 218497 + 220371, + 220536 ], "filename": "astronomy.js", - "lineno": 5005, + "lineno": 5037, "columnno": 0, "code": { - "id": "astnode100020480", + "id": "astnode100020467", "name": "Rotation_EQD_ECL", "type": "FunctionDeclaration", "paramnames": [ @@ -46040,14 +46012,14 @@ "comment": "", "meta": { "range": [ - 218376, - 218408 + 220415, + 220447 ], "filename": "astronomy.js", - "lineno": 5006, + "lineno": 5038, "columnno": 10, "code": { - "id": "astnode100020485", + "id": "astnode100020472", "name": "eqd_eqj", "type": "CallExpression", "value": "" @@ -46065,14 +46037,14 @@ "comment": "", "meta": { "range": [ - 218420, - 218448 + 220459, + 220487 ], "filename": "astronomy.js", - "lineno": 5007, + "lineno": 5039, "columnno": 10, "code": { - "id": "astnode100020491", + "id": "astnode100020478", "name": "eqj_ecl", "type": "CallExpression", "value": "" @@ -46090,14 +46062,14 @@ "comment": "", "meta": { "range": [ - 218498, - 218541 + 220537, + 220580 ], "filename": "astronomy.js", - "lineno": 5010, + "lineno": 5042, "columnno": 0, "code": { - "id": "astnode100020501", + "id": "astnode100020488", "name": "exports.Rotation_EQD_ECL", "type": "Identifier", "value": "Rotation_EQD_ECL", @@ -46114,14 +46086,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 {AstroTime} 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": [ - 219059, - 219167 + 221098, + 221206 ], "filename": "astronomy.js", - "lineno": 5025, + "lineno": 5057, "columnno": 0, "code": { - "id": "astnode100020506", + "id": "astnode100020493", "name": "Rotation_ECL_EQD", "type": "FunctionDeclaration", "paramnames": [ @@ -46170,14 +46142,14 @@ "comment": "", "meta": { "range": [ - 219103, - 219131 + 221142, + 221170 ], "filename": "astronomy.js", - "lineno": 5026, + "lineno": 5058, "columnno": 10, "code": { - "id": "astnode100020511", + "id": "astnode100020498", "name": "rot", "type": "CallExpression", "value": "" @@ -46195,14 +46167,14 @@ "comment": "", "meta": { "range": [ - 219168, - 219211 + 221207, + 221250 ], "filename": "astronomy.js", - "lineno": 5029, + "lineno": 5061, "columnno": 0, "code": { - "id": "astnode100020521", + "id": "astnode100020508", "name": "exports.Rotation_ECL_EQD", "type": "Identifier", "value": "Rotation_ECL_EQD", @@ -46219,14 +46191,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 {AstroTime} 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": [ - 220253, - 220442 + 222292, + 222481 ], "filename": "astronomy.js", - "lineno": 5054, + "lineno": 5086, "columnno": 0, "code": { - "id": "astnode100020526", + "id": "astnode100020513", "name": "Rotation_ECL_HOR", "type": "FunctionDeclaration", "paramnames": [ @@ -46286,14 +46258,14 @@ "comment": "", "meta": { "range": [ - 220307, - 220339 + 222346, + 222378 ], "filename": "astronomy.js", - "lineno": 5055, + "lineno": 5087, "columnno": 10, "code": { - "id": "astnode100020532", + "id": "astnode100020519", "name": "ecl_eqd", "type": "CallExpression", "value": "" @@ -46311,14 +46283,14 @@ "comment": "", "meta": { "range": [ - 220351, - 220393 + 222390, + 222432 ], "filename": "astronomy.js", - "lineno": 5056, + "lineno": 5088, "columnno": 10, "code": { - "id": "astnode100020538", + "id": "astnode100020525", "name": "eqd_hor", "type": "CallExpression", "value": "" @@ -46336,14 +46308,14 @@ "comment": "", "meta": { "range": [ - 220443, - 220486 + 222482, + 222525 ], "filename": "astronomy.js", - "lineno": 5059, + "lineno": 5091, "columnno": 0, "code": { - "id": "astnode100020550", + "id": "astnode100020537", "name": "exports.Rotation_ECL_HOR", "type": "Identifier", "value": "Rotation_ECL_HOR", @@ -46360,14 +46332,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 {AstroTime} 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": [ - 221062, - 221190 + 223101, + 223229 ], "filename": "astronomy.js", - "lineno": 5077, + "lineno": 5109, "columnno": 0, "code": { - "id": "astnode100020555", + "id": "astnode100020542", "name": "Rotation_HOR_ECL", "type": "FunctionDeclaration", "paramnames": [ @@ -46426,14 +46398,14 @@ "comment": "", "meta": { "range": [ - 221116, - 221154 + 223155, + 223193 ], "filename": "astronomy.js", - "lineno": 5078, + "lineno": 5110, "columnno": 10, "code": { - "id": "astnode100020561", + "id": "astnode100020548", "name": "rot", "type": "CallExpression", "value": "" @@ -46451,14 +46423,14 @@ "comment": "", "meta": { "range": [ - 221191, - 221234 + 223230, + 223273 ], "filename": "astronomy.js", - "lineno": 5081, + "lineno": 5113, "columnno": 0, "code": { - "id": "astnode100020572", + "id": "astnode100020559", "name": "exports.Rotation_HOR_ECL", "type": "Identifier", "value": "Rotation_HOR_ECL", @@ -46475,14 +46447,14 @@ "comment": "", "meta": { "range": [ - 221242, - 224378 + 223281, + 226417 ], "filename": "astronomy.js", - "lineno": 5082, + "lineno": 5114, "columnno": 6, "code": { - "id": "astnode100020578", + "id": "astnode100020565", "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\\\"]\"]" @@ -46499,14 +46471,14 @@ "comment": "", "meta": { "range": [ - 224386, - 238459 + 226425, + 240498 ], "filename": "astronomy.js", - "lineno": 5259, + "lineno": 5291, "columnno": 6, "code": { - "id": "astnode100020846", + "id": "astnode100020833", "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]\"]" @@ -46523,14 +46495,14 @@ "comment": "", "meta": { "range": [ - 238465, - 238475 + 240504, + 240514 ], "filename": "astronomy.js", - "lineno": 5974, + "lineno": 6006, "columnno": 4, "code": { - "id": "astnode100022798", + "id": "astnode100022785", "name": "ConstelRot" } }, @@ -46545,14 +46517,14 @@ "comment": "", "meta": { "range": [ - 238481, - 238490 + 240520, + 240529 ], "filename": "astronomy.js", - "lineno": 5975, + "lineno": 6007, "columnno": 4, "code": { - "id": "astnode100022801", + "id": "astnode100022788", "name": "Epoch2000" } }, @@ -46567,14 +46539,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": [ - 238934, - 239134 + 240973, + 241173 ], "filename": "astronomy.js", - "lineno": 5991, + "lineno": 6023, "columnno": 0, "code": { - "id": "astnode100022803", + "id": "astnode100022790", "name": "ConstellationInfo", "type": "ClassDeclaration", "paramnames": [ @@ -46641,14 +46613,14 @@ "comment": "", "meta": { "range": [ - 238964, - 239132 + 241003, + 241171 ], "filename": "astronomy.js", - "lineno": 5992, + "lineno": 6024, "columnno": 4, "code": { - "id": "astnode100022806", + "id": "astnode100022793", "name": "ConstellationInfo", "type": "MethodDefinition", "paramnames": [ @@ -46673,14 +46645,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": [ - 238934, - 239134 + 240973, + 241173 ], "filename": "astronomy.js", - "lineno": 5991, + "lineno": 6023, "columnno": 0, "code": { - "id": "astnode100022803", + "id": "astnode100022790", "name": "ConstellationInfo", "type": "ClassDeclaration", "paramnames": [ @@ -46746,14 +46718,14 @@ "comment": "", "meta": { "range": [ - 239017, - 239037 + 241056, + 241076 ], "filename": "astronomy.js", - "lineno": 5993, + "lineno": 6025, "columnno": 8, "code": { - "id": "astnode100022815", + "id": "astnode100022802", "name": "this.symbol", "type": "Identifier", "value": "symbol", @@ -46771,14 +46743,14 @@ "comment": "", "meta": { "range": [ - 239047, - 239063 + 241086, + 241102 ], "filename": "astronomy.js", - "lineno": 5994, + "lineno": 6026, "columnno": 8, "code": { - "id": "astnode100022821", + "id": "astnode100022808", "name": "this.name", "type": "Identifier", "value": "name", @@ -46796,14 +46768,14 @@ "comment": "", "meta": { "range": [ - 239073, - 239093 + 241112, + 241132 ], "filename": "astronomy.js", - "lineno": 5995, + "lineno": 6027, "columnno": 8, "code": { - "id": "astnode100022827", + "id": "astnode100022814", "name": "this.ra1875", "type": "Identifier", "value": "ra1875", @@ -46821,14 +46793,14 @@ "comment": "", "meta": { "range": [ - 239103, - 239125 + 241142, + 241164 ], "filename": "astronomy.js", - "lineno": 5996, + "lineno": 6028, "columnno": 8, "code": { - "id": "astnode100022833", + "id": "astnode100022820", "name": "this.dec1875", "type": "Identifier", "value": "dec1875", @@ -46846,14 +46818,14 @@ "comment": "", "meta": { "range": [ - 239135, - 239180 + 241174, + 241219 ], "filename": "astronomy.js", - "lineno": 5999, + "lineno": 6031, "columnno": 0, "code": { - "id": "astnode100022839", + "id": "astnode100022826", "name": "exports.ConstellationInfo", "type": "Identifier", "value": "ConstellationInfo", @@ -46870,14 +46842,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": [ - 239863, - 242073 + 241902, + 244112 ], "filename": "astronomy.js", - "lineno": 6017, + "lineno": 6049, "columnno": 0, "code": { - "id": "astnode100022844", + "id": "astnode100022831", "name": "Constellation", "type": "FunctionDeclaration", "paramnames": [ @@ -46949,14 +46921,14 @@ "comment": "", "meta": { "range": [ - 240104, - 240114 + 242143, + 242153 ], "filename": "astronomy.js", - "lineno": 6024, + "lineno": 6056, "columnno": 4, "code": { - "id": "astnode100022871", + "id": "astnode100022858", "name": "ra", "type": "Literal", "funcscope": "Constellation", @@ -46975,14 +46947,14 @@ "comment": "", "meta": { "range": [ - 240144, - 240154 + 242183, + 242193 ], "filename": "astronomy.js", - "lineno": 6026, + "lineno": 6058, "columnno": 8, "code": { - "id": "astnode100022880", + "id": "astnode100022867", "name": "ra", "type": "Literal", "funcscope": "Constellation", @@ -47001,14 +46973,14 @@ "comment": "", "meta": { "range": [ - 240936, - 241000 + 242975, + 243039 ], "filename": "astronomy.js", - "lineno": 6041, + "lineno": 6073, "columnno": 8, "code": { - "id": "astnode100022888", + "id": "astnode100022875", "name": "ConstelRot", "type": "CallExpression", "funcscope": "Constellation", @@ -47027,14 +46999,14 @@ "comment": "", "meta": { "range": [ - 241010, - 241038 + 243049, + 243077 ], "filename": "astronomy.js", - "lineno": 6042, + "lineno": 6074, "columnno": 8, "code": { - "id": "astnode100022897", + "id": "astnode100022884", "name": "Epoch2000", "type": "NewExpression", "funcscope": "Constellation", @@ -47053,14 +47025,14 @@ "comment": "", "meta": { "range": [ - 241104, - 241153 + 243143, + 243192 ], "filename": "astronomy.js", - "lineno": 6045, + "lineno": 6077, "columnno": 10, "code": { - "id": "astnode100022903", + "id": "astnode100022890", "name": "equ2000", "type": "NewExpression", "value": "" @@ -47078,14 +47050,14 @@ "comment": "", "meta": { "range": [ - 241165, - 241212 + 243204, + 243251 ], "filename": "astronomy.js", - "lineno": 6046, + "lineno": 6078, "columnno": 10, "code": { - "id": "astnode100022911", + "id": "astnode100022898", "name": "vec2000", "type": "CallExpression", "value": "" @@ -47103,14 +47075,14 @@ "comment": "", "meta": { "range": [ - 241224, - 241267 + 243263, + 243306 ], "filename": "astronomy.js", - "lineno": 6047, + "lineno": 6079, "columnno": 10, "code": { - "id": "astnode100022918", + "id": "astnode100022905", "name": "vec1875", "type": "CallExpression", "value": "" @@ -47128,14 +47100,14 @@ "comment": "", "meta": { "range": [ - 241279, - 241315 + 243318, + 243354 ], "filename": "astronomy.js", - "lineno": 6048, + "lineno": 6080, "columnno": 10, "code": { - "id": "astnode100022925", + "id": "astnode100022912", "name": "equ1875", "type": "CallExpression", "value": "" @@ -47153,14 +47125,14 @@ "comment": "", "meta": { "range": [ - 241392, - 241410 + 243431, + 243449 ], "filename": "astronomy.js", - "lineno": 6050, + "lineno": 6082, "columnno": 10, "code": { - "id": "astnode100022931", + "id": "astnode100022918", "name": "fd", "type": "BinaryExpression", "value": "" @@ -47178,14 +47150,14 @@ "comment": "", "meta": { "range": [ - 241477, - 241489 + 243516, + 243528 ], "filename": "astronomy.js", - "lineno": 6051, + "lineno": 6083, "columnno": 10, "code": { - "id": "astnode100022939", + "id": "astnode100022926", "name": "fr", "type": "BinaryExpression", "value": "" @@ -47203,14 +47175,14 @@ "comment": "", "meta": { "range": [ - 241566, - 241567 + 243605, + 243606 ], "filename": "astronomy.js", - "lineno": 6052, + "lineno": 6084, "columnno": 13, "code": { - "id": "astnode100022946", + "id": "astnode100022933", "name": "b" } }, @@ -47226,14 +47198,14 @@ "comment": "", "meta": { "range": [ - 241675, - 241690 + 243714, + 243729 ], "filename": "astronomy.js", - "lineno": 6054, + "lineno": 6086, "columnno": 14, "code": { - "id": "astnode100022951", + "id": "astnode100022938", "name": "dec", "type": "BinaryExpression", "value": "" @@ -47251,14 +47223,14 @@ "comment": "", "meta": { "range": [ - 241706, - 241723 + 243745, + 243762 ], "filename": "astronomy.js", - "lineno": 6055, + "lineno": 6087, "columnno": 14, "code": { - "id": "astnode100022959", + "id": "astnode100022946", "name": "ra_lo", "type": "BinaryExpression", "value": "" @@ -47276,14 +47248,14 @@ "comment": "", "meta": { "range": [ - 241739, - 241756 + 243778, + 243795 ], "filename": "astronomy.js", - "lineno": 6056, + "lineno": 6088, "columnno": 14, "code": { - "id": "astnode100022967", + "id": "astnode100022954", "name": "ra_hi", "type": "BinaryExpression", "value": "" @@ -47301,14 +47273,14 @@ "comment": "", "meta": { "range": [ - 241855, - 241877 + 243894, + 243916 ], "filename": "astronomy.js", - "lineno": 6058, + "lineno": 6090, "columnno": 18, "code": { - "id": "astnode100022994", + "id": "astnode100022981", "name": "c", "type": "MemberExpression", "value": "ConstelNames[undefined]" @@ -47326,14 +47298,14 @@ "comment": "", "meta": { "range": [ - 242074, - 242111 + 244113, + 244150 ], "filename": "astronomy.js", - "lineno": 6065, + "lineno": 6097, "columnno": 0, "code": { - "id": "astnode100023019", + "id": "astnode100023006", "name": "exports.Constellation", "type": "Identifier", "value": "Constellation", @@ -47350,14 +47322,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": [ - 243841, - 244093 + 245880, + 246132 ], "filename": "astronomy.js", - "lineno": 6104, + "lineno": 6136, "columnno": 0, "code": { - "id": "astnode100023024", + "id": "astnode100023011", "name": "LunarEclipseInfo", "type": "ClassDeclaration", "paramnames": [ @@ -47434,14 +47406,14 @@ "comment": "", "meta": { "range": [ - 243870, - 244091 + 245909, + 246130 ], "filename": "astronomy.js", - "lineno": 6105, + "lineno": 6137, "columnno": 4, "code": { - "id": "astnode100023027", + "id": "astnode100023014", "name": "LunarEclipseInfo", "type": "MethodDefinition", "paramnames": [ @@ -47467,14 +47439,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": [ - 243841, - 244093 + 245880, + 246132 ], "filename": "astronomy.js", - "lineno": 6104, + "lineno": 6136, "columnno": 0, "code": { - "id": "astnode100023024", + "id": "astnode100023011", "name": "LunarEclipseInfo", "type": "ClassDeclaration", "paramnames": [ @@ -47550,14 +47522,14 @@ "comment": "", "meta": { "range": [ - 243936, - 243952 + 245975, + 245991 ], "filename": "astronomy.js", - "lineno": 6106, + "lineno": 6138, "columnno": 8, "code": { - "id": "astnode100023037", + "id": "astnode100023024", "name": "this.kind", "type": "Identifier", "value": "kind", @@ -47575,14 +47547,14 @@ "comment": "", "meta": { "range": [ - 243962, - 243978 + 246001, + 246017 ], "filename": "astronomy.js", - "lineno": 6107, + "lineno": 6139, "columnno": 8, "code": { - "id": "astnode100023043", + "id": "astnode100023030", "name": "this.peak", "type": "Identifier", "value": "peak", @@ -47600,14 +47572,14 @@ "comment": "", "meta": { "range": [ - 243988, - 244012 + 246027, + 246051 ], "filename": "astronomy.js", - "lineno": 6108, + "lineno": 6140, "columnno": 8, "code": { - "id": "astnode100023049", + "id": "astnode100023036", "name": "this.sd_penum", "type": "Identifier", "value": "sd_penum", @@ -47625,14 +47597,14 @@ "comment": "", "meta": { "range": [ - 244022, - 244050 + 246061, + 246089 ], "filename": "astronomy.js", - "lineno": 6109, + "lineno": 6141, "columnno": 8, "code": { - "id": "astnode100023055", + "id": "astnode100023042", "name": "this.sd_partial", "type": "Identifier", "value": "sd_partial", @@ -47650,14 +47622,14 @@ "comment": "", "meta": { "range": [ - 244060, - 244084 + 246099, + 246123 ], "filename": "astronomy.js", - "lineno": 6110, + "lineno": 6142, "columnno": 8, "code": { - "id": "astnode100023061", + "id": "astnode100023048", "name": "this.sd_total", "type": "Identifier", "value": "sd_total", @@ -47675,14 +47647,14 @@ "comment": "", "meta": { "range": [ - 244094, - 244137 + 246133, + 246176 ], "filename": "astronomy.js", - "lineno": 6113, + "lineno": 6145, "columnno": 0, "code": { - "id": "astnode100023067", + "id": "astnode100023054", "name": "exports.LunarEclipseInfo", "type": "Identifier", "value": "LunarEclipseInfo", @@ -47699,14 +47671,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": [ - 246172, - 246407 + 248211, + 248446 ], "filename": "astronomy.js", - "lineno": 6162, + "lineno": 6194, "columnno": 0, "code": { - "id": "astnode100023072", + "id": "astnode100023059", "name": "ShadowInfo", "type": "ClassDeclaration", "paramnames": [ @@ -47804,14 +47776,14 @@ "comment": "", "meta": { "range": [ - 246195, - 246405 + 248234, + 248444 ], "filename": "astronomy.js", - "lineno": 6163, + "lineno": 6195, "columnno": 4, "code": { - "id": "astnode100023075", + "id": "astnode100023062", "name": "ShadowInfo", "type": "MethodDefinition", "paramnames": [ @@ -47839,14 +47811,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": [ - 246172, - 246407 + 248211, + 248446 ], "filename": "astronomy.js", - "lineno": 6162, + "lineno": 6194, "columnno": 0, "code": { - "id": "astnode100023072", + "id": "astnode100023059", "name": "ShadowInfo", "type": "ClassDeclaration", "paramnames": [ @@ -47943,14 +47915,14 @@ "comment": "", "meta": { "range": [ - 246248, - 246264 + 248287, + 248303 ], "filename": "astronomy.js", - "lineno": 6164, + "lineno": 6196, "columnno": 8, "code": { - "id": "astnode100023087", + "id": "astnode100023074", "name": "this.time", "type": "Identifier", "value": "time", @@ -47968,14 +47940,14 @@ "comment": "", "meta": { "range": [ - 246274, - 246284 + 248313, + 248323 ], "filename": "astronomy.js", - "lineno": 6165, + "lineno": 6197, "columnno": 8, "code": { - "id": "astnode100023093", + "id": "astnode100023080", "name": "this.u", "type": "Identifier", "value": "u", @@ -47993,14 +47965,14 @@ "comment": "", "meta": { "range": [ - 246294, - 246304 + 248333, + 248343 ], "filename": "astronomy.js", - "lineno": 6166, + "lineno": 6198, "columnno": 8, "code": { - "id": "astnode100023099", + "id": "astnode100023086", "name": "this.r", "type": "Identifier", "value": "r", @@ -48018,14 +47990,14 @@ "comment": "", "meta": { "range": [ - 246314, - 246324 + 248353, + 248363 ], "filename": "astronomy.js", - "lineno": 6167, + "lineno": 6199, "columnno": 8, "code": { - "id": "astnode100023105", + "id": "astnode100023092", "name": "this.k", "type": "Identifier", "value": "k", @@ -48043,14 +48015,14 @@ "comment": "", "meta": { "range": [ - 246334, - 246344 + 248373, + 248383 ], "filename": "astronomy.js", - "lineno": 6168, + "lineno": 6200, "columnno": 8, "code": { - "id": "astnode100023111", + "id": "astnode100023098", "name": "this.p", "type": "Identifier", "value": "p", @@ -48068,14 +48040,14 @@ "comment": "", "meta": { "range": [ - 246354, - 246374 + 248393, + 248413 ], "filename": "astronomy.js", - "lineno": 6169, + "lineno": 6201, "columnno": 8, "code": { - "id": "astnode100023117", + "id": "astnode100023104", "name": "this.target", "type": "Identifier", "value": "target", @@ -48093,14 +48065,14 @@ "comment": "", "meta": { "range": [ - 246384, - 246398 + 248423, + 248437 ], "filename": "astronomy.js", - "lineno": 6170, + "lineno": 6202, "columnno": 8, "code": { - "id": "astnode100023123", + "id": "astnode100023110", "name": "this.dir", "type": "Identifier", "value": "dir", @@ -48118,14 +48090,14 @@ "comment": "", "meta": { "range": [ - 246408, - 246983 + 248447, + 249022 ], "filename": "astronomy.js", - "lineno": 6173, + "lineno": 6205, "columnno": 0, "code": { - "id": "astnode100023128", + "id": "astnode100023115", "name": "CalcShadow", "type": "FunctionDeclaration", "paramnames": [ @@ -48156,14 +48128,14 @@ "comment": "", "meta": { "range": [ - 246475, - 246585 + 248514, + 248624 ], "filename": "astronomy.js", - "lineno": 6174, + "lineno": 6206, "columnno": 10, "code": { - "id": "astnode100023136", + "id": "astnode100023123", "name": "u", "type": "BinaryExpression", "value": "" @@ -48181,14 +48153,14 @@ "comment": "", "meta": { "range": [ - 246597, - 246624 + 248636, + 248663 ], "filename": "astronomy.js", - "lineno": 6175, + "lineno": 6207, "columnno": 10, "code": { - "id": "astnode100023186", + "id": "astnode100023173", "name": "dx", "type": "BinaryExpression", "value": "" @@ -48206,14 +48178,14 @@ "comment": "", "meta": { "range": [ - 246636, - 246663 + 248675, + 248702 ], "filename": "astronomy.js", - "lineno": 6176, + "lineno": 6208, "columnno": 10, "code": { - "id": "astnode100023198", + "id": "astnode100023185", "name": "dy", "type": "BinaryExpression", "value": "" @@ -48231,14 +48203,14 @@ "comment": "", "meta": { "range": [ - 246675, - 246702 + 248714, + 248741 ], "filename": "astronomy.js", - "lineno": 6177, + "lineno": 6209, "columnno": 10, "code": { - "id": "astnode100023210", + "id": "astnode100023197", "name": "dz", "type": "BinaryExpression", "value": "" @@ -48256,14 +48228,14 @@ "comment": "", "meta": { "range": [ - 246714, - 246768 + 248753, + 248807 ], "filename": "astronomy.js", - "lineno": 6178, + "lineno": 6210, "columnno": 10, "code": { - "id": "astnode100023222", + "id": "astnode100023209", "name": "r", "type": "BinaryExpression", "value": "" @@ -48281,14 +48253,14 @@ "comment": "", "meta": { "range": [ - 246780, - 246845 + 248819, + 248884 ], "filename": "astronomy.js", - "lineno": 6179, + "lineno": 6211, "columnno": 10, "code": { - "id": "astnode100023242", + "id": "astnode100023229", "name": "k", "type": "BinaryExpression", "value": "" @@ -48306,14 +48278,14 @@ "comment": "", "meta": { "range": [ - 246857, - 246922 + 248896, + 248961 ], "filename": "astronomy.js", - "lineno": 6180, + "lineno": 6212, "columnno": 10, "code": { - "id": "astnode100023255", + "id": "astnode100023242", "name": "p", "type": "BinaryExpression", "value": "" @@ -48331,14 +48303,14 @@ "comment": "", "meta": { "range": [ - 246984, - 247145 + 249023, + 249184 ], "filename": "astronomy.js", - "lineno": 6183, + "lineno": 6215, "columnno": 0, "code": { - "id": "astnode100023277", + "id": "astnode100023264", "name": "EarthShadow", "type": "FunctionDeclaration", "paramnames": [ @@ -48361,14 +48333,14 @@ "comment": "", "meta": { "range": [ - 247023, - 247053 + 249062, + 249092 ], "filename": "astronomy.js", - "lineno": 6184, + "lineno": 6216, "columnno": 10, "code": { - "id": "astnode100023282", + "id": "astnode100023269", "name": "e", "type": "CallExpression", "value": "" @@ -48386,14 +48358,14 @@ "comment": "", "meta": { "range": [ - 247065, - 247082 + 249104, + 249121 ], "filename": "astronomy.js", - "lineno": 6185, + "lineno": 6217, "columnno": 10, "code": { - "id": "astnode100023291", + "id": "astnode100023278", "name": "m", "type": "CallExpression", "value": "" @@ -48411,14 +48383,14 @@ "comment": "", "meta": { "range": [ - 247146, - 247710 + 249185, + 249749 ], "filename": "astronomy.js", - "lineno": 6188, + "lineno": 6220, "columnno": 0, "code": { - "id": "astnode100023303", + "id": "astnode100023290", "name": "MoonShadow", "type": "FunctionDeclaration", "paramnames": [ @@ -48445,14 +48417,14 @@ "comment": "", "meta": { "range": [ - 247365, - 247395 + 249404, + 249434 ], "filename": "astronomy.js", - "lineno": 6192, + "lineno": 6224, "columnno": 10, "code": { - "id": "astnode100023308", + "id": "astnode100023295", "name": "h", "type": "CallExpression", "value": "" @@ -48470,14 +48442,14 @@ "comment": "", "meta": { "range": [ - 247429, - 247446 + 249468, + 249485 ], "filename": "astronomy.js", - "lineno": 6193, + "lineno": 6225, "columnno": 10, "code": { - "id": "astnode100023317", + "id": "astnode100023304", "name": "m", "type": "CallExpression", "value": "" @@ -48495,14 +48467,14 @@ "comment": "", "meta": { "range": [ - 247513, - 247550 + 249552, + 249589 ], "filename": "astronomy.js", - "lineno": 6195, + "lineno": 6227, "columnno": 10, "code": { - "id": "astnode100023323", + "id": "astnode100023310", "name": "e", "type": "NewExpression", "value": "" @@ -48520,14 +48492,14 @@ "comment": "", "meta": { "range": [ - 247609, - 247619 + 249648, + 249658 ], "filename": "astronomy.js", - "lineno": 6197, + "lineno": 6229, "columnno": 4, "code": { - "id": "astnode100023343", + "id": "astnode100023330", "name": "m.x", "type": "MemberExpression", "funcscope": "MoonShadow", @@ -48546,14 +48518,14 @@ "comment": "", "meta": { "range": [ - 247625, - 247635 + 249664, + 249674 ], "filename": "astronomy.js", - "lineno": 6198, + "lineno": 6230, "columnno": 4, "code": { - "id": "astnode100023351", + "id": "astnode100023338", "name": "m.y", "type": "MemberExpression", "funcscope": "MoonShadow", @@ -48572,14 +48544,14 @@ "comment": "", "meta": { "range": [ - 247641, - 247651 + 249680, + 249690 ], "filename": "astronomy.js", - "lineno": 6199, + "lineno": 6231, "columnno": 4, "code": { - "id": "astnode100023359", + "id": "astnode100023346", "name": "m.z", "type": "MemberExpression", "funcscope": "MoonShadow", @@ -48598,14 +48570,14 @@ "comment": "", "meta": { "range": [ - 247711, - 248418 + 249750, + 250457 ], "filename": "astronomy.js", - "lineno": 6202, + "lineno": 6234, "columnno": 0, "code": { - "id": "astnode100023373", + "id": "astnode100023360", "name": "LocalMoonShadow", "type": "FunctionDeclaration", "paramnames": [ @@ -48634,14 +48606,14 @@ "comment": "", "meta": { "range": [ - 247966, - 247995 + 250005, + 250034 ], "filename": "astronomy.js", - "lineno": 6206, + "lineno": 6238, "columnno": 10, "code": { - "id": "astnode100023379", + "id": "astnode100023366", "name": "pos", "type": "CallExpression", "value": "" @@ -48659,14 +48631,14 @@ "comment": "", "meta": { "range": [ - 248007, - 248037 + 250046, + 250076 ], "filename": "astronomy.js", - "lineno": 6207, + "lineno": 6239, "columnno": 10, "code": { - "id": "astnode100023386", + "id": "astnode100023373", "name": "h", "type": "CallExpression", "value": "" @@ -48684,14 +48656,14 @@ "comment": "", "meta": { "range": [ - 248071, - 248088 + 250110, + 250127 ], "filename": "astronomy.js", - "lineno": 6208, + "lineno": 6240, "columnno": 10, "code": { - "id": "astnode100023395", + "id": "astnode100023382", "name": "m", "type": "CallExpression", "value": "" @@ -48709,14 +48681,14 @@ "comment": "", "meta": { "range": [ - 248196, - 248258 + 250235, + 250297 ], "filename": "astronomy.js", - "lineno": 6210, + "lineno": 6242, "columnno": 10, "code": { - "id": "astnode100023401", + "id": "astnode100023388", "name": "o", "type": "NewExpression", "value": "" @@ -48734,14 +48706,14 @@ "comment": "", "meta": { "range": [ - 248317, - 248327 + 250356, + 250366 ], "filename": "astronomy.js", - "lineno": 6212, + "lineno": 6244, "columnno": 4, "code": { - "id": "astnode100023428", + "id": "astnode100023415", "name": "m.x", "type": "MemberExpression", "funcscope": "LocalMoonShadow", @@ -48760,14 +48732,14 @@ "comment": "", "meta": { "range": [ - 248333, - 248343 + 250372, + 250382 ], "filename": "astronomy.js", - "lineno": 6213, + "lineno": 6245, "columnno": 4, "code": { - "id": "astnode100023436", + "id": "astnode100023423", "name": "m.y", "type": "MemberExpression", "funcscope": "LocalMoonShadow", @@ -48786,14 +48758,14 @@ "comment": "", "meta": { "range": [ - 248349, - 248359 + 250388, + 250398 ], "filename": "astronomy.js", - "lineno": 6214, + "lineno": 6246, "columnno": 4, "code": { - "id": "astnode100023444", + "id": "astnode100023431", "name": "m.z", "type": "MemberExpression", "funcscope": "LocalMoonShadow", @@ -48812,14 +48784,14 @@ "comment": "", "meta": { "range": [ - 248419, - 248995 + 250458, + 251034 ], "filename": "astronomy.js", - "lineno": 6217, + "lineno": 6249, "columnno": 0, "code": { - "id": "astnode100023458", + "id": "astnode100023445", "name": "PlanetShadow", "type": "FunctionDeclaration", "paramnames": [ @@ -48848,14 +48820,14 @@ "comment": "", "meta": { "range": [ - 248552, - 248584 + 250591, + 250623 ], "filename": "astronomy.js", - "lineno": 6219, + "lineno": 6251, "columnno": 10, "code": { - "id": "astnode100023465", + "id": "astnode100023452", "name": "g", "type": "CallExpression", "value": "" @@ -48873,14 +48845,14 @@ "comment": "", "meta": { "range": [ - 248662, - 248695 + 250701, + 250734 ], "filename": "astronomy.js", - "lineno": 6221, + "lineno": 6253, "columnno": 10, "code": { - "id": "astnode100023473", + "id": "astnode100023460", "name": "e", "type": "CallExpression", "value": "" @@ -48898,14 +48870,14 @@ "comment": "", "meta": { "range": [ - 248771, - 248824 + 250810, + 250863 ], "filename": "astronomy.js", - "lineno": 6223, + "lineno": 6255, "columnno": 10, "code": { - "id": "astnode100023481", + "id": "astnode100023468", "name": "p", "type": "NewExpression", "value": "" @@ -48923,14 +48895,14 @@ "comment": "", "meta": { "range": [ - 248897, - 248907 + 250936, + 250946 ], "filename": "astronomy.js", - "lineno": 6225, + "lineno": 6257, "columnno": 4, "code": { - "id": "astnode100023508", + "id": "astnode100023495", "name": "e.x", "type": "UnaryExpression", "funcscope": "PlanetShadow", @@ -48949,14 +48921,14 @@ "comment": "", "meta": { "range": [ - 248913, - 248923 + 250952, + 250962 ], "filename": "astronomy.js", - "lineno": 6226, + "lineno": 6258, "columnno": 4, "code": { - "id": "astnode100023517", + "id": "astnode100023504", "name": "e.y", "type": "UnaryExpression", "funcscope": "PlanetShadow", @@ -48975,14 +48947,14 @@ "comment": "", "meta": { "range": [ - 248929, - 248939 + 250968, + 250978 ], "filename": "astronomy.js", - "lineno": 6227, + "lineno": 6259, "columnno": 4, "code": { - "id": "astnode100023526", + "id": "astnode100023513", "name": "e.z", "type": "UnaryExpression", "funcscope": "PlanetShadow", @@ -49001,14 +48973,14 @@ "comment": "", "meta": { "range": [ - 248996, - 249257 + 251035, + 251296 ], "filename": "astronomy.js", - "lineno": 6230, + "lineno": 6262, "columnno": 0, "code": { - "id": "astnode100023541", + "id": "astnode100023528", "name": "ShadowDistanceSlope", "type": "FunctionDeclaration", "paramnames": [ @@ -49035,14 +49007,14 @@ "comment": "", "meta": { "range": [ - 249055, - 249073 + 251094, + 251112 ], "filename": "astronomy.js", - "lineno": 6231, + "lineno": 6263, "columnno": 10, "code": { - "id": "astnode100023547", + "id": "astnode100023534", "name": "dt", "type": "BinaryExpression", "value": "" @@ -49060,14 +49032,14 @@ "comment": "", "meta": { "range": [ - 249085, - 249107 + 251124, + 251146 ], "filename": "astronomy.js", - "lineno": 6232, + "lineno": 6264, "columnno": 10, "code": { - "id": "astnode100023553", + "id": "astnode100023540", "name": "t1", "type": "CallExpression", "value": "" @@ -49085,14 +49057,14 @@ "comment": "", "meta": { "range": [ - 249119, - 249141 + 251158, + 251180 ], "filename": "astronomy.js", - "lineno": 6233, + "lineno": 6265, "columnno": 10, "code": { - "id": "astnode100023562", + "id": "astnode100023549", "name": "t2", "type": "CallExpression", "value": "" @@ -49110,14 +49082,14 @@ "comment": "", "meta": { "range": [ - 249153, - 249177 + 251192, + 251216 ], "filename": "astronomy.js", - "lineno": 6234, + "lineno": 6266, "columnno": 10, "code": { - "id": "astnode100023571", + "id": "astnode100023558", "name": "shadow1", "type": "CallExpression", "value": "" @@ -49135,14 +49107,14 @@ "comment": "", "meta": { "range": [ - 249189, - 249213 + 251228, + 251252 ], "filename": "astronomy.js", - "lineno": 6235, + "lineno": 6267, "columnno": 10, "code": { - "id": "astnode100023577", + "id": "astnode100023564", "name": "shadow2", "type": "CallExpression", "value": "" @@ -49160,14 +49132,14 @@ "comment": "", "meta": { "range": [ - 249258, - 249543 + 251297, + 251582 ], "filename": "astronomy.js", - "lineno": 6238, + "lineno": 6270, "columnno": 0, "code": { - "id": "astnode100023592", + "id": "astnode100023579", "name": "PlanetShadowSlope", "type": "FunctionDeclaration", "paramnames": [ @@ -49193,14 +49165,14 @@ "comment": "", "meta": { "range": [ - 249327, - 249345 + 251366, + 251384 ], "filename": "astronomy.js", - "lineno": 6239, + "lineno": 6271, "columnno": 10, "code": { - "id": "astnode100023599", + "id": "astnode100023586", "name": "dt", "type": "BinaryExpression", "value": "" @@ -49218,14 +49190,14 @@ "comment": "", "meta": { "range": [ - 249357, - 249422 + 251396, + 251461 ], "filename": "astronomy.js", - "lineno": 6240, + "lineno": 6272, "columnno": 10, "code": { - "id": "astnode100023605", + "id": "astnode100023592", "name": "shadow1", "type": "CallExpression", "value": "" @@ -49243,14 +49215,14 @@ "comment": "", "meta": { "range": [ - 249434, - 249499 + 251473, + 251538 ], "filename": "astronomy.js", - "lineno": 6241, + "lineno": 6273, "columnno": 10, "code": { - "id": "astnode100023618", + "id": "astnode100023605", "name": "shadow2", "type": "CallExpression", "value": "" @@ -49268,14 +49240,14 @@ "comment": "", "meta": { "range": [ - 249544, - 249961 + 251583, + 252000 ], "filename": "astronomy.js", - "lineno": 6244, + "lineno": 6276, "columnno": 0, "code": { - "id": "astnode100023640", + "id": "astnode100023627", "name": "PeakEarthShadow", "type": "FunctionDeclaration", "paramnames": [ @@ -49301,14 +49273,14 @@ "comment": "", "meta": { "range": [ - 249601, - 249614 + 251640, + 251653 ], "filename": "astronomy.js", - "lineno": 6245, + "lineno": 6277, "columnno": 10, "code": { - "id": "astnode100023645", + "id": "astnode100023632", "name": "window", "type": "Literal", "value": 0.03 @@ -49326,14 +49298,14 @@ "comment": "", "meta": { "range": [ - 249688, - 249728 + 251727, + 251767 ], "filename": "astronomy.js", - "lineno": 6246, + "lineno": 6278, "columnno": 10, "code": { - "id": "astnode100023649", + "id": "astnode100023636", "name": "t1", "type": "CallExpression", "value": "" @@ -49351,14 +49323,14 @@ "comment": "", "meta": { "range": [ - 249740, - 249780 + 251779, + 251819 ], "filename": "astronomy.js", - "lineno": 6247, + "lineno": 6279, "columnno": 10, "code": { - "id": "astnode100023658", + "id": "astnode100023645", "name": "t2", "type": "CallExpression", "value": "" @@ -49376,14 +49348,14 @@ "comment": "", "meta": { "range": [ - 249792, - 249861 + 251831, + 251900 ], "filename": "astronomy.js", - "lineno": 6248, + "lineno": 6280, "columnno": 10, "code": { - "id": "astnode100023667", + "id": "astnode100023654", "name": "tx", "type": "CallExpression", "value": "" @@ -49401,14 +49373,14 @@ "comment": "", "meta": { "range": [ - 249962, - 250375 + 252001, + 252414 ], "filename": "astronomy.js", - "lineno": 6253, + "lineno": 6285, "columnno": 0, "code": { - "id": "astnode100023688", + "id": "astnode100023675", "name": "PeakMoonShadow", "type": "FunctionDeclaration", "paramnames": [ @@ -49434,14 +49406,14 @@ "comment": "", "meta": { "range": [ - 250018, - 250031 + 252057, + 252070 ], "filename": "astronomy.js", - "lineno": 6254, + "lineno": 6286, "columnno": 10, "code": { - "id": "astnode100023693", + "id": "astnode100023680", "name": "window", "type": "Literal", "value": 0.03 @@ -49459,14 +49431,14 @@ "comment": "", "meta": { "range": [ - 250105, - 250145 + 252144, + 252184 ], "filename": "astronomy.js", - "lineno": 6255, + "lineno": 6287, "columnno": 10, "code": { - "id": "astnode100023697", + "id": "astnode100023684", "name": "t1", "type": "CallExpression", "value": "" @@ -49484,14 +49456,14 @@ "comment": "", "meta": { "range": [ - 250157, - 250197 + 252196, + 252236 ], "filename": "astronomy.js", - "lineno": 6256, + "lineno": 6288, "columnno": 10, "code": { - "id": "astnode100023706", + "id": "astnode100023693", "name": "t2", "type": "CallExpression", "value": "" @@ -49509,14 +49481,14 @@ "comment": "", "meta": { "range": [ - 250209, - 250277 + 252248, + 252316 ], "filename": "astronomy.js", - "lineno": 6257, + "lineno": 6289, "columnno": 10, "code": { - "id": "astnode100023715", + "id": "astnode100023702", "name": "tx", "type": "CallExpression", "value": "" @@ -49534,14 +49506,14 @@ "comment": "", "meta": { "range": [ - 250376, - 250951 + 252415, + 252990 ], "filename": "astronomy.js", - "lineno": 6262, + "lineno": 6294, "columnno": 0, "code": { - "id": "astnode100023736", + "id": "astnode100023723", "name": "PeakPlanetShadow", "type": "FunctionDeclaration", "paramnames": [ @@ -49569,14 +49541,14 @@ "comment": "", "meta": { "range": [ - 250538, - 250550 + 252577, + 252589 ], "filename": "astronomy.js", - "lineno": 6264, + "lineno": 6296, "columnno": 10, "code": { - "id": "astnode100023743", + "id": "astnode100023730", "name": "window", "type": "Literal", "value": 1 @@ -49594,14 +49566,14 @@ "comment": "", "meta": { "range": [ - 250643, - 250683 + 252682, + 252722 ], "filename": "astronomy.js", - "lineno": 6265, + "lineno": 6297, "columnno": 10, "code": { - "id": "astnode100023747", + "id": "astnode100023734", "name": "t1", "type": "CallExpression", "value": "" @@ -49619,14 +49591,14 @@ "comment": "", "meta": { "range": [ - 250695, - 250735 + 252734, + 252774 ], "filename": "astronomy.js", - "lineno": 6266, + "lineno": 6298, "columnno": 10, "code": { - "id": "astnode100023756", + "id": "astnode100023743", "name": "t2", "type": "CallExpression", "value": "" @@ -49644,14 +49616,14 @@ "comment": "", "meta": { "range": [ - 250747, - 250825 + 252786, + 252864 ], "filename": "astronomy.js", - "lineno": 6267, + "lineno": 6299, "columnno": 10, "code": { - "id": "astnode100023765", + "id": "astnode100023752", "name": "tx", "type": "CallExpression", "value": "" @@ -49669,14 +49641,14 @@ "comment": "", "meta": { "range": [ - 250952, - 251587 + 252991, + 253626 ], "filename": "astronomy.js", - "lineno": 6272, + "lineno": 6304, "columnno": 0, "code": { - "id": "astnode100023789", + "id": "astnode100023776", "name": "PeakLocalMoonShadow", "type": "FunctionDeclaration", "paramnames": [ @@ -49704,14 +49676,14 @@ "comment": "", "meta": { "range": [ - 251141, - 251153 + 253180, + 253192 ], "filename": "astronomy.js", - "lineno": 6275, + "lineno": 6307, "columnno": 10, "code": { - "id": "astnode100023795", + "id": "astnode100023782", "name": "window", "type": "Literal", "value": 0.2 @@ -49729,14 +49701,14 @@ "comment": "", "meta": { "range": [ - 251165, - 251205 + 253204, + 253244 ], "filename": "astronomy.js", - "lineno": 6276, + "lineno": 6308, "columnno": 10, "code": { - "id": "astnode100023799", + "id": "astnode100023786", "name": "t1", "type": "CallExpression", "value": "" @@ -49754,14 +49726,14 @@ "comment": "", "meta": { "range": [ - 251217, - 251257 + 253256, + 253296 ], "filename": "astronomy.js", - "lineno": 6277, + "lineno": 6309, "columnno": 10, "code": { - "id": "astnode100023808", + "id": "astnode100023795", "name": "t2", "type": "CallExpression", "value": "" @@ -49779,14 +49751,14 @@ "comment": "", "meta": { "range": [ - 251263, - 251344 + 253302, + 253383 ], "filename": "astronomy.js", - "lineno": 6278, + "lineno": 6310, "columnno": 4, "code": { - "id": "astnode100023816", + "id": "astnode100023803", "name": "shadowfunc", "type": "FunctionDeclaration", "paramnames": [ @@ -49806,14 +49778,14 @@ "comment": "", "meta": { "range": [ - 251355, - 251425 + 253394, + 253464 ], "filename": "astronomy.js", - "lineno": 6281, + "lineno": 6313, "columnno": 10, "code": { - "id": "astnode100023826", + "id": "astnode100023813", "name": "time", "type": "CallExpression", "value": "" @@ -49831,14 +49803,14 @@ "comment": "", "meta": { "range": [ - 251588, - 252292 + 253627, + 254331 ], "filename": "astronomy.js", - "lineno": 6286, + "lineno": 6318, "columnno": 0, "code": { - "id": "astnode100023851", + "id": "astnode100023838", "name": "ShadowSemiDurationMinutes", "type": "FunctionDeclaration", "paramnames": [ @@ -49867,14 +49839,14 @@ "comment": "", "meta": { "range": [ - 251785, - 251824 + 253824, + 253863 ], "filename": "astronomy.js", - "lineno": 6288, + "lineno": 6320, "columnno": 10, "code": { - "id": "astnode100023858", + "id": "astnode100023845", "name": "window", "type": "BinaryExpression", "value": "" @@ -49892,14 +49864,14 @@ "comment": "", "meta": { "range": [ - 251836, - 251873 + 253875, + 253912 ], "filename": "astronomy.js", - "lineno": 6289, + "lineno": 6321, "columnno": 10, "code": { - "id": "astnode100023866", + "id": "astnode100023853", "name": "before", "type": "CallExpression", "value": "" @@ -49917,14 +49889,14 @@ "comment": "", "meta": { "range": [ - 251885, - 251921 + 253924, + 253960 ], "filename": "astronomy.js", - "lineno": 6290, + "lineno": 6322, "columnno": 10, "code": { - "id": "astnode100023875", + "id": "astnode100023862", "name": "after", "type": "CallExpression", "value": "" @@ -49942,14 +49914,14 @@ "comment": "", "meta": { "range": [ - 251933, - 252014 + 253972, + 254053 ], "filename": "astronomy.js", - "lineno": 6291, + "lineno": 6323, "columnno": 10, "code": { - "id": "astnode100023884", + "id": "astnode100023871", "name": "t1", "type": "CallExpression", "value": "" @@ -49967,14 +49939,14 @@ "comment": "", "meta": { "range": [ - 252026, - 252106 + 254065, + 254145 ], "filename": "astronomy.js", - "lineno": 6292, + "lineno": 6324, "columnno": 10, "code": { - "id": "astnode100023901", + "id": "astnode100023888", "name": "t2", "type": "CallExpression", "value": "" @@ -49992,14 +49964,14 @@ "comment": "", "meta": { "range": [ - 252293, - 252413 + 254332, + 254452 ], "filename": "astronomy.js", - "lineno": 6297, + "lineno": 6329, "columnno": 0, "code": { - "id": "astnode100023939", + "id": "astnode100023926", "name": "MoonEclipticLatitudeDegrees", "type": "FunctionDeclaration", "paramnames": [ @@ -50021,14 +49993,14 @@ "comment": "", "meta": { "range": [ - 252348, - 252369 + 254387, + 254408 ], "filename": "astronomy.js", - "lineno": 6298, + "lineno": 6330, "columnno": 10, "code": { - "id": "astnode100023944", + "id": "astnode100023931", "name": "moon", "type": "CallExpression", "value": "" @@ -50046,14 +50018,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 `center` 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": [ - 252997, - 255360 + 255036, + 257399 ], "filename": "astronomy.js", - "lineno": 6316, + "lineno": 6348, "columnno": 0, "code": { - "id": "astnode100023955", + "id": "astnode100023942", "name": "SearchLunarEclipse", "type": "FunctionDeclaration", "paramnames": [ @@ -50110,14 +50082,14 @@ "comment": "", "meta": { "range": [ - 253043, - 253062 + 255082, + 255101 ], "filename": "astronomy.js", - "lineno": 6317, + "lineno": 6349, "columnno": 10, "code": { - "id": "astnode100023960", + "id": "astnode100023947", "name": "PruneLatitude", "type": "Literal", "value": 1.8 @@ -50135,14 +50107,14 @@ "comment": "", "meta": { "range": [ - 253142, - 253165 + 255181, + 255204 ], "filename": "astronomy.js", - "lineno": 6318, + "lineno": 6350, "columnno": 8, "code": { - "id": "astnode100023964", + "id": "astnode100023951", "name": "fmtime", "type": "CallExpression", "value": "" @@ -50160,14 +50132,14 @@ "comment": "", "meta": { "range": [ - 253180, - 253191 + 255219, + 255230 ], "filename": "astronomy.js", - "lineno": 6319, + "lineno": 6351, "columnno": 13, "code": { - "id": "astnode100023971", + "id": "astnode100023958", "name": "fmcount", "type": "Literal", "value": 0 @@ -50185,14 +50157,14 @@ "comment": "", "meta": { "range": [ - 253308, - 253351 + 255347, + 255390 ], "filename": "astronomy.js", - "lineno": 6321, + "lineno": 6353, "columnno": 14, "code": { - "id": "astnode100023981", + "id": "astnode100023968", "name": "fullmoon", "type": "CallExpression", "value": "" @@ -50210,14 +50182,14 @@ "comment": "", "meta": { "range": [ - 253646, - 253695 + 255685, + 255734 ], "filename": "astronomy.js", - "lineno": 6329, + "lineno": 6361, "columnno": 14, "code": { - "id": "astnode100023994", + "id": "astnode100023981", "name": "eclip_lat", "type": "CallExpression", "value": "" @@ -50235,14 +50207,14 @@ "comment": "", "meta": { "range": [ - 253942, - 253976 + 255981, + 256015 ], "filename": "astronomy.js", - "lineno": 6333, + "lineno": 6365, "columnno": 18, "code": { - "id": "astnode100024009", + "id": "astnode100023996", "name": "shadow", "type": "CallExpression", "value": "" @@ -50260,14 +50232,14 @@ "comment": "", "meta": { "range": [ - 254144, - 254162 + 256183, + 256201 ], "filename": "astronomy.js", - "lineno": 6336, + "lineno": 6368, "columnno": 20, "code": { - "id": "astnode100024026", + "id": "astnode100024013", "name": "kind", "type": "Literal", "value": "penumbral" @@ -50285,14 +50257,14 @@ "comment": "", "meta": { "range": [ - 254184, - 254198 + 256223, + 256237 ], "filename": "astronomy.js", - "lineno": 6337, + "lineno": 6369, "columnno": 20, "code": { - "id": "astnode100024030", + "id": "astnode100024017", "name": "sd_total", "type": "Literal", "value": 0 @@ -50310,14 +50282,14 @@ "comment": "", "meta": { "range": [ - 254220, - 254236 + 256259, + 256275 ], "filename": "astronomy.js", - "lineno": 6338, + "lineno": 6370, "columnno": 20, "code": { - "id": "astnode100024034", + "id": "astnode100024021", "name": "sd_partial", "type": "Literal", "value": 0 @@ -50335,14 +50307,14 @@ "comment": "", "meta": { "range": [ - 254258, - 254346 + 256297, + 256385 ], "filename": "astronomy.js", - "lineno": 6339, + "lineno": 6371, "columnno": 20, "code": { - "id": "astnode100024038", + "id": "astnode100024025", "name": "sd_penum", "type": "CallExpression", "value": "" @@ -50360,14 +50332,14 @@ "comment": "", "meta": { "range": [ - 254495, - 254511 + 256534, + 256550 ], "filename": "astronomy.js", - "lineno": 6342, + "lineno": 6374, "columnno": 20, "code": { - "id": "astnode100024063", + "id": "astnode100024050", "name": "kind", "type": "Literal", "funcscope": "SearchLunarEclipse", @@ -50386,14 +50358,14 @@ "comment": "", "meta": { "range": [ - 254533, - 254626 + 256572, + 256665 ], "filename": "astronomy.js", - "lineno": 6343, + "lineno": 6375, "columnno": 20, "code": { - "id": "astnode100024067", + "id": "astnode100024054", "name": "sd_partial", "type": "CallExpression", "funcscope": "SearchLunarEclipse", @@ -50412,14 +50384,14 @@ "comment": "", "meta": { "range": [ - 254776, - 254790 + 256815, + 256829 ], "filename": "astronomy.js", - "lineno": 6346, + "lineno": 6378, "columnno": 24, "code": { - "id": "astnode100024092", + "id": "astnode100024079", "name": "kind", "type": "Literal", "funcscope": "SearchLunarEclipse", @@ -50438,14 +50410,14 @@ "comment": "", "meta": { "range": [ - 254816, - 254909 + 256855, + 256948 ], "filename": "astronomy.js", - "lineno": 6347, + "lineno": 6379, "columnno": 24, "code": { - "id": "astnode100024096", + "id": "astnode100024083", "name": "sd_total", "type": "CallExpression", "funcscope": "SearchLunarEclipse", @@ -50464,14 +50436,14 @@ "comment": "", "meta": { "range": [ - 255166, - 255195 + 257205, + 257234 ], "filename": "astronomy.js", - "lineno": 6354, + "lineno": 6386, "columnno": 8, "code": { - "id": "astnode100024120", + "id": "astnode100024107", "name": "fmtime", "type": "CallExpression", "funcscope": "SearchLunarEclipse", @@ -50490,14 +50462,14 @@ "comment": "", "meta": { "range": [ - 255361, - 255408 + 257400, + 257447 ], "filename": "astronomy.js", - "lineno": 6359, + "lineno": 6391, "columnno": 0, "code": { - "id": "astnode100024130", + "id": "astnode100024117", "name": "exports.SearchLunarEclipse", "type": "Identifier", "value": "SearchLunarEclipse", @@ -50514,14 +50486,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": [ - 257866, - 258121 + 259905, + 260160 ], "filename": "astronomy.js", - "lineno": 6407, + "lineno": 6439, "columnno": 0, "code": { - "id": "astnode100024135", + "id": "astnode100024122", "name": "GlobalSolarEclipseInfo", "type": "ClassDeclaration", "paramnames": [ @@ -50600,14 +50572,14 @@ "comment": "", "meta": { "range": [ - 257901, - 258119 + 259940, + 260158 ], "filename": "astronomy.js", - "lineno": 6408, + "lineno": 6440, "columnno": 4, "code": { - "id": "astnode100024138", + "id": "astnode100024125", "name": "GlobalSolarEclipseInfo", "type": "MethodDefinition", "paramnames": [ @@ -50633,14 +50605,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": [ - 257866, - 258121 + 259905, + 260160 ], "filename": "astronomy.js", - "lineno": 6407, + "lineno": 6439, "columnno": 0, "code": { - "id": "astnode100024135", + "id": "astnode100024122", "name": "GlobalSolarEclipseInfo", "type": "ClassDeclaration", "paramnames": [ @@ -50718,14 +50690,14 @@ "comment": "", "meta": { "range": [ - 257966, - 257982 + 260005, + 260021 ], "filename": "astronomy.js", - "lineno": 6409, + "lineno": 6441, "columnno": 8, "code": { - "id": "astnode100024148", + "id": "astnode100024135", "name": "this.kind", "type": "Identifier", "value": "kind", @@ -50743,14 +50715,14 @@ "comment": "", "meta": { "range": [ - 257992, - 258008 + 260031, + 260047 ], "filename": "astronomy.js", - "lineno": 6410, + "lineno": 6442, "columnno": 8, "code": { - "id": "astnode100024154", + "id": "astnode100024141", "name": "this.peak", "type": "Identifier", "value": "peak", @@ -50768,14 +50740,14 @@ "comment": "", "meta": { "range": [ - 258018, - 258042 + 260057, + 260081 ], "filename": "astronomy.js", - "lineno": 6411, + "lineno": 6443, "columnno": 8, "code": { - "id": "astnode100024160", + "id": "astnode100024147", "name": "this.distance", "type": "Identifier", "value": "distance", @@ -50793,14 +50765,14 @@ "comment": "", "meta": { "range": [ - 258052, - 258076 + 260091, + 260115 ], "filename": "astronomy.js", - "lineno": 6412, + "lineno": 6444, "columnno": 8, "code": { - "id": "astnode100024166", + "id": "astnode100024153", "name": "this.latitude", "type": "Identifier", "value": "latitude", @@ -50818,14 +50790,14 @@ "comment": "", "meta": { "range": [ - 258086, - 258112 + 260125, + 260151 ], "filename": "astronomy.js", - "lineno": 6413, + "lineno": 6445, "columnno": 8, "code": { - "id": "astnode100024172", + "id": "astnode100024159", "name": "this.longitude", "type": "Identifier", "value": "longitude", @@ -50843,14 +50815,14 @@ "comment": "", "meta": { "range": [ - 258122, - 258177 + 260161, + 260216 ], "filename": "astronomy.js", - "lineno": 6416, + "lineno": 6448, "columnno": 0, "code": { - "id": "astnode100024178", + "id": "astnode100024165", "name": "exports.GlobalSolarEclipseInfo", "type": "Identifier", "value": "GlobalSolarEclipseInfo", @@ -50867,14 +50839,14 @@ "comment": "", "meta": { "range": [ - 258179, - 258497 + 260218, + 260536 ], "filename": "astronomy.js", - "lineno": 6417, + "lineno": 6449, "columnno": 0, "code": { - "id": "astnode100024183", + "id": "astnode100024170", "name": "EclipseKindFromUmbra", "type": "FunctionDeclaration", "paramnames": [ @@ -50893,14 +50865,14 @@ "comment": "", "meta": { "range": [ - 258498, - 262602 + 260537, + 264641 ], "filename": "astronomy.js", - "lineno": 6423, + "lineno": 6455, "columnno": 0, "code": { - "id": "astnode100024194", + "id": "astnode100024181", "name": "GeoidIntersect", "type": "FunctionDeclaration", "paramnames": [ @@ -50952,14 +50924,14 @@ "comment": "", "meta": { "range": [ - 258540, - 258556 + 260579, + 260595 ], "filename": "astronomy.js", - "lineno": 6424, + "lineno": 6456, "columnno": 8, "code": { - "id": "astnode100024199", + "id": "astnode100024186", "name": "kind", "type": "Literal", "value": "partial" @@ -50977,14 +50949,14 @@ "comment": "", "meta": { "range": [ - 258566, - 258584 + 260605, + 260623 ], "filename": "astronomy.js", - "lineno": 6425, + "lineno": 6457, "columnno": 8, "code": { - "id": "astnode100024203", + "id": "astnode100024190", "name": "peak", "type": "MemberExpression", "value": "shadow.time" @@ -51002,14 +50974,14 @@ "comment": "", "meta": { "range": [ - 258594, - 258613 + 260633, + 260652 ], "filename": "astronomy.js", - "lineno": 6426, + "lineno": 6458, "columnno": 8, "code": { - "id": "astnode100024209", + "id": "astnode100024196", "name": "distance", "type": "MemberExpression", "value": "shadow.r" @@ -51027,14 +50999,14 @@ "comment": "", "meta": { "range": [ - 258623, - 258631 + 260662, + 260670 ], "filename": "astronomy.js", - "lineno": 6427, + "lineno": 6459, "columnno": 8, "code": { - "id": "astnode100024215", + "id": "astnode100024202", "name": "latitude" } }, @@ -51050,14 +51022,14 @@ "comment": "", "meta": { "range": [ - 258680, - 258689 + 260719, + 260728 ], "filename": "astronomy.js", - "lineno": 6428, + "lineno": 6460, "columnno": 8, "code": { - "id": "astnode100024218", + "id": "astnode100024205", "name": "longitude" } }, @@ -51073,14 +51045,14 @@ "comment": "", "meta": { "range": [ - 259019, - 259054 + 261058, + 261093 ], "filename": "astronomy.js", - "lineno": 6433, + "lineno": 6465, "columnno": 10, "code": { - "id": "astnode100024221", + "id": "astnode100024208", "name": "rot", "type": "CallExpression", "value": "" @@ -51098,14 +51070,14 @@ "comment": "", "meta": { "range": [ - 259066, - 259099 + 261105, + 261138 ], "filename": "astronomy.js", - "lineno": 6434, + "lineno": 6466, "columnno": 10, "code": { - "id": "astnode100024229", + "id": "astnode100024216", "name": "v", "type": "CallExpression", "value": "" @@ -51123,14 +51095,14 @@ "comment": "", "meta": { "range": [ - 259164, - 259200 + 261203, + 261239 ], "filename": "astronomy.js", - "lineno": 6435, + "lineno": 6467, "columnno": 10, "code": { - "id": "astnode100024238", + "id": "astnode100024225", "name": "e", "type": "CallExpression", "value": "" @@ -51148,14 +51120,14 @@ "comment": "", "meta": { "range": [ - 259545, - 259561 + 261584, + 261600 ], "filename": "astronomy.js", - "lineno": 6440, + "lineno": 6472, "columnno": 4, "code": { - "id": "astnode100024247", + "id": "astnode100024234", "name": "v.x", "type": "Identifier", "funcscope": "GeoidIntersect", @@ -51174,14 +51146,14 @@ "comment": "", "meta": { "range": [ - 259567, - 259583 + 261606, + 261622 ], "filename": "astronomy.js", - "lineno": 6441, + "lineno": 6473, "columnno": 4, "code": { - "id": "astnode100024253", + "id": "astnode100024240", "name": "v.y", "type": "Identifier", "funcscope": "GeoidIntersect", @@ -51200,14 +51172,14 @@ "comment": "", "meta": { "range": [ - 259589, - 259624 + 261628, + 261663 ], "filename": "astronomy.js", - "lineno": 6442, + "lineno": 6474, "columnno": 4, "code": { - "id": "astnode100024259", + "id": "astnode100024246", "name": "v.z", "type": "BinaryExpression", "funcscope": "GeoidIntersect", @@ -51226,14 +51198,14 @@ "comment": "", "meta": { "range": [ - 259630, - 259646 + 261669, + 261685 ], "filename": "astronomy.js", - "lineno": 6443, + "lineno": 6475, "columnno": 4, "code": { - "id": "astnode100024267", + "id": "astnode100024254", "name": "e.x", "type": "Identifier", "funcscope": "GeoidIntersect", @@ -51252,14 +51224,14 @@ "comment": "", "meta": { "range": [ - 259652, - 259668 + 261691, + 261707 ], "filename": "astronomy.js", - "lineno": 6444, + "lineno": 6476, "columnno": 4, "code": { - "id": "astnode100024273", + "id": "astnode100024260", "name": "e.y", "type": "Identifier", "funcscope": "GeoidIntersect", @@ -51278,14 +51250,14 @@ "comment": "", "meta": { "range": [ - 259674, - 259709 + 261713, + 261748 ], "filename": "astronomy.js", - "lineno": 6445, + "lineno": 6477, "columnno": 4, "code": { - "id": "astnode100024279", + "id": "astnode100024266", "name": "e.z", "type": "BinaryExpression", "funcscope": "GeoidIntersect", @@ -51304,14 +51276,14 @@ "comment": "", "meta": { "range": [ - 259869, - 259899 + 261908, + 261938 ], "filename": "astronomy.js", - "lineno": 6448, + "lineno": 6480, "columnno": 10, "code": { - "id": "astnode100024287", + "id": "astnode100024274", "name": "R", "type": "Identifier", "value": "EARTH_EQUATORIAL_RADIUS_KM" @@ -51329,14 +51301,14 @@ "comment": "", "meta": { "range": [ - 259911, - 259948 + 261950, + 261987 ], "filename": "astronomy.js", - "lineno": 6449, + "lineno": 6481, "columnno": 10, "code": { - "id": "astnode100024291", + "id": "astnode100024278", "name": "A", "type": "BinaryExpression", "value": "" @@ -51354,14 +51326,14 @@ "comment": "", "meta": { "range": [ - 259960, - 260006 + 261999, + 262045 ], "filename": "astronomy.js", - "lineno": 6450, + "lineno": 6482, "columnno": 10, "code": { - "id": "astnode100024317", + "id": "astnode100024304", "name": "B", "type": "BinaryExpression", "value": "" @@ -51379,14 +51351,14 @@ "comment": "", "meta": { "range": [ - 260018, - 260065 + 262057, + 262104 ], "filename": "astronomy.js", - "lineno": 6451, + "lineno": 6483, "columnno": 10, "code": { - "id": "astnode100024346", + "id": "astnode100024333", "name": "C", "type": "BinaryExpression", "value": "" @@ -51404,14 +51376,14 @@ "comment": "", "meta": { "range": [ - 260077, - 260102 + 262116, + 262141 ], "filename": "astronomy.js", - "lineno": 6452, + "lineno": 6484, "columnno": 10, "code": { - "id": "astnode100024376", + "id": "astnode100024363", "name": "radic", "type": "BinaryExpression", "value": "" @@ -51429,14 +51401,14 @@ "comment": "", "meta": { "range": [ - 260259, - 260296 + 262298, + 262335 ], "filename": "astronomy.js", - "lineno": 6456, + "lineno": 6488, "columnno": 14, "code": { - "id": "astnode100024393", + "id": "astnode100024380", "name": "u", "type": "BinaryExpression", "value": "" @@ -51454,14 +51426,14 @@ "comment": "", "meta": { "range": [ - 260390, - 260408 + 262429, + 262447 ], "filename": "astronomy.js", - "lineno": 6458, + "lineno": 6490, "columnno": 14, "code": { - "id": "astnode100024408", + "id": "astnode100024395", "name": "px", "type": "BinaryExpression", "value": "" @@ -51479,14 +51451,14 @@ "comment": "", "meta": { "range": [ - 260424, - 260442 + 262463, + 262481 ], "filename": "astronomy.js", - "lineno": 6459, + "lineno": 6491, "columnno": 14, "code": { - "id": "astnode100024420", + "id": "astnode100024407", "name": "py", "type": "BinaryExpression", "value": "" @@ -51504,14 +51476,14 @@ "comment": "", "meta": { "range": [ - 260458, - 260497 + 262497, + 262536 ], "filename": "astronomy.js", - "lineno": 6460, + "lineno": 6492, "columnno": 14, "code": { - "id": "astnode100024432", + "id": "astnode100024419", "name": "pz", "type": "BinaryExpression", "value": "" @@ -51529,14 +51501,14 @@ "comment": "", "meta": { "range": [ - 260588, - 260663 + 262627, + 262702 ], "filename": "astronomy.js", - "lineno": 6462, + "lineno": 6494, "columnno": 14, "code": { - "id": "astnode100024446", + "id": "astnode100024433", "name": "proj", "type": "BinaryExpression", "value": "" @@ -51554,14 +51526,14 @@ "comment": "", "meta": { "range": [ - 260704, - 260741 + 262743, + 262780 ], "filename": "astronomy.js", - "lineno": 6464, + "lineno": 6496, "columnno": 12, "code": { - "id": "astnode100024469", + "id": "astnode100024456", "name": "latitude", "type": "ConditionalExpression", "funcscope": "GeoidIntersect", @@ -51580,14 +51552,14 @@ "comment": "", "meta": { "range": [ - 260780, - 260821 + 262819, + 262860 ], "filename": "astronomy.js", - "lineno": 6467, + "lineno": 6499, "columnno": 12, "code": { - "id": "astnode100024481", + "id": "astnode100024468", "name": "latitude", "type": "BinaryExpression", "funcscope": "GeoidIntersect", @@ -51606,14 +51578,14 @@ "comment": "", "meta": { "range": [ - 260913, - 260939 + 262952, + 262978 ], "filename": "astronomy.js", - "lineno": 6470, + "lineno": 6502, "columnno": 14, "code": { - "id": "astnode100024493", + "id": "astnode100024480", "name": "gast", "type": "CallExpression", "value": "" @@ -51631,14 +51603,14 @@ "comment": "", "meta": { "range": [ - 260949, - 261013 + 262988, + 263052 ], "filename": "astronomy.js", - "lineno": 6471, + "lineno": 6503, "columnno": 8, "code": { - "id": "astnode100024499", + "id": "astnode100024486", "name": "longitude", "type": "BinaryExpression", "funcscope": "GeoidIntersect", @@ -51657,14 +51629,14 @@ "comment": "", "meta": { "range": [ - 261062, - 261080 + 263101, + 263119 ], "filename": "astronomy.js", - "lineno": 6473, + "lineno": 6505, "columnno": 12, "code": { - "id": "astnode100024522", + "id": "astnode100024509", "name": "longitude", "type": "Literal", "funcscope": "GeoidIntersect", @@ -51683,14 +51655,14 @@ "comment": "", "meta": { "range": [ - 261143, - 261161 + 263182, + 263200 ], "filename": "astronomy.js", - "lineno": 6476, + "lineno": 6508, "columnno": 12, "code": { - "id": "astnode100024532", + "id": "astnode100024519", "name": "longitude", "type": "Literal", "funcscope": "GeoidIntersect", @@ -51709,14 +51681,14 @@ "comment": "", "meta": { "range": [ - 261429, - 261455 + 263468, + 263494 ], "filename": "astronomy.js", - "lineno": 6481, + "lineno": 6513, "columnno": 14, "code": { - "id": "astnode100024536", + "id": "astnode100024523", "name": "inv", "type": "CallExpression", "value": "" @@ -51734,14 +51706,14 @@ "comment": "", "meta": { "range": [ - 261620, - 261695 + 263659, + 263734 ], "filename": "astronomy.js", - "lineno": 6484, + "lineno": 6516, "columnno": 12, "code": { - "id": "astnode100024542", + "id": "astnode100024529", "name": "o", "type": "NewExpression", "value": "" @@ -51759,14 +51731,14 @@ "comment": "", "meta": { "range": [ - 261777, - 261801 + 263816, + 263840 ], "filename": "astronomy.js", - "lineno": 6486, + "lineno": 6518, "columnno": 8, "code": { - "id": "astnode100024559", + "id": "astnode100024546", "name": "o", "type": "CallExpression", "funcscope": "GeoidIntersect", @@ -51785,14 +51757,14 @@ "comment": "", "meta": { "range": [ - 261871, - 261893 + 263910, + 263932 ], "filename": "astronomy.js", - "lineno": 6488, + "lineno": 6520, "columnno": 8, "code": { - "id": "astnode100024566", + "id": "astnode100024553", "name": "o.x", "type": "MemberExpression", "funcscope": "GeoidIntersect", @@ -51811,14 +51783,14 @@ "comment": "", "meta": { "range": [ - 261903, - 261925 + 263942, + 263964 ], "filename": "astronomy.js", - "lineno": 6489, + "lineno": 6521, "columnno": 8, "code": { - "id": "astnode100024576", + "id": "astnode100024563", "name": "o.y", "type": "MemberExpression", "funcscope": "GeoidIntersect", @@ -51837,14 +51809,14 @@ "comment": "", "meta": { "range": [ - 261935, - 261957 + 263974, + 263996 ], "filename": "astronomy.js", - "lineno": 6490, + "lineno": 6522, "columnno": 8, "code": { - "id": "astnode100024586", + "id": "astnode100024573", "name": "o.z", "type": "MemberExpression", "funcscope": "GeoidIntersect", @@ -51863,14 +51835,14 @@ "comment": "", "meta": { "range": [ - 262066, - 262136 + 264105, + 264175 ], "filename": "astronomy.js", - "lineno": 6492, + "lineno": 6524, "columnno": 14, "code": { - "id": "astnode100024596", + "id": "astnode100024583", "name": "surface", "type": "CallExpression", "value": "" @@ -51888,14 +51860,14 @@ "comment": "", "meta": { "range": [ - 262473, - 262511 + 264512, + 264550 ], "filename": "astronomy.js", - "lineno": 6498, + "lineno": 6530, "columnno": 8, "code": { - "id": "astnode100024629", + "id": "astnode100024616", "name": "kind", "type": "CallExpression", "funcscope": "GeoidIntersect", @@ -51914,14 +51886,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 `center` 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": [ - 263184, - 263323 + 265223, + 265362 ], "filename": "astronomy.js", - "lineno": 6516, + "lineno": 6548, "columnno": 0, "code": { - "id": "astnode100024644", + "id": "astnode100024631", "name": "NextLunarEclipse", "type": "FunctionDeclaration", "paramnames": [ @@ -51969,14 +51941,14 @@ "comment": "", "meta": { "range": [ - 263239, - 263278 + 265278, + 265317 ], "filename": "astronomy.js", - "lineno": 6517, + "lineno": 6549, "columnno": 10, "code": { - "id": "astnode100024649", + "id": "astnode100024636", "name": "startTime", "type": "CallExpression", "value": "" @@ -51994,14 +51966,14 @@ "comment": "", "meta": { "range": [ - 263324, - 263367 + 265363, + 265406 ], "filename": "astronomy.js", - "lineno": 6520, + "lineno": 6552, "columnno": 0, "code": { - "id": "astnode100024661", + "id": "astnode100024648", "name": "exports.NextLunarEclipse", "type": "Identifier", "value": "NextLunarEclipse", @@ -52018,14 +51990,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": [ - 264004, - 265621 + 266043, + 267660 ], "filename": "astronomy.js", - "lineno": 6536, + "lineno": 6568, "columnno": 0, "code": { - "id": "astnode100024666", + "id": "astnode100024653", "name": "SearchGlobalSolarEclipse", "type": "FunctionDeclaration", "paramnames": [ @@ -52078,14 +52050,14 @@ "comment": "", "meta": { "range": [ - 264061, - 264080 + 266100, + 266119 ], "filename": "astronomy.js", - "lineno": 6537, + "lineno": 6569, "columnno": 10, "code": { - "id": "astnode100024671", + "id": "astnode100024658", "name": "PruneLatitude", "type": "Literal", "value": 1.8 @@ -52103,14 +52075,14 @@ "comment": "", "meta": { "range": [ - 264256, - 264274 + 266295, + 266313 ], "filename": "astronomy.js", - "lineno": 6539, + "lineno": 6571, "columnno": 8, "code": { - "id": "astnode100024675", + "id": "astnode100024662", "name": "nmtime", "type": "Identifier", "value": "startTime" @@ -52128,14 +52100,14 @@ "comment": "", "meta": { "range": [ - 264284, - 264291 + 266323, + 266330 ], "filename": "astronomy.js", - "lineno": 6540, + "lineno": 6572, "columnno": 8, "code": { - "id": "astnode100024679", + "id": "astnode100024666", "name": "nmcount" } }, @@ -52151,14 +52123,14 @@ "comment": "", "meta": { "range": [ - 264302, - 264313 + 266341, + 266352 ], "filename": "astronomy.js", - "lineno": 6541, + "lineno": 6573, "columnno": 9, "code": { - "id": "astnode100024682", + "id": "astnode100024669", "name": "nmcount", "type": "Literal", "funcscope": "SearchGlobalSolarEclipse", @@ -52177,14 +52149,14 @@ "comment": "", "meta": { "range": [ - 264426, - 264470 + 266465, + 266509 ], "filename": "astronomy.js", - "lineno": 6543, + "lineno": 6575, "columnno": 14, "code": { - "id": "astnode100024692", + "id": "astnode100024679", "name": "newmoon", "type": "CallExpression", "value": "" @@ -52202,14 +52174,14 @@ "comment": "", "meta": { "range": [ - 264653, - 264701 + 266692, + 266740 ], "filename": "astronomy.js", - "lineno": 6547, + "lineno": 6579, "columnno": 14, "code": { - "id": "astnode100024705", + "id": "astnode100024692", "name": "eclip_lat", "type": "CallExpression", "value": "" @@ -52227,14 +52199,14 @@ "comment": "", "meta": { "range": [ - 264941, - 264973 + 266980, + 267012 ], "filename": "astronomy.js", - "lineno": 6551, + "lineno": 6583, "columnno": 18, "code": { - "id": "astnode100024720", + "id": "astnode100024707", "name": "shadow", "type": "CallExpression", "value": "" @@ -52252,14 +52224,14 @@ "comment": "", "meta": { "range": [ - 265388, - 265418 + 267427, + 267457 ], "filename": "astronomy.js", - "lineno": 6559, + "lineno": 6591, "columnno": 8, "code": { - "id": "astnode100024741", + "id": "astnode100024728", "name": "nmtime", "type": "CallExpression", "funcscope": "SearchGlobalSolarEclipse", @@ -52278,14 +52250,14 @@ "comment": "", "meta": { "range": [ - 265622, - 265681 + 267661, + 267720 ], "filename": "astronomy.js", - "lineno": 6565, + "lineno": 6597, "columnno": 0, "code": { - "id": "astnode100024751", + "id": "astnode100024738", "name": "exports.SearchGlobalSolarEclipse", "type": "Identifier", "value": "SearchGlobalSolarEclipse", @@ -52302,14 +52274,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": [ - 266297, - 266450 + 268336, + 268489 ], "filename": "astronomy.js", - "lineno": 6580, + "lineno": 6612, "columnno": 0, "code": { - "id": "astnode100024756", + "id": "astnode100024743", "name": "NextGlobalSolarEclipse", "type": "FunctionDeclaration", "paramnames": [ @@ -52357,14 +52329,14 @@ "comment": "", "meta": { "range": [ - 266358, - 266399 + 268397, + 268438 ], "filename": "astronomy.js", - "lineno": 6581, + "lineno": 6613, "columnno": 10, "code": { - "id": "astnode100024761", + "id": "astnode100024748", "name": "startTime", "type": "CallExpression", "value": "" @@ -52382,14 +52354,14 @@ "comment": "", "meta": { "range": [ - 266451, - 266506 + 268490, + 268545 ], "filename": "astronomy.js", - "lineno": 6584, + "lineno": 6616, "columnno": 0, "code": { - "id": "astnode100024773", + "id": "astnode100024760", "name": "exports.NextGlobalSolarEclipse", "type": "Identifier", "value": "NextGlobalSolarEclipse", @@ -52406,14 +52378,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": [ - 267505, - 267627 + 269544, + 269666 ], "filename": "astronomy.js", - "lineno": 6606, + "lineno": 6638, "columnno": 0, "code": { - "id": "astnode100024778", + "id": "astnode100024765", "name": "EclipseEvent", "type": "ClassDeclaration", "paramnames": [ @@ -52460,14 +52432,14 @@ "comment": "", "meta": { "range": [ - 267530, - 267625 + 269569, + 269664 ], "filename": "astronomy.js", - "lineno": 6607, + "lineno": 6639, "columnno": 4, "code": { - "id": "astnode100024781", + "id": "astnode100024768", "name": "EclipseEvent", "type": "MethodDefinition", "paramnames": [ @@ -52490,14 +52462,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": [ - 267505, - 267627 + 269544, + 269666 ], "filename": "astronomy.js", - "lineno": 6606, + "lineno": 6638, "columnno": 0, "code": { - "id": "astnode100024778", + "id": "astnode100024765", "name": "EclipseEvent", "type": "ClassDeclaration", "paramnames": [ @@ -52543,14 +52515,14 @@ "comment": "", "meta": { "range": [ - 267568, - 267584 + 269607, + 269623 ], "filename": "astronomy.js", - "lineno": 6608, + "lineno": 6640, "columnno": 8, "code": { - "id": "astnode100024788", + "id": "astnode100024775", "name": "this.time", "type": "Identifier", "value": "time", @@ -52568,14 +52540,14 @@ "comment": "", "meta": { "range": [ - 267594, - 267618 + 269633, + 269657 ], "filename": "astronomy.js", - "lineno": 6609, + "lineno": 6641, "columnno": 8, "code": { - "id": "astnode100024794", + "id": "astnode100024781", "name": "this.altitude", "type": "Identifier", "value": "altitude", @@ -52593,14 +52565,14 @@ "comment": "", "meta": { "range": [ - 267628, - 267663 + 269667, + 269702 ], "filename": "astronomy.js", - "lineno": 6612, + "lineno": 6644, "columnno": 0, "code": { - "id": "astnode100024800", + "id": "astnode100024787", "name": "exports.EclipseEvent", "type": "Identifier", "value": "EclipseEvent", @@ -52617,14 +52589,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": [ - 270049, - 270380 + 272088, + 272419 ], "filename": "astronomy.js", - "lineno": 6656, + "lineno": 6688, "columnno": 0, "code": { - "id": "astnode100024805", + "id": "astnode100024792", "name": "LocalSolarEclipseInfo", "type": "ClassDeclaration", "paramnames": [ @@ -52713,14 +52685,14 @@ "comment": "", "meta": { "range": [ - 270083, - 270378 + 272122, + 272417 ], "filename": "astronomy.js", - "lineno": 6657, + "lineno": 6689, "columnno": 4, "code": { - "id": "astnode100024808", + "id": "astnode100024795", "name": "LocalSolarEclipseInfo", "type": "MethodDefinition", "paramnames": [ @@ -52747,14 +52719,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": [ - 270049, - 270380 + 272088, + 272419 ], "filename": "astronomy.js", - "lineno": 6656, + "lineno": 6688, "columnno": 0, "code": { - "id": "astnode100024805", + "id": "astnode100024792", "name": "LocalSolarEclipseInfo", "type": "ClassDeclaration", "paramnames": [ @@ -52842,14 +52814,14 @@ "comment": "", "meta": { "range": [ - 270169, - 270185 + 272208, + 272224 ], "filename": "astronomy.js", - "lineno": 6658, + "lineno": 6690, "columnno": 8, "code": { - "id": "astnode100024819", + "id": "astnode100024806", "name": "this.kind", "type": "Identifier", "value": "kind", @@ -52867,14 +52839,14 @@ "comment": "", "meta": { "range": [ - 270195, - 270229 + 272234, + 272268 ], "filename": "astronomy.js", - "lineno": 6659, + "lineno": 6691, "columnno": 8, "code": { - "id": "astnode100024825", + "id": "astnode100024812", "name": "this.partial_begin", "type": "Identifier", "value": "partial_begin", @@ -52892,14 +52864,14 @@ "comment": "", "meta": { "range": [ - 270239, - 270269 + 272278, + 272308 ], "filename": "astronomy.js", - "lineno": 6660, + "lineno": 6692, "columnno": 8, "code": { - "id": "astnode100024831", + "id": "astnode100024818", "name": "this.total_begin", "type": "Identifier", "value": "total_begin", @@ -52917,14 +52889,14 @@ "comment": "", "meta": { "range": [ - 270279, - 270295 + 272318, + 272334 ], "filename": "astronomy.js", - "lineno": 6661, + "lineno": 6693, "columnno": 8, "code": { - "id": "astnode100024837", + "id": "astnode100024824", "name": "this.peak", "type": "Identifier", "value": "peak", @@ -52942,14 +52914,14 @@ "comment": "", "meta": { "range": [ - 270305, - 270331 + 272344, + 272370 ], "filename": "astronomy.js", - "lineno": 6662, + "lineno": 6694, "columnno": 8, "code": { - "id": "astnode100024843", + "id": "astnode100024830", "name": "this.total_end", "type": "Identifier", "value": "total_end", @@ -52967,14 +52939,14 @@ "comment": "", "meta": { "range": [ - 270341, - 270371 + 272380, + 272410 ], "filename": "astronomy.js", - "lineno": 6663, + "lineno": 6695, "columnno": 8, "code": { - "id": "astnode100024849", + "id": "astnode100024836", "name": "this.partial_end", "type": "Identifier", "value": "partial_end", @@ -52992,14 +52964,14 @@ "comment": "", "meta": { "range": [ - 270381, - 270434 + 272420, + 272473 ], "filename": "astronomy.js", - "lineno": 6666, + "lineno": 6698, "columnno": 0, "code": { - "id": "astnode100024855", + "id": "astnode100024842", "name": "exports.LocalSolarEclipseInfo", "type": "Identifier", "value": "LocalSolarEclipseInfo", @@ -53016,14 +52988,14 @@ "comment": "", "meta": { "range": [ - 270436, - 270511 + 272475, + 272550 ], "filename": "astronomy.js", - "lineno": 6667, + "lineno": 6699, "columnno": 0, "code": { - "id": "astnode100024860", + "id": "astnode100024847", "name": "local_partial_distance", "type": "FunctionDeclaration", "paramnames": [ @@ -53042,14 +53014,14 @@ "comment": "", "meta": { "range": [ - 270512, - 270713 + 272551, + 272752 ], "filename": "astronomy.js", - "lineno": 6670, + "lineno": 6702, "columnno": 0, "code": { - "id": "astnode100024872", + "id": "astnode100024859", "name": "local_total_distance", "type": "FunctionDeclaration", "paramnames": [ @@ -53068,14 +53040,14 @@ "comment": "", "meta": { "range": [ - 270714, - 271838 + 272753, + 273877 ], "filename": "astronomy.js", - "lineno": 6675, + "lineno": 6707, "columnno": 0, "code": { - "id": "astnode100024888", + "id": "astnode100024875", "name": "LocalEclipse", "type": "FunctionDeclaration", "paramnames": [ @@ -53107,14 +53079,14 @@ "comment": "", "meta": { "range": [ - 270766, - 270786 + 272805, + 272825 ], "filename": "astronomy.js", - "lineno": 6676, + "lineno": 6708, "columnno": 10, "code": { - "id": "astnode100024894", + "id": "astnode100024881", "name": "PARTIAL_WINDOW", "type": "Literal", "value": 0.2 @@ -53132,14 +53104,14 @@ "comment": "", "meta": { "range": [ - 270798, - 270817 + 272837, + 272856 ], "filename": "astronomy.js", - "lineno": 6677, + "lineno": 6709, "columnno": 10, "code": { - "id": "astnode100024898", + "id": "astnode100024885", "name": "TOTAL_WINDOW", "type": "Literal", "value": 0.01 @@ -53157,14 +53129,14 @@ "comment": "", "meta": { "range": [ - 270829, - 270868 + 272868, + 272907 ], "filename": "astronomy.js", - "lineno": 6678, + "lineno": 6710, "columnno": 10, "code": { - "id": "astnode100024902", + "id": "astnode100024889", "name": "peak", "type": "CallExpression", "value": "" @@ -53182,14 +53154,14 @@ "comment": "", "meta": { "range": [ - 270878, - 270919 + 272917, + 272958 ], "filename": "astronomy.js", - "lineno": 6679, + "lineno": 6711, "columnno": 8, "code": { - "id": "astnode100024911", + "id": "astnode100024898", "name": "t1", "type": "CallExpression", "value": "" @@ -53207,14 +53179,14 @@ "comment": "", "meta": { "range": [ - 270929, - 270970 + 272968, + 273009 ], "filename": "astronomy.js", - "lineno": 6680, + "lineno": 6712, "columnno": 8, "code": { - "id": "astnode100024922", + "id": "astnode100024909", "name": "t2", "type": "CallExpression", "value": "" @@ -53232,14 +53204,14 @@ "comment": "", "meta": { "range": [ - 270982, - 271077 + 273021, + 273116 ], "filename": "astronomy.js", - "lineno": 6681, + "lineno": 6713, "columnno": 10, "code": { - "id": "astnode100024933", + "id": "astnode100024920", "name": "partial_begin", "type": "CallExpression", "value": "" @@ -53257,14 +53229,14 @@ "comment": "", "meta": { "range": [ - 271089, - 271182 + 273128, + 273221 ], "filename": "astronomy.js", - "lineno": 6682, + "lineno": 6714, "columnno": 10, "code": { - "id": "astnode100024946", + "id": "astnode100024933", "name": "partial_end", "type": "CallExpression", "value": "" @@ -53282,14 +53254,14 @@ "comment": "", "meta": { "range": [ - 271192, - 271203 + 273231, + 273242 ], "filename": "astronomy.js", - "lineno": 6683, + "lineno": 6715, "columnno": 8, "code": { - "id": "astnode100024959", + "id": "astnode100024946", "name": "total_begin" } }, @@ -53305,14 +53277,14 @@ "comment": "", "meta": { "range": [ - 271213, - 271222 + 273252, + 273261 ], "filename": "astronomy.js", - "lineno": 6684, + "lineno": 6716, "columnno": 8, "code": { - "id": "astnode100024962", + "id": "astnode100024949", "name": "total_end" } }, @@ -53328,14 +53300,14 @@ "comment": "", "meta": { "range": [ - 271232, - 271236 + 273271, + 273275 ], "filename": "astronomy.js", - "lineno": 6685, + "lineno": 6717, "columnno": 8, "code": { - "id": "astnode100024965", + "id": "astnode100024952", "name": "kind" } }, @@ -53351,14 +53323,14 @@ "comment": "", "meta": { "range": [ - 271349, - 271388 + 273388, + 273427 ], "filename": "astronomy.js", - "lineno": 6687, + "lineno": 6719, "columnno": 8, "code": { - "id": "astnode100024981", + "id": "astnode100024968", "name": "t1", "type": "CallExpression", "funcscope": "LocalEclipse", @@ -53377,14 +53349,14 @@ "comment": "", "meta": { "range": [ - 271398, - 271437 + 273437, + 273476 ], "filename": "astronomy.js", - "lineno": 6688, + "lineno": 6720, "columnno": 8, "code": { - "id": "astnode100024992", + "id": "astnode100024979", "name": "t2", "type": "CallExpression", "funcscope": "LocalEclipse", @@ -53403,14 +53375,14 @@ "comment": "", "meta": { "range": [ - 271447, - 271538 + 273486, + 273577 ], "filename": "astronomy.js", - "lineno": 6689, + "lineno": 6721, "columnno": 8, "code": { - "id": "astnode100025003", + "id": "astnode100024990", "name": "total_begin", "type": "CallExpression", "funcscope": "LocalEclipse", @@ -53429,14 +53401,14 @@ "comment": "", "meta": { "range": [ - 271548, - 271637 + 273587, + 273676 ], "filename": "astronomy.js", - "lineno": 6690, + "lineno": 6722, "columnno": 8, "code": { - "id": "astnode100025016", + "id": "astnode100025003", "name": "total_end", "type": "CallExpression", "funcscope": "LocalEclipse", @@ -53455,14 +53427,14 @@ "comment": "", "meta": { "range": [ - 271647, - 271684 + 273686, + 273723 ], "filename": "astronomy.js", - "lineno": 6691, + "lineno": 6723, "columnno": 8, "code": { - "id": "astnode100025029", + "id": "astnode100025016", "name": "kind", "type": "CallExpression", "funcscope": "LocalEclipse", @@ -53481,14 +53453,14 @@ "comment": "", "meta": { "range": [ - 271711, - 271727 + 273750, + 273766 ], "filename": "astronomy.js", - "lineno": 6694, + "lineno": 6726, "columnno": 8, "code": { - "id": "astnode100025038", + "id": "astnode100025025", "name": "kind", "type": "Literal", "funcscope": "LocalEclipse", @@ -53507,14 +53479,14 @@ "comment": "", "meta": { "range": [ - 271839, - 272201 + 273878, + 274240 ], "filename": "astronomy.js", - "lineno": 6698, + "lineno": 6730, "columnno": 0, "code": { - "id": "astnode100025050", + "id": "astnode100025037", "name": "LocalEclipseTransition", "type": "FunctionDeclaration", "paramnames": [ @@ -53541,14 +53513,14 @@ "comment": "", "meta": { "range": [ - 271912, - 272040 + 273951, + 274079 ], "filename": "astronomy.js", - "lineno": 6699, + "lineno": 6731, "columnno": 4, "code": { - "id": "astnode100025058", + "id": "astnode100025045", "name": "evaluate", "type": "FunctionDeclaration", "paramnames": [ @@ -53571,14 +53543,14 @@ "comment": "", "meta": { "range": [ - 271952, - 271992 + 273991, + 274031 ], "filename": "astronomy.js", - "lineno": 6700, + "lineno": 6732, "columnno": 14, "code": { - "id": "astnode100025063", + "id": "astnode100025050", "name": "shadow", "type": "CallExpression", "value": "" @@ -53596,14 +53568,14 @@ "comment": "", "meta": { "range": [ - 272051, - 272084 + 274090, + 274123 ], "filename": "astronomy.js", - "lineno": 6703, + "lineno": 6735, "columnno": 10, "code": { - "id": "astnode100025076", + "id": "astnode100025063", "name": "search", "type": "CallExpression", "value": "" @@ -53621,14 +53593,14 @@ "comment": "", "meta": { "range": [ - 272202, - 272335 + 274241, + 274374 ], "filename": "astronomy.js", - "lineno": 6708, + "lineno": 6740, "columnno": 0, "code": { - "id": "astnode100025093", + "id": "astnode100025080", "name": "CalcEvent", "type": "FunctionDeclaration", "paramnames": [ @@ -53651,14 +53623,14 @@ "comment": "", "meta": { "range": [ - 272249, - 272287 + 274288, + 274326 ], "filename": "astronomy.js", - "lineno": 6709, + "lineno": 6741, "columnno": 10, "code": { - "id": "astnode100025099", + "id": "astnode100025086", "name": "altitude", "type": "CallExpression", "value": "" @@ -53676,14 +53648,14 @@ "comment": "", "meta": { "range": [ - 272336, - 272529 + 274375, + 274568 ], "filename": "astronomy.js", - "lineno": 6712, + "lineno": 6744, "columnno": 0, "code": { - "id": "astnode100025110", + "id": "astnode100025097", "name": "SunAltitude", "type": "FunctionDeclaration", "paramnames": [ @@ -53707,14 +53679,14 @@ "comment": "", "meta": { "range": [ - 272385, - 272433 + 274424, + 274472 ], "filename": "astronomy.js", - "lineno": 6713, + "lineno": 6745, "columnno": 10, "code": { - "id": "astnode100025116", + "id": "astnode100025103", "name": "equ", "type": "CallExpression", "value": "" @@ -53732,14 +53704,14 @@ "comment": "", "meta": { "range": [ - 272445, - 272501 + 274484, + 274540 ], "filename": "astronomy.js", - "lineno": 6714, + "lineno": 6746, "columnno": 10, "code": { - "id": "astnode100025126", + "id": "astnode100025113", "name": "hor", "type": "CallExpression", "value": "" @@ -53757,14 +53729,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": [ - 273474, - 275182 + 275513, + 277221 ], "filename": "astronomy.js", - "lineno": 6740, + "lineno": 6772, "columnno": 0, "code": { - "id": "astnode100025143", + "id": "astnode100025130", "name": "SearchLocalSolarEclipse", "type": "FunctionDeclaration", "paramnames": [ @@ -53827,14 +53799,14 @@ "comment": "", "meta": { "range": [ - 273570, - 273589 + 275609, + 275628 ], "filename": "astronomy.js", - "lineno": 6742, + "lineno": 6774, "columnno": 10, "code": { - "id": "astnode100025153", + "id": "astnode100025140", "name": "PruneLatitude", "type": "Literal", "value": 1.8 @@ -53852,14 +53824,14 @@ "comment": "", "meta": { "range": [ - 273771, - 273789 + 275810, + 275828 ], "filename": "astronomy.js", - "lineno": 6744, + "lineno": 6776, "columnno": 8, "code": { - "id": "astnode100025157", + "id": "astnode100025144", "name": "nmtime", "type": "Identifier", "value": "startTime" @@ -53877,14 +53849,14 @@ "comment": "", "meta": { "range": [ - 273893, - 273937 + 275932, + 275976 ], "filename": "astronomy.js", - "lineno": 6747, + "lineno": 6779, "columnno": 14, "code": { - "id": "astnode100025163", + "id": "astnode100025150", "name": "newmoon", "type": "CallExpression", "value": "" @@ -53902,14 +53874,14 @@ "comment": "", "meta": { "range": [ - 274128, - 274176 + 276167, + 276215 ], "filename": "astronomy.js", - "lineno": 6751, + "lineno": 6783, "columnno": 14, "code": { - "id": "astnode100025176", + "id": "astnode100025163", "name": "eclip_lat", "type": "CallExpression", "value": "" @@ -53927,14 +53899,14 @@ "comment": "", "meta": { "range": [ - 274411, - 274458 + 276450, + 276497 ], "filename": "astronomy.js", - "lineno": 6755, + "lineno": 6787, "columnno": 18, "code": { - "id": "astnode100025191", + "id": "astnode100025178", "name": "shadow", "type": "CallExpression", "value": "" @@ -53952,14 +53924,14 @@ "comment": "", "meta": { "range": [ - 274602, - 274642 + 276641, + 276681 ], "filename": "astronomy.js", - "lineno": 6758, + "lineno": 6790, "columnno": 22, "code": { - "id": "astnode100025207", + "id": "astnode100025194", "name": "eclipse", "type": "CallExpression", "value": "" @@ -53977,14 +53949,14 @@ "comment": "", "meta": { "range": [ - 275143, - 275173 + 277182, + 277212 ], "filename": "astronomy.js", - "lineno": 6767, + "lineno": 6799, "columnno": 8, "code": { - "id": "astnode100025232", + "id": "astnode100025219", "name": "nmtime", "type": "CallExpression", "funcscope": "SearchLocalSolarEclipse", @@ -54003,14 +53975,14 @@ "comment": "", "meta": { "range": [ - 275183, - 275240 + 277222, + 277279 ], "filename": "astronomy.js", - "lineno": 6770, + "lineno": 6802, "columnno": 0, "code": { - "id": "astnode100025240", + "id": "astnode100025227", "name": "exports.SearchLocalSolarEclipse", "type": "Identifier", "value": "SearchLocalSolarEclipse", @@ -54027,14 +53999,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": [ - 276099, - 276270 + 278138, + 278309 ], "filename": "astronomy.js", - "lineno": 6791, + "lineno": 6823, "columnno": 0, "code": { - "id": "astnode100025245", + "id": "astnode100025232", "name": "NextLocalSolarEclipse", "type": "FunctionDeclaration", "paramnames": [ @@ -54092,14 +54064,14 @@ "comment": "", "meta": { "range": [ - 276169, - 276210 + 278208, + 278249 ], "filename": "astronomy.js", - "lineno": 6792, + "lineno": 6824, "columnno": 10, "code": { - "id": "astnode100025251", + "id": "astnode100025238", "name": "startTime", "type": "CallExpression", "value": "" @@ -54117,14 +54089,14 @@ "comment": "", "meta": { "range": [ - 276271, - 276324 + 278310, + 278363 ], "filename": "astronomy.js", - "lineno": 6795, + "lineno": 6827, "columnno": 0, "code": { - "id": "astnode100025264", + "id": "astnode100025251", "name": "exports.NextLocalSolarEclipse", "type": "Identifier", "value": "NextLocalSolarEclipse", @@ -54141,14 +54113,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": [ - 277435, - 277635 + 279474, + 279674 ], "filename": "astronomy.js", - "lineno": 6821, + "lineno": 6853, "columnno": 0, "code": { - "id": "astnode100025269", + "id": "astnode100025256", "name": "TransitInfo", "type": "ClassDeclaration", "paramnames": [ @@ -54215,14 +54187,14 @@ "comment": "", "meta": { "range": [ - 277459, - 277633 + 279498, + 279672 ], "filename": "astronomy.js", - "lineno": 6822, + "lineno": 6854, "columnno": 4, "code": { - "id": "astnode100025272", + "id": "astnode100025259", "name": "TransitInfo", "type": "MethodDefinition", "paramnames": [ @@ -54247,14 +54219,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": [ - 277435, - 277635 + 279474, + 279674 ], "filename": "astronomy.js", - "lineno": 6821, + "lineno": 6853, "columnno": 0, "code": { - "id": "astnode100025269", + "id": "astnode100025256", "name": "TransitInfo", "type": "ClassDeclaration", "paramnames": [ @@ -54320,14 +54292,14 @@ "comment": "", "meta": { "range": [ - 277514, - 277532 + 279553, + 279571 ], "filename": "astronomy.js", - "lineno": 6823, + "lineno": 6855, "columnno": 8, "code": { - "id": "astnode100025281", + "id": "astnode100025268", "name": "this.start", "type": "Identifier", "value": "start", @@ -54345,14 +54317,14 @@ "comment": "", "meta": { "range": [ - 277542, - 277558 + 279581, + 279597 ], "filename": "astronomy.js", - "lineno": 6824, + "lineno": 6856, "columnno": 8, "code": { - "id": "astnode100025287", + "id": "astnode100025274", "name": "this.peak", "type": "Identifier", "value": "peak", @@ -54370,14 +54342,14 @@ "comment": "", "meta": { "range": [ - 277568, - 277588 + 279607, + 279627 ], "filename": "astronomy.js", - "lineno": 6825, + "lineno": 6857, "columnno": 8, "code": { - "id": "astnode100025293", + "id": "astnode100025280", "name": "this.finish", "type": "Identifier", "value": "finish", @@ -54395,14 +54367,14 @@ "comment": "", "meta": { "range": [ - 277598, - 277626 + 279637, + 279665 ], "filename": "astronomy.js", - "lineno": 6826, + "lineno": 6858, "columnno": 8, "code": { - "id": "astnode100025299", + "id": "astnode100025286", "name": "this.separation", "type": "Identifier", "value": "separation", @@ -54420,14 +54392,14 @@ "comment": "", "meta": { "range": [ - 277636, - 277669 + 279675, + 279708 ], "filename": "astronomy.js", - "lineno": 6829, + "lineno": 6861, "columnno": 0, "code": { - "id": "astnode100025305", + "id": "astnode100025292", "name": "exports.TransitInfo", "type": "Identifier", "value": "TransitInfo", @@ -54444,14 +54416,14 @@ "comment": "", "meta": { "range": [ - 277671, - 277854 + 279710, + 279893 ], "filename": "astronomy.js", - "lineno": 6830, + "lineno": 6862, "columnno": 0, "code": { - "id": "astnode100025310", + "id": "astnode100025297", "name": "PlanetShadowBoundary", "type": "FunctionDeclaration", "paramnames": [ @@ -54476,14 +54448,14 @@ "comment": "", "meta": { "range": [ - 277754, - 277805 + 279793, + 279844 ], "filename": "astronomy.js", - "lineno": 6831, + "lineno": 6863, "columnno": 10, "code": { - "id": "astnode100025318", + "id": "astnode100025305", "name": "shadow", "type": "CallExpression", "value": "" @@ -54501,14 +54473,14 @@ "comment": "", "meta": { "range": [ - 277855, - 278225 + 279894, + 280264 ], "filename": "astronomy.js", - "lineno": 6834, + "lineno": 6866, "columnno": 0, "code": { - "id": "astnode100025335", + "id": "astnode100025322", "name": "PlanetTransitBoundary", "type": "FunctionDeclaration", "paramnames": [ @@ -54535,14 +54507,14 @@ "comment": "", "meta": { "range": [ - 278047, - 278139 + 280086, + 280178 ], "filename": "astronomy.js", - "lineno": 6836, + "lineno": 6868, "columnno": 10, "code": { - "id": "astnode100025344", + "id": "astnode100025331", "name": "tx", "type": "CallExpression", "value": "" @@ -54560,14 +54532,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 {string} 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": [ - 278894, - 281080 + 280933, + 283119 ], "filename": "astronomy.js", - "lineno": 6858, + "lineno": 6890, "columnno": 0, "code": { - "id": "astnode100025365", + "id": "astnode100025352", "name": "SearchTransit", "type": "FunctionDeclaration", "paramnames": [ @@ -54636,14 +54608,14 @@ "comment": "", "meta": { "range": [ - 278946, - 278967 + 280985, + 281006 ], "filename": "astronomy.js", - "lineno": 6859, + "lineno": 6891, "columnno": 10, "code": { - "id": "astnode100025371", + "id": "astnode100025358", "name": "threshold_angle", "type": "Literal", "value": 0.4 @@ -54661,14 +54633,14 @@ "comment": "", "meta": { "range": [ - 279040, - 279053 + 281079, + 281092 ], "filename": "astronomy.js", - "lineno": 6860, + "lineno": 6892, "columnno": 10, "code": { - "id": "astnode100025375", + "id": "astnode100025362", "name": "dt_days", "type": "Literal", "value": 1 @@ -54686,14 +54658,14 @@ "comment": "", "meta": { "range": [ - 279116, - 279132 + 281155, + 281171 ], "filename": "astronomy.js", - "lineno": 6862, + "lineno": 6894, "columnno": 8, "code": { - "id": "astnode100025379", + "id": "astnode100025366", "name": "planet_radius_km" } }, @@ -54709,14 +54681,14 @@ "comment": "", "meta": { "range": [ - 279190, - 279215 + 281229, + 281254 ], "filename": "astronomy.js", - "lineno": 6865, + "lineno": 6897, "columnno": 12, "code": { - "id": "astnode100025386", + "id": "astnode100025373", "name": "planet_radius_km", "type": "Literal", "funcscope": "SearchTransit", @@ -54735,14 +54707,14 @@ "comment": "", "meta": { "range": [ - 279270, - 279295 + 281309, + 281334 ], "filename": "astronomy.js", - "lineno": 6868, + "lineno": 6900, "columnno": 12, "code": { - "id": "astnode100025393", + "id": "astnode100025380", "name": "planet_radius_km", "type": "Literal", "funcscope": "SearchTransit", @@ -54761,14 +54733,14 @@ "comment": "", "meta": { "range": [ - 279390, - 279413 + 281429, + 281452 ], "filename": "astronomy.js", - "lineno": 6873, + "lineno": 6905, "columnno": 8, "code": { - "id": "astnode100025404", + "id": "astnode100025391", "name": "search_time", "type": "Identifier", "value": "startTime" @@ -54786,14 +54758,14 @@ "comment": "", "meta": { "range": [ - 279647, - 279701 + 281686, + 281740 ], "filename": "astronomy.js", - "lineno": 6878, + "lineno": 6910, "columnno": 14, "code": { - "id": "astnode100025410", + "id": "astnode100025397", "name": "conj", "type": "CallExpression", "value": "" @@ -54811,14 +54783,14 @@ "comment": "", "meta": { "range": [ - 279804, - 279846 + 281843, + 281885 ], "filename": "astronomy.js", - "lineno": 6880, + "lineno": 6912, "columnno": 14, "code": { - "id": "astnode100025418", + "id": "astnode100025405", "name": "conj_separation", "type": "CallExpression", "value": "" @@ -54836,14 +54808,14 @@ "comment": "", "meta": { "range": [ - 280178, - 280233 + 282217, + 282272 ], "filename": "astronomy.js", - "lineno": 6886, + "lineno": 6918, "columnno": 18, "code": { - "id": "astnode100025430", + "id": "astnode100025417", "name": "shadow", "type": "CallExpression", "value": "" @@ -54861,14 +54833,14 @@ "comment": "", "meta": { "range": [ - 280424, - 280467 + 282463, + 282506 ], "filename": "astronomy.js", - "lineno": 6889, + "lineno": 6921, "columnno": 22, "code": { - "id": "astnode100025447", + "id": "astnode100025434", "name": "time_before", "type": "CallExpression", "value": "" @@ -54886,14 +54858,14 @@ "comment": "", "meta": { "range": [ - 280491, - 280576 + 282530, + 282615 ], "filename": "astronomy.js", - "lineno": 6890, + "lineno": 6922, "columnno": 22, "code": { - "id": "astnode100025458", + "id": "astnode100025445", "name": "start", "type": "CallExpression", "value": "" @@ -54911,14 +54883,14 @@ "comment": "", "meta": { "range": [ - 280600, - 280642 + 282639, + 282681 ], "filename": "astronomy.js", - "lineno": 6891, + "lineno": 6923, "columnno": 22, "code": { - "id": "astnode100025471", + "id": "astnode100025458", "name": "time_after", "type": "CallExpression", "value": "" @@ -54936,14 +54908,14 @@ "comment": "", "meta": { "range": [ - 280666, - 280751 + 282705, + 282790 ], "filename": "astronomy.js", - "lineno": 6892, + "lineno": 6924, "columnno": 22, "code": { - "id": "astnode100025482", + "id": "astnode100025469", "name": "finish", "type": "CallExpression", "value": "" @@ -54961,14 +54933,14 @@ "comment": "", "meta": { "range": [ - 280775, - 280830 + 282814, + 282869 ], "filename": "astronomy.js", - "lineno": 6893, + "lineno": 6925, "columnno": 22, "code": { - "id": "astnode100025495", + "id": "astnode100025482", "name": "min_separation", "type": "BinaryExpression", "value": "" @@ -54986,14 +54958,14 @@ "comment": "", "meta": { "range": [ - 281039, - 281071 + 283078, + 283110 ], "filename": "astronomy.js", - "lineno": 6898, + "lineno": 6930, "columnno": 8, "code": { - "id": "astnode100025515", + "id": "astnode100025502", "name": "search_time", "type": "CallExpression", "funcscope": "SearchTransit", @@ -55012,14 +54984,14 @@ "comment": "", "meta": { "range": [ - 281081, - 281118 + 283120, + 283157 ], "filename": "astronomy.js", - "lineno": 6901, + "lineno": 6933, "columnno": 0, "code": { - "id": "astnode100025523", + "id": "astnode100025510", "name": "exports.SearchTransit", "type": "Identifier", "value": "SearchTransit", @@ -55036,14 +55008,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 {string} 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": [ - 281652, - 281796 + 283691, + 283835 ], "filename": "astronomy.js", - "lineno": 6917, + "lineno": 6949, "columnno": 0, "code": { - "id": "astnode100025528", + "id": "astnode100025515", "name": "NextTransit", "type": "FunctionDeclaration", "paramnames": [ @@ -55101,14 +55073,14 @@ "comment": "", "meta": { "range": [ - 281708, - 281750 + 283747, + 283789 ], "filename": "astronomy.js", - "lineno": 6918, + "lineno": 6950, "columnno": 10, "code": { - "id": "astnode100025534", + "id": "astnode100025521", "name": "startTime", "type": "CallExpression", "value": "" @@ -55126,14 +55098,14 @@ "comment": "", "meta": { "range": [ - 281797, - 281830 + 283836, + 283869 ], "filename": "astronomy.js", - "lineno": 6921, + "lineno": 6953, "columnno": 0, "code": { - "id": "astnode100025547", + "id": "astnode100025534", "name": "exports.NextTransit", "type": "Identifier", "value": "NextTransit",