Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anyone help me to write a function query which compares the distance between a fixed point (supplied in the query) and a point stored per document with a distance stored in that document?

I am new to Solr and beyond knowing I can't use a filter query and that I will presumably need to use geodist() and fieldvalue('location') and fieldvalue('point') I don't know where to start! Any help would be appreciated!

I am using Solr 3.2.

share|improve this question
It needs to be a 'continuous' function representing this logic: if(distance() - fieldValue > 0) return fieldValue; else return 0; – Ian Grainger Oct 12 '11 at 8:14

1 Answer

up vote 2 down vote accepted

Turns out I can use a filter query with a range function to solve this (Solr 1.4+). For this case I used:

...&fq={!frange+l=0+u=9999999}sub(DocDistance,geodist(DocLocation,lat,lng))

Which will get the distance between the input point and the point on the document, then subtract the distance stored on the document before filtering out those where this value is less than 0 (9999999 approx= infinity).

PHEW! That was hard work! HTH someone in future.

share|improve this answer
It did help. Thanks a lot! – Michaël Witrant Jan 21 at 10:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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