Earth

Class to model Earth’s globe.

class pymeeus.Earth.Earth(ellipsoid=Ellipsoid(6378137.0, 0.00335281066475, 7.292115e-05))[source]

Class Earth models the figure of the Earth surface and, with the help of a configurable reference ellipsoid, provides a set of handy method to compute different parameters, like the distance between two points on the surface.

Please note that here we depart a little bit from Meeus’ book because the Earth class uses the World Geodetic System 1984 (WGS84) as the default reference ellipsoid, instead of the International Astronomical Union 1974, which Meeus uses. This change is done because WGS84 is regarded as more modern.

__init__(ellipsoid=Ellipsoid(6378137.0, 0.00335281066475, 7.292115e-05))[source]

Earth constructor.

It takes a reference ellipsoid as input. If not provided, the ellipsoid used is the WGS84 by default.

Parameters:ellipsoid – Reference ellipsoid to be used. WGS84 by default.
Returns:Earth object.
Return type:Earth
Raises:TypeError if input value is of wrong type.
__repr__()[source]

Method providing the ‘official’ string representation of the object. It provides a valid expression that could be used to recreate the object.

Returns:As string with a valid expression to recreate the object
Return type:string
__str__()[source]

Method used when trying to print the Earth object. It essentially returns the corresponting ‘__str__()’ method from the reference ellipsoid being used.

Returns:Semi-major equatorial radius, flattening and angular velocity of the current reference ellipsoid, as a string.
Return type:string
>>> e = Earth()
>>> s = str(e)
>>> v = s.split(':')
>>> print(v[0] + '|' + str(round(float(v[1]), 14)) + '|' + v[2] )
6378137.0|0.00335281066475|7.292115e-05
__weakref__

list of weak references to the object (if defined)

static apparent_heliocentric_position(epoch, nutation=True)[source]

This method computes the apparent heliocentric position of the Earth for a given epoch, using the VSOP87 theory.

Parameters:
  • epoch (Epoch) – Epoch to compute Earth position, as an Epoch object
  • nutation (bool) – Whether the nutation correction will be applied
Returns:

A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(1992, 10, 13.0)
>>> lon, lat, r = Earth.apparent_heliocentric_position(epoch)
>>> print(round(lon.to_positive(), 6))
19.905986
>>> print(lat.dms_str(n_dec=3))
-0.721''
>>> print(round(r, 8))
0.99760852
distance(lon1, lat1, lon2, lat2)[source]

This method computes the distance between two points on the Earth’s surface using the method from H. Andoyer.

Note

We will consider that positions ‘East’ and ‘South’ are negative.

Parameters:
  • lon1 (int, float, Angle) – Longitude of the first point, in degrees
  • lat1 (int, float, Angle) – Geodetical or geographical latitude of the first point, in degrees
  • lon2 (int, float, Angle) – Longitude of the second point, in degrees
  • lat2 (int, float, Angle) – Geodetical or geographical latitude of the second point, in degrees
Returns:

Tuple with distance between the two points along Earth’s surface, and approximate error, in meters

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> e = Earth(ellipsoid=IAU76)
>>> lon1 = Angle(-2, 20, 14.0)
>>> lat1 = Angle(48, 50, 11.0)
>>> lon2 = Angle(77, 3, 56.0)
>>> lat2 = Angle(38, 55, 17.0)
>>> dist, error = e.distance(lon1, lat1, lon2, lat2)
>>> round(dist, 0)
6181628.0
>>> error
69.0
>>> lon1 = Angle(-2.09)
>>> lat1 = Angle(41.3)
>>> lon2 = Angle(73.99)
>>> lat2 = Angle(40.75)
>>> dist, error = e.distance(lon1, lat1, lon2, lat2)
>>> round(dist, 0)
6176760.0
>>> error
69.0
static geometric_heliocentric_position(epoch, tofk5=True)[source]

This method computes the geometric heliocentric position of the Earth for a given epoch, using the VSOP87 theory.

Parameters:
  • epoch (Epoch) – Epoch to compute Earth position, as an Epoch object
  • tofk5 (bool) – Whether or not the small correction to convert to the FK5 system will be applied or not
Returns:

A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(1992, 10, 13.0)
>>> l, b, r = Earth.geometric_heliocentric_position(epoch, tofk5=False)
>>> print(round(l.to_positive(), 6))
19.907297
>>> print(b.dms_str(n_dec=3))
-0.744''
>>> print(round(r, 8))
0.99760852
static geometric_heliocentric_position_j2000(epoch, tofk5=True)[source]

This method computes the geometric heliocentric position of the Earth for a given epoch, using the VSOP87 theory, referred to the equinox J2000.0.

Parameters:
  • epoch (Epoch) – Epoch to compute Earth position, as an Epoch object
  • tofk5 (bool) – Whether or not the small correction to convert to the FK5 system will be applied or not
Returns:

A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

linear_velocity(latitude)[source]

Method to compute the linear velocity of a point at latitude, due to the rotation of the Earth.

Parameters:latitude (int, float, Angle) – Geodetical or geographical latitude of the observer, in degrees
Returns:Linear velocity of a point at latitude, in meters per second
Return type:float
Raises:TypeError if input value is of wrong type.
>>> e = Earth(ellipsoid=IAU76)
>>> round(e.linear_velocity(42.0), 2)
346.16
static orbital_elements_j2000(epoch)[source]

This method computes the orbital elements of Earth for the standard equinox J2000.0 for a given epoch.

Parameters:epoch (Epoch) – Epoch to compute orbital elements, as an Epoch object
Returns:A tuple containing the following six orbital elements: - Mean longitude of the planet (Angle) - Semimajor axis of the orbit (float, astronomical units) - eccentricity of the orbit (float) - inclination on the plane of the ecliptic (Angle) - longitude of the ascending node (Angle) - argument of the perihelion (Angle)
Return type:tuple
Raises:TypeError if input values are of wrong type.
>>> epoch = Epoch(2065, 6, 24.0)
>>> l, a, e, i, ome, arg = Earth.orbital_elements_j2000(epoch)
>>> print(round(l, 6))
271.801199
>>> print(round(a, 8))
1.00000102
>>> print(round(e, 7))
0.0166811
>>> print(round(i, 6))
0.008544
>>> print(round(ome, 5))
174.71534
>>> print(round(arg, 6))
-71.566717
static orbital_elements_mean_equinox(epoch)[source]

This method computes the orbital elements of Earth for the mean equinox of the date for a given epoch.

Parameters:epoch (Epoch) – Epoch to compute orbital elements, as an Epoch object
Returns:A tuple containing the following six orbital elements: - Mean longitude of the planet (Angle) - Semimajor axis of the orbit (float, astronomical units) - eccentricity of the orbit (float) - inclination on the plane of the ecliptic (Angle) - longitude of the ascending node (Angle) - argument of the perihelion (Angle)
Return type:tuple
Raises:TypeError if input values are of wrong type.
>>> epoch = Epoch(2065, 6, 24.0)
>>> l, a, e, i, ome, arg = Earth.orbital_elements_mean_equinox(epoch)
>>> print(round(l, 6))
272.716028
>>> print(round(a, 8))
1.00000102
>>> print(round(e, 7))
0.0166811
>>> print(round(i, 6))
0.0
>>> print(round(ome, 5))
174.71534
>>> print(round(arg, 6))
-70.651889
static parallax_correction(right_ascension, declination, latitude, distance, hour_angle, height=0.0)[source]

This function computes the parallaxes in right ascension and declination in order to obtain the topocentric values.

Parameters:
  • right_ascension (Angle) – Geocentric right ascension, as an Angle object
  • declination (Angle) – Geocentric declination, as an Angle object
  • latitude (Angle) – Latitude of the observation point
  • distance (float) – Distance from the celestial object to the Earth, in Astronomical Units
  • hour_angle (Angle) – Geocentric hour angle of the celestial object, as an Angle
  • heigth – Height of observation point above sea level, in meters
Returns:

Tuple containing the topocentric right ascension and declination

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> right_ascension = Angle(22, 38, 7.25, ra=True)
>>> declination = Angle(-15, 46, 15.9)
>>> latitude = Angle(33, 21, 22)
>>> distance = 0.37276
>>> hour_angle = Angle(288.7958)
>>> topo_ra, topo_dec = Earth.parallax_correction(right_ascension,                                                           declination,                                                           latitude, distance,                                                           hour_angle)
>>> print(topo_ra.ra_str(n_dec=2))
22h 38' 8.54''
>>> print(topo_dec.dms_str(n_dec=1))
-15d 46' 30.0''
static parallax_ecliptical(longitude, latitude, semidiameter, obs_lat, obliquity, sidereal_time, distance, height=0.0)[source]

This function computes the topocentric coordinates of a celestial body (Moon or planet) directly from its geocentric values in ecliptical coordinates.

Parameters:
  • longitude (Angle) – Geocentric ecliptical longitude as an Angle
  • latitude (Angle) – Geocentric ecliptical latitude as an Angle
  • semidiameter (Angle) – Geocentric semidiameter as an Angle
  • obs_lat (Angle) – Latitude of the observation point
  • obliquity (Angle) – Obliquity of the eliptic, as an Angle
  • sidereal_time (Angle) – Local sidereal time, as an Angle
  • distance (float) – Distance from the celestial object to the Earth, in Astronomical Units
  • heigth – Height of observation point above sea level, in meters
Returns:

Tuple containing the topocentric longitude, latitude and semidiameter

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> longitude = Angle(181, 46, 22.5)
>>> latitude = Angle(2, 17, 26.2)
>>> semidiameter = Angle(0, 16, 15.5)
>>> obs_lat = Angle(50, 5, 7.8)
>>> obliquity = Angle(23, 28, 0.8)
>>> sidereal_time = Angle(209, 46, 7.9)
>>> distance = 0.0024650163
>>> topo_lon, topo_lat, topo_diam =                 Earth.parallax_ecliptical(longitude, latitude, semidiameter,                                           obs_lat, obliquity, sidereal_time,                                           distance)
>>> print(topo_lon.dms_str(n_dec=1))
181d 48' 5.0''
>>> print(topo_lat.dms_str(n_dec=1))
1d 29' 7.1''
>>> print(topo_diam.dms_str(n_dec=1))
16' 25.5''
static passage_nodes(epoch, ascending=True)[source]

This function computes the time of passage by the nodes (ascending or descending) of Earth, nearest to the given epoch.

Parameters:
  • epoch (Epoch) – Epoch closest to the node passage
  • ascending (bool) – Whether the time of passage by the ascending (True) or descending (False) node will be computed
Returns:

Tuple containing: - Time of passage through the node (Epoch) - Radius vector when passing through the node (in AU, float)

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(2019, 1, 1)
>>> time, r = Earth.passage_nodes(epoch)
>>> year, month, day = time.get_date()
>>> print(year)
2019
>>> print(month)
3
>>> print(round(day, 1))
15.0
>>> print(round(r, 4))
0.9945
static perihelion_aphelion(epoch, perihelion=True)[source]

This method computes the time of Perihelion (or Aphelion) closer to a given epoch.

Parameters:
  • epoch (Epoch) – Epoch close to the desired Perihelion (or Aphelion)
  • peihelion – If True, the epoch of the closest Perihelion is computed, if False, the epoch of the closest Aphelion is found.
Returns:

The epoch of the desired Perihelion (or Aphelion)

Return type:

Epoch

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(1989, 11, 20.0)
>>> e = Earth.perihelion_aphelion(epoch)
>>> y, m, d, h, mi, s = e.get_full_date()
>>> print(y)
1990
>>> print(m)
1
>>> print(d)
4
>>> print(h)
17
>>> epoch = Epoch(2000, 4, 1.0)
>>> e = Earth.perihelion_aphelion(epoch, perihelion=False)
>>> y, m, d, h, mi, s = e.get_full_date()
>>> print(y)
2000
>>> print(m)
7
>>> print(d)
3
>>> print(h)
23
>>> print(mi)
51
>>> epoch = Epoch(2003, 3, 10.0)
>>> e = Earth.perihelion_aphelion(epoch)
>>> y, m, d, h, mi, s = e.get_full_date()
>>> print(y)
2003
>>> print(m)
1
>>> print(d)
4
>>> print(h)
5
>>> print(mi)
1
>>> epoch = Epoch(2009, 5, 1.0)
>>> e = Earth.perihelion_aphelion(epoch, perihelion=False)
>>> y, m, d, h, mi, s = e.get_full_date()
>>> print(y)
2009
>>> print(m)
7
>>> print(d)
4
>>> print(h)
1
>>> print(mi)
41
rho(latitude)[source]

Method to compute the rho term, which is the observer distance to the center of the Earth, when the observer is at sea level. In this case, the Earth’s equatorial radius is taken as unity.

Parameters:latitude (int, float, Angle) – Geodetical or geographical latitude of the observer, in degrees
Returns:Rho: Distance to the center of the Earth from sea level. It is a ratio with respect to Earth equatorial radius.
Return type:float
Raises:TypeError if input value is of wrong type.
>>> e = Earth(ellipsoid=IAU76)
>>> round(e.rho(0.0), 1)
1.0
rho_cosphi(latitude, height)[source]

Method to compute the rho*cos(phi’) term, needed in the calculation of diurnal parallaxes, eclipses and occulatitions.

Parameters:
  • latitude (int, float, Angle) – Geodetical or geographical latitude of the observer, in degrees
  • height (int, float) – Height of the observer above the sea level, in meters
Returns:

rho*cos(phi’) term

Return type:

float

Raises:

TypeError if input value is of wrong type.

>>> lat = Angle(33, 21, 22.0)
>>> e = Earth(ellipsoid=IAU76)
>>> round(e.rho_cosphi(lat, 1706), 6)
0.836339
rho_sinphi(latitude, height)[source]

Method to compute the rho*sin(phi’) term, needed in the calculation of diurnal parallaxes, eclipses and occulatitions.

Parameters:
  • latitude (int, float, Angle) – Geodetical or geographical latitude of the observer, in degrees
  • height (int, float) – Height of the observer above the sea level, in meters
Returns:

rho*sin(phi’) term

Return type:

float

Raises:

TypeError if input value is of wrong type.

>>> lat = Angle(33, 21, 22.0)
>>> e = Earth(ellipsoid=IAU76)
>>> round(e.rho_sinphi(lat, 1706), 6)
0.546861
rm(latitude)[source]

Method to compute the radius of curvature of the Earth’s meridian at the given latitude.

Parameters:latitude (int, float, Angle) – Geodetical or geographical latitude of the observer, in degrees
Returns:Radius of curvature of the Earth’s meridian at the given latitude, in meters
Return type:float
Raises:TypeError if input value is of wrong type.
>>> e = Earth(ellipsoid=IAU76)
>>> round(e.rm(42.0), 1)
6364033.3
rp(latitude)[source]

Method to compute the radius of the parallel circle at the given latitude.

Parameters:latitude (int, float, Angle) – Geodetical or geographical latitude of the observer, in degrees
Returns:Radius of the parallel circle at given latitude, in meters
Return type:float
Raises:TypeError if input value is of wrong type.
>>> e = Earth(ellipsoid=IAU76)
>>> round(e.rp(42.0), 1)
4747001.2
set(ellipsoid)[source]

Method used to define an Earth object.

It takes a reference ellipsoid as input. If not provided, the ellipsoid used is the WGS84 by default.

Parameters:ellipsoid – Reference ellipsoid to be used. WGS84 by default.
Returns:None
Return type:None
Raises:TypeError if input value is of wrong type.
class pymeeus.Earth.Ellipsoid(a, f, omega)[source]

Class Ellipsoid is useful to encapsulate the most important parameters of a given reference ellipsoid.

__init__(a, f, omega)[source]

Ellipsoid constructor.

Parameters:
  • a (float) – Semi-major or equatorial radius, in meters
  • f (float) – Flattening
  • omega (float) – Angular velocity of the Earth, in rad/s
__repr__()[source]

Method providing the ‘official’ string representation of the object. It provides a valid expression that could be used to recreate the object.

Returns:As string with a valid expression to recreate the object
Return type:string
>>> a = Ellipsoid(6378140.0, 0.0033528132, 7.292e-5)
>>> repr(a)
'Ellipsoid(6378140.0, 0.0033528132, 7.292e-05)'
__str__()[source]

Method used when trying to print the object.

Returns:Semi-major equatorial radius, flattening and angular velocity as a string.
Return type:string
>>> a = Ellipsoid(6378140.0, 0.0033528132, 7.292e-5)
>>> print(a)
6378140.0:0.0033528132:7.292e-05
__weakref__

list of weak references to the object (if defined)

b()[source]

Method to return the semi-minor radius.

Returns:Semi-minor radius, in meters
Return type:float
>>> a = Ellipsoid(6378140.0, 0.0033528132, 7.292e-5)
>>> round(a.b(), 3)
6356755.288
e()[source]

Method to return the eccentricity of the Earth’s meridian.

Returns:Eccentricity of the Earth’s meridian
Return type:float
>>> a = Ellipsoid(6378140.0, 0.0033528132, 7.292e-5)
>>> round(a.e(), 8)
0.08181922
pymeeus.Earth.IAU76 = Ellipsoid(6378140.0, 0.0033528131779, 7.292114992e-05)

Reference ellipsoid defined by the International Astronomic Union in 1976

pymeeus.Earth.ORBITAL_ELEM = [[100.466457, 36000.7698278, 0.00030322, 2e-08], [1.000001018, 0.0, 0.0, 0.0], [0.01670863, -4.2037e-05, -1.267e-07, 1.4e-10], [0.0, 0.0, 0.0, 0.0], [174.873176, -0.2410908, 4.262e-05, 1e-09], [102.937348, 1.7195366, 0.00045688, -1.8e-08]]

This table contains the parameters to compute Earth’s orbital elements for the mean equinox of date. Based in Table 31.A, page 212

pymeeus.Earth.ORBITAL_ELEM_J2000 = [[100.466457, 35999.3728565, -5.68e-06, -1e-09], [0.0, 0.0130548, -9.31e-06, -3.4e-08], [174.873176, -0.2410908, 4.262e-05, 1e-09], [102.937348, 0.3225654, 0.00014799, -3.9e-08]]

This table contains the parameters to compute Earth’s orbital elements for the standard equinox J2000.0. Based on Table 31.B, page 214

