Skip to content

Commit 4bac3db

Browse files
committed
document ... correctly.
1 parent ac32831 commit 4bac3db

File tree

2 files changed

+17
-15
lines changed

2 files changed

+17
-15
lines changed

R/nearest.R

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
#' get nearest points between pairs of geometries
1+
#' Get nearest points between pairs of geometries
22
#'
33
#' 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.
88
#' @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.
1011
#' @details in case \code{x} lies inside \code{y}, when using S2, the end points
1112
#' are on polygon boundaries, when using GEOS the end point are identical to \code{x}.
1213
#' @examples
@@ -34,6 +35,7 @@
3435
#' plot(pts[seq(2, 200, 2)], add = TRUE, col = 'green')
3536
#'
3637
#' @export
38+
#'
3739
st_nearest_points = function(x, y, ...) UseMethod("st_nearest_points")
3840

3941
#' @export
@@ -55,13 +57,13 @@ st_nearest_points.sfc = function(x, y, ..., pairwise = FALSE) {
5557
}
5658

5759
#' @export
58-
#' @name st_nearest_points
60+
#' @rdname st_nearest_points
5961
st_nearest_points.sfg = function(x, y, ...) {
6062
st_nearest_points(st_geometry(x), st_geometry(y), ...)
6163
}
6264

6365
#' @export
64-
#' @name st_nearest_points
66+
#' @rdname st_nearest_points
6567
st_nearest_points.sf = function(x, y, ...) {
6668
st_nearest_points(st_geometry(x), st_geometry(y), ...)
6769
}

man/st_nearest_points.Rd

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)