Excerpt | ||
---|---|---|
| ||
geoIntersects( "Well Known Text" Left, "Well Known Text" Right geometryValueLeft, geometryValueRight), Tests whether the left geometry intersects with the right geometry. |
...
If passed a string the geometry functions will automatically convert it into a geometry object.
Syntax
geoIntersects( "Well Known Text" Left, "Well Known Text" Right geometryValueLeft, geometryValueRight)
Argument | Type | Description | ||||
---|---|---|---|---|---|---|
Well Known Text LeftgeometryValueLeft | WTK String | Well known text (WKT) is a text mark-up language for representing vector geometry objects. | Well Known Text Right | String | Well known text (WKT) is a text mark-up language for representing vector geometry objectsor Geometry Object | Geometry value being used to calculate if it covers the geometryValueRight. |
geometryValueRight | WTK String or Geometry Object | The geometry being checked. |
Examples
geoIntersects(30.10, 45.25 "POLYGON ((30 10, 40 40, 20 40, 10 20, 30 10))", "POLYGON ((35 10, 45 45, 15 40, 10 20, 35 10))" )
Returns a Boolean true if the left geometry intersects with the right geometry.
...