You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.2 KiB
1.2 KiB
Intersection Checking
It's possible to check if two geometries intersect each other.
(Until this documentation page is finished, take a look into IntersectionTest – here you'll find some examples on how to use this feature.)
The following combinations of geometries can be checked for intersection:
| Point | Line | Polyline | Polygon | |
|---|---|---|---|---|
| Point | yes (same location) | no | no | yes (point inside polygon) |
| Line | no | yes | yes | yes |
| Polyline | no | yes | yes | yes |
| Polygon | yes (point inside polygon) | yes | yes | yes |