pymeeus.Earth.VSOP87_B = [[[279.62, 3.19870156017, 84334.66158130829], [101.643, 5.42248619256, 5507.5532386674], [80.445, 3.88013204458, 5223.6939198022], [43.806, 3.70444689758, 2352.8661537718], [31.933, 4.00026369781, 1577.3435424478], [22.724, 3.9847383156, 1047.7473117547], [16.392, 3.56456119782, 5856.4776591154], [18.141, 4.98367470263, 6283.0758499914], [14.443, 3.70275614914, 9437.762934887], [14.304, 3.41117857525, 10213.285546211], [11.246, 4.8282069053, 14143.4952424306], [10.9, 2.08574562327, 6812.766815086], [9.714, 3.47303947752, 4694.0029547076], [10.367, 4.05663927946, 71092.88135493269], [8.775, 4.44016515669, 5753.3848848968], [8.366, 4.9925151218, 7084.8967811152], [6.921, 4.32559054073, 6275.9623029906], [9.145, 1.14182646613, 6620.8901131878], [7.194, 3.60193205752, 529.6909650946], [7.698, 5.55425745881, 167621.5758508619], [5.285, 2.48446991566, 4705.7323075436], [5.208, 6.24992674537, 18073.7049386502], [4.529, 2.33827747356, 6309.3741697912], [5.579, 4.41023653738, 7860.4193924392], [4.743, 0.70995680136, 5884.9268465832], [4.301, 1.10255777773, 6681.2248533996], [3.849, 1.82229412531, 5486.777843175], [4.093, 5.11700141207, 13367.9726311066], [3.681, 0.43793170356, 3154.6870848956], [3.42, 5.42034800952, 6069.7767545534], [3.617, 6.04641937526, 3930.2096962196], [3.67, 4.58210192227, 12194.0329146209], [2.918, 1.95463881126, 10977.078804699], [2.797, 5.61259275048, 11790.6290886588], [2.502, 0.60499729367, 6496.3749454294], [2.319, 5.01648216014, 1059.3819301892], [2.684, 1.39470396488, 22003.9146348698], [2.428, 3.24183056052, 78051.5857313169], [2.12, 4.30691000285, 5643.1785636774], [2.257, 3.15557225618, 90617.7374312997], [1.813, 3.75574218285, 3340.6124266998], [2.226, 2.79699346659, 12036.4607348882], [1.888, 0.86991545823, 8635.9420037632], [1.517, 1.95852055701, 398.1490034082], [1.581, 3.19976230948, 5088.6288397668], [1.421, 6.25530883827, 2544.3144198834], [1.595, 0.25619915135, 17298.1823273262], [1.391, 4.69964175561, 7058.5984613154], [1.478, 2.81808207569, 25934.1243310894], [1.481, 3.65823554806, 11506.7697697936], [1.693, 4.95689385293, 156475.2902479957], [1.183, 1.29343061246, 775.522611324], [1.114, 2.37889311846, 3738.761430108], [0.994, 4.30088900425, 9225.539273283], [0.924, 3.06451026812, 4164.311989613], [0.867, 0.55606931068, 8429.2412664666], [0.988, 5.97286104208, 7079.3738568078], [0.824, 1.50984806173, 10447.3878396044], [0.915, 0.12635654592, 11015.1064773348], [0.742, 1.99159139281, 26087.9031415742], [1.039, 3.14159265359, 0.0], [0.85, 4.24120016095, 29864.334027309], [0.755, 2.8963187332, 4732.0306273434], [0.714, 1.37548118603, 2146.1654164752], [0.708, 1.91406542362, 8031.0922630584], [0.746, 0.57893808616, 796.2980068164], [0.802, 5.1233913723, 2942.4634232916], [0.751, 1.67479850166, 21228.3920235458], [0.602, 4.09976538826, 64809.80550494129], [0.594, 3.49580704962, 16496.3613962024], [0.592, 4.59481504319, 4690.4798363586], [0.53, 5.739792952, 8827.3902698748], [0.503, 5.66433137112, 33794.5437235286], [0.483, 1.57106522411, 801.8209311238], [0.438, 0.06707733767, 3128.3887650958], [0.423, 2.86944595927, 12566.1516999828], [0.504, 3.2620766916, 7632.9432596502], [0.552, 1.02926440457, 239762.20451754928], [0.427, 3.6743437821, 213.299095438], [0.404, 1.46193297142, 15720.8387848784], [0.503, 4.85802444134, 6290.1893969922], [0.417, 0.81920713533, 5216.5803728014], [0.365, 0.01002966162, 12168.0026965746], [0.363, 1.28376436579, 6206.8097787158], [0.353, 4.7005913311, 7234.794256242], [0.415, 0.96862624175, 4136.9104335162], [0.387, 3.09145061418, 25158.6017197654], [0.373, 2.65119262792, 7342.4577801806], [0.361, 2.97762937739, 9623.6882766912], [0.418, 3.75759994446, 5230.807466803], [0.396, 1.22507712354, 6438.4962494256], [0.322, 1.21162178805, 8662.240323563], [0.284, 5.64170320068, 1589.0728952838], [0.379, 1.72248432748, 14945.3161735544], [0.32, 3.94161159962, 7330.8231617461], [0.313, 5.47602376446, 1194.4470102246], [0.292, 1.38971327603, 11769.8536931664], [0.305, 0.80429352049, 37724.7534197482], [0.257, 5.81382809757, 426.598190876], [0.265, 6.10358507671, 6836.6452528338], [0.25, 4.56452895547, 7477.522860216], [0.266, 2.62926282354, 7238.6755916], [0.263, 6.22089501237, 6133.5126528568], [0.306, 2.79682380531, 1748.016413067], [0.236, 2.46093023714, 11371.7046897582], [0.316, 1.62662805006, 250908.4901204155], [0.216, 3.68721275185, 5849.3641121146], [0.23, 0.36165162947, 5863.5912061162], [0.233, 5.03509933858, 20426.571092422], [0.2, 5.86073159059, 4535.0594369244], [0.277, 4.65400292395, 82239.1669577989], [0.209, 3.72323200804, 10973.55568635], [0.199, 5.05186622555, 5429.8794682394], [0.256, 2.4092327977, 19651.048481098], [0.21, 4.50691909144, 29088.811415985], [0.181, 6.00294783127, 4292.3308329504], [0.249, 0.12900984422, 154379.7956244863], [0.209, 3.87759458598, 17789.845619785], [0.225, 3.18339652605, 18875.525869774], [0.191, 4.53897489299, 18477.1087646123], [0.172, 2.09694183014, 13095.8426650774], [0.182, 3.161079435, 16730.4636895958], [0.188, 2.22746128596, 41654.9631159678], [0.164, 5.18686275017, 5481.2549188676], [0.16, 2.49298855159, 12592.4500197826], [0.155, 1.5959543823, 10021.8372800994], [0.135, 0.21349051064, 10988.808157535], [0.178, 3.8037517797, 23581.2581773176], [0.123, 1.66800739151, 15110.4661198662], [0.122, 2.72678272244, 18849.2275499742], [0.126, 1.1767551291, 14919.0178537546], [0.142, 3.95053441332, 337.8142631964], [0.116, 6.06340906229, 6709.6740408674], [0.137, 3.52143246757, 12139.5535091068], [0.136, 2.92179113542, 32217.2001810808], [0.11, 3.51203379263, 18052.9295431578], [0.147, 4.63371971408, 22805.7355659936], [0.108, 5.45280814878, 7.1135470008], [0.148, 0.65447253687, 95480.9471841745], [0.119, 5.92110458985, 33019.0211122046], [0.11, 5.34824206306, 639.897286314], [0.106, 3.71081682629, 14314.1681130498], [0.139, 6.17607198418, 24356.7807886416], [0.118, 5.5973871267, 161338.5000008705], [0.117, 3.6506527164, 45585.1728121874], [0.127, 4.74596574209, 49515.382508407], [0.12, 1.04211499785, 6915.8595893046], [0.12, 5.60638811846, 5650.2921106782], [0.115, 3.10668213289, 14712.317116458], [0.099, 0.69018940049, 12779.4507954208], [0.097, 1.07908724794, 9917.6968745098], [0.093, 2.62295197319, 17260.1546546904], [0.099, 4.45774681732, 4933.2084403326], [0.123, 1.37488922089, 28286.9904848612], [0.121, 5.19767249813, 27511.4678735372], [0.105, 0.87192267806, 77375.95720492408], [0.087, 3.9363781295, 17654.7805397496], [0.122, 2.2395606868, 83997.09113559539], [0.087, 4.18201600952, 22779.4372461938], [0.104, 4.59580877295, 1349.8674096588], [0.102, 2.83545248411, 12352.8526045448], [0.102, 3.97386522171, 10818.1352869158], [0.101, 4.32892825857, 36147.4098773004], [0.094, 5.00001709261, 150192.2143980043], [0.077, 3.97199369296, 1592.5960136328], [0.1, 6.07733097102, 26735.9452622132], [0.086, 5.2602963825, 28313.288804661], [0.093, 4.31900620254, 44809.6502008634], [0.076, 6.22743405935, 13521.7514415914], [0.072, 1.55820597747, 6256.7775301916], [0.082, 4.95202664555, 10575.4066829418], [0.082, 1.69647647075, 1990.745017041], [0.075, 2.29836095644, 3634.6210245184], [0.075, 2.66367876557, 16200.7727245012], [0.087, 0.26630214764, 31441.6775697568], [0.077, 2.25530954137, 5235.3285382367], [0.076, 1.09869730846, 12903.9659631792], [0.058, 4.28246138307, 12559.038152982], [0.064, 5.51112830114, 173904.65170085328], [0.056, 2.60133794851, 73188.3759784421], [0.055, 5.81483150022, 143233.51002162008], [0.054, 3.38482031504, 323049.11878710287], [0.039, 3.28500401343, 71768.50988132549], [0.039, 3.1123991069, 96900.81328129109]], [[9.03, 3.8972906189, 5507.5532386674], [6.177, 1.73038850355, 5223.6939198022], [3.8, 5.24404145734, 2352.8661537718], [2.834, 2.4734503745, 1577.3435424478], [1.817, 0.41874743765, 6283.0758499914], [1.499, 1.83320979291, 5856.4776591154], [1.466, 5.69401926017, 5753.3848848968], [1.301, 2.18890066314, 9437.762934887], [1.233, 4.95222451476, 10213.285546211], [1.021, 0.12866660208, 7860.4193924392], [0.982, 0.09005453285, 14143.4952424306], [0.865, 1.73949953555, 3930.2096962196], [0.581, 2.26949174067, 5884.9268465832], [0.524, 5.65662503159, 529.6909650946], [0.473, 6.22750969242, 6309.3741697912], [0.451, 1.53288619213, 18073.7049386502], [0.364, 3.61614477374, 13367.9726311066], [0.372, 3.2247072132, 6275.9623029906], [0.268, 2.34341267879, 11790.6290886588], [0.322, 0.94084045832, 6069.7767545534], [0.232, 0.26781182579, 7058.5984613154], [0.216, 6.05952221329, 10977.078804699], [0.232, 2.93325646109, 22003.9146348698], [0.204, 3.86264841382, 6496.3749454294], [0.202, 2.81892511133, 15720.8387848784], [0.185, 4.93512381859, 12036.4607348882], [0.22, 3.99305643742, 6812.766815086], [0.166, 1.74970002999, 11506.7697697936], [0.212, 1.57166285369, 4694.0029547076], [0.157, 1.08259734788, 5643.1785636774], [0.154, 5.99434678412, 5486.777843175], [0.144, 5.23285656085, 78051.5857313169], [0.144, 1.16454655948, 90617.7374312997], [0.137, 2.67760436027, 6290.1893969922], [0.18, 2.06509026215, 7084.8967811152], [0.121, 5.90212574947, 9225.539273283], [0.15, 2.00175038718, 5230.807466803], [0.149, 5.06157254516, 17298.1823273262], [0.118, 5.39979058038, 3340.6124266998], [0.161, 3.32421999691, 6283.3196674749], [0.121, 4.36722193162, 19651.048481098], [0.116, 5.83462858507, 4705.7323075436], [0.128, 4.35489873365, 25934.1243310894], [0.143, 0.0, 0.0], [0.109, 2.52157834166, 6438.4962494256], [0.099, 2.70727488041, 5216.5803728014], [0.103, 0.93782340879, 8827.3902698748], [0.082, 4.2921468039, 8635.9420037632], [0.079, 2.24085737326, 1059.3819301892], [0.097, 5.50959692365, 29864.334027309], [0.072, 0.21891639822, 21228.3920235458], [0.071, 2.86755026812, 6681.2248533996], [0.074, 2.20184828895, 37724.7534197482], [0.063, 4.45586625948, 7079.3738568078], [0.061, 0.63918772258, 33794.5437235286], [0.047, 2.09070235724, 3128.3887650958], [0.047, 3.325438433, 26087.9031415742], [0.049, 1.60680905005, 6702.5604938666], [0.057, 0.11215813438, 29088.811415985], [0.056, 5.47982934911, 775.522611324], [0.05, 1.89396788463, 12139.5535091068], [0.047, 2.9721490724, 20426.571092422], [0.041, 5.5532939489, 11015.1064773348], [0.041, 5.91861144924, 23581.2581773176], [0.045, 4.95273290181, 5863.5912061162], [0.05, 3.62740835096, 41654.9631159678], [0.037, 6.09033460601, 64809.80550494129], [0.037, 5.86153655431, 12566.1516999828], [0.046, 1.65798680284, 25158.6017197654], [0.038, 2.00673650251, 426.598190876], [0.036, 6.24373396652, 6283.14316029419], [0.036, 0.40465162918, 6283.0085396886], [0.032, 6.03707103538, 2942.4634232916], [0.041, 4.86809570283, 1592.5960136328], [0.028, 4.38359423735, 7632.9432596502], [0.028, 6.03334294232, 17789.845619785], [0.026, 3.88971333608, 5331.3574437408], [0.026, 5.94932724051, 16496.3613962024], [0.031, 1.44666331503, 16730.4636895958], [0.026, 6.26376705837, 23543.23050468179], [0.033, 0.93797239147, 213.299095438], [0.026, 3.71858432944, 13095.8426650774], [0.027, 0.60565274405, 10988.808157535], [0.023, 4.4438898555, 18849.2275499742], [0.028, 1.53862289477, 6279.4854213396], [0.028, 1.96831814872, 6286.6662786432], [0.028, 5.78094918529, 15110.4661198662], [0.026, 2.48165809843, 5729.506447149], [0.02, 3.85655029499, 9623.6882766912], [0.021, 5.83006047147, 7234.794256242], [0.021, 0.69628570421, 398.1490034082], [0.022, 5.02222806555, 6127.6554505572], [0.02, 3.4761126529, 6148.010769956], [0.02, 0.90769829044, 5481.2549188676], [0.02, 0.03081589303, 6418.1409300268], [0.02, 3.74220084927, 1589.0728952838], [0.021, 4.00149269576, 3154.6870848956], [0.018, 1.58348238359, 2118.7638603784], [0.019, 0.85407021371, 14712.317116458]], [[1.662, 1.62703209173, 84334.66158130829], [0.492, 2.41382223971, 1047.7473117547], [0.344, 2.24353004539, 5507.5532386674], [0.258, 6.00906896311, 5223.6939198022], [0.131, 0.9544734524, 6283.0758499914], [0.086, 1.67530247303, 7860.4193924392], [0.09, 0.97606804452, 1577.3435424478], [0.09, 0.37899871725, 2352.8661537718], [0.089, 6.25807507963, 10213.285546211], [0.075, 0.84213523741, 167621.5758508619], [0.052, 1.70501566089, 14143.4952424306], [0.057, 6.15295833679, 12194.0329146209], [0.051, 1.2761601674, 5753.3848848968], [0.051, 5.37229738682, 6812.766815086], [0.034, 1.73672994279, 7058.5984613154], [0.038, 2.77761031485, 10988.808157535], [0.046, 3.38617099014, 156475.2902479957], [0.021, 1.95248349228, 8827.3902698748], [0.018, 3.33419222028, 8429.2412664666], [0.019, 4.32945160287, 17789.845619785], [0.017, 0.66191210656, 6283.0085396886], [0.018, 3.74885333072, 11769.8536931664], [0.017, 4.23058370776, 10977.078804699], [0.017, 1.78116162721, 5486.777843175], [0.021, 1.36972913918, 12036.4607348882], [0.017, 2.79601092529, 796.2980068164], [0.015, 0.4308784885, 11790.6290886588], [0.017, 1.35132152761, 78051.5857313169], [0.015, 1.17032155085, 213.299095438], [0.018, 2.85221514199, 5088.6288397668], [0.017, 0.21780913672, 6283.14316029419], [0.013, 1.21201504386, 25132.3033999656], [0.012, 1.12953712197, 90617.7374312997], [0.012, 5.13714452592, 7079.3738568078], [0.013, 3.79842135217, 4933.2084403326], [0.012, 4.89407978213, 3738.761430108], [0.015, 6.05682328852, 398.1490034082], [0.014, 4.81029291856, 4694.0029547076], [0.011, 0.61684523405, 3128.3887650958], [0.011, 5.328765385, 6040.3472460174], [0.014, 5.27227350286, 4535.0594369244], [0.011, 2.39292099451, 5331.3574437408], [0.01, 4.4529653271, 6525.8044539654], [0.014, 4.66400985037, 8031.0922630584], [0.01, 3.22472385926, 9437.762934887], [0.011, 3.80913404437, 801.8209311238], [0.01, 5.15032130575, 11371.7046897582], [0.013, 0.98720797401, 5729.506447149], [0.009, 5.94191743597, 7632.9432596502]], [[0.011, 0.23877262399, 7860.4193924392], [0.009, 1.16069982609, 5507.5532386674], [0.008, 1.65357552925, 5884.9268465832], [0.008, 2.86720038197, 7058.5984613154], [0.007, 3.04818741666, 5486.777843175], [0.007, 2.59437103785, 529.6909650946], [0.008, 4.02863090524, 6256.7775301916], [0.008, 2.42003508927, 5753.3848848968], [0.006, 0.84181087594, 6275.9623029906], [0.006, 5.40160929468, 1577.3435424478], [0.007, 2.73399865247, 6309.3741697912]], [[0.004, 0.79662198849, 6438.4962494256], [0.005, 0.84308705203, 1047.7473117547], [0.005, 0.05711572303, 84334.66158130829], [0.003, 3.46779895686, 6279.5527316424], [0.003, 2.89822201212, 6127.6554505572]]]

This table contains Earth’s periodic terms (all of them) from the planetary theory VSOP87 for the heliocentric latitude at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in page 420.

pymeeus.Earth.VSOP87_B_J2000 = [[[280.0, 3.199, 84334.662], [102.0, 5.422, 5507.553], [80.0, 3.88, 5223.69], [44.0, 3.7, 2352.87], [32.0, 4.0, 1577.34]], [[227778.0, 3.413766, 6283.07585], [3806.0, 3.3706, 12566.1517], [3620.0, 0.0, 0.0], [72.0, 3.33, 18849.23], [8.0, 3.89, 5507.55], [8.0, 1.79, 5223.69], [6.0, 5.2, 2352.87]], [[9721.0, 5.1519, 6283.07585], [233.0, 3.1416, 0.0], [134.0, 0.644, 12566.152], [7.0, 1.07, 18849.23]], [[276.0, 0.595, 6283.076], [17.0, 3.14, 0.0], [4.0, 0.12, 12566.15]], [[6.0, 2.27, 6283.08], [1.0, 0.0, 0.0]]]

This table contains Earth’s most important periodic terms from the planetary theory VSOP87 for the heliocentric latitude, referred to the equinox J2000.0. In Meeus’ book these values can be found in page 420 and page 173.

