Function: GeoDisjoint(Geometry left, Geometry right)
Tests whether the left geometry is disjointed from the right geometry.
If passed a string the geometry functions will automatically convert it into a geometry object.
Syntax
geoDisjoint( "Well Known Text" Left, "Well Known Text" Right)
Argument | Type | Description |
---|---|---|
Well Known Text Left | 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 objects |
Examples
geoDisjoint(30.10, 45.60)
Returns a Boolean value true or false depending on whether the left geometry is disjointed from the right.
See Also