You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In GeodeticConverter::initializeReference() the ecef_to_ned_matrix_ is defined using double phiP = atan2(initial_ecef_z_, sqrt(pow(initial_ecef_x_, 2) + pow(initial_ecef_y_, 2))); as the latitude.
Doesn't this imply a geocentric latitude instead of geodetic latitude? Why isn't the geodetic initial_latitude_ used, like in the reverse ned_to_ecef_matrix_?
The text was updated successfully, but these errors were encountered:
In GeodeticConverter::initializeReference() the
ecef_to_ned_matrix_
is defined usingdouble phiP = atan2(initial_ecef_z_, sqrt(pow(initial_ecef_x_, 2) + pow(initial_ecef_y_, 2)));
as the latitude.Doesn't this imply a geocentric latitude instead of geodetic latitude? Why isn't the geodetic
initial_latitude_
used, like in the reversened_to_ecef_matrix_
?The text was updated successfully, but these errors were encountered: