Lat long Conversion from geodetic to ECEF
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Curious
el 15 de Jul. de 2022
Comentada: Curious
el 17 de Jul. de 2022
I have a problem. I want to convert lattitude and longitude from geodetic coordinates(given in degrees as 33.7660° N, 72.3609° E) to ECEF. There is a function for this as "lla2ecef' but it only do it for one position and I want to do it for like 4 coordinates (lat,long) and I have no clue. Any help would be appreciated.
0 comentarios
Respuesta aceptada
Amritesh
el 15 de Jul. de 2022
You can input your 4 coordinates in lla2ecef like
p = lla2ecef([0 45 1000; 45 90 2000], 'WGS84');
Here, it is 2 coordinates(lat, lon, and h) are used. You can find more details at Determine ECEF Coordinates at Multiple Latitudes, Longitudes, and Altitudes section of https://in.mathworks.com/help/aerotbx/ug/lla2ecef.html
You can also look into geodetic function.
Documentation Link: https://in.mathworks.com/help/map/ref/geodetic2ecef.html
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!