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
1answer
378 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
2k views
Calculating Great-Circle Distance with SQLite
Here is my problem, I have a SQLite table with locations and latitudes / longitudes. Basically I need to:
SELECT location, HAVERSINE(lat, lon) AS distance FROM location ORDER BY distance ASC;
...
1
vote
2answers
145 views
Using the Haversine formula with PostgreSQL and PDO
On my site I'm trying to get locations nearby.
I'm trying to use the Haversine formula for this.
http://en.wikipedia.org/wiki/Haversine_formula
MySQL Great Circle Distance (Haversine formula)
...
0
votes
1answer
83 views
Solr 3.4 Geodist function, incorrect/ or unwanted results
I'm having a problem with Solr 3.4, I'm using it's spacial search functions like
Geodist, and Geofilt.
Everything seems ok and the results are return supposedly sorted by distance form a given center ...