File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -147,10 +147,6 @@ State estimate naming conventions are as follows:
147147 degrees.
148148* :code: `lon_rx_deg ` : (float) receiver longitude position estimate in
149149 degrees.
150- * :code: `lat_rx_rad ` : (float) receiver latitude position estimate in
151- radians.
152- * :code: `lon_rx_rad ` : (float) receiver longitude position estimate in
153- radians.
154150* :code: `alt_rx_m ` : (float) receiver altitude position estimate in
155151 meters. Referenced to the WGS-84 ellipsoid.
156152
@@ -171,10 +167,6 @@ Ground truth naming conventions are as follows:
171167 degrees.
172168* :code: `lon_gt_deg ` : (float) receiver ground truth longitude in
173169 degrees.
174- * :code: `lat_gt_rad ` : (float) receiver ground truth latitude in
175- radians.
176- * :code: `lon_gt_rad ` : (float) receiver ground truth longitude in
177- radians.
178170* :code: `alt_gt_m ` : (float) receiver ground truth altitude in meters.
179171 Referenced to the WGS-84 ellipsoid.
180172
Original file line number Diff line number Diff line change @@ -85,8 +85,6 @@ def geodetic_to_ecef(geodetic, radians=False):
8585def ecef_to_geodetic (ecef , radians = False ):
8686 """ECEF to LLA conversion using Ferrari's method.
8787
88- # TODO: add height stuff
89-
9088 Parameters
9189 ----------
9290 ecef : np.ndarray
@@ -101,7 +99,8 @@ def ecef_to_geodetic(ecef, radians=False):
10199 geodetic : np.ndarray
102100 Float with WGS-84 LLA coordinates corresponding to input ECEF.
103101 Order is returned as (lat, lon, h) and is returned in the same
104- shape as the input.
102+ shape as the input. Height is in meters above the the WGS-84
103+ ellipsoid.
105104
106105 Notes
107106 -----
You can’t perform that action at this time.
0 commit comments