I'm trying to solve a problem how to position five circles in longitude and latitude so that four of them overlap so that the fifth one in the middle is exposed by a certain margin.
I drew the diagram below quickly to illustrate what I'm trying to do. Each circle is 10 meters diagonally (or miles, whichever you prefer). The center one is fixed to its position. I'm trying to figure out how to calculate the position of four others so that there is approximately 1m2 of the center circle exposed. Essentially the four circles should create a 1m2 rectangle in the middle (obviously it's not an actual rectangle due to the curvature).
The positioning itself isn't that hard but what's throwing me off is how to deal with latitude and longitude where length of a degree is different depending on the coordinates.
All help is appreciated a lot because it's been a long time since I had to work with this type of math, and I can honestly say I'm completely lost :/


Let's use $(0,0)$ the center of the green circle. To fit a $1m\times 1m$ box in the middle, the distance from that center to any of the circles is $0.5m$. The radius of each of the purple circles is $5m$. So the distance from the origin to each circle is then $5.5m$. Therefore the positions are $(0,5.5)$, $(0,-5.5)$, $(5.5,0)$, and $(-5.5,0)$. The visible area is slightly larger than $1m^2$. If you want to have exactly that area, you need to do an integral.