필터 지우기
필터 지우기

Transformation between ellipsoids function

조회 수: 3 (최근 30일)
Jakub Snopl
Jakub Snopl 2022년 3월 4일
답변: Anshuman 2024년 1월 31일
Hi,
is there any function for transformation between ellipsoids in MATLAB?
  댓글 수: 6
Jakub Snopl
Jakub Snopl 2022년 3월 4일
Thank you, I already found this. I was just curious if anything like this exists in MATLAB library.
Torsten
Torsten 2022년 3월 4일
This requires expert knowledge.
If you have a licence for this toolbox, you should contact MATLAB support for clarification.

댓글을 달려면 로그인하십시오.

답변 (1개)

Anshuman
Anshuman 2024년 1월 31일
Hi Jakub,
MATLAB provides functions to perform transformations between different reference ellipsoids, which are typically used in geodetic computations. The transformations can involve converting geodetic coordinates (latitude, longitude, height) from one ellipsoid to another.
Mapping Toolbox includes functions like "geodetic2ecef" and "ecef2geodetic" to convert between geodetic coordinates and Earth-Centered Earth-Fixed (ECEF) coordinates, based on a specified reference ellipsoid. It can be done in the following way:
% Convert geodetic coordinates on ellipsoid A to ECEF coordinates
[xA, yA, zA] = geodetic2ecef(ellipsoidA, latA, lonA, hA);
% Convert ECEF coordinates to geodetic coordinates on ellipsoid B
[latB, lonB, hB] = ecef2geodetic(ellipsoidB, xA, yA, zA);

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by