Class GeohashHaversineFunction
- java.lang.Object
-
- org.apache.lucene.queries.function.ValueSource
-
- org.apache.solr.search.function.distance.GeohashHaversineFunction
-
@Deprecated public class GeohashHaversineFunction extends org.apache.lucene.queries.function.ValueSource
Deprecated.Calculate the Haversine distance between two geo hash codes.Ex: ghhsin(ValueSource, ValueSource, radius)
- See Also:
for more details on the implementation
-
-
Constructor Summary
Constructors Constructor Description GeohashHaversineFunction(org.apache.lucene.queries.function.ValueSource geoHash1, org.apache.lucene.queries.function.ValueSource geoHash2, double radius)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
createWeight(Map<Object,Object> context, org.apache.lucene.search.IndexSearcher searcher)
Deprecated.String
description()
Deprecated.protected double
distance(int doc, org.apache.lucene.queries.function.FunctionValues gh1DV, org.apache.lucene.queries.function.FunctionValues gh2DV)
Deprecated.boolean
equals(Object o)
Deprecated.org.apache.lucene.queries.function.FunctionValues
getValues(Map<Object,Object> context, org.apache.lucene.index.LeafReaderContext readerContext)
Deprecated.int
hashCode()
Deprecated.protected String
name()
Deprecated.
-
-
-
Method Detail
-
name
protected String name()
Deprecated.
-
getValues
public org.apache.lucene.queries.function.FunctionValues getValues(Map<Object,Object> context, org.apache.lucene.index.LeafReaderContext readerContext) throws IOException
Deprecated.- Specified by:
getValues
in classorg.apache.lucene.queries.function.ValueSource
- Throws:
IOException
-
distance
protected double distance(int doc, org.apache.lucene.queries.function.FunctionValues gh1DV, org.apache.lucene.queries.function.FunctionValues gh2DV) throws IOException
Deprecated.- Throws:
IOException
-
createWeight
public void createWeight(Map<Object,Object> context, org.apache.lucene.search.IndexSearcher searcher) throws IOException
Deprecated.- Overrides:
createWeight
in classorg.apache.lucene.queries.function.ValueSource
- Throws:
IOException
-
equals
public boolean equals(Object o)
Deprecated.- Specified by:
equals
in classorg.apache.lucene.queries.function.ValueSource
-
hashCode
public int hashCode()
Deprecated.- Specified by:
hashCode
in classorg.apache.lucene.queries.function.ValueSource
-
description
public String description()
Deprecated.- Specified by:
description
in classorg.apache.lucene.queries.function.ValueSource
-
-