Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.expressionevaluator / org.gvsig.expressionevaluator.lib / org.gvsig.expressionevaluator.lib.impl / src / main / resources / org / gvsig / expressionevaluator / functions / en / ST_Intersects.json @ 44110

History | View | Annotate | Download (784 Bytes)

1
{
2
    "name": "ST_Intersects",
3
    "group": "OGC",
4
    "template": "ST_Intersects({{geometryA}}, geometryB)",
5
    "args": [
6
        "geometryA - Geometry from which you have to calculate the intersection",
7
        "geometryB - Geometry againt you have to calculate the intersection"
8
    ],
9
    "description": ["If a geometry or geography shares any portion of space then they intersect.",
10
      " For geography -- tolerance is 0.00001 meters (so any points that are close are considered to intersect)",
11
      "Overlaps, Touches, Within all imply spatial intersection.",
12
      "If any of the aforementioned returns true, then the geometries also spatially intersect.",
13
      "Disjoint implies false for spatial intersection."],
14
    "returnType": "Boolean",
15
    "sqlCompatible": true
16
}