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
883 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
158 views

Search radius based on size of area - PHP / Google Maps API

I have a sql database search that currently has a search term and an address input - which is geocoded by google for lat/lng. Right now, I order the results first by relevance to the search term, and ...
1
vote
0answers
180 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
1answer
81 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( ...