在Matlab中检测两条WGS84线的交点。

huangapple go评论85阅读模式
英文:

Detecting intersection of two WGS84 lines in Matlab

问题

我想在Matlab中检测两条WSG84线的交点,已知以下信息。

红线:latStart0, lonStart0, latEnd0, lonEnd0

蓝线:latStart1, lonStart1, latEnd1, lonEnd1

英文:

I would like to detect intersection of two WSG84 lines in Matlab given the information below known.

RedLine: latStart0, lonStart0, latEnd0, lonEnd0

BlueLine: latStart1, lonStart1, latEnd1, lonEnd1
在Matlab中检测两条WGS84线的交点。

How can i achieve this ?

答案1

得分: 0

以下是解决方案:

  1. function intersectionPoint = findIntersection(line1_start, line1_end, line2_start, line2_end)
  2. line1_start_rad = deg2rad(line1_start);
  3. line1_end_rad = deg2rad(line1_end);
  4. line2_start_rad = deg2rad(line2_start);
  5. line2_end_rad = deg2rad(line2_end);
  6. % 计算线段的分母
  7. denom = (line1_end_rad(1) - line1_start_rad(1)) * (line2_end_rad(2) - line2_start_rad(2)) - ...
  8. (line1_end_rad(2) - line1_start_rad(2)) * (line2_end_rad(1) - line2_start_rad(1));
  9. if abs(denom) < eps
  10. intersectionPoint = struct('latitude', NaN, 'longitude', NaN);
  11. return;
  12. end
  13. numer = (line2_end_rad(1) - line2_start_rad(1)) * (line1_start_rad(2) - line2_start_rad(2)) - ...
  14. (line2_end_rad(2) - line2_start_rad(2)) * (line1_start_rad(1) - line2_start_rad(1));
  15. t1 = numer / denom;
  16. if t1 < 0
  17. intersectionPoint = struct('latitude', NaN, 'longitude', NaN);
  18. return;
  19. end
  20. % 计算交点
  21. lonIntersection_rad = line1_start_rad(2) + (line1_end_rad(2) - line1_start_rad(2)) * t1;
  22. latIntersection_rad = line1_start_rad(1) + (line1_end_rad(1) - line1_start_rad(1)) * t1;
  23. latIntersection_deg = rad2deg(latIntersection_rad);
  24. lonIntersection_deg = rad2deg(lonIntersection_rad);
  25. intersectionPoint = struct('latitude', latIntersection_deg, 'longitude', lonIntersection_deg);
  26. end
英文:

Here it is the solution:

  1. function intersectionPoint = findIntersection(line1_start, line1_end, line2_start, line2_end)
  2. line1_start_rad = deg2rad(line1_start);
  3. line1_end_rad = deg2rad(line1_end);
  4. line2_start_rad = deg2rad(line2_start);
  5. line2_end_rad = deg2rad(line2_end);
  6. % Calculate the denominator for the lines
  7. denom = (line1_end_rad(1) - line1_start_rad(1)) * (line2_end_rad(2) - line2_start_rad(2)) - ...
  8. (line1_end_rad(2) - line1_start_rad(2)) * (line2_end_rad(1) - line2_start_rad(1));
  9. if abs(denom) &lt; eps
  10. intersectionPoint = struct(&#39;latitude&#39;, NaN, &#39;longitude&#39;, NaN);
  11. return;
  12. end
  13. numer = (line2_end_rad(1) - line2_start_rad(1)) * (line1_start_rad(2) - line2_start_rad(2)) - ...
  14. (line2_end_rad(2) - line2_start_rad(2)) * (line1_start_rad(1) - line2_start_rad(1));
  15. t1 = numer / denom;
  16. if t1 &lt; 0
  17. intersectionPoint = struct(&#39;latitude&#39;, NaN, &#39;longitude&#39;, NaN);
  18. return;
  19. end
  20. % Calculate the intersection point
  21. lonIntersection_rad = line1_start_rad(2) + (line1_end_rad(2) - line1_start_rad(2)) * t1;
  22. latIntersection_rad = line1_start_rad(1) + (line1_end_rad(1) - line1_start_rad(1)) * t1;
  23. latIntersection_deg = rad2deg(latIntersection_rad);
  24. lonIntersection_deg = rad2deg(lonIntersection_rad);
  25. intersectionPoint = struct(&#39;latitude&#39;, latIntersection_deg, &#39;longitude&#39;, lonIntersection_deg);
  26. end

huangapple
  • 本文由 发表于 2023年6月29日 23:38:10
  • 转载请务必保留本文链接:https://go.coder-hub.com/76582596.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定