Examples of GeoFacetData


Examples of com.browseengine.bobo.facets.impl.GeoFacetHandler.GeoFacetData

  @Override
  public RandomAccessDocIdSet getRandomAccessDocIdSet(BoboIndexReader reader)
      throws IOException {
    int maxDoc = reader.maxDoc();

    final GeoFacetData dataCache = _handler.getFacetData(reader);
    return new GeoDocIdSet(dataCache.get_xValArray(), dataCache.get_yValArray(), dataCache.get_zValArray(),
        _lat, _lon, _rad, maxDoc, _miles);
  }
View Full Code Here

Examples of com.browseengine.bobo.facets.impl.GeoFacetHandler.GeoFacetData

   */
  @Override
  public RandomAccessDocIdSet getRandomAccessDocIdSet(BoboSegmentReader reader) throws IOException {
    int maxDoc = reader.maxDoc();

    final GeoFacetData dataCache = _handler.getFacetData(reader);
    return new GeoDocIdSet(dataCache.get_xValArray(), dataCache.get_yValArray(),
        dataCache.get_zValArray(), _lat, _lon, _rad, maxDoc, _miles);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.