|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.apache.lucene.spatial.SpatialStrategy
public abstract class SpatialStrategy
The SpatialStrategy encapsulates an approach to indexing and searching based on shapes.
Different implementations will support different features. A strategy should document these common elements:FieldCache, DocValues or some other type of cache? When?
| Field Summary | |
|---|---|
protected com.spatial4j.core.context.SpatialContext |
ctx
|
| Constructor Summary | |
|---|---|
SpatialStrategy(com.spatial4j.core.context.SpatialContext ctx,
String fieldName)
Constructs the spatial strategy with its mandatory arguments. |
|
| Method Summary | |
|---|---|
abstract Field[] |
createIndexableFields(com.spatial4j.core.shape.Shape shape)
Returns the IndexableField(s) from the shape that are to be
added to the Document. |
String |
getFieldName()
The name of the field or the prefix of them if there are multiple fields needed internally. |
com.spatial4j.core.context.SpatialContext |
getSpatialContext()
|
abstract ValueSource |
makeDistanceValueSource(com.spatial4j.core.shape.Point queryPoint)
Make a ValueSource returning the distance between the center of the indexed shape and queryPoint. |
abstract Filter |
makeFilter(SpatialArgs args)
Make a Filter based principally on SpatialOperation
and Shape from the supplied args. |
ConstantScoreQuery |
makeQuery(SpatialArgs args)
Make a (ConstantScore) Query based principally on SpatialOperation
and Shape from the supplied args. |
ValueSource |
makeRecipDistanceValueSource(com.spatial4j.core.shape.Shape queryShape)
Returns a ValueSource with values ranging from 1 to 0, depending inversely on the distance from makeDistanceValueSource(com.spatial4j.core.shape.Point). |
String |
toString()
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
protected final com.spatial4j.core.context.SpatialContext ctx
| Constructor Detail |
|---|
public SpatialStrategy(com.spatial4j.core.context.SpatialContext ctx,
String fieldName)
| Method Detail |
|---|
public com.spatial4j.core.context.SpatialContext getSpatialContext()
public String getFieldName()
public abstract Field[] createIndexableFields(com.spatial4j.core.shape.Shape shape)
shape that are to be
added to the Document. These fields
are expected to be marked as indexed and not stored.
Note: If you want to store the shape as a string for retrieval in
search results, you could add it like this:
document.add(new StoredField(fieldName,ctx.toString(shape)));The particular string representation used doesn't matter to the Strategy since it doesn't use it.
UnsupportedOperationException - if given a shape incompatible with the strategypublic abstract ValueSource makeDistanceValueSource(com.spatial4j.core.shape.Point queryPoint)
queryPoint. If there are multiple indexed shapes
then the closest one is chosen.
public ConstantScoreQuery makeQuery(SpatialArgs args)
SpatialOperation
and Shape from the supplied args.
The default implementation is
return new ConstantScoreQuery(makeFilter(args));
UnsupportedOperationException - If the strategy does not support the shape in args
UnsupportedSpatialOperation - If the strategy does not support the SpatialOperation in args.public abstract Filter makeFilter(SpatialArgs args)
SpatialOperation
and Shape from the supplied args.
If a subclasses implements
makeQuery(org.apache.lucene.spatial.query.SpatialArgs)
then this method could be simply:
return new QueryWrapperFilter(makeQuery(args).getQuery());
UnsupportedOperationException - If the strategy does not support the shape in args
UnsupportedSpatialOperation - If the strategy does not support the SpatialOperation in args.public final ValueSource makeRecipDistanceValueSource(com.spatial4j.core.shape.Shape queryShape)
makeDistanceValueSource(com.spatial4j.core.shape.Point).
The formula is c/(d + c) where 'd' is the distance and 'c' is
one tenth the distance to the farthest edge from the center. Thus the
scores will be 1 for indexed points at the center of the query shape and as
low as ~0.1 at its furthest edges.
public String toString()
toString in class Object
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||