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_Contains.json @ 44110

History | View | Annotate | Download (912 Bytes)

1
{
2
    "name": "ST_Contains",
3
    "group": "OGC",
4
    "template": "ST_Contains({{geometryA}}, geometryB)",
5
    "args": [
6
        "geometryA - A geometry",
7
        "geometryB - A geometry"
8
    ],
9
    "description": "Geometry A contains Geometry B if and only if no points of B lie in the exterior of A, and at least one point of the interior of B lies in the interior of A. An important subtlety of this definition is that A does not contain its boundary, but A does contain itself.\nReturns TRUE if geometry B is completely inside geometry A. For this function to make sense, the source geometries must both be of the same coordinate projection, having the same SRID. ST_Contains is the inverse of ST_Within. So ST_Contains(A,B) implies ST_Within(B,A) except in the case of invalid geometries where the result is always false regardless or not defined.",
10
    "returnType": "Boolean",
11
    "sqlCompatible": true
12
}
13