Geodesy Refresher Practice Exam

Session length

1 / 20

Given the X, Y, and Z coordinates of a point, determine the equivalent longitude.

λ = tan^-1 (Y/X)

Longitude is the angle around the Z-axis in the X–Y plane, measured from the X-axis toward the Y-axis. For a point with Cartesian coordinates, its projection onto the equatorial plane is (X, Y), and the tangent of the longitude equals Y divided by X. So the longitude is λ = arctan(Y/X). In practice you’d use atan2(Y, X) to get the correct quadrant for all signs of X and Y, but the basic relationship shown is tan(λ) = Y/X, which matches the chosen expression. The other forms don’t represent longitude: using X/Y would give tan(λ) = X/Y, φ denotes latitude, and arccos(Y/X) does not produce the longitude angle.

λ = tan^-1 (X/Y)

φ = tan^-1 (Y/X)

λ = arccos (Y/X)

Next Question
Subscribe

Get the latest from Examzify

You can unsubscribe at any time. Read our privacy policy