Package org.geotools.caching.spatialindex

Examples of org.geotools.caching.spatialindex.Node


            // need to evict the areas covered by this feature
            NodeCursor cc = new NodeCursor(getRootNode(), shape);
            NodeIdentifier next = null;
            int cnt = 0;
            while ((next = cc.getNext()) != null) {
              Node n = readNode(next);
              cnt += n.getDataCount();
              n.clear();
              writeNode(n);
              getStatistics().addToEvictionCounter(1);
            }
            getStatistics().addToDataCounter(-cnt);
            return;
View Full Code Here

TOP

Related Classes of org.geotools.caching.spatialindex.Node

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.