pymeeus.Earth.VSOP87_L = [[[175347045.673, 0.0, 0.0], [3341656.456, 4.66925680417, 6283.0758499914], [34894.275, 4.62610241759, 12566.1516999828], [3417.571, 2.82886579606, 3.523118349], [3497.056, 2.74411800971, 5753.3848848968], [3135.896, 3.62767041758, 77713.7714681205], [2676.218, 4.41808351397, 7860.4193924392], [2342.687, 6.13516237631, 3930.2096962196], [1273.166, 2.03709655772, 529.6909650946], [1324.292, 0.74246356352, 11506.7697697936], [901.855, 2.04505443513, 26.2983197998], [1199.167, 1.10962944315, 1577.3435424478], [857.223, 3.50849156957, 398.1490034082], [779.786, 1.17882652114, 5223.6939198022], [990.25, 5.23268129594, 5884.9268465832], [753.141, 2.53339053818, 5507.5532386674], [505.264, 4.58292563052, 18849.2275499742], [492.379, 4.20506639861, 775.522611324], [356.655, 2.91954116867, 0.0673103028], [284.125, 1.89869034186, 796.2980068164], [242.81, 0.34481140906, 5486.777843175], [317.087, 5.84901952218, 11790.6290886588], [271.039, 0.31488607649, 10977.078804699], [206.16, 4.80646606059, 2544.3144198834], [205.385, 1.86947813692, 5573.1428014331], [202.261, 2.45767795458, 6069.7767545534], [126.184, 1.0830263021, 20.7753954924], [155.516, 0.83306073807, 213.299095438], [115.132, 0.64544911683, 0.9803210682], [102.851, 0.63599846727, 4694.0029547076], [101.724, 4.26679821365, 7.1135470008], [99.206, 6.20992940258, 2146.1654164752], [132.212, 3.41118275555, 2942.4634232916], [97.607, 0.6810127227, 155.4203994342], [85.128, 1.29870743025, 6275.9623029906], [74.651, 1.75508916159, 5088.6288397668], [101.895, 0.97569221824, 15720.8387848784], [84.711, 3.67080093025, 71430.69561812909], [73.547, 4.67926565481, 801.8209311238], [73.874, 3.50319443167, 3154.6870848956], [78.756, 3.03698313141, 12036.4607348882], [79.637, 1.807913307, 17260.1546546904], [85.803, 5.98322631256, 161000.6857376741], [56.963, 2.78430398043, 6286.5989683404], [61.148, 1.81839811024, 7084.8967811152], [69.627, 0.83297596966, 9437.762934887], [56.116, 4.38694880779, 14143.4952424306], [62.449, 3.97763880587, 8827.3902698748], [51.145, 0.28306864501, 5856.4776591154], [55.577, 3.47006009062, 6279.5527316424], [41.036, 5.36817351402, 8429.2412664666], [51.605, 1.33282746983, 1748.016413067], [51.992, 0.18914945834, 12139.5535091068], [49.0, 0.48735065033, 1194.4470102246], [39.2, 6.16832995016, 10447.3878396044], [35.566, 1.77597314691, 6812.766815086], [36.77, 6.04133859347, 10213.285546211], [36.596, 2.56955238628, 1059.3819301892], [33.291, 0.59309499459, 17789.845619785], [35.954, 1.70876111898, 2352.8661537718], [40.938, 2.39850881707, 19651.048481098], [30.047, 2.73975123935, 1349.8674096588], [30.412, 0.44294464135, 83996.84731811189], [23.663, 0.48473567763, 8031.0922630584], [23.574, 2.06527720049, 3340.6124266998], [21.089, 4.14825464101, 951.7184062506], [24.738, 0.21484762138, 3.5904286518], [25.352, 3.16470953405, 4690.4798363586], [22.82, 5.22197888032, 4705.7323075436], [21.419, 1.42563735525, 16730.4636895958], [21.891, 5.55594302562, 553.5694028424], [17.481, 4.56052900359, 135.0650800354], [19.925, 5.22208471269, 12168.0026965746], [19.86, 5.77470167653, 6309.3741697912], [20.3, 0.37133792946, 283.8593188652], [14.421, 4.19315332546, 242.728603974], [16.225, 5.98837722564, 11769.8536931664], [15.077, 4.19567181073, 6256.7775301916], [19.124, 3.82219996949, 23581.2581773176], [18.888, 5.38626880969, 149854.4001348079], [14.346, 3.72355084422, 38.0276726358], [17.898, 2.21490735647, 13367.9726311066], [12.054, 2.62229588349, 955.5997416086], [11.287, 0.17739328092, 4164.311989613], [13.971, 4.40138139996, 6681.2248533996], [13.621, 1.88934471407, 7632.9432596502], [12.503, 1.13052412208, 5.5229243074], [10.498, 5.35909518669, 1592.5960136328], [9.803, 0.99947478995, 11371.7046897582], [9.22, 4.57138609781, 4292.3308329504], [10.327, 6.19982566125, 6438.4962494256], [12.003, 1.003514567, 632.7837393132], [10.827, 0.32734520222, 103.0927742186], [8.356, 4.53902685948, 25132.3033999656], [10.005, 6.0291496328, 5746.271337896], [8.409, 3.29946744189, 7234.794256242], [8.006, 5.82145271907, 28.4491874678], [10.523, 0.93871805506, 11926.2544136688], [7.686, 3.12142363172, 7238.6755916], [9.378, 2.62414241032, 5760.4984318976], [8.127, 6.11228001785, 4732.0306273434], [9.232, 0.48343968736, 522.5774180938], [9.802, 5.24413991147, 27511.4678735372], [7.871, 0.99590177926, 5643.1785636774], [8.123, 6.2705301365, 426.598190876], [9.048, 5.33686335897, 6386.16862421], [8.62, 4.16538210888, 7058.5984613154], [6.297, 4.71724819317, 6836.6452528338], [7.575, 3.97382858911, 11499.6562227928], [7.756, 2.95729056763, 23013.5395395872], [7.314, 0.60652505806, 11513.8833167944], [5.955, 2.87641047971, 6283.14316029419], [6.534, 5.79072926033, 18073.7049386502], [7.188, 3.99831508699, 74.7815985673], [7.346, 4.38582365437, 316.3918696566], [5.413, 5.39199024641, 419.4846438752], [5.127, 2.36062848786, 10973.55568635], [7.056, 0.32258441903, 263.0839233728], [6.625, 3.66475158672, 17298.1823273262], [6.762, 5.91132535899, 90955.5516944961], [4.938, 5.73672165674, 9917.6968745098], [5.547, 2.45152597661, 12352.8526045448], [5.958, 3.32051344676, 6283.0085396886], [4.471, 2.06385999536, 7079.3738568078], [6.153, 1.45823331144, 233141.3144043615], [4.348, 4.4234217548, 5216.5803728014], [6.123, 1.07494905258, 19804.8272915828], [4.488, 3.6528503715, 206.1855484372], [4.02, 0.83995823171, 20.3553193988], [5.188, 4.06503864016, 6208.2942514241], [5.307, 0.38217636096, 31441.6775697568], [3.785, 2.34369213733, 3.881335358], [4.497, 3.27230796845, 11015.1064773348], [4.132, 0.92128915753, 3738.761430108], [3.521, 5.97844807108, 3894.1818295422], [4.215, 1.90601120623, 245.8316462294], [3.701, 5.03069397926, 536.8045120954], [3.865, 1.82634360607, 11856.2186514245], [3.652, 1.01838584934, 16200.7727245012], [3.39, 0.97785123922, 8635.9420037632], [3.737, 2.95380107829, 3128.3887650958], [3.507, 3.71291946325, 6290.1893969922], [3.086, 3.64646921512, 10.6366653498], [3.397, 1.10590684017, 14712.317116458], [3.334, 0.83684924911, 6496.3749454294], [2.805, 2.58504514144, 14314.1681130498], [3.65, 1.08344142571, 88860.05707098669], [3.388, 3.20185096055, 5120.6011455836], [3.252, 3.47859752062, 6133.5126528568], [2.553, 3.94869034189, 1990.745017041], [3.52, 2.05559692878, 244287.60000722768], [2.565, 1.560717849, 23543.23050468179], [2.621, 3.85639359951, 266.6070417218], [2.955, 3.39692949667, 9225.539273283], [2.876, 6.02635617464, 154717.6098876827], [2.395, 1.16131956403, 10984.1923516998], [3.161, 1.32798718453, 10873.9860304804], [3.163, 5.08946464629, 21228.3920235458], [2.361, 4.27212906992, 6040.3472460174], [3.03, 1.80209931347, 35371.8872659764], [2.343, 3.576898605, 10969.9652576982], [2.618, 2.57870156528, 22483.84857449259], [2.113, 3.71393780256, 65147.6197681377], [2.019, 0.81393923319, 170.6728706192], [2.003, 0.38091017375, 6172.869528772], [2.506, 3.74379142438, 10575.4066829418], [2.381, 0.10581361289, 7.046236698], [1.949, 4.86892513469, 36.0278666774], [2.074, 4.2279477457, 5650.2921106782], [1.924, 5.5946054986, 6282.0955289232], [1.949, 1.07002512703, 5230.807466803], [1.988, 5.19736046771, 6262.300454499], [1.887, 3.74365662683, 23.8784377478], [1.787, 1.25929682929, 12559.038152982], [1.883, 1.90364058477, 15.252471185], [1.816, 3.68083868442, 15110.4661198662], [1.701, 4.4110589538, 110.2063212194], [1.99, 3.93295788548, 6206.8097787158], [2.103, 0.75354917468, 13521.7514415914], [1.774, 0.48747535361, 1551.045222648], [1.882, 0.86684493432, 22003.9146348698], [1.924, 1.22898324132, 709.9330485583], [2.009, 4.6285092198, 6037.244203762], [1.924, 0.60231842508, 6284.0561710596], [1.596, 3.98332956992, 13916.0191096416], [1.664, 4.41939715469, 8662.240323563], [1.971, 1.04560500503, 18209.33026366019], [1.942, 4.31335979989, 6244.9428143536], [1.476, 0.93271367331, 2379.1644735716], [1.81, 0.49112137707, 1.4844727083], [1.346, 1.51574702235, 4136.9104335162], [1.528, 5.61835711404, 6127.6554505572], [1.791, 3.22187270126, 39302.096962196], [1.747, 3.05638656738, 18319.5365848796], [1.431, 4.51153808594, 20426.571092422], [1.695, 0.22047718414, 25158.6017197654], [1.242, 4.46665769933, 17256.6315363414], [1.463, 4.69242679213, 14945.3161735544], [1.205, 1.86912144659, 4590.910180489], [1.192, 2.74227166898, 12569.6748183318], [1.222, 5.18120087482, 5333.9002410216], [1.39, 5.42894648983, 143571.32428481648], [1.473, 1.70479245805, 11712.9553182308], [1.362, 2.61069503292, 6062.6632075526], [1.148, 6.0300180054, 3634.6210245184], [1.198, 5.15294130422, 10177.2576795336], [1.266, 0.11421493643, 18422.62935909819], [1.411, 1.09908857534, 3496.032826134], [1.349, 2.99805109633, 17654.7805397496], [1.253, 2.79850152848, 167283.7615876655], [1.311, 1.60942984879, 5481.2549188676], [1.079, 6.20304501787, 3.2863574178], [1.181, 1.20653776978, 131.5419616864], [1.254, 5.45103277798, 6076.8903015542], [1.035, 2.32142722747, 7342.4577801806], [1.117, 0.38838354256, 949.1756089698], [0.966, 3.18341890851, 11087.2851259184], [1.171, 3.39635049962, 12562.6285816338], [1.121, 0.72627490378, 220.4126424388], [1.024, 2.19378315386, 11403.676995575], [0.888, 3.91173199285, 4686.8894077068], [0.91, 1.98802695087, 735.8765135318], [0.83, 0.48984915507, 24072.9214697764], [1.096, 6.17377835617, 5436.9930152402], [0.908, 0.44959639433, 7477.522860216], [0.974, 1.52996238356, 9623.6882766912], [0.84, 1.79543266333, 5429.8794682394], [0.778, 6.17699177946, 38.1330356378], [0.776, 4.09855402433, 14.2270940016], [1.068, 4.64200173735, 43232.3066584156], [0.954, 1.49988435748, 1162.4747044078], [0.907, 0.86986870809, 10344.2950653858], [0.931, 4.06044689031, 28766.924424484], [0.739, 5.04368197372, 639.897286314], [0.937, 3.4688469896, 1589.0728952838], [0.763, 5.86304932998, 16858.4825329332], [0.953, 4.20801492835, 11190.377900137], [0.708, 1.7289998894, 13095.8426650774], [0.969, 1.64439522215, 29088.811415985], [0.717, 0.16688678895, 11.729352836], [0.962, 3.53092337542, 12416.5885028482], [0.747, 5.77866940346, 12592.4500197826], [0.672, 1.91095796194, 3.9321532631], [0.671, 5.46240843677, 18052.9295431578], [0.675, 6.28311558823, 4535.0594369244], [0.684, 0.3997501208, 5849.3641121146], [0.799, 0.29851185294, 12132.439962106], [0.758, 0.96370823331, 1052.2683831884], [0.782, 5.33878339919, 13517.8701062334], [0.73, 1.70106160291, 17267.26820169119], [0.749, 2.59599901875, 11609.8625440122], [0.734, 2.78417782952, 640.8776073822], [0.688, 5.15048287468, 16496.3613962024], [0.77, 1.62469589333, 4701.1165017084], [0.633, 2.20587893893, 25934.1243310894], [0.76, 4.21317219403, 377.3736079158], [0.584, 2.13420121623, 10557.5941608238], [0.574, 0.24250054587, 9779.1086761254], [0.573, 3.16435264609, 533.2140834436], [0.685, 3.19344289472, 12146.6670561076], [0.675, 0.96179233959, 10454.5013866052], [0.648, 1.46327342555, 6268.8487559898], [0.589, 2.50543543638, 3097.88382272579], [0.551, 5.28099026956, 9388.0059094152], [0.696, 3.65342150016, 4804.209275927], [0.669, 2.51030077026, 2388.8940204492], [0.55, 0.06883864342, 20199.094959633], [0.629, 4.13350995675, 45892.73043315699], [0.678, 6.09190163533, 135.62532501], [0.593, 1.50136257618, 226858.23855437007], [0.542, 3.58573645173, 6148.010769956], [0.682, 5.02203067788, 17253.04110768959], [0.565, 4.2930923861, 11933.3679606696], [0.486, 0.77746204893, 27.4015560968], [0.503, 0.58963565969, 15671.0817594066], [0.616, 4.06539884128, 227.476132789], [0.583, 6.12695541996, 18875.525869774], [0.537, 2.1505644098, 21954.15760939799], [0.669, 6.06986269566, 47162.5163546352], [0.475, 0.4034384211, 6915.8595893046], [0.54, 2.83444222174, 5326.7866940208], [0.53, 5.26359885263, 10988.808157535], [0.582, 3.24533095664, 153.7788104848], [0.641, 3.24711791371, 2107.0345075424], [0.621, 3.09698523779, 33019.0211122046], [0.466, 3.14982372198, 10440.2742926036], [0.466, 0.90708835657, 5966.6839803348], [0.528, 0.8192645447, 813.5502839598], [0.603, 3.81378921927, 316428.22867391503], [0.559, 1.81894804124, 17996.0311682222], [0.437, 2.28625594435, 6303.8512454838], [0.518, 4.86069178322, 20597.2439630412], [0.424, 6.23520018693, 6489.2613984286], [0.518, 6.17617826756, 0.2438174835], [0.404, 5.72804304258, 5642.1982426092], [0.458, 1.34117773915, 6287.0080032545], [0.548, 5.6845445832, 155427.542936241], [0.547, 1.03391472061, 3646.3503773544], [0.428, 4.69800981138, 846.0828347512], [0.413, 6.02520699406, 6279.4854213396], [0.534, 3.03030638223, 66567.48586525429], [0.383, 1.49056949125, 19800.9459562248], [0.41, 5.28319622279, 18451.07854656599], [0.352, 4.68891600359, 4907.3020501456], [0.48, 5.36572651091, 348.924420448], [0.344, 5.89157452896, 6546.1597733642], [0.34, 0.3755742644, 13119.72110282519], [0.434, 4.98417785901, 6702.5604938666], [0.332, 2.68902519126, 29296.6153895786], [0.448, 2.16478480251, 5905.7022420756], [0.344, 2.06546633735, 49.7570254718], [0.315, 1.24023811803, 4061.2192153944], [0.324, 2.30897526929, 5017.508371365], [0.413, 0.17171692962, 6286.6662786432], [0.431, 3.86601101393, 12489.8856287072], [0.349, 4.55372342974, 4933.2084403326], [0.323, 0.41971136084, 10770.8932562618], [0.341, 2.68612860807, 11.0457002639], [0.316, 3.52936906658, 17782.7320727842], [0.315, 5.63357264999, 568.8218740274], [0.34, 3.83571212349, 10660.6869350424], [0.297, 0.62691416712, 20995.3929664494], [0.405, 1.00085779471, 16460.33352952499], [0.414, 1.21998752076, 51092.7260508548], [0.336, 4.71465945226, 6179.9830757728], [0.361, 3.71227508354, 28237.2334593894], [0.385, 6.21925225757, 24356.7807886416], [0.327, 1.05606504715, 11919.140866668], [0.327, 6.14222420989, 6254.6266625236], [0.268, 2.47224339737, 664.75604513], [0.269, 1.86207884109, 23141.5583829246], [0.345, 0.93461290184, 6058.7310542895], [0.296, 4.5168755718, 6418.1409300268], [0.353, 4.50033653082, 36949.2308084242], [0.26, 4.04963546305, 6525.8044539654], [0.298, 2.20046722622, 156137.47598479927], [0.253, 3.49900838384, 29864.334027309], [0.254, 2.44901693835, 5331.3574437408], [0.296, 0.84347588787, 5729.506447149], [0.298, 1.29194706125, 22805.7355659936], [0.241, 2.00721280805, 16737.5772365966], [0.311, 1.23668016334, 6281.5913772831], [0.24, 2.51650377121, 6245.0481773556], [0.332, 3.55576945724, 7668.6374249425], [0.264, 4.44052061202, 12964.300703391], [0.257, 1.79654471948, 11080.1715789176], [0.26, 3.3307759842, 5888.4499649322], [0.285, 0.3088636143, 11823.1616394502], [0.29, 5.70141882483, 77.673770428], [0.255, 4.0093966444, 5881.4037282342], [0.253, 4.73318493678, 16723.350142595], [0.228, 0.95333661324, 5540.0857894588], [0.319, 1.38633229189, 163096.18036118348], [0.224, 1.65156322696, 10027.9031957292], [0.226, 0.34106460604, 17796.9591667858], [0.236, 4.19817431922, 19.66976089979], [0.28, 4.1408026897, 12539.853380183], [0.275, 5.50306930248, 32.5325507914], [0.223, 5.23334210294, 56.8983749356], [0.217, 6.08587881787, 6805.6532680852], [0.28, 4.52472044653, 6016.4688082696], [0.227, 5.06509843737, 6277.552925684], [0.226, 5.17755154305, 11720.0688652316], [0.245, 3.96486270306, 22.7752014508], [0.22, 4.7207808197, 6.62855890001], [0.207, 5.71701403951, 41.5507909848], [0.204, 3.9122741125, 2699.7348193176], [0.209, 0.86881969011, 6321.1035226272], [0.2, 2.11984445273, 4274.5183108324], [0.2, 5.39839888163, 6019.9919266186], [0.209, 5.67606291663, 11293.4706743556], [0.252, 1.64965729351, 9380.9596727172], [0.275, 5.04826903506, 73.297125859], [0.208, 1.88207277133, 11300.5842213564], [0.272, 0.74640926842, 1975.492545856], [0.199, 3.30836672397, 22743.4093795164], [0.269, 4.48560812155, 64471.99124174489], [0.192, 2.17464236325, 5863.5912061162], [0.228, 5.85373115869, 128.0188433374], [0.261, 2.64321183295, 55022.9357470744], [0.22, 5.75012110079, 29.429508536], [0.187, 4.03230554718, 467.9649903544], [0.2, 5.60556112058, 1066.49547719], [0.231, 1.09802712785, 12341.8069042809], [0.199, 0.295006252, 149.5631971346], [0.249, 5.10473210814, 7875.6718636242], [0.208, 0.93013835019, 14919.0178537546], [0.179, 0.87104393079, 12721.572099417], [0.203, 1.56920753653, 28286.9904848612], [0.179, 2.47036386443, 16062.1845261168], [0.198, 3.54061588502, 30.914125635], [0.171, 3.45356518113, 5327.4761083828], [0.183, 0.72325421604, 6272.0301497275], [0.216, 2.97174580686, 19402.7969528166], [0.168, 2.51550550242, 23937.856389741], [0.195, 0.09045393425, 156.4007205024], [0.179, 4.4947179809, 31415.379249957], [0.216, 0.42177594328, 23539.7073863328], [0.189, 0.37542530191, 9814.6041002912], [0.218, 2.36835880025, 16627.3709153772], [0.166, 4.23182968446, 16840.67001081519], [0.2, 2.02153258098, 16097.6799502826], [0.169, 0.91318727, 95.9792272178], [0.211, 5.73370637657, 151.8972810852], [0.204, 0.42643085174, 515.463871093], [0.212, 3.00233538977, 12043.574281889], [0.192, 5.46153589821, 6379.0550772092], [0.165, 1.38698167064, 4171.4255366138], [0.16, 6.23798383332, 202.2533951741], [0.215, 0.20889073407, 5621.8429232104], [0.181, 4.12439203622, 13341.6743113068], [0.153, 1.24460848836, 29826.3063546732], [0.15, 3.12999753018, 799.8211251654], [0.175, 4.55671604437, 239424.39025435288], [0.192, 1.33928820063, 394.6258850592], [0.149, 2.65697593276, 21.335640467], [0.146, 5.58021191726, 412.3710968744], [0.156, 3.75650175503, 12323.4230960088], [0.143, 3.75708566606, 58864.5439181463], [0.143, 3.28248547724, 29.8214381488], [0.144, 1.07862546598, 1265.5674786264], [0.148, 0.23389236655, 10021.8372800994], [0.193, 5.92751083086, 40879.4405046438], [0.14, 4.97612440269, 158.9435177832], [0.148, 2.61640453469, 17157.0618804718], [0.141, 3.66871308723, 26084.0218062162], [0.147, 5.09968173403, 661.232926781], [0.146, 4.96885605695, 57375.8019008462], [0.142, 0.78678347839, 12779.4507954208], [0.134, 4.79432636012, 111.1866422876], [0.14, 1.27748013377, 107.6635239386], [0.169, 2.74893543762, 26735.9452622132], [0.165, 3.95288000638, 6357.8574485587], [0.183, 5.43418358741, 369.6998159404], [0.134, 3.09132862833, 17.812522118], [0.132, 3.05633896779, 22490.9621214934], [0.134, 4.09472795832, 6599.467719648], [0.181, 4.22950689891, 966.9708774356], [0.152, 5.28885894415, 12669.2444742014], [0.15, 5.86819430908, 97238.62754448749], [0.142, 5.87266532526, 22476.73502749179], [0.145, 5.07330784304, 87.30820453981], [0.133, 5.65471067133, 31.9723058168], [0.124, 2.83326217072, 12566.2190102856], [0.135, 3.12861731644, 32217.2001810808], [0.137, 0.86487461904, 9924.8104215106], [0.172, 1.98369595114, 174242.4659640497], [0.17, 4.41115280254, 327574.51427678124], [0.151, 0.46542099527, 39609.6545831656], [0.148, 2.13439571118, 491.6632924588], [0.153, 3.78801830344, 17363.24742890899], [0.165, 5.31654110459, 16943.7627850338], [0.165, 4.06747587817, 58953.145443294], [0.118, 0.63846333239, 6.0659156298], [0.159, 0.86086959274, 221995.02880149524], [0.119, 5.96432932413, 1385.8952763362], [0.114, 5.16516114595, 25685.872802808], [0.112, 3.39403722178, 21393.5419698576], [0.112, 4.92889233335, 56.8032621698], [0.119, 2.40637635942, 18635.9284545362], [0.115, 0.23374479051, 418.9243989006], [0.122, 0.93575234049, 24492.40611365159], [0.115, 4.58880032176, 26709.6469424134], [0.13, 4.85539251, 22345.2603761082], [0.14, 1.09413073202, 44809.6502008634], [0.112, 6.05401806281, 433.7117378768], [0.104, 1.54931540602, 127.9515330346], [0.105, 4.82620858888, 33794.5437235286], [0.102, 4.12448497391, 15664.03552270859], [0.107, 4.67919356465, 77690.75950573849], [0.118, 4.5232017012, 19004.6479494084], [0.107, 5.71774478555, 77736.78343050249], [0.143, 1.81201813018, 4214.0690150848], [0.125, 1.14419195615, 625.6701923124], [0.124, 3.27736514057, 12566.08438968], [0.11, 1.08682570828, 2787.0430238574], [0.105, 1.78318141871, 18139.2945014159], [0.102, 4.75119578149, 12242.6462833254], [0.137, 1.43510636754, 86464.6133168312], [0.101, 4.91289409429, 401.6721217572], [0.129, 1.23567904485, 12029.3471878874], [0.138, 2.45654707999, 7576.560073574], [0.103, 0.40004073416, 90279.92316810328], [0.108, 0.9898977494, 5636.0650166766], [0.117, 5.17362872063, 34520.3093093808], [0.1, 3.95534628189, 5547.1993364596], [0.098, 1.28118280598, 21548.9623692918], [0.097, 3.34717130592, 16310.9790457206], [0.098, 4.37041908717, 34513.2630726828], [0.125, 2.7216443296, 24065.80792277559], [0.102, 0.66938025772, 10239.5838660108], [0.119, 1.21689479331, 1478.8665740644], [0.094, 1.99595224256, 13362.4497067992], [0.094, 4.30965982872, 26880.3198130326], [0.095, 2.89807657534, 34911.412076091], [0.106, 1.0015665359, 16522.6597160022], [0.097, 0.89642320201, 71980.63357473118], [0.116, 4.19967201116, 206.7007372966], [0.099, 1.37437847718, 1039.0266107904], [0.126, 3.21642544972, 305281.9430710488], [0.094, 0.6899787606, 7834.1210726394], [0.094, 5.58132218606, 3104.9300594238], [0.095, 3.0382374111, 8982.810669309], [0.108, 0.52696637156, 276.7457718644], [0.124, 3.43899862683, 172146.9713405403], [0.102, 1.04031728553, 95143.1329209781], [0.104, 3.39218586218, 290.972865866], [0.11, 3.68205877433, 22380.755800274], [0.117, 0.78475956902, 83286.91426955358], [0.083, 0.18241793425, 15141.390794312], [0.089, 4.45371820659, 792.7748884674], [0.082, 4.80703651241, 6819.8803620868], [0.087, 3.43122851097, 27707.5424942948], [0.101, 5.32081603011, 2301.58581590939], [0.082, 0.87060089842, 10241.2022911672], [0.086, 4.61919461931, 36147.4098773004], [0.095, 2.87032884659, 23020.65308658799], [0.088, 3.2113316569, 33326.5787331742], [0.08, 1.84900424847, 21424.4666443034], [0.101, 4.18796434479, 30666.1549584328], [0.107, 5.77864921649, 34115.1140692746], [0.104, 1.08739495962, 6288.5987742988], [0.11, 3.32898859416, 72140.6286666874], [0.087, 4.40657711727, 142.1786270362], [0.109, 1.94546030825, 24279.10701821359], [0.087, 4.32472045435, 742.9900605326], [0.107, 4.91580912547, 277.0349937414], [0.088, 2.10180220766, 26482.1708096244], [0.086, 4.01887374432, 12491.3701014155], [0.106, 5.49092372854, 62883.3551395136], [0.08, 6.19781316983, 6709.6740408674], [0.088, 2.09872810657, 238004.5241572363], [0.083, 4.90662164029, 51.28033786241], [0.095, 4.13387406591, 18216.443810661], [0.078, 6.0694939168, 148434.53403769128], [0.079, 3.03048221644, 838.9692877504], [0.074, 5.49813051211, 29026.48522950779], [0.073, 3.05008665738, 567.7186377304], [0.084, 0.46604373274, 45.1412196366], [0.093, 2.52267536308, 48739.859897083], [0.076, 1.76418124905, 41654.9631159678], [0.067, 5.77851227793, 6311.5250374592], [0.062, 3.32967880172, 15508.6151232744], [0.079, 5.59773841328, 71960.38658322369], [0.057, 3.90629505268, 5999.2165311262], [0.061, 0.05695043232, 7856.89627409019], [0.061, 5.63297958433, 7863.9425107882], [0.065, 3.72178394016, 12573.2652469836], [0.057, 4.18217219541, 26087.9031415742], [0.066, 3.92262333487, 69853.3520756813], [0.053, 5.51119362045, 77710.24834977149], [0.053, 4.88573986961, 77717.29458646949], [0.062, 2.88876342225, 9411.4646150872], [0.051, 1.12657183874, 82576.9812209953], [0.045, 2.95671076719, 24602.61243487099], [0.04, 5.55145719241, 12565.1713789146], [0.039, 1.20838190039, 18842.11400297339], [0.045, 3.18590558749, 45585.1728121874], [0.049, 2.44790934886, 13613.804277336]], [[628331966747.491, 0.0, 0.0], [206058.863, 2.67823455584, 6283.0758499914], [4303.43, 2.63512650414, 12566.1516999828], [425.264, 1.59046980729, 3.523118349], [108.977, 2.96618001993, 1577.3435424478], [93.478, 2.59212835365, 18849.2275499742], [119.261, 5.79557487799, 26.2983197998], [72.122, 1.13846158196, 529.6909650946], [67.768, 1.87472304791, 398.1490034082], [67.327, 4.40918235168, 5507.5532386674], [59.027, 2.8879703846, 5223.6939198022], [55.976, 2.17471680261, 155.4203994342], [45.407, 0.39803079805, 796.2980068164], [36.369, 0.46624739835, 775.522611324], [28.958, 2.64707383882, 7.1135470008], [19.097, 1.84628332577, 5486.777843175], [20.844, 5.34138275149, 0.9803210682], [18.508, 4.96855124577, 213.299095438], [16.233, 0.03216483047, 2544.3144198834], [17.293, 2.99116864949, 6275.9623029906], [15.832, 1.43049285325, 2146.1654164752], [14.615, 1.20532366323, 10977.078804699], [11.877, 3.25804815607, 5088.6288397668], [11.514, 2.07502418155, 4694.0029547076], [9.721, 4.23925472239, 1349.8674096588], [9.969, 1.30262991097, 6286.5989683404], [9.452, 2.69957062864, 242.728603974], [12.461, 2.83432285512, 1748.016413067], [11.808, 5.2737979048, 1194.4470102246], [8.577, 5.64475868067, 951.7184062506], [10.641, 0.76614199202, 553.5694028424], [7.576, 5.30062664886, 2352.8661537718], [5.834, 1.76649917904, 1059.3819301892], [6.385, 2.65033984967, 9437.762934887], [5.223, 5.66135767624, 71430.69561812909], [5.305, 0.90857521574, 3154.6870848956], [6.101, 4.66632584188, 4690.4798363586], [4.33, 0.24102555403, 6812.766815086], [5.041, 1.42490103709, 6438.4962494256], [4.259, 0.77355900599, 10447.3878396044], [5.198, 1.85353197345, 801.8209311238], [3.744, 2.00119516488, 8031.0922630584], [3.558, 2.42901552681, 14143.4952424306], [3.372, 3.86210700128, 1592.5960136328], [3.374, 0.88776219727, 12036.4607348882], [3.175, 3.18785710594, 4705.7323075436], [3.221, 0.61599835472, 8429.2412664666], [4.132, 5.23992859705, 7084.8967811152], [2.97, 6.07026318493, 4292.3308329504], [2.9, 2.32464208411, 20.3553193988], [3.504, 4.79975694359, 6279.5527316424], [2.95, 1.43108874817, 5746.271337896], [2.697, 4.80368225199, 7234.794256242], [2.531, 6.22290682655, 6836.6452528338], [2.745, 0.93466065396, 5760.4984318976], [3.25, 3.39954640038, 7632.9432596502], [2.277, 5.00277837672, 17789.845619785], [2.075, 3.95534978634, 10213.285546211], [2.061, 2.22411683077, 5856.4776591154], [2.252, 5.67166499885, 11499.6562227928], [2.148, 5.20184578235, 11513.8833167944], [1.886, 0.53198320577, 3340.6124266998], [1.875, 4.73511970207, 83996.84731811189], [2.06, 2.54987293999, 25132.3033999656], [1.794, 1.47435409831, 4164.311989613], [1.778, 3.02473091781, 5.5229243074], [2.029, 0.90960209983, 6256.7775301916], [2.075, 2.26767270157, 522.5774180938], [1.772, 3.02622802353, 5753.3848848968], [1.569, 6.12410242782, 5216.5803728014], [1.59, 4.63713748247, 3.2863574178], [1.542, 4.20004448567, 13367.9726311066], [1.427, 1.19088061711, 3894.1818295422], [1.375, 3.09301252193, 135.0650800354], [1.359, 4.24532506641, 426.598190876], [1.34, 5.76511818622, 6040.3472460174], [1.284, 3.08524663344, 5643.1785636774], [1.25, 3.07748157144, 11926.2544136688], [1.551, 3.07665451458, 6681.2248533996], [1.268, 2.09196018331, 6290.1893969922], [1.144, 3.24444699514, 12168.0026965746], [1.248, 3.44504937285, 536.8045120954], [1.118, 2.31829670425, 16730.4636895958], [1.105, 5.31966001019, 23.8784377478], [1.051, 3.75015946014, 7860.4193924392], [1.025, 2.44688534235, 1990.745017041], [0.962, 0.81771017882, 3.881335358], [0.91, 0.41727865299, 7079.3738568078], [0.883, 5.16833917651, 11790.6290886588], [0.957, 4.07673573735, 6127.6554505572], [1.11, 3.90096793825, 11506.7697697936], [0.802, 3.88778875582, 10973.55568635], [0.78, 2.39934293755, 1589.0728952838], [0.758, 1.30034364248, 103.0927742186], [0.749, 4.962758033, 6496.3749454294], [0.765, 3.36312388424, 36.0278666774], [0.915, 5.41543742089, 206.1855484372], [0.776, 2.57589093871, 11371.7046897582], [0.772, 3.98369209464, 955.5997416086], [0.749, 5.17890001805, 10969.9652576982], [0.806, 0.34218864254, 9917.6968745098], [0.728, 5.20962563787, 38.0276726358], [0.685, 2.77592961854, 20.7753954924], [0.636, 4.28242193632, 28.4491874678], [0.608, 5.63278508906, 10984.1923516998], [0.704, 5.60738823665, 3738.761430108], [0.685, 0.38876148682, 15.252471185], [0.601, 0.73489602442, 419.4846438752], [0.716, 2.65279791438, 6309.3741697912], [0.584, 5.54502568227, 17298.1823273262], [0.65, 1.13379656406, 7058.5984613154], [0.688, 2.59683891779, 3496.032826134], [0.485, 0.44467180946, 12352.8526045448], [0.528, 2.74936967681, 3930.2096962196], [0.597, 5.27668281777, 10575.4066829418], [0.583, 3.1892906781, 4732.0306273434], [0.526, 5.01697321546, 5884.9268465832], [0.54, 1.29175137075, 640.8776073822], [0.473, 5.4995330697, 5230.807466803], [0.406, 5.21248452189, 220.4126424388], [0.395, 1.87474483222, 16200.7727245012], [0.37, 3.84921354713, 18073.7049386502], [0.367, 0.88533542778, 6283.14316029419], [0.379, 0.37983009325, 10177.2576795336], [0.356, 3.84145204913, 11712.9553182308], [0.374, 5.01577520608, 7.046236698], [0.381, 4.30250406634, 6062.6632075526], [0.471, 0.86381834647, 6069.7767545534], [0.367, 1.32943839763, 6283.0085396886], [0.46, 5.19667219575, 6284.0561710596], [0.333, 5.54256205741, 4686.8894077068], [0.341, 4.36522989934, 7238.6755916], [0.336, 4.00205876835, 3097.88382272579], [0.359, 6.22679790284, 245.8316462294], [0.307, 2.35299010924, 170.6728706192], [0.343, 3.77164927143, 6076.8903015542], [0.296, 5.44152227481, 17260.1546546904], [0.328, 0.13837875384, 11015.1064773348], [0.268, 1.1390455063, 12569.6748183318], [0.263, 0.00538633678, 4136.9104335162], [0.282, 5.0439983748, 7477.522860216], [0.288, 3.13401177517, 12559.038152982], [0.259, 0.93882269387, 5642.1982426092], [0.292, 1.98420020514, 12132.439962106], [0.247, 3.84244798532, 5429.8794682394], [0.245, 5.70467521726, 65147.6197681377], [0.241, 0.99480969552, 3634.6210245184], [0.246, 3.06168069935, 110.2063212194], [0.239, 6.11855909114, 11856.2186514245], [0.263, 0.66348415419, 21228.3920235458], [0.262, 1.51070507866, 12146.6670561076], [0.23, 1.75927314884, 9779.1086761254], [0.223, 2.00967043606, 6172.869528772], [0.246, 1.10411690865, 6282.0955289232], [0.221, 3.03945240854, 8635.9420037632], [0.214, 4.03840869663, 14314.1681130498], [0.236, 5.4691507058, 13916.0191096416], [0.224, 4.68408089456, 24072.9214697764], [0.212, 2.13695625494, 5849.3641121146], [0.207, 3.07724246401, 11.729352836], [0.207, 6.10306282747, 23543.23050468179], [0.266, 1.00709566823, 2388.8940204492], [0.217, 6.27837036335, 17267.26820169119], [0.204, 2.34615348695, 266.6070417218], [0.195, 5.55015549753, 6133.5126528568], [0.188, 2.52667166175, 6525.8044539654], [0.185, 0.90960768344, 18319.5365848796], [0.177, 1.73429218289, 154717.6098876827], [0.187, 4.76483647432, 4535.0594369244], [0.186, 4.63080493407, 10440.2742926036], [0.215, 2.8125545456, 7342.4577801806], [0.172, 1.45551888559, 9225.539273283], [0.162, 3.30661909388, 639.897286314], [0.168, 2.17671416605, 27.4015560968], [0.16, 1.68164180475, 15110.4661198662], [0.158, 0.13519771874, 13095.8426650774], [0.183, 0.56281322071, 13517.8701062334], [0.179, 3.58450811616, 87.30820453981], [0.152, 2.84070476818, 5650.2921106782], [0.182, 0.44065530624, 17253.04110768959], [0.16, 5.95767264171, 4701.1165017084], [0.142, 1.4629013752, 11087.2851259184], [0.142, 2.04464036087, 20426.571092422], [0.131, 5.40912137746, 2699.7348193176], [0.144, 2.07312090485, 25158.6017197654], [0.147, 6.15106982168, 9623.6882766912], [0.141, 5.55739979498, 10454.5013866052], [0.135, 0.06098110407, 16723.350142595], [0.124, 5.81218025669, 17256.6315363414], [0.124, 2.36293551623, 4933.2084403326], [0.126, 3.47435905118, 22483.84857449259], [0.159, 5.63954754618, 5729.506447149], [0.123, 3.92815963256, 17996.0311682222], [0.148, 3.02509280598, 1551.045222648], [0.12, 5.91904349732, 6206.8097787158], [0.134, 3.11122937825, 21954.15760939799], [0.119, 5.5214112345, 709.9330485583], [0.122, 3.00813429479, 19800.9459562248], [0.127, 1.37618620001, 14945.3161735544], [0.141, 2.56889468729, 1052.2683831884], [0.123, 2.83671175442, 11919.140866668], [0.118, 0.81934438215, 5331.3574437408], [0.151, 2.68731829165, 11769.8536931664], [0.119, 5.08835797638, 5481.2549188676], [0.153, 2.46021790779, 11933.3679606696], [0.108, 1.04936452145, 11403.676995575], [0.128, 0.99794735107, 8827.3902698748], [0.144, 2.54869747042, 227.476132789], [0.15, 4.50631437136, 2379.1644735716], [0.107, 1.79272017026, 13119.72110282519], [0.107, 4.43556814486, 18422.62935909819], [0.109, 0.29269062317, 16737.5772365966], [0.141, 3.18979826258, 6262.300454499], [0.122, 4.23040027813, 29.429508536], [0.111, 5.16954029551, 17782.7320727842], [0.1, 3.52213872761, 18052.9295431578], [0.108, 1.08514212991, 16858.4825329332], [0.106, 1.9608524841, 74.7815985673], [0.11, 2.30582372873, 16460.33352952499], [0.097, 3.5091894021, 5333.9002410216], [0.099, 3.56417337974, 735.8765135318], [0.094, 5.01857894228, 3128.3887650958], [0.097, 1.65579893894, 533.2140834436], [0.092, 0.89217162285, 29296.6153895786], [0.123, 3.16062050433, 9380.9596727172], [0.102, 1.20493500565, 23020.65308658799], [0.088, 2.21296088224, 12721.572099417], [0.089, 1.5426472031, 20199.094959633], [0.113, 4.8332070787, 16496.3613962024], [0.121, 6.19860353182, 9388.0059094152], [0.089, 4.08082274765, 22805.7355659936], [0.098, 1.0918183283, 12043.574281889], [0.086, 1.13655027605, 143571.32428481648], [0.088, 5.96980472191, 107.6635239386], [0.082, 5.01340404594, 22003.9146348698], [0.094, 1.69615700473, 23006.42599258639], [0.081, 3.00657814365, 2118.7638603784], [0.098, 1.39215287161, 8662.240323563], [0.077, 3.3355519084, 15720.8387848784], [0.082, 5.86880116464, 2787.0430238574], [0.076, 5.67183650604, 14.2270940016], [0.081, 6.16619455699, 1039.0266107904], [0.076, 3.21449884756, 111.1866422876], [0.078, 1.37531518377, 21947.1113727], [0.074, 3.58814195051, 11609.8625440122], [0.077, 4.84846488388, 22743.4093795164], [0.09, 1.48869013606, 15671.0817594066], [0.082, 3.48618399109, 29088.811415985], [0.069, 3.55746476593, 4590.910180489], [0.069, 1.93625656075, 135.62532501], [0.07, 2.66548322237, 18875.525869774], [0.069, 5.41478093731, 26735.9452622132], [0.079, 5.15154513662, 12323.4230960088], [0.094, 3.62899392448, 77713.7714681205], [0.078, 4.17011182047, 1066.49547719], [0.071, 3.89435637865, 22779.4372461938], [0.063, 4.53968787714, 8982.810669309], [0.069, 0.96028230548, 14919.0178537546], [0.076, 3.29092216589, 2942.4634232916], [0.063, 4.09167842893, 16062.1845261168], [0.065, 3.34580407184, 51.28033786241], [0.065, 5.75757544877, 52670.0695933026], [0.068, 5.75884067555, 21424.4666443034], [0.057, 5.4512239985, 12592.4500197826], [0.057, 5.25043362558, 20995.3929664494], [0.073, 0.53299090807, 2301.58581590939], [0.07, 4.31243357502, 19402.7969528166], [0.067, 2.53852336668, 377.3736079158], [0.056, 3.20816844695, 24889.5747959916], [0.053, 3.17816599142, 18451.07854656599], [0.053, 3.61529270216, 77.673770428], [0.053, 0.45467549335, 30666.1549584328], [0.061, 0.14807288453, 23013.5395395872], [0.051, 3.32803972907, 56.8983749356], [0.052, 3.41177624177, 23141.5583829246], [0.058, 3.13638677202, 309.2783226558], [0.07, 2.50592323465, 31415.379249957], [0.052, 5.10673376738, 17796.9591667858], [0.067, 6.27917920454, 22345.2603761082], [0.05, 0.42577644151, 25685.872802808], [0.048, 0.70204553333, 1162.4747044078], [0.066, 3.64350022359, 15265.8865193004], [0.05, 5.7438291744, 19.66976089979], [0.05, 4.69825387775, 28237.2334593894], [0.047, 5.74015846442, 12139.5535091068], [0.054, 1.97301333704, 23581.2581773176], [0.049, 4.98223579027, 10021.8372800994], [0.046, 5.41431705539, 33019.0211122046], [0.051, 1.23882053879, 12539.853380183], [0.046, 2.41369976086, 98068.53671630539], [0.044, 0.80750593746, 167283.7615876655], [0.045, 4.39613584445, 433.7117378768], [0.044, 2.57358208785, 12964.300703391], [0.046, 0.26142733448, 11.0457002639], [0.045, 2.46230645202, 51868.2486621788], [0.048, 0.89551707131, 56600.2792895222], [0.057, 1.8641670701, 25287.7237993998], [0.042, 5.26377513431, 26084.0218062162], [0.049, 3.17757670611, 6303.8512454838], [0.052, 3.65266055509, 7872.1487452752], [0.04, 1.81891629936, 34596.3646546524], [0.043, 1.94164978061, 1903.4368125012], [0.041, 0.74461854136, 23937.856389741], [0.048, 6.26034008181, 28286.9904848612], [0.045, 5.4557501753, 60530.4889857418], [0.04, 2.92105728682, 21548.9623692918], [0.04, 0.04502010161, 38526.574350872], [0.053, 3.64791042082, 11925.2740926006], [0.041, 5.04048954693, 27832.0382192832], [0.042, 5.19292937193, 19004.6479494084], [0.04, 2.57120233428, 24356.7807886416], [0.038, 3.49190341464, 226858.23855437007], [0.039, 4.61184303844, 95.9792272178], [0.043, 2.20648228147, 13521.7514415914], [0.04, 5.83461945819, 16193.65917750039], [0.045, 3.73714372195, 7875.6718636242], [0.043, 1.14078465002, 49.7570254718], [0.037, 1.29390383811, 310.8407988684], [0.038, 0.9597092595, 664.75604513], [0.037, 4.27532649462, 6709.6740408674], [0.038, 2.20108541046, 28628.3362260996], [0.039, 0.85957361635, 16522.6597160022], [0.04, 4.35214003837, 48739.859897083], [0.036, 1.68167662194, 10344.2950653858], [0.04, 5.13217319067, 15664.03552270859], [0.036, 3.72187132496, 30774.5016425748], [0.036, 3.32158458257, 16207.886271502], [0.045, 3.94202418608, 10988.808157535], [0.039, 1.51948786199, 12029.3471878874], [0.026, 3.8768588318, 6262.7205305926], [0.024, 4.91804163466, 19651.048481098], [0.023, 0.29300197709, 13362.4497067992], [0.021, 3.18605672363, 6277.552925684], [0.021, 6.07546891132, 18139.2945014159], [0.022, 2.31199937177, 6303.4311693902], [0.021, 3.58418394393, 18209.33026366019], [0.026, 2.068012969, 12573.2652469836], [0.021, 1.56857722317, 13341.6743113068], [0.024, 5.72605158675, 29864.334027309], [0.024, 1.40237993205, 14712.317116458], [0.025, 5.71466092822, 25934.1243310894]], [[52918.87, 0.0, 0.0], [8719.837, 1.07209665242, 6283.0758499914], [309.125, 0.86728818832, 12566.1516999828], [27.339, 0.05297871691, 3.523118349], [16.334, 5.18826691036, 26.2983197998], [15.752, 3.6845788943, 155.4203994342], [9.541, 0.75742297675, 18849.2275499742], [8.937, 2.05705419118, 77713.7714681205], [6.952, 0.8267330541, 775.522611324], [5.064, 4.66284525271, 1577.3435424478], [4.061, 1.03057162962, 7.1135470008], [3.463, 5.14074632811, 796.2980068164], [3.169, 6.05291851171, 5507.5532386674], [3.02, 1.19246506441, 242.728603974], [2.886, 6.11652627155, 529.6909650946], [3.81, 3.4405080349, 5573.1428014331], [2.714, 0.30637881025, 398.1490034082], [2.371, 4.38118838167, 5223.6939198022], [2.538, 2.27992810679, 553.5694028424], [2.079, 3.75435330484, 0.9803210682], [1.675, 0.90216407959, 951.7184062506], [1.534, 5.75900462759, 1349.8674096588], [1.224, 2.97328088405, 2146.1654164752], [1.449, 4.3641591397, 1748.016413067], [1.341, 3.72061130861, 1194.4470102246], [1.254, 2.94846826628, 6438.4962494256], [0.999, 5.98640014468, 6286.5989683404], [0.917, 4.79788687522, 5088.6288397668], [0.828, 3.31321076572, 213.299095438], [1.103, 1.27104454479, 161000.6857376741], [0.762, 3.41582762988, 5486.777843175], [1.044, 0.60409577691, 3154.6870848956], [0.887, 5.23465144638, 7084.8967811152], [0.645, 1.60096192515, 2544.3144198834], [0.681, 3.43155669169, 4694.0029547076], [0.605, 2.47806340546, 10977.078804699], [0.706, 6.19393222575, 4690.4798363586], [0.643, 1.98042503148, 801.8209311238], [0.502, 1.44394375363, 6836.6452528338], [0.49, 2.34129524194, 1592.5960136328], [0.458, 1.30876448575, 4292.3308329504], [0.431, 0.03526421494, 7234.794256242], [0.379, 3.17030522615, 6309.3741697912], [0.348, 0.99049550009, 6040.3472460174], [0.386, 1.57019797263, 71430.69561812909], [0.347, 0.67013291338, 1059.3819301892], [0.458, 3.81499443681, 149854.4001348079], [0.302, 1.91760044838, 10447.3878396044], [0.307, 3.55343347416, 8031.0922630584], [0.395, 4.93701776616, 7632.9432596502], [0.314, 3.18093696547, 2352.8661537718], [0.282, 4.41936437052, 9437.762934887], [0.276, 2.71314254553, 3894.1818295422], [0.298, 2.5203747421, 6127.6554505572], [0.23, 1.37790215549, 4705.7323075436], [0.252, 0.55330133471, 6279.5527316424], [0.255, 5.26570187369, 6812.766815086], [0.275, 0.67264264272, 25132.3033999656], [0.178, 0.92820785174, 1990.745017041], [0.221, 0.63897368842, 6256.7775301916], [0.155, 0.77319790838, 14143.4952424306], [0.15, 2.40470465561, 426.598190876], [0.196, 6.06877865012, 640.8776073822], [0.137, 2.21679460145, 8429.2412664666], [0.127, 3.26094223174, 17789.845619785], [0.128, 5.47237279946, 12036.4607348882], [0.122, 2.16291082757, 10213.285546211], [0.118, 0.45789822268, 7058.5984613154], [0.141, 2.34932647403, 11506.7697697936], [0.1, 0.85621569847, 6290.1893969922], [0.092, 5.10587476002, 7079.3738568078], [0.126, 2.65428307012, 88860.05707098669], [0.106, 5.85646710022, 7860.4193924392], [0.084, 3.57457554262, 16730.4636895958], [0.089, 4.21433259618, 83996.84731811189], [0.097, 5.57938280855, 13367.9726311066], [0.102, 2.05853060226, 87.30820453981], [0.08, 4.73792651816, 11926.2544136688], [0.08, 5.41418965044, 10973.55568635], [0.106, 4.10978997399, 3496.032826134], [0.102, 3.62650006043, 244287.60000722768], [0.075, 4.89483161769, 5643.1785636774], [0.087, 0.42863750683, 11015.1064773348], [0.069, 1.8890876072, 10177.2576795336], [0.089, 1.35567273119, 6681.2248533996], [0.066, 0.99455837265, 6525.8044539654], [0.067, 5.5124099707, 3097.88382272579], [0.076, 2.72016814799, 4164.311989613], [0.063, 1.4434990254, 9917.6968745098], [0.078, 3.51469733747, 11856.2186514245], [0.085, 0.50956043858, 10575.4066829418], [0.067, 3.62043033405, 16496.3613962024], [0.055, 5.24637517308, 3340.6124266998], [0.048, 5.43966777314, 20426.571092422], [0.064, 5.79535817813, 2388.8940204492], [0.046, 5.43499966519, 6275.9623029906], [0.05, 3.86263598617, 5729.506447149], [0.044, 1.52269529228, 12168.0026965746], [0.057, 4.96352373486, 14945.3161735544], [0.045, 1.0086123016, 8635.9420037632], [0.043, 3.30685683359, 9779.1086761254], [0.042, 0.6348125893, 2699.7348193176], [0.041, 5.67996766641, 11712.9553182308], [0.056, 4.34024451468, 90955.5516944961], [0.041, 5.81722212845, 709.9330485583], [0.053, 6.17052087143, 233141.3144043615], [0.037, 3.12495025087, 16200.7727245012], [0.035, 5.76973458495, 12569.6748183318], [0.037, 0.31656444326, 24356.7807886416], [0.035, 0.96229051027, 17298.1823273262], [0.033, 5.23130355867, 5331.3574437408], [0.035, 0.62517020593, 25158.6017197654], [0.035, 0.80004512129, 13916.0191096416], [0.037, 2.89336088688, 12721.572099417], [0.03, 4.50198402401, 23543.23050468179], [0.03, 5.31355708693, 18319.5365848796], [0.029, 3.47275229977, 13119.72110282519], [0.029, 3.11002782516, 4136.9104335162], [0.032, 5.52273255667, 5753.3848848968], [0.035, 3.7969999668, 143571.32428481648], [0.026, 1.50634201907, 154717.6098876827], [0.03, 3.53519084118, 6284.0561710596], [0.023, 4.41808025967, 5884.9268465832], [0.025, 1.38477355808, 65147.6197681377], [0.023, 3.49782549797, 7477.522860216], [0.019, 3.14329413716, 6496.3749454294], [0.019, 2.20135125199, 18073.7049386502], [0.019, 4.95020255309, 3930.2096962196], [0.019, 0.57998702747, 31415.379249957], [0.021, 1.75474323399, 12139.5535091068], [0.019, 3.92233070499, 19651.048481098], [0.014, 0.98131213224, 12559.038152982], [0.019, 4.93309333729, 2942.4634232916], [0.016, 5.55997534558, 8827.3902698748], [0.013, 1.68808165516, 4535.0594369244], [0.013, 0.33982116161, 4933.2084403326], [0.012, 1.85426309994, 5856.4776591154], [0.01, 4.82763996845, 13095.8426650774], [0.011, 5.38005490571, 11790.6290886588], [0.01, 1.40815507226, 10988.808157535], [0.011, 3.05005267431, 17260.1546546904], [0.01, 4.93364992366, 12352.8526045448]], [[289.226, 5.84384198723, 6283.0758499914], [34.955, 0.0, 0.0], [16.819, 5.48766912348, 12566.1516999828], [2.962, 5.19577265202, 155.4203994342], [1.288, 4.72200252235, 3.523118349], [0.635, 5.96925937141, 242.728603974], [0.714, 5.30045809128, 18849.2275499742], [0.402, 3.78682982419, 553.5694028424], [0.072, 4.2976812618, 6286.5989683404], [0.067, 0.90721687647, 6127.6554505572], [0.036, 5.24029648014, 6438.4962494256], [0.024, 5.16003960716, 25132.3033999656], [0.023, 3.01921570335, 6309.3741697912], [0.017, 5.82863573502, 6525.8044539654], [0.017, 3.6777286393, 71430.69561812909], [0.009, 4.58467294499, 1577.3435424478], [0.008, 1.40626662824, 11856.2186514245], [0.008, 5.07561257196, 6256.7775301916], [0.007, 2.82473374405, 83996.84731811189], [0.005, 2.71488713339, 10977.078804699], [0.005, 3.76879847273, 12036.4607348882], [0.005, 4.28412873331, 6275.9623029906]], [[114.084, 3.14159265359, 0.0], [7.717, 4.13446589358, 6283.0758499914], [0.765, 3.83803776214, 12566.1516999828], [0.42, 0.41925861858, 155.4203994342], [0.04, 3.5984758584, 18849.2275499742], [0.041, 3.14398414077, 3.523118349], [0.035, 5.00298940826, 5573.1428014331], [0.013, 0.48794833701, 77713.7714681205], [0.01, 5.6480176635, 6127.6554505572], [0.008, 2.84160570605, 161000.6857376741], [0.002, 0.54912904658, 6438.4962494256]], [[0.878, 3.14159265359, 0.0], [0.172, 2.7657906951, 6283.0758499914], [0.05, 2.01353298182, 155.4203994342], [0.028, 2.21496423926, 12566.1516999828], [0.005, 1.75600058765, 18849.2275499742]]]

