Tagged Questions
4
votes
5answers
2k views
PHP MySQL get locations in radius user's location from GPS
I have in my database car incidents for example. These incidents have a latitude and longitude. On a mobile using the GPS, I get the user's location with his coordinates. The user can select a radius ...
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
805 views
GPS radius search with Php 5 and MySQL
I have a PlaceID | PlaceName | Lat | Lon as my database structure.
Say I have my current latitude and longitude as
$lat = "37.331862";
$lon = "-122.029937";
I want to find places that are in a ...
1
vote
1answer
199 views
Eeek! - Calculate Radius having only latitudes and longitudes
I've just spent the past hour trying to find a solution on here but it's all a little foreign to me.
I have a MySQL database that looks as such:
Postcode int(4),
City varchar,
State varchar,
...
1
vote
0answers
168 views
How do you configure a FreeRadius system to enable pre-paid data?
Typically a FreeRadius system contains a radacct table which keeps track of data in real time. Every hour or every day or each time the user logs off the current usage is added to the radacct table ...
0
votes
0answers
14 views
daloRADIUS: Database connection error
i have configured my daloRADIUS server and tried to Login to web interface using default username and password (username: administrator password: radius). but i got below error.
Database connection ...
0
votes
1answer
86 views
Radius Search on OpenGeoDb
I am working to create a database that contains all possible geographical coordinates and postal codes for locations inside Germany. I am making use of the OpenGeoDb project. I have setup the ...
0
votes
1answer
78 views
PHP - mySQL query issue
I'm finding the nearest location (with long/lat from Google API) in a radius area with lon/lat in my SQL database, here's my query:
$query = "SELECT id, ( 3959 * acos( cos( radians(".$lat.") ) * cos( ...
0
votes
3answers
269 views
MySQL - Perl: How to get array of zip codes within submitted “x” miles of submitted “zipcode” in Perl example
I have found many calculations here and some php examples and most are just over my head.
I found this example:
SELECT b.zip_code, b.state,
(3956 * (2 * ASIN(SQRT(
...