Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkWieczorek committed Aug 27, 2024
1 parent dd465a7 commit 5744b5a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions boule/_ellipsoid.py
Original file line number Diff line number Diff line change
Expand Up @@ -668,9 +668,7 @@ def geodetic_to_ellipsoidal_harmonic(self, longitude, latitude, height):

# Reduced latitude of the projection of the point on the
# reference ellipsoid
beta = np.arctan2(
self.semiminor_axis * sinlat, self.semimajor_axis * coslat
)
beta = np.arctan2(self.semiminor_axis * sinlat, self.semimajor_axis * coslat)
sinbeta = np.sin(beta)
cosbeta = np.sqrt(1 - sinbeta**2)

Expand Down

0 comments on commit 5744b5a

Please sign in to comment.