I'd like to Select GeoPoints (Longitude / Latitude) roughly within a Radius or Rectangular Area (say 5km).
I'm doing this in Map/Reduce (Not SQL)
I'm finding Map/Reduce does NOT like to reduce on calculated fields. As such - I'm wondering if I can simply Select a Range of Longitudes & Latitudes?
Example:
Target Area is Between Longitude 4.1234 & 4.77889 (SELECT Rows WHERE Long >= 4.1234 && <=4.77889) Target Area is Between Latitude 9.1234 & 9.77889 (SELECT Rows WHERE Lat >= 9.1234 && <=9.77889)
How can i find the (Aprox) Bounding Longitude / Latitude of an Area around a Single GeoPoint?