xapian-core
1.4.24
|
Base class for calculating distances between two lat/long coordinates. More...
#include <geospatial.h>
Public Member Functions | |
virtual | ~LatLongMetric () |
Destructor. | |
virtual double | pointwise_distance (const LatLongCoord &a, const LatLongCoord &b) const =0 |
Return the distance between two coordinates, in metres. | |
double | operator() (const LatLongCoords &a, const LatLongCoords &b) const |
Return the distance between two coordinate lists, in metres. | |
double | operator() (const LatLongCoords &a, const std::string &b) const |
Return the distance between two coordinate lists, in metres. | |
double | operator() (const LatLongCoords &a, const char *b_ptr, size_t b_len) const |
Return the distance between two coordinate lists, in metres. | |
virtual LatLongMetric * | clone () const =0 |
Clone the metric. | |
virtual std::string | name () const =0 |
Return the full name of the metric. | |
virtual std::string | serialise () const =0 |
Serialise object parameters into a string. | |
virtual LatLongMetric * | unserialise (const std::string &serialised) const =0 |
Create object given string serialisation returned by serialise(). | |
Base class for calculating distances between two lat/long coordinates.
Experimental - see https://xapian.org/docs/deprecation#experimental-features
|
pure virtual |
Clone the metric.
Implemented in Xapian::GreatCircleMetric.
|
pure virtual |
Return the full name of the metric.
This is used when serialising and unserialising metrics; for example, for performing remote searches.
If the subclass is in a C++ namespace, the namespace should be included in the name, using "::" as a separator. For example, for a LatLongMetric subclass called "FooLatLongMetric" in the "Xapian" namespace the result of this call should be "Xapian::FooLatLongMetric".
Implemented in Xapian::GreatCircleMetric.
double Xapian::LatLongMetric::operator() | ( | const LatLongCoords & | a, |
const char * | b_ptr, | ||
size_t | b_len | ||
) | const |
Return the distance between two coordinate lists, in metres.
One of the coordinate lists is supplied in serialised form.
The distance between the coordinate lists is defined to be the minimum pairwise distance between coordinates in the lists.
InvalidArgumentError | either of the lists is empty. |
a | The first coordinate list. |
b_ptr | The start of the serialised form of the second coordinate list. |
b_len | The length of the serialised form of the second coordinate list. |
double Xapian::LatLongMetric::operator() | ( | const LatLongCoords & | a, |
const LatLongCoords & | b | ||
) | const |
Return the distance between two coordinate lists, in metres.
The distance between the coordinate lists is defined to be the minimum pairwise distance between coordinates in the lists.
InvalidArgumentError | either of the lists is empty. |
a | The first coordinate list. |
b | The second coordinate list. |
|
inline |
Return the distance between two coordinate lists, in metres.
One of the coordinate lists is supplied in serialised form.
The distance between the coordinate lists is defined to be the minimum pairwise distance between coordinates in the lists.
InvalidArgumentError | either of the lists is empty. |
a | The first coordinate list. |
b | The second coordinate list, in serialised form. |
References Xapian::LatLongCoords::size().
|
pure virtual |
Return the distance between two coordinates, in metres.
Implemented in Xapian::GreatCircleMetric.
|
pure virtual |
Serialise object parameters into a string.
The serialised parameters should represent the configuration of the metric.
Implemented in Xapian::GreatCircleMetric.
|
pure virtual |
Create object given string serialisation returned by serialise().
serialised | A serialised instance of this LatLongMetric subclass. |
Implemented in Xapian::GreatCircleMetric.