>From what I've seen so far, using separate fields for latitude and
longitude, especially with multiple values of each, does not work correctly
in all situations.
The hole in my understanding is how Solr knows how to pair a latitude and
longitude field _back_ into a POINT.
I can say that it does
Hoss,
Thanks for the response.
I was able to get multiple dist queries working, however, I've noticed
another problem.
when using
fq=_query_:"{!frange l=0 u=25 v=$qa}"
qa=dist(2,44.844833,-93.03528,latitude,longitude)
it returns 9,975 documents. When I change the upper limit to 250 it
returns
: I am currently working with the following:
:
: {code}
: {!frange l=0 u=1 unit=mi}dist(2,32.6126, -86.3950, latitude, longitude)
: {/code}
...
: {code}
: {!frange l=0 u=1 unit=mi}dist(2,32.6126, -86.3950, latitude,
: longitude) OR {!frange l=0 u=1 unit=mi}dist(2,44.1457, -73.8152,
: latit
Currently using solr 1.4,
I am looking for a way to conduct a solr search with a single query
and multiple locations. The goal is not to find the intersect of these
locations (so I can't just apply multiple filter queries) but to
return documents in rage 1 OR range 2.
I am currently working with