I need to know the hierarchy of my rtree. In particular, given a Node, I'd like to know its children.
I've seen that in this SO question there's a link to the following line in GitHub sources:
where n is an InternalNode. From my understanding, it->first is the bounding box, while it->second is the indexable. However, I don't see how one can query the children of a specific node. Is there any way to find them?
I am completely stuck at the moment