Skip to content

Commit 20f1287

Browse files
committed
Add location bias for geocoding
1 parent 1e2697f commit 20f1287

File tree

4 files changed

+40
-8
lines changed

4 files changed

+40
-8
lines changed

README.api.md

+17
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,23 @@ where meaning of the query parameters is the same as for the version
193193
one. However, the result includes parsing feedback when geocoder-nlp
194194
is used, see [example](examples/search_v2.json).
195195

196+
### Location bias, supported by versions 1 and 2
197+
198+
Optional parameters can be used for location bias of geocoding:
199+
200+
`lng={lng}` - longitude for reference location, must be specified for bias
201+
202+
`lat={lat}` - latitude for reference location, must be specified for bias
203+
204+
`zoom={zoom}` - zoom level of a map used as a basemap for showing
205+
search result. This level is used to calculate location bias reference
206+
distance. This is an optional integer parameter with the default value
207+
of 16.
208+
209+
`importance={importance}` - importance of location bias (range from
210+
0.0-1.0, 1.0 corresponding to high location bias). This is an optional
211+
parameter with the default value of 0.75.
212+
196213

197214
## List of available POI types
198215

server/src/geomaster.cpp

+8-5
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,8 @@ static std::string v2s(const std::vector<std::string> &v)
287287
return s;
288288
}
289289

290-
bool GeoMaster::search(const QString &searchPattern, QJsonObject &result, size_t limit,
290+
bool GeoMaster::search(const QString &searchPattern, QJsonObject &result,
291+
const GeoNLP::Geocoder::GeoReference &reference, size_t limit,
291292
double &lat, double &lon, std::string &name, size_t &number_of_results)
292293
{
293294
QMutexLocker lk(&m_mutex);
@@ -378,7 +379,7 @@ bool GeoMaster::search(const QString &searchPattern, QJsonObject &result, size_t
378379
// search
379380
m_geocoder.set_max_results(limit);
380381
std::vector<GeoNLP::Geocoder::GeoResult> search_result_country;
381-
if ( !m_geocoder.search(parsed_query, search_result_country, levels_resolved) )
382+
if ( !m_geocoder.search(parsed_query, search_result_country, levels_resolved, reference) )
382383
{
383384
InfoHub::logError(tr("Error while searching with geocoder-nlp"));
384385
return false;
@@ -412,6 +413,7 @@ bool GeoMaster::search(const QString &searchPattern, QJsonObject &result, size_t
412413
result.insert("query", searchPattern);
413414
result.insert("parsed", parsed);
414415
result.insert("parsed_normalized", parsed_normalized);
416+
result.insert("reference_used", reference.is_set() ? 1 : 0);
415417

416418
{
417419
QJsonArray arr;
@@ -452,8 +454,9 @@ bool GeoMaster::search(const QString &searchPattern, double &lat, double &lon, s
452454
{
453455
QJsonObject obj;
454456
size_t number_of_results;
457+
GeoNLP::Geocoder::GeoReference reference;
455458

456-
if ( !search(searchPattern, obj, 1, lat, lon, name, number_of_results ) )
459+
if ( !search(searchPattern, obj, reference, 1, lat, lon, name, number_of_results ) )
457460
{
458461
InfoHub::logWarning("Search for reference point failed");
459462
return false;
@@ -466,14 +469,14 @@ bool GeoMaster::search(const QString &searchPattern, double &lat, double &lon, s
466469
return false;
467470
}
468471

469-
bool GeoMaster::searchExposed(const QString &searchPattern, QByteArray &result, size_t limit, bool full_result)
472+
bool GeoMaster::searchExposed(const QString &searchPattern, QByteArray &result, GeoNLP::Geocoder::GeoReference reference, size_t limit, bool full_result)
470473
{
471474
QJsonObject sres;
472475
double lat, lon;
473476
std::string name;
474477
size_t number_of_results;
475478

476-
if ( !search(searchPattern, sres, limit, lat, lon, name, number_of_results ) )
479+
if ( !search(searchPattern, sres, reference, limit, lat, lon, name, number_of_results ) )
477480
return false;
478481

479482
if (!full_result)

server/src/geomaster.h

+5-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ class GeoMaster : public QObject
6363
/// \param result
6464
/// \param limit
6565
/// \return
66-
bool searchExposed(const QString &searchPattern, QByteArray &result, size_t limit, bool full_result);
66+
bool searchExposed(const QString &searchPattern, QByteArray &result,
67+
GeoNLP::Geocoder::GeoReference reference,
68+
size_t limit, bool full_result);
6769

6870
/////////////////////////////////////////////////////////////
6971
/// \brief Search for a pattern and return the coordinates of the first found object
@@ -103,7 +105,8 @@ public slots:
103105
void warnLargeRamLangNotSpecifiedChanged(bool warning);
104106

105107
protected:
106-
bool search(const QString &searchPattern, QJsonObject &result, size_t limit,
108+
bool search(const QString &searchPattern, QJsonObject &result, const
109+
GeoNLP::Geocoder::GeoReference &reference, size_t limit,
107110
double &lat, double &lon, std::string &name, size_t &number_of_results);
108111

109112
void checkWarnings(bool lang_specified);

server/src/requestmapper.cpp

+10-1
Original file line numberDiff line numberDiff line change
@@ -638,6 +638,11 @@ unsigned int RequestMapper::service(const char *url_c,
638638
bool ok = true;
639639
size_t limit = q2value<size_t>("limit", 25, options, connection, ok);
640640
QString search = q2value<QString>("search", "", options, connection, ok);
641+
double lon = q2value<double>("lng", 0, options, connection, ok);
642+
double lat = q2value<double>("lat", 0, options, connection, ok);
643+
size_t zoom = q2value<size_t>("zoom", 16, options, connection, ok);
644+
double importance = q2value<double>("importance", 0.75, options, connection, ok);
645+
GeoNLP::Geocoder::GeoReference reference;
641646

642647
search = search.simplified();
643648

@@ -647,6 +652,10 @@ unsigned int RequestMapper::service(const char *url_c,
647652
return MHD_HTTP_BAD_REQUEST;
648653
}
649654

655+
if (has("lng", options, connection) &&
656+
has("lat", options, connection))
657+
reference.set(lat, lon, zoom, importance);
658+
650659
Task *task;
651660
bool extended_reply = (path == "/v2/search");
652661

@@ -660,7 +669,7 @@ unsigned int RequestMapper::service(const char *url_c,
660669
#endif
661670
task = new Task(connection_id,
662671
std::bind( &GeoMaster::searchExposed, GeoMaster::instance(),
663-
search, std::placeholders::_1, limit,
672+
search, std::placeholders::_1, reference, limit,
664673
extended_reply),
665674
"Error while searching");
666675

0 commit comments

Comments
 (0)