lat1, lon1, alt1 =
aer2geodetic (az,el, slantRange, lat0, lon0, alt0)
¶lat1, lon1, alt1 =
aer2geodetic (az,el, slantRange, lat0, lon0, alt0, spheroid)
¶lat1, lon1, alt1 =
aer2geodetic (az,el, slantRange, lat0, lon0, alt0, spheroid, angleUnit)
¶Convert Azimuth, Elevation and Range (AER) coordinates to geodetic coordinates (latitude, longitude, local height).
Inputs:
Outputs:
Example
[x, y, z] = aer2geodetic (33, 70, 1e3, 42, -82, 200) x = 42.000 y = -82.000 z = 1139.7
With radians
[x, y, z] = aer2geodetic (pi/6, pi/3, 1e3, pi/4, -pi/2, 200, ... "wgs84", "radians") x = 0.78547 y = -1.5707 z = 1066.0
Note: aer2geodetic is a mere wrapper for functions aer2ecef followed by ecef2geodetic.
See also: geodetic2aer, aer2ecef, aer2enu, aer2ned, referenceEllipsoid.
Package: mapping