10 lines
428 B
Plaintext
Raw Normal View History

2020-04-21 09:43:51 +02:00
{
"name": "is_multipart",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["GeometryGroup"],
2020-04-21 09:43:51 +02:00
"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"}]
}