georadius #
Returns the members (added with geoadd) of a given key inside the provided geospatial radius.
Query Syntax #
HTTP #
URL: http://kuzzle:7512/ms/_georadius/<_id>?lon=<longitude>&lat=<latitude>&distance=<distance>&unit=[m|km|mi|ft][&options=option1,option2,...]
Method: GETOther protocols #
{
"controller": "ms",
"action": "georadius",
"_id": "<key>",
"lon": 3.948711,
"lat": 43.5764455,
"distance": 20,
"unit": "km",
"options": ["withcoord", "withdist", "asc"]
}Arguments #
_id: key containing the geopoints to fetchdistance: distance from the center of the radiuslat: latitude of the center of the radiuslon: longitude of the center of the radiusunit: unit of thedistanceparameter value. Allowed values:m,km,mi,ft
Optional: #
options: an array of one or multiple of the following values:withcoord,withdist,count <count>,ascanddescasc: sort the results in ascending order (from the nearest member to the farthest one)count: limit the number of returned results. The count value must be passed as a separate option (HTTP:&options=count,<count value>, Other protocols:options: ['count', <count value>])desc: sort the results in descending order (from the farthest member to the nearest one)withcoord: include the position of the matched geopoint, in the following format:[longitude, latitude]withdist: include the calculated distance from the matched geopoint to the radius center
Response #
The response format depends on the passed options.
Without neither withcoord nor withdist, the response consists only of a list of points names:
{
"requestId": "<unique request identifier>",
"status": 200,
"error": null,
"controller": "ms",
"action": "georadius",
"collection": null,
"index": null,
"result": [
"our other HQ",
"kuzzle HQ"
]
}With the withcoord option, points coordinates are included to the response (format: [longitude, latitude]):
{
"requestId": "<unique request identifier>",
"status": 200,
"error": null,
"controller": "ms",
"action": "georadius",
"collection": null,
"index": null,
"result": [
[
"our other HQ",
[
"3.89710754156112671",
"43.60022152617014513"
]
],
[
"kuzzle HQ",
[
"3.91090482473373413",
"43.607392252329916"
]
]
]
}With the withdist option, the distance from the queried radius center is added to the response. The unit used for that distance is the same one than the one provided to the unit argument:
{
"requestId": "<unique request identifier>",
"status": 200,
"error": null,
"controller": "ms",
"action": "georadius",
"collection": null,
"index": null,
"result": [
[
"our other HQ",
"4.9271"
],
[
"kuzzle HQ",
"4.5960"
]
]
}With both the withcoord and the withdist options:
{
"requestId": "<unique request identifier>",
"status": 200,
"error": null,
"controller": "ms",
"action": "georadius",
"collection": null,
"index": null,
"result": [
[
"our other HQ",
"4.9271",
[
"3.89710754156112671",
"43.60022152617014513"
]
],
[
"kuzzle HQ",
"4.5960",
[
"3.91090482473373413",
"43.607392252329916"
]
]
]
}