none http://zoyabean.com/geo.png.
How to find [ latx1 , lonx1 ] , [ latx2 , lonx2 ] , [ latx3 , lonx3 ] , [ latx4 , lonx4 ] using lat1 , lon1 and d from the image. ( lat1 and lon1 are in degre and d in Km )
OR
This is the equation for finding the distance between 2 points in earth surface.
R = 6371; // Radious of earth.
lat1 , lon1 -> latitude and longitude of first point ( in degree )
lat2 , lon2 -> latitude and longitude of second point ( in degree )
d - > distance b/w the two points ( in Km)
Equation
dLat = (lat2-lat1)* (PI/180);
dLon = (lon2-lon1)* (PI/180);
a = sin(dLat/2) * sin(dLat/2) + cos((lat1)* (PI/180)) * cos((lat2)* (PI/180)) * sin(dLon/2) * sin(dLon/2) ;
d = R * 2 * atan2( sqrt(a), sqrt(1-a));
In tins equation lat1 , lon1 , d are known
I needed to find the possible values of lat2 and lon2. [ at least ( latx1 , lonx1 ) , ( latx2 , lonx2 ) , ( latx3 , lonx3 ) , ( latx4 , lonx4 ) ]
Sorry for bad English.