In MATLAB Online öffnen Herunterladen ECEF2LLA - convert earth-centered earth-fixed (ECEF) cartesian coordinates to latitude, longitude, and altitude. USAGE: [lat,lon,alt] = ecef2lla(x,y,z) lat = geodetic latitude (radians) lon = longitude (radians) ...
I'm trying to convert a WGS84 lon, lat and alt to ECEF and Pyproj is giving me really weird results. My code is simply: lon, lat, alt = 49.74761271 -113.2179781 0 ecef = pyproj.Proj(proj='geocent', ellps='WGS84', datum='WGS84') lla = pyp...