Example usage for org.apache.lucene.spatial.prefix.tree SpatialPrefixTree getSpatialContext

List of usage examples for org.apache.lucene.spatial.prefix.tree SpatialPrefixTree getSpatialContext

Introduction

In this page you can find the example usage for org.apache.lucene.spatial.prefix.tree SpatialPrefixTree getSpatialContext.

Prototype

public SpatialContext getSpatialContext() 

Source Link

Usage

From source file:org.apache.blur.analysis.type.spatial.lucene.PrefixTreeStrategy.java

License:Apache License

public PrefixTreeStrategy(SpatialPrefixTree grid, String fieldName, boolean simplifyIndexedCells,
        boolean docValue) {
    super(grid.getSpatialContext(), fieldName);
    this.grid = grid;
    this.simplifyIndexedCells = simplifyIndexedCells;
    this.docValue = docValue;
}