I have an SQLITE database that stores the coordinates of places as float numbers.
PLACE TABLE
--------------------------------
placeID | latitude | longitude
--------------------------------
1 | XX.XXXXXX| YY.YYYYYY
2 | X1.XXXXXX| Y1.YYYYYY
Let's say that I'm standing in a place with specific coordinates (lat and lon).
I would like to find all the places 1km around me (in a circle).
1) How can I convert the meters to coordinates?
2) How can I get from the database all the places 1km away from me? Cause I would like to add the meters to the coordinates.
Is that possible?
Thanks, in advance