Skip to content

Commit

Permalink
format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
niwhsa9 authored and scivision committed Jan 8, 2025
1 parent 2512c97 commit da9291b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pymap3d/enu.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def geodetic2enu(

def enu2ecefv(e, n, u, lat0, lon0, deg: bool = True) -> tuple:
"""
VECTOR from observer to target ENU => ECEF
VECTOR from observer to target ENU => ECEF
Parameters
----------
Expand Down Expand Up @@ -241,4 +241,4 @@ def enu2ecefv(e, n, u, lat0, lon0, deg: bool = True) -> tuple:
y = cos(lon0) * e - sin(lat0) * sin(lon0) * n + cos(lat0) * sin(lon0) * u
z = cos(lat0) * n + sin(lat0) * u

return x, y, z
return x, y, z

0 comments on commit da9291b

Please sign in to comment.