View source: R/point_line_distance.R
nearestPointOnLine | R Documentation |
This function calculates the coordinates of the nearest point on a line to a given point. This function does not work with geographic coordinates.
nearestPointOnLine(coordsLine, coordsPoint)
coordsLine |
Matrix with coordinates of line vertices. Each row represents a vertex. |
coordsPoint |
A vector representing the X and Y coordinates of the point. |
Vector with the X and Y coordinates of the nearest point on a line to the given point.
German Carrillo
nearestPointOnSegment
, snapPointsToLines
coordsLine = cbind(c(1,2,3),c(3,2,2))
coordsPoint = c(1.2,1.5)
nearestPointOnLine(coordsLine, coordsPoint)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.