Re: [google-appengine] Proximity search

2010-03-03 Thread Barry Hunter
Mutiny is a slightly refined of (and better version) than geohash http://appgallery.appspot.com/about_app?app_id=agphcHBnYWxsZXJ5chQLEgxBcHBsaWNhdGlvbnMYjekBDA Dont know how easy would be to port to java. On 3 March 2010 05:59, Robert Kluin wrote: > Have you looked into the "geohash" method?  I

Re: [google-appengine] Proximity search

2010-03-02 Thread Robert Kluin
Have you looked into the "geohash" method? It is not perfect but I think there are a number of people using that technique. Robert On Mar 2, 2010, at 16:52, "vendor.net" wrote: I read many articles about geocaching and etc, but I still can`t find a way to do this: I have a DB: - id - la

[google-appengine] Proximity search

2010-03-02 Thread vendor.net
I read many articles about geocaching and etc, but I still can`t find a way to do this: I have a DB: - id - latitude - longitude I have a latitude-x and longitud-y and I want to search my DB for records which are in 10 miles radius of the given latitude-x and longitud-y on Java. Thanks! -- You

[google-appengine] Proximity Search using Latitude and Longitude in the Datastore

2009-05-26 Thread dannyr
I'm trying to implement a proximity search of records based on my Latitude and Longitude columns. The code I'm trying to replicate can be found in: http://www.mmccann.com/using-latitude-an-longitude-to-do-proximity-searches/ Any idea of the best way to approach this in Google App Engine? Tha