Tagged Questions
3
votes
3answers
1k views
Best method for working out locations within a radius of starting point
I'm aiming to create a feature in my latest project preferably using PHP. When each user signs up they are going to input their postcode. Then hopefully I will be converting this to lat/long using ...
2
votes
4answers
444 views
How to measure distance using Haversine formula with MySQL?
I get Latitude and Longitudes from Google Maps Reverse-Geocoding API and then I need something like this:
mysql_query("SELECT users.*, ".mysql_distance_column($lat,$lng)." FROM users ORDER BY ...
2
votes
1answer
405 views
Mysql Recursive Query / Spherical Law of Cosines
I want to search nearest locations from coordinates (lat/lng) into mysql database, I use spherical law of cosines to searching these places :
SELECT onlycoord.id, locations.name, locations.ascii,
...
2
votes
1answer
377 views
Php nearby places script help
I was reading http://code.google.com/apis/maps/articles/phpsqlsearch.html to get the SQL/Math. I wrote a little php script but i get no results.
<?php
$db_host = "localhost";
$db_username = ...
2
votes
2answers
476 views
Geolocation and Haversine formula
I am trying to create a basic web application that detects the users geolocation, queries a mySQL database, and returns all bus stops within say 5 kilometers.
The GTFS feed including the Longitude ...
0
votes
0answers
68 views
MYSQL iPhone Coordinate Problem
i have my mySQL server working fine with my iphone app. and i can do standard retrieves etc. but am having a problem implementing a solution i found on this website for obtaining the distance between ...