I have a code in Python which creates a circle. However I am unsure about the distance of measurement used while drawing the circle. Can someone please recommend how to check that.
Tried changing the radius to value of 5000 to see if the size of the circle changes. No changes reflected.
import matplotlib.pyplot as plt
from matplotlib.patches import Circle
from descartes import PolygonPatch
BLUE = '#6699cc'
fig = plt.figure()
ax = fig.gca()
ax.add_patch(Circle((-118.22191509999999, 34.0431494), 5, fill = False ))
ax.axis('scaled')
plt.show()
Expected the circle to be bigger when 5000 was used as radius. Unsure whether the radius is in miles or meters or km.