NAME

HelioLat

Find the heliocentric latitude of a planet.

USAGE

HelioLat nPlanet

PARAMETERS

nplanet: number of the planet.

Valid values are

2: Mercury
3: Venus
4: Mars
5: Jupiter
6: Saturn
11:Uranus
12: Neptune
13: Pluto

OPTIONS

None

RETURN

Heliocentric latitude in decimal degrees of the planet.

EXAMPLE

PutTxt "--- Heliocentric latitudes ---"

foreach {i} {2 3 4 5 6 11 12 13} {
PutTxt "Helio Latitude of [NameOfPlanet $i] = [HelioLat $i] "
}

Output

--- Heliocentric latitudes ---

Helio Latitude of Mercury = 6.82108298876
Helio Latitude of Venus = -0.966257151865
Helio Latitude of Mars = -0.961018891596
Helio Latitude of Jupiter = -0.490896293092
Helio Latitude of Saturn = -1.92710970065
Helio Latitude of Uranus = 0.770229175495
Helio Latitude of Neptune = 1.75568506317
Helio Latitude of Pluto = 14.4328491036

See also:

HelioLong