Skip to content

Commit 0966795

Browse files
committed
🚑 Fix argument omission
1 parent 035ae05 commit 0966795

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/fetch-roads.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ fetch_roads.matrix <- function(x, crop = FALSE, ...) {
5757
#' @export
5858
fetch_roads.sfc_POINT <- function(x, radius = 15, crop = FALSE, ...) {
5959
coord <- sf::st_coordinates(x)
60-
fetch_roads(x = coord[1], y = coord[2], radius = radius, ...)
60+
fetch_roads(x = coord[1], y = coord[2], radius = radius, crop = crop, ...)
6161
}
6262

6363
#' @rdname fetch_roads

0 commit comments

Comments
 (0)