Package org.geotools.caching.grid.spatialindex

Examples of org.geotools.caching.grid.spatialindex.GridRootNode


   */
  public GridCacheFeatureReader(Collection<NodeIdentifier> nodeids, GridSpatialIndex g){
      this.grid = g;
      collectedFeatureIds = new HashSet<String>();
     
      GridRootNode gn = g.getRootNode();
      tovisit.add(gn.getIdentifier());
      if (nodeids != null) {
            for( Iterator<NodeIdentifier> iterator = nodeids.iterator(); iterator.hasNext(); ) {
                NodeIdentifier id = (NodeIdentifier) iterator.next();
                if (id.isValid()) {
                    tovisit.add(id);
View Full Code Here

TOP

Related Classes of org.geotools.caching.grid.spatialindex.GridRootNode

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.