We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68473af commit 7f6970fCopy full SHA for 7f6970f
geodesy/lamberts_ellipsoidal_distance.py
@@ -95,8 +95,8 @@ def lamberts_ellipsoidal_distance(
95
# Intermediate X value
96
# X = (sigma - sin(sigma)) * sin^2Pcos^2Q / cos^2(sigma/2)
97
x_numerator = (sin(p_value) ** 2) * (cos(q_value) ** 2)
98
- x_demonimator = cos(sigma / 2) ** 2
99
- x_value = (sigma - sin(sigma)) * (x_numerator / x_demonimator)
+ x_denominator = cos(sigma / 2) ** 2
+ x_value = (sigma - sin(sigma)) * (x_numerator / x_denominator)
100
101
# Intermediate Y value
102
# Y = (sigma + sin(sigma)) * cos^2Psin^2Q / sin^2(sigma/2)
0 commit comments