This table contains Earth’s periodic terms (all of them) from the planetary theory VSOP87 for the heliocentric longitude at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in pages 418-420.

pymeeus.Earth.VSOP87_L_J2000 = [[[175347046.0, 0.0, 0.0], [3341656.0, 4.6692568, 6283.07585], [34894.0, 4.6261, 12556.1517], [3497.0, 2.7441, 5753.3849], [3418.0, 2.8289, 3.5231], [3136.0, 3.6277, 77713.7715], [2676.0, 4.4181, 7860.4194], [2343.0, 6.1352, 3930.2097], [1324.0, 0.7425, 11506.7698], [1273.0, 2.0371, 529.691], [1199.0, 1.1096, 1577.3435], [990.0, 5.233, 5884.927], [902.0, 2.045, 26.298], [857.0, 3.508, 398.149], [780.0, 1.179, 5223.694], [753.0, 2.533, 5507.553], [505.0, 4.583, 18849.228], [492.0, 4.205, 775.523], [357.0, 2.92, 0.067], [317.0, 5.849, 11790.629], [284.0, 1.899, 796.298], [271.0, 0.315, 10977.079], [243.0, 0.345, 5486.778], [206.0, 4.806, 2544.314], [205.0, 1.869, 5573.143], [202.0, 2.458, 6069.777], [156.0, 0.833, 213.299], [132.0, 3.411, 2942.463], [126.0, 1.083, 20.775], [115.0, 0.645, 0.98], [103.0, 0.636, 4694.003], [102.0, 0.976, 15720.839], [102.0, 4.267, 7.114], [99.0, 6.21, 2146.17], [98.0, 0.68, 155.42], [86.0, 5.98, 161000.69], [85.0, 1.3, 6275.96], [85.0, 3.67, 71430.7], [80.0, 1.81, 17260.15], [79.0, 3.04, 12036.46], [75.0, 1.76, 5088.63], [74.0, 3.5, 3154.69], [74.0, 4.68, 801.82], [70.0, 0.83, 9437.76], [62.0, 3.98, 8827.39], [61.0, 1.82, 7084.9], [57.0, 2.78, 6286.6], [56.0, 4.39, 14143.5], [56.0, 3.47, 6279.55], [52.0, 0.19, 12139.55], [52.0, 1.33, 1748.02], [51.0, 0.28, 5856.48], [49.0, 0.49, 1194.45], [41.0, 5.37, 8429.24], [41.0, 2.4, 19651.05], [39.0, 6.17, 10447.39], [37.0, 6.04, 10213.29], [37.0, 2.57, 1059.38], [36.0, 1.71, 2352.87], [36.0, 1.78, 6812.77], [33.0, 0.59, 17789.85], [30.0, 0.44, 83996.85], [30.0, 2.74, 1349.87], [25.0, 3.16, 4690.48]], [[628307584999.0, 0.0, 0.0], [206059.0, 2.678235, 6283.07585], [4303.0, 2.6351, 12566.1517], [425.0, 1.59, 3.523], [119.0, 5.796, 26.298], [109.0, 2.966, 1577.344], [93.0, 2.59, 18849.23], [72.0, 1.14, 529.69], [68.0, 1.87, 398.15], [67.0, 4.41, 5507.55], [59.0, 2.89, 5223.69], [56.0, 2.17, 155.42], [45.0, 0.4, 796.3], [36.0, 0.47, 775.52], [29.0, 2.65, 7.11], [21.0, 5.34, 0.98], [19.0, 1.85, 5486.78], [19.0, 4.97, 213.3], [17.0, 2.99, 6275.96], [16.0, 0.03, 2544.31], [16.0, 1.43, 2146.17], [15.0, 1.21, 10977.08], [12.0, 2.83, 1748.02], [12.0, 3.26, 5088.63], [12.0, 5.27, 1194.45], [12.0, 2.08, 4694.0], [11.0, 0.77, 553.57], [10.0, 1.3, 6286.6], [10.0, 4.24, 1349.87], [9.0, 2.7, 242.73], [9.0, 5.64, 951.72], [8.0, 5.3, 2352.87], [6.0, 2.65, 9437.76], [6.0, 4.67, 4690.48]], [[8722.0, 1.0725, 6283.0758], [991.0, 3.1416, 0.0], [295.0, 0.437, 12566.152], [27.0, 0.05, 3.52], [16.0, 5.19, 26.3], [16.0, 3.69, 155.42], [9.0, 0.3, 18849.23], [9.0, 2.06, 77713.77], [7.0, 0.83, 775.52], [5.0, 4.66, 1577.34], [4.0, 1.03, 7.11], [4.0, 3.44, 5573.14], [3.0, 5.14, 796.3], [3.0, 6.05, 5507.55], [3.0, 1.19, 242.73], [3.0, 6.12, 529.69], [3.0, 0.3, 398.15], [3.0, 2.28, 553.57], [2.0, 4.38, 5223.69], [2.0, 3.75, 0.98]], [[289.0, 5.842, 6283.076], [21.0, 6.05, 12556.15], [3.0, 5.2, 155.42], [3.0, 3.14, 0.0], [1.0, 4.72, 3.52], [1.0, 5.97, 242.73], [1.0, 5.54, 18849.23]], [[8.0, 4.14, 6283.08], [1.0, 3.28, 12566.15]]]

