My question is similar to this one.

Simply, is there a way to return the geo distance when NOT sorting with _geo_distance?

Update: To clarify, I want the results in random order AND include distance.

link|improve this question

71% accept rate
feedback

1 Answer

up vote 6 down vote accepted

Yes you can, by using a script field.

For instance, assuming your doc have a geo-point field called location, you could use the following:

(note the \u0027 is just an escaped single quote, so \u0027location\u0027 is really 'location')

curl -XGET 'http://127.0.0.1:9200/geonames/_search?pretty=1'  -d '
{
   "script_fields" : {
      "distance" : {
         "params" : {
            "lat" : 2.27,
            "lon" : 50.3
         },
         "script" : "doc[\u0027location\u0027].distanceInKm(lat,lon)"
      }
   }
}
'

# [Thu Feb 16 11:20:29 2012] Response:
# {
#    "hits" : {
#       "hits" : [
#          {
#             "_score" : 1,
#             "fields" : {
#                "distance" : 466.844095463887
#             },
#             "_index" : "geonames_1318324623",
#             "_id" : "6436641_en",
#             "_type" : "place"
#          },
... etc

If you want the _source field to be returned as well, then you can specify that as follows:

curl -XGET 'http://127.0.0.1:9200/geonames/_search?pretty=1'  -d '
{
   "fields" : [ "_source" ],
   "script_fields" : {
      "distance" : {
         "params" : {
            "lat" : 2.27,
            "lon" : 50.3
         },
         "script" : "doc[\u0027location\u0027].distanceInKm(lat,lon)"
      }
   }
}
'
link|improve this answer
Perfect! Thanks. – Yeggeps Feb 17 at 0:45
However, I'm having trouble getting both _source and distance returned. If I specify _source as "fields" I only get _source, if I don't I only, get distance. Any thoughts? – Yeggeps Feb 28 at 21:36
What version of ES are you using? When I wrote this answer, there was a newly introduced bug that meant the source wasn't being returned. However, that has been fixed in the latest RC – DrTech Feb 29 at 8:45
Oh, that's probably why, I'm on 0.17.5. – Yeggeps Mar 1 at 11:31
Is it possible to run distanceInKm on an object field? for example: place.point, I've also tried _source.place.point, as I get from the docs that this should be possible? Where place is an nested object. Thanks a lot. – Yeggeps Mar 19 at 20:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.