Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ac32831

Browse files
committedSep 2, 2024·
Move comment properly
1 parent 13a989d commit ac32831

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
 

‎R/geom-predicates.R

+2-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ st_overlaps = function(x, y, sparse = TRUE, prepared = TRUE, ...)
230230
#' see also \link{distinct.sf} to find records where geometries AND attributes are distinct.
231231
#' @param remove_self logical; if `TRUE` (and `y` is missing) return only indexes of geometries different from the current index; this can be used to omit self-intersections; see examples.
232232
#' This argument can be used for all geometry predicates
233-
#' @param ... passed on to [s2::s2_equals()]
233+
#' @param ... passed on to [s2::s2_options()]
234234
#' @export
235235
#' @family geometric binary predicates for two spatial objects
236236
#' @examples
@@ -241,6 +241,7 @@ st_overlaps = function(x, y, sparse = TRUE, prepared = TRUE, ...)
241241
#' st_equals(p)
242242
#' st_equals(p, remove_self = TRUE)
243243
#' (u = st_equals(p, retain_unique = TRUE))
244+
#' # retain the records with unique geometries:
244245
#' p[-unlist(u),]
245246
st_equals = function(x, y, sparse = TRUE, prepared = FALSE, ...,
246247
retain_unique = FALSE, remove_self = FALSE) {

‎man/st_equals.Rd

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

0 commit comments

Comments
 (0)
Please sign in to comment.