vote up 2 vote down star
1

Hi,

Am working on a "US based nearest city search within a given radius" functionality using Lucene API. Am indexing city's lat and long values in Lucene as follows:

doc.Add(new Field("latitude", paddedLatitude, Field.Store.YES, Field.Index.UN_TOKENIZED));

doc.Add(new Field("longitude", paddedLongitude, Field.Store.YES, Field.Index.UN_TOKENIZED));

Since Lucene only understands strings and not numbers, am padding lat and long values.

For example, if original lat and long are 41.811846 and -87.820628 respectively, after padding,values look like:

paddedLatitude -->"0041.811846" and paddedLongitude-->"-087.820628"

Am doing the same padding while building the nearest city query(using Lucene's ConstantScoreRangeQuery class).

Given the fact that lat and long values could be decimal/negative numbers, is this the right approach to index them so that I would get correct nearest cities in the search results when lucene would perform a number Range/comparison operation on these values?

Thanks.

flag

22% accept rate

2 Answers

vote up 3 vote down

Here's the bleeding edge about Searching Numerical Fields in Lucene by Uwe Schindler, the expert on the subject. You may need to use the older (and slower) ConstantScoreRangeQuery because Lucene.net is a bit behind Lucene, and the class NumericRangeQuery described in the link was not yet released in Java Lucene.

link|flag
vote up 1 vote down

The linked article in Yuval F's answer made me realize I was wrong in an earlier answer, which you seem to be relying on.

You shouldn't index negative numbers as is, especially in this case, where some of the values are negative and some are positive.

This article seems to have a pretty good discussion of spatial search. He uses some transformations to make all the values positive, and he also touches on other subjects you should probably be aware of, like distance calculations.

One thing to remember if you're encoding the values is to encode them both for the indexing and when building the query.

link|flag
thanks...and what about decimal numbers?? – unknown (google) Jun 29 at 17:14
Thanks again....I tried solution mentioned in above article link (sujitpal.blogspot.com/2008/02/… on executing the query Lucene.net throws an exception: Parameter name: latitude System.ArgumentException: The value provided is out of bounds. Parameter name: latitude Here is my query: latitude:[131450428 TO 132173263] longitude:[091694457 TO 092664286] – unknown (google) Jun 29 at 22:04

Your Answer

Get an OpenID
or

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