x, y, z =
aer2ecef (az,el, slantRange, lat0, lon0, alt0)
¶x, y, z =
aer2ecef (az,el, slantRange, lat0, lon0, alt0, spheroid)
¶x, y, z =
aer2ecef (az,el, slantRange, lat0, lon0, alt0, spheroid, angleUnit)
¶Convert Azimuth, Elevation, Range (AER) coordinates to Earth Centered Earth Fixed (ECEF) coordinates.
Inputs:
Outputs:
Example
[x, y, z] = aer2ecef (33, 70, 1e3, 42, -82, 200) x = 6.6057e+05 y = -4.7002e+06 z = 4.2450e+06
With radians
[x, y, z] = aer2ecef (pi/6, pi/3, 1e3, pi/4, -pi/2, 200, "wgs84", "radians") x = 250.00 y = -4.5180e+06 z = 4.4884e+06
Note: aer2ecef is a mere wrapper for functions geodetic2ecef, aer2enu and enu2uvw.
See also: ecef2aer, aer2enu, aer2geodetic, aer2ned, referenceEllipsoid.
Package: mapping