Angular Distance Between Stars +- HP Forums (http://www.hpmuseum.org/forum) +-- Forum: HP Software Libraries (/forum-10.html) +--- Forum: HP Prime Software Library (/forum-15.html) +--- Thread: Angular Distance Between Stars (/thread-8498.html) |
Angular Distance Between Stars - Eddie W. Shore - Today 07:15 AM Given the right ascension (α) and declination (δ) of two stars of the same epoch (J2000.0 is the most current), the distance between the stars are: d = acos( sin δ1 * sin δ2 + cos δ1 * cos δ2 * cos (α1 – α2) ) The distance is usually given in decimal degrees. Enter α in terms of hours, minutes, seconds (standard notation) and δ in terms of degrees, minutes, seconds (standard notation). HP Prime Program: ANGSTAR Code:
Example Distance between Regulus (A) in Leo and Sadalmelik in Aquarius: (data via Wikipedia) Regulus: α = 10h8m23.11s, δ = +11°58’01.95” Sadamelik: α = 22h5m47.03593s, δ = -0°19’11.4568” Distance: 168°20’05.1793” Source: Meeus, Jean. Astronomical Algorithms William-Bell, Inc. Richmond, VA 1991. ISBN 0-943396-35-2 |