The f I have one pair of latitude and longitude and a radius
How can I create a box around this pair based on the radius?
The f I have one pair of latitude and longitude and a radius
How can I create a box around this pair based on the radius?
So, supposing that (latitude,longitude) is the center of your circle, the bounding box (square) that contains the circle would have its corners at the following positions:
(latitude-radius,longitude-radius)
(latitude-radius,longitude+radius)
(latitude+radius,longitude+radius)
(latitude+radius,longitude-radius)