Controls the split mode used when building a multi-bounding box (MBBox) spatial index.
Data type
String
Valid values
| Value | Split criterion | Default |
|---|---|---|
length | Object length | Yes |
points | Number of points | No |
Examples
Set the parameter 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';