R/sf.R

Defines functions st_join.move2 st_intersection.move2

st_intersection.move2 <- function(x, y, ...) {
  x.new <- NextMethod()
  dplyr_reconstruct.move2(x.new, x)
}

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 April 4, 2025, 12:24 a.m.