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

History | View | Annotate | Download (949 Bytes)

1
{
2
    "name": "ST_Intersection",
3
    "group": "OGC",
4
    "template": "ST_Intersection({{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": ["Returns a geometry that represents the point set intersection of the Geometries.",
10
      "In other words - that portion of geometry A and geometry B that is shared between the two geometries.",
11
      "If the geometries do not share any space (are disjoint), then an empty geometry collection is returned.",
12
      "ST_Intersection in conjunction with ST_Intersects is very useful for clipping geometries such as in",
13
      "bounding box, buffer, region queries where you only want to return that portion of a geometry",
14
      " that sits in a country or region of interest."],
15
    "returnType": "Geometry",
16
    "sqlCompatible": true
17
}