[GIS] Calculating minimum distance between points and polygons in QGIS

distanceqgisvector

I have two vector layers: one point and one polygon and I want to calculate the minimum distance of each point from the polygons (ie the distance from the closest point of the closest polygon).

Is there any available plugin in QGIS for doing this?

Best Answer

Converting your polygon to points first is a bad idea. You will not be calculating the distance to your polygon, you will be calculating the distance to the closest node of your polygons (not the edges which may be closer). You can use the NNJoin Plugin to get accurate measurements to your polygon. Make sure your layers are in the same projection before doing analysis.

Related Question