Forum Moderators: coopster
A way to calculate ALL the longitudes and latitudes within say a radius of say 10 miles, and then can get a start and end value and select all between the two, and display them.. but how, I have no idea how long and lat work, I know there must be some spherical maths that can help me out, I just have no idea.
So I want to be able to work out all longs and lats that fall within a radius?
Please help,
Kings
set x = 69.1 * (ToLatitude -FromLatitude)
set y = 69.1 * (ToLongitude -FromLongitude) * cos(FromLatitude / 57.3)
Distance = SQR(x * x + y * y)
You can use that formula and variations on it to do almost anything you need. Hope that helps!