You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you want to have the documents sorted by distance, you have to do that after the query. To get the distance of the coordinates from a given point, you can use the haversine formula.
Things get more complicated if you want to sort them with geohashes only. Nearby places have similar prefixes. The longer a shared prefix is, the closer the two places are. Two points can be very close but have no shared prefix. That means you have to run multiple queries, one for each sector around the center.
Thank you for the wonderful package.
How can I sort and query the data in order of closeness?
The text was updated successfully, but these errors were encountered: