MHB Does a Line Intersect a Polygon?

  • Thread starter Thread starter sfopeano
  • Start date Start date
  • Tags Tags
    Line Polygon
Click For Summary
To determine if a line intersects a polygon, the line must be checked against each edge of the polygon. If the intersection occurs within the endpoints of an edge, the line intersects the polygon. When dealing with latitude and longitude, the polygon is on the surface of a sphere, requiring the use of great circles instead of straight lines. This means the intersection involves planes through the sphere's center, necessitating specific algorithms for accurate intersection tests. Understanding these geometric principles is essential for effectively solving the problem.
sfopeano
Messages
1
Reaction score
0
Hello, I'm wondering if anyone has a formula for determining whether a line intersects a polygon. I would define the line with a starting latitude/longitude and ending latitude/longitude, and I would define the polygon with a series of latitude/longitude coordinates. Many thanks in advance.

-Stephan
 
Physics news on Phys.org
sfopeano said:
Hello, I'm wondering if anyone has a formula for determining whether a line intersects a polygon. I would define the line with a starting latitude/longitude and ending latitude/longitude, and I would define the polygon with a series of latitude/longitude coordinates. Many thanks in advance.

-Stephan

Hi sfopeano, welcome to MHB!

To intersect a line with a polygon, we need to intersect that line with each of the bounding edges of the polygon.
If the intersection is within the end points of an edge, then that line intersects the polygon.
Otherwise it doesn't.

However, you mention latitude and longitude, which suggest that you are talking about a polygon on the surface of a sphere.
If that is the case, then the line and the edges correspond to segments of so called great circles.
And each such great circle lies in a plane through the center of the sphere.
Instead of intersecting lines, we now have to intersect these planes, and see if the intersecting line is within the associated segment.
 
What you're talking about is intersection tests. Here's a web page talking about some common algorithms.
 

Similar threads

  • · Replies 16 ·
Replies
16
Views
6K
  • · Replies 3 ·
Replies
3
Views
2K
Replies
3
Views
2K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 2 ·
Replies
2
Views
3K
Replies
3
Views
4K
Replies
1
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 5 ·
Replies
5
Views
5K
  • · Replies 7 ·
Replies
7
Views
3K