public GridSpatialIndex(Region mbr, int gridsize, Storage store, int capacity) {
this.gridsize = gridsize;
this.mbr = mbr;
this.store = store;
this.stats = new GridSpatialIndexStatistics();
this.policy = new LRUEvictionPolicy(this);
this.featureCapacity = capacity;
this.root = null;
try{