From 57a5f28c22a9d1492fcacf61cd5fb6b1203c7482 Mon Sep 17 00:00:00 2001 From: Keisuke ANDO Date: Sun, 1 Sep 2024 18:49:55 +0900 Subject: [PATCH] :memo: Fix typo in item name --- R/extract-road-endpoints.R | 4 ++-- R/extract-road-intersections.R | 5 +++-- man/extract_road_endpoints.Rd | 4 ++-- man/extract_road_intersections.Rd | 5 +++-- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/R/extract-road-endpoints.R b/R/extract-road-endpoints.R index 30b6e89..052fec7 100644 --- a/R/extract-road-endpoints.R +++ b/R/extract-road-endpoints.R @@ -8,8 +8,8 @@ #' @return A points object representing road endpoints. Each endpoint #' has the following columns: #' \itemize{ -#' \item origins: A list of road IDs that intersect at the endpoint. -#' \item n.overlaps: The number of roads that intersect at the endpoint. +#' \item parent_road: A list of road IDs that intersect at the endpoint. +#' \item num_overlaps: The number of roads that intersect at the endpoint. #' } #' @export extract_road_endpoints <- function(roads) { diff --git a/R/extract-road-intersections.R b/R/extract-road-intersections.R index 0cc7fb6..d413562 100644 --- a/R/extract-road-intersections.R +++ b/R/extract-road-intersections.R @@ -7,8 +7,9 @@ #' a column named `layer` and a column named `road_id`. #' @return A data frame with the following columns: #' \itemize{ -#' \item origins: A list of road IDs that intersect at the intersection. -#' \item n.overlaps: The number of roads that intersect at the intersection. +#' \item parent_road: A list of road IDs that intersect at the intersection. +#' \item num_overlaps: The number of roads that intersect at the +#' intersection. #' } #' @export extract_road_intersections <- function(roads) { diff --git a/man/extract_road_endpoints.Rd b/man/extract_road_endpoints.Rd index 0e0d26b..8eee6fd 100644 --- a/man/extract_road_endpoints.Rd +++ b/man/extract_road_endpoints.Rd @@ -14,8 +14,8 @@ a column named \code{road_id}.} A points object representing road endpoints. Each endpoint has the following columns: \itemize{ -\item origins: A list of road IDs that intersect at the endpoint. -\item n.overlaps: The number of roads that intersect at the endpoint. +\item parent_road: A list of road IDs that intersect at the endpoint. +\item num_overlaps: The number of roads that intersect at the endpoint. } } \description{ diff --git a/man/extract_road_intersections.Rd b/man/extract_road_intersections.Rd index e5175c5..400a8b2 100644 --- a/man/extract_road_intersections.Rd +++ b/man/extract_road_intersections.Rd @@ -13,8 +13,9 @@ a column named \code{layer} and a column named \code{road_id}.} \value{ A data frame with the following columns: \itemize{ -\item origins: A list of road IDs that intersect at the intersection. -\item n.overlaps: The number of roads that intersect at the intersection. +\item parent_road: A list of road IDs that intersect at the intersection. +\item num_overlaps: The number of roads that intersect at the +intersection. } } \description{