Re: geographical searches

2005-05-03 Thread Guillermo Payet
> Your goal is to restrict documents search results to spatial extends > similar to the syntax which restricts documents based on their > (creation/modification) date within a given time period. Yes... That's the immediate goal, which I have already achieved by using quadTrees and the GeoFilter c

Re: geographical searches

2005-05-02 Thread Stefan F. Keller
2005/5/2, Guillermo Payet <[EMAIL PROTECTED]>: > > If you're only searching for any term using *, I'm not sure why you're > > using Lucene? > > Most searches are not as simple, and for those the GeoFilter does > the trick. I'm just trying to optimize for the few searches for > all items within an

Re: geographical searches

2005-05-02 Thread Guillermo Payet
> If you're only searching for any term using *, I'm not sure why you're > using Lucene? Most searches are not as simple, and for those the GeoFilter does the trick. I'm just trying to optimize for the few searches for all items within an area. On Mon, May 02, 2005 at 08:24:07AM -0500, [EMAIL P

Re: geographical searches

2005-05-02 Thread tjones
I don't really need any geographical scoring. I just need to be able to show all items within a region. Since a lot of the complexity of "Query" has to do with scoring, would it be better to just use the GeoFilter, and to search for *? Are there any performance issues with this? You might try

Re: geographical searches

2005-05-01 Thread Guillermo Payet
eoSearcher("path_to_index_file", quadTree); hits = geoQuery.search(rect,filter); Would that be right? --G On Sun, May 01, 2005 at 01:14:25PM -0700, Guillermo Payet wrote: > Hi, > > I started implementing geographical searches yesterday, using BBN's QuadTree > impleme

Re: geographical searches

2005-05-01 Thread Guillermo Payet
ce issues with this? --G On Sun, May 01, 2005 at 01:14:25PM -0700, Guillermo Payet wrote: > Hi, > > I started implementing geographical searches yesterday, using BBN's QuadTree > implementaion as the spacial index. I first implemented a new "GeoFilter" > c

geographical searches

2005-05-01 Thread Guillermo Payet
Hi, I started implementing geographical searches yesterday, using BBN's QuadTree implementaion as the spacial index. I first implemented a new "GeoFilter" class to filter queries to "all items within a rectangle". That was pretty easy and it's now working beaut