Shortest great circle distance between a point and a polygon on a sphere/globe
问题 I have a set of polygons specified by geographic (WGS84) coordinates: they live on a sphere. I have a point specified by a latitude-longitude pair. I would like to (efficiently) find the minimum great circle distance between the point and the polygon. My current stack includes fiona, shapely, gdal, and proj. Similar questions on StackOverflow mostly seem to project features onto a plane and find distances there, or (disturbingly) omit mention of projections or lack thereof entirely. 回答1: This