Tool to compute Azimuth: angle between the direction of an object and the geographic north in the horizontal plan from geographic coordinates.
Azimuth - dCode
Tag(s) : Geography
dCode is free and its tools are a valuable help in games, maths, geocaching, puzzles and problems to solve every day!
A suggestion ? a feedback ? a bug ? an idea ? Write to dCode!
From 2 GPS points (Point 1: latitude $ lat_1 $, longitude $ long_1 $ and Point 2 latitude $ lat_2 $, longitude $ long_2 $), the formula to calculate an azimuth $ A $ is $$ A = \operatorname{atan2}(y, x) $$
with $ y = \cos(lat_1) \cdot \sin(lat_2) - \sin(lat_1) \cdot \cos(lat_2) \cdot \cos(long_2-long_1) $ and $ x = \sin(long_2-long_1) \cdot \cos(lat_2) $
Reminder: the arctan2 formula is $$ \operatorname{atan2}(y,x) = 2 \arctan \left( \frac{ y }{ \sqrt{x^2+y^2} + x } \right) $$
The angle is calculated by taking as base/reference the north geographic pole.
Every hour, the Earth rotates on itself about 15 degrees, so every hour on Earth, the sun is seen 15 degrees further west.
By knowing the azimuth of the sun, solar time can be calculated. At noon, the sun is 180 degrees. Each difference of 15 degrees is 1 hour.
Example: The azimuth of the sun at 165 degrees: it is around 11 am.
Example: The azimuth of the sun at 210 degrees: it is about 2 pm.
The given time is Solar Time.
Azimuth, with or without h, are 2 identical terms, despite the spelling variant, both spellings are accepted.
dCode retains ownership of the "Azimuth" source code. Except explicit open source licence (indicated Creative Commons / free), the "Azimuth" algorithm, the applet or snippet (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, breaker, translator), or the "Azimuth" functions (calculate, convert, solve, decrypt / encrypt, decipher / cipher, decode / encode, translate) written in any informatic language (Python, Java, PHP, C#, Javascript, Matlab, etc.) and all data download, script, or API access for "Azimuth" are not public, same for offline use on PC, mobile, tablet, iPhone or Android app!
Reminder : dCode is free to use.
The copy-paste of the page "Azimuth" or any of its results, is allowed (even for commercial purposes) as long as you credit dCode!
Exporting results as a .csv or .txt file is free by clicking on the export icon
Cite as source (bibliography):
Azimuth on dCode.fr [online website], retrieved on 2024-11-20,