R/sf.R

Defines functions st_join.move2 st_intersection.move2

#' @exportS3Method NULL
st_intersection.move2 <- function(x, y, ...) {
  x.new <- NextMethod()
  dplyr_reconstruct.move2(x.new, x)
}
#' @exportS3Method NULL
st_join.move2 <- function(x, y, join, ...) {
  if (inherits(x, "tbl")) {
    return(NextMethod())
  }
  res <- NextMethod()
  res <- dplyr_reconstruct.move2(res, x)
  return(res)
}

Try the move2 package in your browser

Any scripts or data that you put into this service are public.

move2 documentation built on March 13, 2026, 5:08 p.m.