The Rhumb Line Azimuth calculator computes the azimuth angle for a rhumb line between to latitude / longitude coordinates.
INSTRUCTIONS: Choose units and enter the following:
- (LT1) Latitude One
- (LN1) Longitude One
- (LT2) Latitude Two
- (LN2) Longitude Two
Rhumb Line Azimuth (Az): The azimuth is returned in both decimal degrees and degrees, minutes, seconds.
The Math / Science
In sailing, azimuth refers to the angle between a fixed reference direction (typically true north) and the direction of an object or point of interest on the horizon, measured clockwise around the observer’s horizon. This measurement is usually given in degrees, from 0° to 360°.
Heading, on the other hand, is the direction in which the vessel's bow is pointed, also measured in degrees relative to true or magnetic north. It indicates the direction of travel but does not necessarily correspond to the actual path due to wind, current, or drift.
Difference between Azimuth and Heading:
- Azimuth: Measures the direction of a specific object or location relative to true north from the observer's position.
- Heading: The direction the boat is currently pointed, relative to true or magnetic north.
So, while the azimuth represents the angle between north and the object you're observing, the heading refers to where your boat is actually pointing or moving. These two angles can differ, especially if you're navigating towards a distant point that's not directly ahead.
A rhumb line, also known as a loxodrome, is a path on the surface of a sphere (such as the Earth) that crosses all meridians of longitude at a constant angle. Unlike a great circle route, which is the shortest path between two points on the globe, a rhumb line maintains a constant bearing (direction) and is easier to navigate using a compass.
Key Characteristics of a Rhumb Line:
- Constant Bearing: A rhumb line crosses each meridian at the same angle, making it a line of constant compass direction.
- Ease of Navigation: Because the bearing remains constant, it's easier to follow using traditional navigation techniques, such as a compass, without continuously adjusting the course.
- Non-Shortest Path: On a spherical surface, a rhumb line is not the shortest distance between two points. The shortest path is a segment of a great circle.
- Spiraling towards the Poles: On a Mercator projection map, which is commonly used for navigation, rhumb lines appear as straight lines. However, on a spherical surface, rhumb lines spiral towards the poles.
Practical Usage:
- Marine and Air Navigation: Rhumb lines are particularly useful in marine and air navigation for courses that need to be followed over long distances without changing direction.
- Mercator Projection: On a Mercator projection map, rhumb lines are represented as straight lines, which simplifies the navigation process.
Example:
If a ship were to sail from London to New York City along a rhumb line, it would maintain a constant compass direction throughout the journey, even though this path is longer than the great circle route.
Algorithm
The rhumb line (loxodrome) azimuth between two points on the globe, you can follow these steps:
- Convert Latitude and Longitude to Radians:
- ϕ1 and λ1 are the latitude and longitude of the first point in radians.
- ϕ2 and λ2 are the latitude and longitude of the second point in radians.
- Calculate the Change in Longitude:
- Calculate the Mean Latitude:
- Calculate the Change in Latitude:
- Calculate the Meridional Parts for Both Latitudes:
- The meridional part, M(ϕ), can be calculated using the formula:
- Calculate M(ϕ1) and M(ϕ2):
- M(ϕ1)=ln(tan(π/4+ϕ1/2))
- M(ϕ2)=ln(tan(π/4+ϕ2/2))
- Calculate the Change in Meridional Parts:
- Calculate the Rhumb Line Azimuth (bearing):
- The azimuth α\alphaα can be calculated using the formula:
- Adjust the Azimuth:
- Ensure the azimuth is in the correct quadrant by adjusting for the signs of Δλ\Delta \lambdaΔλ and ΔM\Delta MΔM.
- If Δλ>0 and ΔM>0, the azimuth α\alphaα is in the first quadrant.
- If Δλ>0 and ΔM<0, the azimuth α\alphaα is in the fourth quadrant.
- If Δλ<0 and ΔM>0, the azimuth α\alphaα is in the second quadrant.
- If Δλ<0 and ΔM<0, the azimuth α\alphaα is in the third quadrant.