Dear all,
I'm currently doing some work related to spatial index. I'm going to use the
generated MBRs of the R Tree to do some calculation. But in the official
page there is not such interface. How could I extract these data?
Yes there is an interface but it is not "public". Have a look at
this directory:
There is bg::index::detail::rtree::utilities::view<rtree>
class allowing you to access private members of the R-tree in order
to use them with your own node visitor. E.g. see how printing of the
nodes is implemented for debugging purposes: