Skip to content

Commit

Permalink
fixes #2386
Browse files Browse the repository at this point in the history
  • Loading branch information
edzer committed May 1, 2024
1 parent 77846ff commit ab59d8f
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 28 deletions.
29 changes: 15 additions & 14 deletions R/join.R
Original file line number Diff line number Diff line change
Expand Up @@ -76,20 +76,21 @@ st_join = function(x, y, join, ...) UseMethod("st_join")
#'
#' @details alternative values for argument \code{join} are:
#' \itemize{
#' \item \link{st_contains_properly}
#' \item \link{st_contains}
#' \item \link{st_covered_by}
#' \item \link{st_covers}
#' \item \link{st_crosses}
#' \item \link{st_disjoint}
#' \item \link{st_equals_exact}
#' \item \link{st_equals}
#' \item \link{st_is_within_distance}
#' \item \link{st_nearest_feature}
#' \item \link{st_overlaps}
#' \item \link{st_touches}
#' \item \link{st_within}
#' \item any user-defined function of the same profile as the above
#' \item \link{st_contains_properly},
#' \item \link{st_contains},
#' \item \link{st_covered_by},
#' \item \link{st_covers},
#' \item \link{st_crosses},
#' \item \link{st_disjoint},
#' \item \link{st_equals_exact},
#' \item \link{st_equals},
#' \item \link{st_is_within_distance},
#' \item \link{st_nearest_feature},
#' \item \link{st_overlaps},
#' \item \link{st_touches},
#' \item \link{st_within},
#' \item \link{st_relate} (which will require `pattern` to be set),
#' \item or any user-defined function of the same profile as the above
#' }
#' A left join returns all records of the \code{x} object with \code{y} fields for non-matched records filled with \code{NA} values; an inner join returns only records that spatially match.
#'
Expand Down
29 changes: 15 additions & 14 deletions man/st_join.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ab59d8f

Please sign in to comment.