Skip to content

Commit da9291b

Browse files
niwhsa9scivision
authored andcommitted
format changes
1 parent 2512c97 commit da9291b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pymap3d/enu.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def geodetic2enu(
206206

207207
def enu2ecefv(e, n, u, lat0, lon0, deg: bool = True) -> tuple:
208208
"""
209-
VECTOR from observer to target ENU => ECEF
209+
VECTOR from observer to target ENU => ECEF
210210
211211
Parameters
212212
----------
@@ -241,4 +241,4 @@ def enu2ecefv(e, n, u, lat0, lon0, deg: bool = True) -> tuple:
241241
y = cos(lon0) * e - sin(lat0) * sin(lon0) * n + cos(lat0) * sin(lon0) * u
242242
z = cos(lat0) * n + sin(lat0) * u
243243

244-
return x, y, z
244+
return x, y, z

0 commit comments

Comments
 (0)