Tagged Questions

31
votes
1answer
4k views

Formulas to Calculate Geo Proximity

I need to implement a Geo proximity search in my application but I'm very confused regarding the correct formula to use. After some searches in the Web and in StackOverflow I found that the solutions ...
7
votes
5answers
184 views

Missing results due to geo proximity formula (store locator)

OK - I've been wrestling with this for about 3 months on and off and since I've exhausted every geo proximity formula out there that I've come across and I'm no closer to getting the right results I ...
2
votes
2answers
101 views

Algorithm to Get Directions

I have a consisting of points along a gpx route by distance. I want to use this to generate directions based upon the underlying trail data I have. It works great except that the inaccuracies of the ...
1
vote
1answer
81 views

HTML5; finding what is near me with geolocation

Disclaimer: I am slow learner; I have a list of 300 businesses with address and grid coordinates. I know how to request a users location with HTML5 Geolocation. How do I use that information to ...
1
vote
2answers
601 views

Querying within longitude and latitude in MySQL

Before asking for specific code examples, I just wanted to ask whether it is possible to make a query something like this pseudo code: select items from table where lat/lon = -within x miles of a ...
1
vote
2answers
206 views

Determine the country iso code from GEO Coordinates

I have a mysql table with cities and for each city I have the geo coordinates. I want to build a query what should determinate the nearst city by given random coordinates of any position. Can anyone ...
0
votes
1answer
67 views

Location data, for my own database - mysql

I have a database of cities. One table, 'city' holds over 311,000 cities and data like its region and long and lat, these link to a table 'country' via country_id. What I want to do is add another ...
0
votes
1answer
67 views

Probability of intersection of two users with horizontal accuracy and vision area

I'm receiving data from GPS and store them in MySQL database. I have following columns: User ID (int) Latitude (double) Longitude (double) Horizontal Accuracy (double) Horizontal accuracy is ...
0
votes
2answers
505 views

Querying for things near a geolocation?

I have a query that attempts to find things within a certain geolocation, but the results that it brings back are a little bit...very strange :) I had previously posted this thread and the community ...
0
votes
1answer
371 views

OpenStreetMap Proximity search using mySQL

I'm just playing around with a dataset of my region generated by JOSM. I moved it into a mySQL DB with the 0.6 API scheme using Osmosis and now I'm desperately trying the following: I want to get all ...
0
votes
4answers
553 views

Longest Distance Between Lat/Longs in a List

I have a database of geocoded entries. I need to determine which two entries are the furthest apart from a subset of the total entries. For example, I select a list of 10 entries then, from that list, ...