You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: R/nearest.R
+10-8
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,13 @@
1
-
#' get nearest points between pairs of geometries
1
+
#' Get nearest points between pairs of geometries
2
2
#'
3
3
#' get nearest points between pairs of geometries
4
-
#' @param x object of class \code{sfg}, \code{sfc} or \code{sf}
5
-
#' @param y object of class \code{sfg}, \code{sfc} or \code{sf}
6
-
#' @param pairwise logical; if \code{FALSE} (default) return nearest points between all pairs, if \code{TRUE}, return nearest points between subsequent pairs.
7
-
#' @param ... ignored
4
+
#' @param x,y object of class \code{sfg}, \code{sfc} or \code{sf}
5
+
#' @param pairwise logical; if \code{FALSE} (default) return nearest points between all pairs,
6
+
#' if \code{TRUE}, return nearest points between subsequent pairs.
7
+
#' @param ... passed on to methods. Currently, only `pairwise` is implemented.
8
8
#' @seealso \link{st_nearest_feature} for finding the nearest feature
9
-
#' @return an \link{sfc} object with all two-point \code{LINESTRING} geometries of point pairs from the first to the second geometry, of length x * y, with y cycling fastest. See examples for ideas how to convert these to \code{POINT} geometries.
9
+
#' @return an \link{sfc} object with all two-point \code{LINESTRING} geometries of point pairs from the first to the second geometry, of length x * y, with y cycling fastest.
10
+
#' See examples for ideas how to convert these to \code{POINT} geometries.
10
11
#' @details in case \code{x} lies inside \code{y}, when using S2, the end points
11
12
#' are on polygon boundaries, when using GEOS the end point are identical to \code{x}.
12
13
#' @examples
@@ -34,6 +35,7 @@
34
35
#' plot(pts[seq(2, 200, 2)], add = TRUE, col = 'green')
35
36
#'
36
37
#' @export
38
+
#'
37
39
st_nearest_points=function(x, y, ...) UseMethod("st_nearest_points")
0 commit comments