mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
19 lines
479 B
Plaintext
19 lines
479 B
Plaintext
{
|
|
"name": "is_multipart",
|
|
"type": "function",
|
|
"groups": ["GeometryGroup"],
|
|
"description": "Returns TRUE if the geometry is of Multi type.",
|
|
"arguments": [{
|
|
"arg": "geometry",
|
|
"description": "a geometry"
|
|
}],
|
|
"examples": [{
|
|
"expression": "is_multipart(geom_from_wkt('MULTIPOINT ((0 0),(1 1),(2 2))'))",
|
|
"returns": "TRUE"
|
|
}, {
|
|
"expression": "is_multipart(geom_from_wkt('POINT (0 0)'))",
|
|
"returns": "FALSE"
|
|
}],
|
|
"tags": ["type", "multi"]
|
|
}
|