Tagged Questions

2
votes
3answers
1k views

SQL: Determine if one coordinate is in radius of another

Lets say i have a Table of rows that contain coordinates. what would be the best way to pull only the rows of coordinates which are in the radius of a another coordinate? To simplify my question, i'm ...
1
vote
1answer
123 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
2answers
150 views

Clearbox Radius attributes through SQL statement?

I authenticate users through Radius, and I have the option to assign Radius attributes through SQL statements, but I can't for the life of me find any documentation on this. Anyone know the proper ...
0
votes
1answer
79 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( ...