2015-06-11 12:02:27 +10:00
|
|
|
{
|
2015-09-20 17:12:43 +02:00
|
|
|
"name": "crosses",
|
|
|
|
"type": "function",
|
2020-07-02 01:46:48 +01:00
|
|
|
"groups": ["GeometryGroup"],
|
2015-06-11 12:02:27 +10:00
|
|
|
"description": "Tests whether a geometry crosses another. Returns true if the supplied geometries have some, but not all, interior points in common.",
|
2022-01-07 08:33:29 -05:00
|
|
|
"arguments": [{
|
|
|
|
"arg": "geometry1",
|
|
|
|
"description": "a geometry"
|
|
|
|
}, {
|
|
|
|
"arg": "geometry2",
|
|
|
|
"description": "a geometry"
|
|
|
|
}],
|
|
|
|
"examples": [{
|
|
|
|
"expression": "crosses( geom_from_wkt( 'LINESTRING(3 5, 4 4, 5 3)' ), geom_from_wkt( 'LINESTRING(3 3, 4 4, 5 5)' ) )",
|
|
|
|
"returns": "true"
|
|
|
|
}, {
|
|
|
|
"expression": "crosses( geom_from_wkt( 'POINT(4 5)' ), geom_from_wkt( 'LINESTRING(3 3, 4 4, 5 5)' ) )",
|
|
|
|
"returns": "false"
|
|
|
|
}],
|
|
|
|
"tags": ["common", "supplied", "crosses", "tests", "interior", "points"]
|
2015-06-11 12:02:27 +10:00
|
|
|
}
|