Calculate distance between two coordinates with depth
古いコメントを表示
I need to do what's in the title. I saw a file exchange about calculating the distance between two coordinates, but how would i do it considering the altitude? I have my data in latitude and longitude so i would need something to convert it first, i saw online and doing it one by one would take to long
2 件のコメント
Ameer Hamza
2018 年 5 月 30 日
What do you mean by "considering the altitude". Give an example to clarify your question.
Feliciano Döring
2018 年 5 月 30 日
編集済み: Feliciano Döring
2018 年 5 月 30 日
採用された回答
その他の回答 (1 件)
Rob Comer
2022 年 4 月 29 日
As Dr. Kearney suggested, the Mapping Toolbox can help. If you have it, try using ecefOffset. It computes the 3-D offset vector between two points (or, element-wise, between two sets of points), in an Earth-Centered Earth-Fixed (ECEF) coordinate system. From there, it's just a matter of computing the length of the offset vector to obtain the distance.
[deltaX,deltaY,deltaZ] = ecefOffset(spheroid,lat1,lon1,h1,lat2,lon2,h2);
d = hypot(hypot(deltaX,deltaY),deltaZ);
As the syntax suggests, the points need to be specified relative to a reference spheroid. (In many cases, wgs84ellipsoid will give an appropriate value.) The latitudes and longitudes need to be in degrees, and the height units need to match spheroid.LengthUnit. The h1 and h2 inputs should be heights above the ellipsoid, so if the available altitude values are referenced to something else (e.g., Mean Sea Level or Ground Level), they should be converted first using a geoid model and/or terrain model.
1 件のコメント
Mohammed Alnaji
2024 年 5 月 31 日
Hello,
How to convert barometric altitude (barometric pressure altitude above mean see level "AMSL") to heights above the ellipsoid using a geoid model, or other means, please?
Thank you,
カテゴリ
ヘルプ センター および File Exchange で Geometric Geodesy についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!