List of usage examples for org.apache.lucene.spatial.prefix.tree SpatialPrefixTree getSpatialContext
public SpatialContext getSpatialContext()
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; }