I first build the index and serialize to rtree.idx and rtree.dat, then reload by idx = Index('rtree') and do intersection query list(idx.intersection(some_bbox)).
After that, rtree.dat is modified (known by git), but rtree.idx keep same. Why was that?
I first build the index and serialize to
rtree.idxandrtree.dat, then reload byidx = Index('rtree')and do intersection querylist(idx.intersection(some_bbox)).After that,
rtree.datis modified (known by git), butrtree.idxkeep same. Why was that?