Package org.geotools.caching.grid.featurecache.readers

Examples of org.geotools.caching.grid.featurecache.readers.GridCachingFeatureCollection$FeatureReaderFeatureIterator


      //nothing to get
      return new EmptyFeatureCollection(this.getSchema());
    }else if (envFilter.equals(Filter.INCLUDE)){
      //lets create a new bbox filter out of the bounds
      envFilter = createFilterFromBounds();
      return new GridCachingFeatureCollection((BBOX)envFilter, query, this, this.fs, true);
    }else if (envFilter instanceof BBOX){
      return new GridCachingFeatureCollection((BBOX)envFilter, query, this, this.fs, true);
    }else{
      throw new UnsupportedOperationException("Invalid filter created.");
    }
  }
View Full Code Here


   * @param envFilter
   * @param postFilter
   * @return
   */
  private SimpleFeatureCollection generateFeatureCollection(BBOX envFilter, Filter postFilter){
    GridCachingFeatureCollection collection = new GridCachingFeatureCollection(envFilter, postFilter, this, this.fs, true);
    return collection;
  }
View Full Code Here

   * @param envFilter
   * @param postFilter
   * @return
   */
  private SimpleFeatureCollection generateFeatureCollection(Envelope env){
    GridCachingFeatureCollection collection = new GridCachingFeatureCollection(env, this);
    return collection;
  }
View Full Code Here

TOP

Related Classes of org.geotools.caching.grid.featurecache.readers.GridCachingFeatureCollection$FeatureReaderFeatureIterator

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.