STRtree.withCapacity constructor

STRtree.withCapacity(
  1. int nodeCapacity
)

Constructs an STRtree with the given maximum number of child nodes that a node may have.

The minimum recommended capacity setting is 4.

Implementation

STRtree.withCapacity(int nodeCapacity) : super.withCapacity(nodeCapacity);