This table contains Earth’s most important periodic terms from the planetary theory VSOP87 for the heliocentric longitude, referred to the equinox J2000.0. In Meeus’ book these values can be found in pages 418-420 and page 173.

pymeeus.Earth.VSOP87_R = [[[100013988.799, 0.0, 0.0], [1670699.626, 3.09846350771, 6283.0758499914], [13956.023, 3.0552460962, 12566.1516999828], [3083.72, 5.19846674381, 77713.7714681205], [1628.461, 1.17387749012, 5753.3848848968], [1575.568, 2.84685245825, 7860.4193924392], [924.799, 5.45292234084, 11506.7697697936], [542.444, 4.56409149777, 3930.2096962196], [472.11, 3.66100022149, 5884.9268465832], [328.78, 5.89983646482, 5223.6939198022], [345.983, 0.96368617687, 5507.5532386674], [306.784, 0.29867139512, 5573.1428014331], [174.844, 3.01193636534, 18849.2275499742], [243.189, 4.27349536153, 11790.6290886588], [211.829, 5.84714540314, 1577.3435424478], [185.752, 5.02194447178, 10977.078804699], [109.835, 5.05510636285, 5486.777843175], [98.316, 0.88681311277, 6069.7767545534], [86.499, 5.68959778254, 15720.8387848784], [85.825, 1.27083733351, 161000.6857376741], [62.916, 0.92177108832, 529.6909650946], [57.056, 2.01374292014, 83996.84731811189], [64.903, 0.27250613787, 17260.1546546904], [49.384, 3.24501240359, 2544.3144198834], [55.736, 5.24159798933, 71430.69561812909], [42.515, 6.01110242003, 6275.9623029906], [46.963, 2.57805070386, 775.522611324], [38.968, 5.36071738169, 4694.0029547076], [44.661, 5.53715807302, 9437.762934887], [35.66, 1.67468058995, 12036.4607348882], [31.921, 0.18368229781, 5088.6288397668], [31.846, 1.77775642085, 398.1490034082], [33.193, 0.24370300098, 7084.8967811152], [38.245, 2.39255343974, 8827.3902698748], [28.464, 1.21344868176, 6286.5989683404], [37.49, 0.82952922332, 19651.048481098], [36.957, 4.90107591914, 12139.5535091068], [34.537, 1.84270693282, 2942.4634232916], [26.275, 4.58896850401, 10447.3878396044], [24.596, 3.78660875483, 8429.2412664666], [23.587, 0.26866117066, 796.2980068164], [27.793, 1.89934330904, 6279.5527316424], [23.927, 4.99598548138, 5856.4776591154], [20.349, 4.65267995431, 2146.1654164752], [23.287, 2.80783650928, 14143.4952424306], [22.103, 1.95004702988, 3154.6870848956], [19.506, 5.38227371393, 2352.8661537718], [17.958, 0.19871379385, 6812.766815086], [17.174, 4.43315560735, 10213.285546211], [16.19, 5.23160507859, 17789.845619785], [17.314, 6.15200787916, 16730.4636895958], [13.814, 5.18962074032, 8031.0922630584], [18.833, 0.67306674027, 149854.4001348079], [18.331, 2.25348733734, 23581.2581773176], [13.641, 3.68516118804, 4705.7323075436], [13.139, 0.65289581324, 13367.9726311066], [10.414, 4.33285688538, 11769.8536931664], [9.978, 4.20126336355, 6309.3741697912], [10.169, 1.59390681369, 4690.4798363586], [7.564, 2.6256059739, 6256.7775301916], [9.661, 3.6758679122, 27511.4678735372], [6.743, 0.56270332741, 3340.6124266998], [8.743, 6.06359123461, 1748.016413067], [7.786, 3.67371235637, 12168.0026965746], [6.633, 5.66149277792, 11371.7046897582], [7.712, 0.31242577789, 7632.9432596502], [6.592, 3.13576266188, 801.8209311238], [7.46, 5.64757188143, 11926.2544136688], [6.933, 2.923845864, 6681.2248533996], [6.802, 1.4232980642, 23013.5395395872], [6.115, 5.13393615454, 1194.4470102246], [6.477, 2.64986648492, 19804.8272915828], [5.233, 4.62434053374, 6438.4962494256], [6.147, 3.02863936662, 233141.3144043615], [4.608, 1.72194702724, 7234.794256242], [4.221, 1.55697533729, 7238.6755916], [5.314, 2.40716580847, 11499.6562227928], [5.128, 5.3239896569, 11513.8833167944], [4.77, 0.25554312006, 11856.2186514245], [5.519, 2.09089154502, 17298.1823273262], [5.625, 4.34052903053, 90955.5516944961], [4.578, 4.4656964157, 5746.271337896], [3.788, 4.9072938351, 4164.311989613], [5.337, 5.09957905104, 31441.6775697568], [3.967, 1.20054555174, 1349.8674096588], [4.008, 3.03007204392, 1059.3819301892], [3.476, 0.7608027703, 10973.55568635], [4.232, 1.05485713117, 5760.4984318976], [4.582, 3.76570026763, 6386.16862421], [3.335, 3.13829943354, 6836.6452528338], [3.418, 3.00072390334, 4292.3308329504], [3.598, 5.70718084323, 5643.1785636774], [3.237, 4.16448773994, 9917.6968745098], [4.154, 2.59941292162, 7058.5984613154], [3.362, 4.54577697964, 4732.0306273434], [2.978, 1.3056126882, 6283.14316029419], [2.765, 0.51311975679, 26.2983197998], [2.802, 5.66263240521, 8635.9420037632], [2.927, 5.73787481548, 16200.7727245012], [3.164, 1.69140262657, 11015.1064773348], [2.598, 2.96244118586, 25132.3033999656], [3.519, 3.62639325753, 244287.60000722768], [2.676, 4.2072570085, 18073.7049386502], [2.978, 1.74971565805, 6283.0085396886], [2.287, 1.06975704977, 14314.1681130498], [2.863, 5.92838131397, 14712.317116458], [3.071, 0.23793217002, 35371.8872659764], [2.656, 0.8995930178, 12352.8526045448], [2.415, 2.79975176257, 709.9330485583], [2.814, 3.51488206882, 21228.3920235458], [1.977, 2.6135829755, 951.7184062506], [2.548, 2.47684686575, 6208.2942514241], [1.999, 0.5609038816, 7079.3738568078], [2.305, 1.05376461628, 22483.84857449259], [1.855, 2.86090681163, 5216.5803728014], [2.157, 1.31396741861, 154717.6098876827], [1.97, 4.36929875289, 167283.7615876655], [1.635, 5.85571606764, 10984.1923516998], [1.754, 2.14452408833, 6290.1893969922], [2.154, 6.03828341543, 10873.9860304804], [1.714, 3.70157691113, 1592.5960136328], [1.541, 6.21598380732, 23543.23050468179], [1.611, 1.99824499377, 10969.9652576982], [1.712, 1.34295663542, 3128.3887650958], [1.642, 5.55026665339, 6496.3749454294], [1.502, 5.43948825854, 155.4203994342], [1.827, 5.91227480261, 3738.761430108], [1.726, 2.16764983583, 10575.4066829418], [1.532, 5.3568310707, 13521.7514415914], [1.829, 1.66006148731, 39302.096962196], [1.605, 1.90928637633, 6133.5126528568], [1.282, 2.46014880418, 13916.0191096416], [1.211, 4.4136063155, 3894.1818295422], [1.394, 1.77801929354, 9225.539273283], [1.571, 4.95512957592, 25158.6017197654], [1.205, 1.19212540615, 3.523118349], [1.132, 2.69830084955, 6040.3472460174], [1.504, 5.77002730341, 18209.33026366019], [1.393, 1.62621805428, 5120.6011455836], [1.077, 2.93931554233, 17256.6315363414], [1.232, 0.71655165307, 143571.32428481648], [1.087, 0.99769687939, 955.5997416086], [1.068, 5.28472576231, 65147.6197681377], [0.98, 5.10949204607, 6172.869528772], [1.169, 3.11664290862, 14945.3161735544], [1.202, 4.02992510402, 553.5694028424], [0.979, 2.00000879212, 15110.4661198662], [0.962, 4.023807714, 6282.0955289232], [0.999, 3.6264300279, 6262.300454499], [1.03, 5.84989900289, 213.299095438], [1.014, 2.84221578218, 8662.240323563], [1.185, 1.51330541132, 17654.7805397496], [0.967, 2.67081017562, 5650.2921106782], [1.222, 2.65423784904, 88860.05707098669], [0.981, 2.36370360283, 6206.8097787158], [1.033, 0.13874927606, 11712.9553182308], [1.103, 3.08477302937, 43232.3066584156], [0.781, 2.53372735932, 16496.3613962024], [1.019, 3.04569392376, 6037.244203762], [0.795, 5.80662989111, 5230.807466803], [0.813, 3.57710279439, 10177.2576795336], [0.962, 5.31470594766, 6284.0561710596], [0.721, 5.96264301567, 12559.038152982], [0.966, 2.74714939953, 6244.9428143536], [0.921, 0.10155275926, 29088.811415985], [0.692, 3.89764447548, 1589.0728952838], [0.719, 5.91791450402, 4136.9104335162], [0.772, 4.05505682353, 6127.6554505572], [0.712, 5.49291532439, 22003.9146348698], [0.672, 1.60700490811, 11087.2851259184], [0.69, 4.50539825563, 426.598190876], [0.854, 3.26104981596, 20426.571092422], [0.656, 4.3241018294, 16858.4825329332], [0.84, 2.59572585222, 28766.924424484], [0.692, 0.61650089011, 11403.676995575], [0.7, 3.40901167143, 7.1135470008], [0.726, 0.04243053594, 5481.2549188676], [0.557, 4.78317696534, 20199.094959633], [0.649, 1.04027912958, 6062.6632075526], [0.633, 5.70229959167, 45892.73043315699], [0.592, 6.11836729658, 9623.6882766912], [0.523, 3.62840021266, 5333.9002410216], [0.604, 5.57734696185, 10344.2950653858], [0.496, 2.21023499449, 1990.745017041], [0.691, 1.96071732602, 12416.5885028482], [0.64, 1.59074172032, 18319.5365848796], [0.625, 3.82362791378, 13517.8701062334], [0.663, 5.08444996779, 283.8593188652], [0.475, 1.17025894287, 12569.6748183318], [0.664, 4.50029469969, 47162.5163546352], [0.569, 0.16310365162, 17267.26820169119], [0.568, 3.86100969474, 6076.8903015542], [0.539, 4.83282276086, 18422.62935909819], [0.466, 0.75872342878, 7342.4577801806], [0.541, 3.07212190507, 226858.23855437007], [0.458, 0.26774483096, 4590.910180489], [0.61, 1.53597051291, 33019.0211122046], [0.617, 2.62356328726, 11190.377900137], [0.548, 4.55798855791, 18875.525869774], [0.633, 4.60110281228, 66567.48586525429], [0.596, 5.78202396722, 632.7837393132], [0.533, 5.01786882904, 12132.439962106], [0.603, 5.38458554802, 316428.22867391503], [0.469, 0.59168241917, 21954.15760939799], [0.548, 3.50613163558, 17253.04110768959], [0.502, 0.98804327589, 11609.8625440122], [0.568, 1.98497313089, 7668.6374249425], [0.482, 1.62141803864, 12146.6670561076], [0.391, 3.68718382989, 18052.9295431578], [0.457, 3.7720573734, 156137.47598479927], [0.401, 5.28260651958, 15671.0817594066], [0.469, 1.80963184268, 12562.6285816338], [0.508, 3.36399024699, 20597.2439630412], [0.45, 5.6605429925, 10454.5013866052], [0.375, 4.98534633105, 9779.1086761254], [0.523, 0.97215560834, 155427.542936241], [0.403, 5.13939866506, 1551.045222648], [0.372, 3.69883738807, 9388.0059094152], [0.367, 4.43875659716, 4535.0594369244], [0.406, 4.208631566, 12592.4500197826], [0.36, 2.53924644657, 242.728603974], [0.471, 4.61907324819, 5436.9930152402], [0.441, 5.83872966262, 3496.032826134], [0.385, 4.94496680973, 24356.7807886416], [0.349, 6.15018231784, 19800.9459562248], [0.355, 0.21895678106, 5429.8794682394], [0.344, 5.62993724928, 2379.1644735716], [0.38, 2.72105213143, 11933.3679606696], [0.432, 0.24221790536, 17996.0311682222], [0.378, 5.22517556974, 7477.522860216], [0.337, 5.10888041439, 5849.3641121146], [0.315, 0.57827745123, 10557.5941608238], [0.318, 4.49953141399, 3634.6210245184], [0.323, 1.54274281393, 10440.2742926036], [0.309, 5.76839284397, 20.7753954924], [0.301, 2.34727604008, 4686.8894077068], [0.414, 5.9323760231, 51092.7260508548], [0.361, 2.1639860955, 28237.2334593894], [0.288, 0.18376252189, 13095.8426650774], [0.277, 5.12952205045, 13119.72110282519], [0.327, 6.19222146204, 6268.8487559898], [0.273, 0.30522428863, 23141.5583829246], [0.267, 5.76152585786, 5966.6839803348], [0.308, 5.99280509979, 22805.7355659936], [0.345, 2.92489919444, 36949.2308084242], [0.253, 5.20995219509, 24072.9214697764], [0.342, 5.72702586209, 16460.33352952499], [0.261, 2.00304796059, 6148.010769956], [0.238, 5.08264392839, 6915.8595893046], [0.249, 2.94762789744, 135.0650800354], [0.306, 3.89764686987, 10988.808157535], [0.305, 0.05827812117, 4701.1165017084], [0.319, 2.95712862064, 163096.18036118348], [0.209, 4.43768461442, 6546.1597733642], [0.27, 2.06643178717, 4804.209275927], [0.217, 0.73691592312, 6303.8512454838], [0.206, 0.32075959415, 25934.1243310894], [0.218, 0.18428135264, 28286.9904848612], [0.205, 5.21312087405, 20995.3929664494], [0.199, 0.44384292491, 16737.5772365966], [0.23, 6.06567392849, 6287.0080032545], [0.219, 1.291942163, 5326.7866940208], [0.201, 1.74700937253, 22743.4093795164], [0.207, 4.45440927276, 6279.4854213396], [0.269, 6.0564044503, 64471.99124174489], [0.19, 0.99256176518, 29296.6153895786], [0.238, 5.42471431221, 39609.6545831656], [0.262, 5.26961924198, 522.5774180938], [0.21, 4.68618183158, 6254.6266625236], [0.197, 2.8062455408, 4933.2084403326], [0.252, 4.36220154608, 40879.4405046438], [0.261, 1.07241516738, 55022.9357470744], [0.189, 3.82966734476, 419.4846438752], [0.185, 4.14324541379, 5642.1982426092], [0.247, 3.44855612987, 6702.5604938666], [0.205, 4.04424043223, 536.8045120954], [0.191, 3.14082686083, 16723.350142595], [0.222, 5.16263907319, 23539.7073863328], [0.18, 4.56214752149, 6489.2613984286], [0.219, 0.80382553358, 16627.3709153772], [0.227, 0.60156339452, 5905.7022420756], [0.168, 0.88753528161, 16062.1845261168], [0.158, 0.92127725775, 23937.856389741], [0.157, 4.69607868164, 6805.6532680852], [0.207, 4.88410451334, 6286.6662786432], [0.16, 4.95943826846, 10021.8372800994], [0.166, 0.97126433565, 3097.88382272579], [0.209, 5.75663411805, 3646.3503773544], [0.175, 6.12762824412, 239424.39025435288], [0.173, 3.13887234973, 6179.9830757728], [0.157, 3.62822058179, 18451.07854656599], [0.157, 4.67695912235, 6709.6740408674], [0.146, 3.09506069735, 4907.3020501456], [0.165, 2.2713912876, 10660.6869350424], [0.201, 1.67701267433, 2107.0345075424], [0.144, 3.96947747592, 6019.9919266186], [0.171, 5.91302216729, 6058.7310542895], [0.144, 2.1315565512, 26084.0218062162], [0.151, 0.67417383554, 2388.8940204492], [0.189, 5.07122281033, 263.0839233728], [0.146, 5.10373877968, 10770.8932562618], [0.187, 1.23915444627, 19402.7969528166], [0.174, 0.08407293391, 9380.9596727172], [0.137, 1.26247412309, 12566.2190102856], [0.137, 3.52826010842, 639.897286314], [0.148, 1.76124372592, 5888.4499649322], [0.164, 2.39195095081, 6357.8574485587], [0.146, 2.43675816553, 5881.4037282342], [0.161, 1.15721259372, 26735.9452622132], [0.131, 2.51859277344, 6599.467719648], [0.153, 5.85203687779, 6281.5913772831], [0.151, 3.72338532649, 12669.2444742014], [0.132, 2.38417741883, 6525.8044539654], [0.129, 0.75556744143, 5017.508371365], [0.127, 0.00254936441, 10027.9031957292], [0.148, 2.85102145528, 6418.1409300268], [0.143, 5.74460279367, 26087.9031415742], [0.172, 0.4128996224, 174242.4659640497], [0.136, 4.15497742275, 6311.5250374592], [0.17, 5.98194913129, 327574.51427678124], [0.124, 1.65497607604, 32217.2001810808], [0.136, 2.48430783417, 13341.6743113068], [0.165, 2.496679246, 58953.145443294], [0.123, 3.45660563754, 6277.552925684], [0.117, 0.86065134175, 6245.0481773556], [0.149, 5.61358280963, 5729.506447149], [0.153, 0.2686002995, 245.8316462294], [0.128, 0.71204006588, 103.0927742186], [0.159, 2.43166592149, 221995.02880149524], [0.13, 2.80707316718, 6016.4688082696], [0.137, 1.70657709294, 12566.08438968], [0.111, 1.56305648432, 17782.7320727842], [0.113, 3.58302904101, 25685.872802808], [0.109, 3.26403795962, 6819.8803620868], [0.122, 0.34120688217, 1162.4747044078], [0.119, 5.84644718278, 12721.572099417], [0.144, 2.28899679126, 12489.8856287072], [0.137, 5.82029768354, 44809.6502008634], [0.107, 2.4281854414, 5547.1993364596], [0.134, 1.26539982939, 5331.3574437408], [0.103, 5.96518130595, 6321.1035226272], [0.109, 0.33808549034, 11300.5842213564], [0.129, 5.89187277327, 12029.3471878874], [0.122, 5.77325634636, 11919.140866668], [0.107, 6.2499898935, 77690.75950573849], [0.107, 1.00535580713, 77736.78343050249], [0.143, 0.24122178432, 4214.0690150848], [0.143, 0.88529649733, 7576.560073574], [0.107, 2.92124030496, 31415.379249957], [0.099, 5.70862227072, 5540.0857894588], [0.11, 0.37528037383, 5863.5912061162], [0.104, 4.44107178366, 2118.7638603784], [0.098, 5.95877916706, 4061.2192153944], [0.113, 1.24206857385, 84672.47584450469], [0.124, 2.55619029867, 12539.853380183], [0.11, 3.66952094329, 238004.5241572363], [0.112, 4.32512422943, 97238.62754448749], [0.097, 3.70151541181, 11720.0688652316], [0.12, 1.26895630252, 12043.574281889], [0.094, 2.56461130309, 19004.6479494084], [0.117, 3.65425622684, 34520.3093093808], [0.098, 0.13589994287, 11080.1715789176], [0.097, 5.38330115253, 7834.1210726394], [0.097, 2.46722096722, 71980.63357473118], [0.095, 5.36958330451, 6288.5987742988], [0.111, 5.01961920313, 11823.1616394502], [0.09, 2.72299804525, 26880.3198130326], [0.099, 0.90164266377, 18635.9284545362], [0.126, 4.78722177847, 305281.9430710488], [0.093, 0.21240380046, 18139.2945014159], [0.124, 5.00979495566, 172146.9713405403], [0.099, 5.67090026475, 16522.6597160022], [0.092, 2.28180963676, 12491.3701014155], [0.09, 4.50544881196, 40077.61957352], [0.1, 2.00639461612, 12323.4230960088], [0.095, 5.68801979087, 14919.0178537546], [0.087, 1.86043406047, 27707.5424942948], [0.105, 3.02903468417, 22345.2603761082], [0.087, 5.43970168638, 6272.0301497275], [0.089, 1.63389387182, 33326.5787331742], [0.082, 5.58298993353, 10241.2022911672], [0.094, 5.47749711149, 9924.8104215106], [0.082, 4.71988314145, 15141.390794312], [0.097, 5.61458778738, 2787.0430238574], [0.096, 3.89073946348, 6379.0550772092], [0.081, 3.13038482444, 36147.4098773004], [0.11, 4.89978492291, 72140.6286666874], [0.097, 5.20764563059, 6303.4311693902], [0.082, 5.26342716139, 9814.6041002912], [0.109, 2.3555558977, 83286.91426955358], [0.097, 2.58492958057, 30666.1549584328], [0.093, 1.32651591333, 23020.65308658799], [0.078, 3.99588630754, 11293.4706743556], [0.09, 0.57771932738, 26482.1708096244], [0.106, 3.92012705073, 62883.3551395136], [0.098, 2.94397773524, 316.3918696566], [0.076, 3.96310417608, 29026.48522950779], [0.078, 1.97068529306, 90279.92316810328], [0.076, 0.23027966596, 21424.4666443034], [0.08, 2.23099742212, 266.6070417218], [0.079, 1.46227790922, 8982.810669309], [0.102, 4.92129953565, 5621.8429232104], [0.1, 0.39243148321, 24279.10701821359], [0.071, 1.52014858474, 33794.5437235286], [0.076, 0.22880641443, 57375.8019008462], [0.091, 0.96515913904, 48739.859897083], [0.075, 2.77638585157, 12964.300703391], [0.077, 5.18846946344, 11520.9968637952], [0.068, 0.50006599129, 4274.5183108324], [0.075, 2.07323762803, 15664.03552270859], [0.074, 1.01884134928, 6393.2821712108], [0.077, 0.4666517878, 16207.886271502], [0.081, 4.10452219483, 161710.6187862324], [0.067, 3.83840630887, 6262.7205305926], [0.071, 3.91415523291, 7875.6718636242], [0.081, 0.91938383237, 74.7815985673], [0.083, 4.69916218791, 23006.42599258639], [0.063, 2.32556465878, 6279.1945146334], [0.065, 5.41938745446, 28628.3362260996], [0.065, 3.02336771694, 5959.570433334], [0.064, 3.3103319837, 2636.725472637], [0.064, 0.18375587519, 1066.49547719], [0.08, 5.81239171612, 12341.8069042809], [0.066, 2.15105504851, 38.0276726358], [0.062, 2.43313614978, 10138.1095169486], [0.06, 3.1615390647, 5490.300961524], [0.069, 0.30764736334, 7018.9523635232], [0.068, 2.24442548639, 24383.0791084414], [0.078, 1.39649386463, 9411.4646150872], [0.063, 0.72976362625, 6286.9571853494], [0.073, 4.95125917731, 6453.7487206106], [0.078, 0.32736023459, 6528.9074962208], [0.059, 4.95362151577, 35707.7100829074], [0.07, 2.37962727525, 15508.6151232744], [0.073, 1.35229143111, 5327.4761083828], [0.072, 5.91833527334, 10881.0995774812], [0.059, 5.36231868425, 10239.5838660108], [0.059, 1.63156134967, 61306.0115970658], [0.054, 4.29491690425, 21947.1113727], [0.057, 5.89190132575, 34513.2630726828], [0.074, 1.38235845304, 9967.4538999816], [0.053, 3.86543309344, 32370.9789915656], [0.055, 4.51794544854, 34911.412076091], [0.063, 5.41479412056, 11502.8376165305], [0.063, 2.34416220742, 11510.7019230567], [0.068, 0.77493931112, 29864.334027309], [0.06, 5.57024703495, 5756.9080032458], [0.072, 2.80863088166, 10866.8724834796], [0.061, 2.69736991384, 82576.9812209953], [0.063, 5.32068807257, 3116.6594122598], [0.052, 1.02278758099, 6272.4391846416], [0.069, 5.00698550308, 25287.7237993998], [0.066, 6.12047940728, 12074.488407524], [0.051, 2.59519527563, 11396.5634485742], [0.056, 2.57995973521, 17892.93839400359], [0.059, 0.4416723762, 250570.6758572191], [0.059, 3.84070143543, 5483.254724826], [0.049, 0.54704693048, 22594.05489571199], [0.065, 2.38423614501, 52670.0695933026], [0.069, 5.34363738671, 66813.5648357332], [0.057, 5.42770501007, 310145.1528239236], [0.053, 1.17760296075, 149.5631971346], [0.061, 4.02090887211, 34596.3646546524], [0.049, 4.18361320516, 18606.4989460002], [0.055, 0.83886167974, 20452.8694122218], [0.05, 1.46327331958, 37455.7264959744], [0.048, 4.53854727167, 29822.7832363242], [0.058, 3.34847975377, 33990.6183442862], [0.065, 1.45522693982, 76251.32777062019], [0.056, 2.35650663692, 37724.7534197482], [0.052, 2.61551081496, 5999.2165311262], [0.053, 0.17334326094, 77717.29458646949], [0.053, 0.79879700631, 77710.24834977149], [0.047, 0.43240779709, 735.8765135318], [0.053, 4.58763261686, 11616.976091013], [0.048, 6.20230111054, 4171.4255366138], [0.052, 1.09723616404, 640.8776073822], [0.057, 3.42008310383, 50317.2034395308], [0.053, 1.01528448581, 149144.46708624958], [0.047, 3.00924906195, 52175.8062831484], [0.052, 2.03254070404, 6293.7125153412], [0.048, 0.12356889734, 13362.4497067992], [0.045, 3.37963782356, 10763.779709261], [0.047, 5.50981287869, 12779.4507954208], [0.062, 5.45209070099, 949.1756089698], [0.061, 2.93237974631, 5791.4125575326], [0.044, 2.87440620802, 8584.6616659008], [0.046, 4.0314179656, 10667.8004820432], [0.047, 3.89902931422, 3903.9113764198], [0.046, 2.75700467329, 6993.0088985497], [0.045, 1.933862933, 206.1855484372], [0.047, 2.57670800912, 11492.542675792], [0.044, 3.62570223167, 63658.8777508376], [0.051, 0.84536826273, 12345.739057544], [0.043, 0.01524970172, 37853.8754993826], [0.041, 3.27146326065, 8858.3149443206], [0.045, 3.03765521215, 65236.2212932854], [0.047, 1.44447548944, 21393.5419698576], [0.058, 5.45843180927, 1975.492545856], [0.05, 2.13285524146, 12573.2652469836], [0.041, 1.32190847146, 2547.8375382324], [0.047, 3.67579608544, 28313.288804661], [0.041, 2.24013475126, 8273.8208670324], [0.047, 6.21438985953, 10991.3058987006], [0.042, 3.0163181735, 853.196381752], [0.056, 1.09773690181, 77376.2010224076], [0.04, 2.35698541041, 2699.7348193176], [0.043, 5.28030898459, 17796.9591667858], [0.054, 2.59175932091, 22910.44676536859], [0.054, 0.88027764102, 71960.38658322369], [0.055, 0.07988899477, 83467.15635301729], [0.039, 1.12867321442, 9910.583327509], [0.04, 1.35670430524, 27177.8515292002], [0.039, 4.39624220245, 5618.3198048614], [0.042, 4.78798367468, 7856.89627409019], [0.047, 2.75482175292, 18202.21671665939], [0.039, 1.97008298629, 24491.4257925834], [0.042, 4.04346599946, 7863.9425107882], [0.038, 0.49178679251, 38650.173506199], [0.036, 4.86047906533, 4157.1984426122], [0.043, 5.64354880978, 1062.9050485382], [0.036, 3.98066313627, 12565.1713789146], [0.042, 2.30753932657, 6549.6828917132], [0.04, 5.3969491832, 9498.2122306346], [0.04, 3.30603243754, 23536.11695768099], [0.05, 6.15760345261, 78051.34191383338]], [[103018.608, 1.10748969588, 6283.0758499914], [1721.238, 1.06442301418, 12566.1516999828], [702.215, 3.14159265359, 0.0], [32.346, 1.02169059149, 18849.2275499742], [30.799, 2.84353804832, 5507.5532386674], [24.971, 1.31906709482, 5223.6939198022], [18.485, 1.42429748614, 1577.3435424478], [10.078, 5.91378194648, 10977.078804699], [8.634, 0.27146150602, 5486.777843175], [8.654, 1.42046854427, 6275.9623029906], [5.069, 1.68613426734, 5088.6288397668], [4.985, 6.01401770704, 6286.5989683404], [4.669, 5.98724494073, 529.6909650946], [4.395, 0.51800238019, 4694.0029547076], [3.872, 4.74969833437, 2544.3144198834], [3.75, 5.07097685568, 796.2980068164], [4.1, 1.08424786092, 9437.762934887], [3.518, 0.02290216272, 83996.84731811189], [3.436, 0.94937019624, 71430.69561812909], [3.221, 6.15628775313, 2146.1654164752], [3.414, 5.41218322538, 775.522611324], [2.863, 5.48432847146, 10447.3878396044], [2.52, 0.24276941146, 398.1490034082], [2.201, 4.95216196651, 6812.766815086], [2.186, 0.41991743105, 8031.0922630584], [2.838, 3.42034351366, 2352.8661537718], [2.554, 6.13241878525, 6438.4962494256], [1.932, 5.31374608366, 8429.2412664666], [2.429, 3.09164528262, 4690.4798363586], [1.73, 1.5368620855, 4705.7323075436], [2.25, 3.68863633842, 7084.8967811152], [2.093, 1.28191783032, 1748.016413067], [1.441, 0.81656250862, 14143.4952424306], [1.483, 3.22225357771, 7234.794256242], [1.754, 3.22883705112, 6279.5527316424], [1.583, 4.09702349428, 11499.6562227928], [1.575, 5.53890170575, 3154.6870848956], [1.847, 1.82040335363, 7632.9432596502], [1.504, 3.63293385726, 11513.8833167944], [1.337, 4.64440864339, 6836.6452528338], [1.275, 2.69341415363, 1349.8674096588], [1.352, 6.15101580257, 5746.271337896], [1.125, 3.35673439497, 17789.845619785], [1.47, 3.65282991755, 1194.4470102246], [1.177, 2.57676109092, 13367.9726311066], [1.101, 4.49748696552, 4292.3308329504], [1.234, 5.65036509521, 5760.4984318976], [0.984, 0.65517395136, 5856.4776591154], [0.928, 2.32420318751, 10213.285546211], [1.077, 5.82812169132, 12036.4607348882], [0.916, 0.76613009583, 16730.4636895958], [0.877, 1.50137505051, 11926.2544136688], [1.023, 5.62076589825, 6256.7775301916], [0.851, 0.65709335533, 155.4203994342], [0.802, 4.10519132088, 951.7184062506], [0.857, 1.41661697538, 5753.3848848968], [0.994, 1.14418521187, 1059.3819301892], [0.813, 1.63948433322, 6681.2248533996], [0.662, 4.5520045226, 5216.5803728014], [0.644, 4.19478168733, 6040.3472460174], [0.626, 1.50767713598, 5643.1785636774], [0.59, 6.18277145205, 4164.311989613], [0.635, 0.52413263542, 6290.1893969922], [0.65, 0.9793569035, 25132.3033999656], [0.568, 2.30125315873, 10973.55568635], [0.547, 5.27256412213, 3340.6124266998], [0.547, 2.20144422886, 1592.5960136328], [0.526, 0.92464258226, 11371.7046897582], [0.49, 5.90951388655, 3894.1818295422], [0.478, 1.66857963179, 12168.0026965746], [0.516, 3.59803483887, 10969.9652576982], [0.518, 3.97914412373, 17298.1823273262], [0.534, 5.03740926442, 9917.6968745098], [0.487, 2.50545369269, 6127.6554505572], [0.416, 4.04828175503, 10984.1923516998], [0.538, 5.54081539805, 553.5694028424], [0.402, 2.16544019233, 7860.4193924392], [0.553, 2.32177369366, 11506.7697697936], [0.367, 3.3915253225, 6496.3749454294], [0.36, 5.34379853282, 7079.3738568078], [0.337, 3.61563704045, 11790.6290886588], [0.456, 0.30754294809, 801.8209311238], [0.417, 3.70009308674, 10575.4066829418], [0.381, 5.82033971802, 7058.5984613154], [0.321, 0.31988767355, 16200.7727245012], [0.364, 1.08414306177, 6309.3741697912], [0.294, 4.54798604957, 11856.2186514245], [0.29, 1.26473978562, 8635.9420037632], [0.399, 4.16998866302, 26.2983197998], [0.262, 5.08316906342, 10177.2576795336], [0.243, 2.2574609119, 11712.9553182308], [0.237, 1.05070575346, 242.728603974], [0.275, 3.45319481756, 5884.9268465832], [0.255, 5.38496831087, 21228.3920235458], [0.307, 4.24313526604, 3738.761430108], [0.216, 3.46037894728, 213.299095438], [0.196, 0.69029243914, 1990.745017041], [0.198, 5.16301829964, 12352.8526045448], [0.214, 3.91876200279, 13916.0191096416], [0.212, 4.00861198517, 5230.807466803], [0.184, 5.59805976614, 6283.14316029419], [0.184, 2.85275392124, 7238.6755916], [0.179, 2.54259058334, 14314.1681130498], [0.225, 1.64458698399, 4732.0306273434], [0.236, 5.58826125715, 6069.7767545534], [0.187, 2.72805985443, 6062.6632075526], [0.184, 6.04216273598, 6283.0085396886], [0.23, 3.62591335086, 6284.0561710596], [0.163, 2.19117396803, 18073.7049386502], [0.172, 0.9761295074, 3930.2096962196], [0.215, 1.04672844028, 3496.032826134], [0.169, 4.75084479006, 17267.26820169119], [0.152, 0.19390712179, 9779.1086761254], [0.182, 5.16288118255, 17253.04110768959], [0.149, 0.8094418426, 709.9330485583], [0.163, 2.1920957039, 6076.8903015542], [0.186, 5.01159497089, 11015.1064773348], [0.134, 0.97765485759, 65147.6197681377], [0.141, 4.38421981312, 4136.9104335162], [0.158, 4.60974280627, 9623.6882766912], [0.133, 3.30508592837, 154717.6098876827], [0.163, 6.11782626245, 3.523118349], [0.174, 1.58078542187, 7.1135470008], [0.141, 0.49976927274, 25158.6017197654], [0.124, 6.03440460031, 9225.539273283], [0.15, 5.30166336812, 13517.8701062334], [0.127, 1.92389511438, 22483.84857449259], [0.121, 2.37813129011, 167283.7615876655], [0.12, 3.98423684853, 4686.8894077068], [0.117, 5.81072642211, 12569.6748183318], [0.122, 5.60973054224, 5642.1982426092], [0.157, 3.40236426002, 16496.3613962024], [0.129, 2.10705116371, 1589.0728952838], [0.116, 0.55839966736, 5849.3641121146], [0.123, 1.52961392771, 12559.038152982], [0.111, 0.44848279675, 6172.869528772], [0.123, 5.81645568991, 6282.0955289232], [0.15, 4.26278409223, 3128.3887650958], [0.106, 2.27437761356, 5429.8794682394], [0.104, 4.42743707728, 23543.23050468179], [0.121, 0.39459045915, 12132.439962106], [0.104, 2.41842602527, 426.598190876], [0.11, 5.80381480447, 16858.4825329332], [0.1, 2.93805577485, 4535.0594369244], [0.097, 3.97935904984, 6133.5126528568], [0.11, 6.22339014386, 12146.6670561076], [0.098, 0.87576563709, 6525.8044539654], [0.098, 3.15248421301, 10440.2742926036], [0.095, 2.461684111, 3097.88382272579], [0.088, 0.23371480284, 13119.72110282519], [0.098, 5.77016493489, 7342.4577801806], [0.092, 6.03915555063, 20426.571092422], [0.096, 5.56909292561, 2388.8940204492], [0.081, 1.32131147691, 5650.2921106782], [0.086, 3.94529200528, 10454.5013866052], [0.076, 2.70729716925, 143571.32428481648], [0.091, 5.64100034152, 8827.3902698748], [0.076, 1.80783856698, 28286.9904848612], [0.081, 1.90858992196, 29088.811415985], [0.075, 3.40955892978, 5481.2549188676], [0.069, 4.49936170873, 17256.6315363414], [0.088, 1.10098454357, 11769.8536931664], [0.066, 2.78285801977, 536.8045120954], [0.068, 3.88179770758, 17260.1546546904], [0.084, 1.59303306354, 9380.9596727172], [0.088, 3.88076636762, 7477.522860216], [0.061, 6.17558202197, 11087.2851259184], [0.06, 4.34824715818, 6206.8097787158], [0.082, 4.59843208943, 9388.0059094152], [0.079, 1.63131230601, 4933.2084403326], [0.078, 4.20905757484, 5729.506447149], [0.057, 5.48157926651, 18319.5365848796], [0.06, 1.01261781084, 12721.572099417], [0.056, 1.63031935692, 15720.8387848784], [0.055, 0.24926735018, 15110.4661198662], [0.061, 5.93059279661, 12539.853380183], [0.055, 4.84298966314, 13095.8426650774], [0.067, 6.11690589247, 8662.240323563], [0.054, 5.73750638571, 3634.6210245184], [0.074, 1.05466745829, 16460.33352952499], [0.053, 2.29084335688, 16062.1845261168], [0.064, 2.13513767927, 7875.6718636242], [0.067, 0.07096807518, 14945.3161735544], [0.051, 2.31511194429, 6262.7205305926], [0.057, 5.77055471237, 12043.574281889], [0.056, 4.41980790431, 4701.1165017084], [0.059, 5.87963500073, 5331.3574437408], [0.058, 2.30546168628, 955.5997416086], [0.049, 1.93839278478, 5333.9002410216], [0.048, 2.69973662261, 6709.6740408674], [0.064, 1.64379897981, 6262.300454499], [0.046, 3.98449608961, 98068.53671630539], [0.05, 3.68875893005, 12323.4230960088], [0.045, 3.30068569697, 22003.9146348698], [0.047, 1.26317154881, 11919.140866668], [0.045, 0.89150445122, 51868.2486621788], [0.043, 1.61526242998, 6277.552925684], [0.043, 5.74295325645, 11403.676995575], [0.044, 3.43070646822, 10021.8372800994], [0.056, 0.02481833774, 15671.0817594066], [0.055, 3.14274403422, 33019.0211122046], [0.045, 3.00877289177, 8982.810669309], [0.046, 0.73303568429, 6303.4311693902], [0.049, 1.60455690285, 6303.8512454838], [0.045, 0.40210030323, 6805.6532680852], [0.053, 0.94869680175, 10988.808157535], [0.041, 1.61122384329, 6819.8803620868], [0.055, 0.89439119424, 11933.3679606696], [0.045, 3.88495384656, 60530.4889857418], [0.04, 4.75740908001, 38526.574350872], [0.04, 1.49921251887, 18451.07854656599], [0.04, 3.77498297228, 26087.9031415742], [0.051, 1.70258603562, 1551.045222648], [0.039, 2.97100699926, 2118.7638603784], [0.053, 5.19854123078, 77713.7714681205], [0.047, 4.26356628717, 21424.4666443034], [0.037, 0.62902722802, 24356.7807886416], [0.036, 0.11087914947, 10344.2950653858], [0.036, 0.77037556319, 12029.3471878874], [0.035, 3.30933994515, 24072.9214697764], [0.035, 5.93650887012, 31570.7996493912], [0.036, 2.15108874765, 30774.5016425748], [0.036, 1.75078825382, 16207.886271502], [0.033, 5.06264177921, 226858.23855437007], [0.034, 6.168913788, 24491.4257925834], [0.035, 3.19120695549, 32217.2001810808], [0.034, 2.31528650443, 55798.4583583984], [0.032, 4.21446357042, 15664.03552270859], [0.039, 1.24979117796, 6418.1409300268], [0.037, 4.1194365577, 2787.0430238574], [0.032, 1.6288771089, 639.897286314], [0.038, 5.89832942685, 640.8776073822], [0.032, 1.72442327688, 27433.88921587499], [0.031, 2.78828943753, 12139.5535091068], [0.035, 4.44608896525, 18202.21671665939], [0.034, 3.96287980676, 18216.443810661], [0.033, 4.73611335874, 16723.350142595], [0.034, 1.43910280005, 49515.382508407], [0.031, 0.23302920161, 23581.2581773176], [0.029, 2.0263384022, 11609.8625440122], [0.03, 2.5492323024, 9924.8104215106], [0.032, 4.91793198558, 11300.5842213564], [0.028, 0.26187189577, 13521.7514415914], [0.028, 3.84568936822, 2699.7348193176], [0.029, 1.83149729794, 29822.7832363242], [0.033, 4.60320094415, 19004.6479494084], [0.027, 4.46183450287, 6702.5604938666], [0.03, 4.4649407224, 36147.4098773004], [0.027, 0.03211931363, 6279.7894925736], [0.026, 5.46497324333, 6245.0481773556], [0.035, 4.52695674113, 36949.2308084242], [0.027, 3.52528177609, 10770.8932562618], [0.026, 1.48499438453, 11080.1715789176], [0.035, 2.82154380962, 19402.7969528166], [0.025, 2.46339998836, 6279.4854213396], [0.026, 4.97688894643, 16737.5772365966], [0.026, 2.36136541526, 17996.0311682222], [0.029, 4.15148654061, 45892.73043315699], [0.026, 4.50714272714, 17796.9591667858], [0.027, 4.72625223674, 1066.49547719], [0.025, 2.89309528854, 6286.6662786432], [0.027, 0.37462444357, 12964.300703391], [0.029, 4.94860010533, 5863.5912061162], [0.031, 3.93096113577, 29864.334027309], [0.024, 6.14987193584, 18606.4989460002], [0.024, 3.74225964547, 29026.48522950779], [0.025, 5.70460621565, 27707.5424942948], [0.025, 5.33928840652, 15141.390794312], [0.027, 3.0232089714, 6286.3622074092], [0.023, 0.28364955406, 5327.4761083828], [0.026, 1.34240461687, 18875.525869774], [0.024, 1.33998410121, 19800.9459562248], [0.025, 6.00172494004, 6489.2613984286], [0.022, 1.81777974484, 6288.5987742988], [0.022, 3.5860360664, 6915.8595893046], [0.029, 2.09564449439, 15265.8865193004], [0.022, 1.02173599251, 11925.2740926006], [0.022, 4.74660932338, 28230.18722269139], [0.021, 2.30688751432, 5999.2165311262], [0.021, 3.2265494443, 25934.1243310894], [0.021, 3.04956726238, 6566.9351688566], [0.027, 5.35653084499, 33794.5437235286], [0.028, 3.91168324815, 18208.349942592], [0.02, 1.52296293311, 135.0650800354], [0.022, 4.66462839521, 13362.4497067992], [0.019, 1.78121167862, 156137.47598479927], [0.019, 2.99969102221, 19651.048481098], [0.019, 2.86664273362, 18422.62935909819], [0.025, 0.94995632141, 31415.379249957], [0.019, 4.71432851499, 77690.75950573849], [0.019, 2.54227398241, 77736.78343050249], [0.02, 5.91915117116, 48739.859897083]], [[4359.385, 5.78455133738, 6283.0758499914], [123.633, 5.57934722157, 12566.1516999828], [12.341, 3.14159265359, 0.0], [8.792, 3.62777733395, 77713.7714681205], [5.689, 1.86958905084, 5573.1428014331], [3.301, 5.47027913302, 18849.2275499742], [1.471, 4.48028885617, 5507.5532386674], [1.013, 2.81456417694, 5223.6939198022], [0.854, 3.10878241236, 1577.3435424478], [1.102, 2.84173992403, 161000.6857376741], [0.648, 5.47349498544, 775.522611324], [0.609, 1.37969434104, 6438.4962494256], [0.499, 4.4164924225, 6286.5989683404], [0.417, 0.90242451175, 10977.078804699], [0.402, 3.2037658529, 5088.6288397668], [0.351, 1.8107922777, 5486.777843175], [0.467, 3.65753702738, 7084.8967811152], [0.458, 5.38585314743, 149854.4001348079], [0.304, 3.51701098693, 796.2980068164], [0.266, 6.17413982699, 6836.6452528338], [0.279, 1.84120501086, 4694.0029547076], [0.26, 1.41629543251, 2146.1654164752], [0.266, 3.13832905677, 71430.69561812909], [0.321, 5.35313367048, 3154.6870848956], [0.238, 2.17720020018, 155.4203994342], [0.293, 4.61501268144, 4690.4798363586], [0.229, 4.7596958807, 7234.794256242], [0.211, 0.21868065485, 4705.7323075436], [0.201, 4.21905743357, 1349.8674096588], [0.195, 4.57808285364, 529.6909650946], [0.253, 2.81496293039, 1748.016413067], [0.182, 5.70454011389, 6040.3472460174], [0.179, 6.02897097053, 4292.3308329504], [0.186, 1.58690991244, 6309.3741697912], [0.17, 2.90220009715, 9437.762934887], [0.166, 1.99984925026, 8031.0922630584], [0.158, 0.04783713552, 2544.3144198834], [0.197, 2.01083639502, 1194.4470102246], [0.165, 5.78372596778, 83996.84731811189], [0.214, 3.38285934319, 7632.9432596502], [0.14, 0.36401486094, 10447.3878396044], [0.151, 0.95153163031, 6127.6554505572], [0.136, 1.48426306582, 2352.8661537718], [0.127, 5.48475435134, 951.7184062506], [0.126, 5.26866506592, 6279.5527316424], [0.125, 3.75754889288, 6812.766815086], [0.101, 4.95015746147, 398.1490034082], [0.102, 0.68468295277, 1592.5960136328], [0.1, 1.14568935785, 3894.1818295422], [0.129, 0.76540016965, 553.5694028424], [0.109, 5.41063597567, 6256.7775301916], [0.075, 5.84804322893, 242.728603974], [0.095, 1.94452244083, 11856.2186514245], [0.077, 0.69373708195, 8429.2412664666], [0.1, 5.19725292131, 244287.60000722768], [0.08, 6.18440483705, 1059.3819301892], [0.069, 5.25699888595, 14143.4952424306], [0.085, 5.39484725499, 25132.3033999656], [0.066, 0.51779993906, 801.8209311238], [0.055, 5.16878202461, 7058.5984613154], [0.051, 3.88759155247, 12036.4607348882], [0.05, 5.57636570536, 6290.1893969922], [0.061, 2.24359003264, 8635.9420037632], [0.05, 5.54441900966, 1990.745017041], [0.056, 4.0030107804, 13367.9726311066], [0.052, 4.13138898038, 7860.4193924392], [0.052, 3.90943054011, 26.2983197998], [0.041, 3.5712848278, 7079.3738568078], [0.056, 2.76959005761, 90955.5516944961], [0.042, 1.91461189199, 7477.522860216], [0.042, 0.42728171713, 10213.285546211], [0.042, 1.09413724455, 709.9330485583], [0.039, 3.93298068961, 10973.55568635], [0.038, 6.17935925345, 9917.6968745098], [0.049, 0.83021145241, 11506.7697697936], [0.053, 1.45828359397, 233141.3144043615], [0.047, 6.21568666789, 6681.2248533996], [0.037, 0.3635930998, 10177.2576795336], [0.035, 3.33024911524, 5643.1785636774], [0.034, 5.63446915337, 6525.8044539654], [0.035, 5.36033855038, 25158.6017197654], [0.034, 5.36319798321, 4933.2084403326], [0.033, 4.24722336872, 12569.6748183318], [0.043, 5.26370903404, 10575.4066829418], [0.042, 5.08837645072, 11015.1064773348], [0.04, 1.98334703186, 6284.0561710596], [0.042, 4.22496037505, 88860.05707098669], [0.029, 3.1908862817, 11926.2544136688], [0.029, 0.15217616684, 12168.0026965746], [0.03, 1.61904744136, 9779.1086761254], [0.027, 0.76388991416, 1589.0728952838], [0.036, 2.74712003443, 3738.761430108], [0.033, 3.08807829566, 3930.2096962196], [0.031, 5.34906619513, 143571.32428481648], [0.025, 0.10240267494, 22483.84857449259], [0.03, 3.47110495524, 14945.3161735544], [0.024, 1.10425016019, 4535.0594369244], [0.024, 1.5803725978, 6496.3749454294], [0.023, 3.87710321433, 6275.9623029906], [0.025, 3.9452977897, 3128.3887650958], [0.023, 3.44685609601, 4136.9104335162], [0.023, 3.83156029849, 5753.3848848968], [0.022, 1.86956128067, 16730.4636895958], [0.025, 2.42188933855, 5729.506447149], [0.02, 1.78208352927, 17789.845619785], [0.021, 4.303630874, 16858.4825329332], [0.021, 0.49258939822, 29088.811415985], [0.025, 1.33030250444, 6282.0955289232], [0.027, 2.54785812264, 3496.032826134], [0.022, 1.1123252195, 12721.572099417], [0.021, 5.97759081637, 7.1135470008], [0.019, 0.80292033311, 16062.1845261168], [0.023, 4.12454848769, 2388.8940204492], [0.022, 4.92663152168, 18875.525869774], [0.023, 5.68902059771, 16460.33352952499], [0.023, 4.97346265647, 17260.1546546904], [0.023, 3.03021283729, 66567.48586525429], [0.016, 3.89740925257, 5331.3574437408], [0.017, 3.08268671348, 154717.6098876827], [0.016, 3.95085099736, 3097.88382272579], [0.016, 3.99041783945, 6283.14316029419], [0.02, 6.10644140189, 167283.7615876655], [0.015, 4.09775914607, 11712.9553182308], [0.016, 5.717699407, 17298.1823273262], [0.016, 3.28894009404, 5884.9268465832], [0.015, 5.64785377164, 12559.038152982], [0.016, 4.4345208093, 6283.0085396886], [0.014, 2.31721603062, 5481.2549188676], [0.014, 4.43479032305, 13517.8701062334], [0.014, 4.73209312936, 7342.4577801806], [0.012, 0.64705975463, 18073.7049386502], [0.011, 1.514433322, 16200.7727245012], [0.011, 0.88708889185, 21228.3920235458], [0.014, 4.50116508534, 640.8776073822], [0.011, 4.64339996198, 11790.6290886588], [0.011, 1.31064298246, 4164.311989613], [0.009, 3.02238989305, 23543.23050468179], [0.009, 2.04999402381, 22003.9146348698], [0.009, 4.91488110218, 213.299095438]], [[144.595, 4.27319435148, 6283.0758499914], [6.729, 3.91697608662, 12566.1516999828], [0.774, 0.0, 0.0], [0.247, 3.73019298781, 18849.2275499742], [0.036, 2.8008140905, 6286.5989683404], [0.033, 5.62216602775, 6127.6554505572], [0.019, 3.71292621802, 6438.4962494256], [0.016, 4.26011484232, 6525.8044539654], [0.016, 3.50416887054, 6256.7775301916], [0.014, 3.62127621114, 25132.3033999656], [0.011, 4.39200958819, 4705.7323075436], [0.011, 5.22327127059, 6040.3472460174], [0.01, 4.28045254647, 83996.84731811189], [0.009, 1.56864096494, 5507.5532386674], [0.011, 1.37795688024, 6309.3741697912], [0.01, 5.19937959068, 71430.69561812909], [0.009, 0.4727519993, 6279.5527316424], [0.009, 0.74642756529, 5729.506447149], [0.007, 2.9737489156, 775.522611324], [0.007, 3.28615691021, 7058.5984613154], [0.007, 2.19184402142, 6812.766815086], [0.005, 3.15419034438, 529.6909650946], [0.006, 4.54725567047, 1059.3819301892], [0.005, 1.51104406936, 7079.3738568078], [0.007, 2.98052059053, 6681.2248533996], [0.005, 2.30961231391, 12036.4607348882], [0.005, 3.71102966917, 6290.1893969922]], [[3.858, 2.56384387339, 6283.0758499914], [0.306, 2.2676950123, 12566.1516999828], [0.053, 3.44031471924, 5573.1428014331], [0.015, 2.04794573436, 18849.2275499742], [0.013, 2.05688873673, 77713.7714681205], [0.007, 4.4121885448, 161000.6857376741], [0.005, 5.26154653107, 6438.4962494256], [0.005, 4.07695126049, 6127.6554505572], [0.006, 3.81514213664, 149854.4001348079], [0.003, 1.28175749811, 6286.5989683404]], [[0.086, 1.21579741687, 6283.0758499914], [0.012, 0.65617264033, 12566.1516999828], [0.001, 0.38068797142, 18849.2275499742]]]

This table contains Earth’s periodic terms (all of them) from the planetary theory VSOP87 for the radius vector at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in pages 420-421.

pymeeus.Earth.WGS84 = Ellipsoid(6378137.0, 0.00335281066475, 7.292115e-05)

Reference ellipsoid World Geodetic System 1984, a modern ellipsoid used by the GPS system, and the standard in many applications