Hi to all I'm using the rtree* to load 1M > data points . Then I use the rtree query to different intersection query like
found +=rtree.query(bgi::intersects(qbox), std::back_inserter(result));
currently I'm interested in getting the count of results rather than inserting into the result vector
I have to two question
1. is possible to skip std::back_inserter step and do a query that finds the count only.
Best Regards
Hussein