I'm using shapely to check if a point is in a polygon, but I also need to check if a point is in a circle. Checking the docs, I don't see how do that...
Maybe I could create a circle?
circle = (x,y).buffer(R)
But it doesn't seem to work using R in miles distance to set the ratio...
Is it possible? Or is there another lib to get it?
