A String parameter that controls how Ganos splits geometry objects when building a multi-bounding box (MBBox) spatial index. Default: length.
Valid values
| Value | Split strategy |
|---|---|
length (default) | Splits based on the length of the geometry object. |
points | Splits based on the number of points in the geometry object. |
Examples
Set the split mode for the current session.
-- Split by object length (default).
SET ganos.geometry.mbbox_split_mode = 'length';
-- Split by the number of points.
SET ganos.geometry.mbbox_split_mode = 'points';