public class PointVectorStrategy extends SpatialStrategy
SpatialStrategy
which represents Points in two numeric fields.
The Strategy's best feature is decent distance sort.
Characteristics:
SpatialOperation.Intersects
and SpatialOperation.IsWithin
is supported.SpatialStrategy.makeDistanceValueSource(org.locationtech.spatial4j.shape.Point)
and for
searching with a Circle.Implementation:
This is a simple Strategy. Search works with a pair of range queries on two DoublePoint
s representing
x & y fields. A Circle query does the same bbox query but adds a
ValueSource filter on
SpatialStrategy.makeDistanceValueSource(org.locationtech.spatial4j.shape.Point)
.
One performance shortcoming with this strategy is that a scenario involving both a search using a Circle and sort will result in calculations for the spatial distance being done twice -- once for the filter and second for the sort.
Modifier and Type | Field and Description |
---|---|
static FieldType |
DEFAULT_FIELDTYPE
pointValues, docValues, and nothing else.
|
static String |
SUFFIX_X |
static String |
SUFFIX_Y |
ctx
Constructor and Description |
---|
PointVectorStrategy(org.locationtech.spatial4j.context.SpatialContext ctx,
String fieldNamePrefix,
FieldType fieldType)
Create a new instance configured with the provided FieldType options.
|
Modifier and Type | Method and Description |
---|---|
Field[] |
createIndexableFields(org.locationtech.spatial4j.shape.Point point) |
Field[] |
createIndexableFields(org.locationtech.spatial4j.shape.Shape shape)
Returns the IndexableField(s) from the
shape that are to be
added to the Document . |
DoubleValuesSource |
makeDistanceValueSource(org.locationtech.spatial4j.shape.Point queryPoint,
double multiplier)
Make a ValueSource returning the distance between the center of the
indexed shape and
queryPoint . |
Query |
makeQuery(SpatialArgs args)
|
static PointVectorStrategy |
newInstance(org.locationtech.spatial4j.context.SpatialContext ctx,
String fieldNamePrefix)
Create a new
PointVectorStrategy instance that uses DoublePoint and DoublePoint.newRangeQuery(java.lang.String, double, double) |
getFieldName, getSpatialContext, makeDistanceValueSource, makeRecipDistanceValueSource, toString
public static FieldType DEFAULT_FIELDTYPE
public static final String SUFFIX_X
public static final String SUFFIX_Y
public PointVectorStrategy(org.locationtech.spatial4j.context.SpatialContext ctx, String fieldNamePrefix, FieldType fieldType)
DEFAULT_FIELDTYPE
.
a field type is used to articulate the desired options (namely pointValues, docValues, stored). Legacy numerics
is configurable this way too.public static PointVectorStrategy newInstance(org.locationtech.spatial4j.context.SpatialContext ctx, String fieldNamePrefix)
PointVectorStrategy
instance that uses DoublePoint
and DoublePoint.newRangeQuery(java.lang.String, double, double)
public Field[] createIndexableFields(org.locationtech.spatial4j.shape.Shape shape)
SpatialStrategy
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.
createIndexableFields
in class SpatialStrategy
public Field[] createIndexableFields(org.locationtech.spatial4j.shape.Point point)
public DoubleValuesSource makeDistanceValueSource(org.locationtech.spatial4j.shape.Point queryPoint, double multiplier)
SpatialStrategy
queryPoint
. If there are multiple indexed shapes
then the closest one is chosen. The result is multiplied by multiplier
, which
conveniently is used to get the desired units.makeDistanceValueSource
in class SpatialStrategy
public Query makeQuery(SpatialArgs args)
SpatialStrategy
SpatialOperation
and Shape
from the supplied args
. It should be constant scoring of 1.makeQuery
in class SpatialStrategy
Copyright © 2000-2019 Apache Software Foundation. All Rights Reserved.