diff --git a/R/get_gtfs_standards.R b/R/get_gtfs_standards.R index 0af4bb2..3ede9e6 100644 --- a/R/get_gtfs_standards.R +++ b/R/get_gtfs_standards.R @@ -3,8 +3,10 @@ #' Generate GTFS standards #' #' @description -#' *This function is deprecated and no longer used in [import_gtfs()] or [export_gtfs()].* +#' The dataset [gtfs_reference] now contains the standard specifications. +#' This function is deprecated and no longer used in [import_gtfs()] or [export_gtfs()]. #' +#' @details #' Generates a list specifying the standards to be used when reading and writing #' GTFS feeds with R. Each list element (also a list) represents a distinct GTFS #' table, and describes: @@ -44,6 +46,8 @@ #' - Timezone = `character` #' - URL = `character` #' +#' @seealso [gtfs_reference] +#' #' @examples \dontrun{ #' gtfs_standards <- get_gtfs_standards() #' } diff --git a/_pkgdown.yml b/_pkgdown.yml index 1da51d9..d820899 100644 --- a/_pkgdown.yml +++ b/_pkgdown.yml @@ -1,6 +1,7 @@ reference: - title: GTFS standards - contents: + - gtfs_reference - get_gtfs_standards - title: Input/output - contents: diff --git a/man/get_gtfs_standards.Rd b/man/get_gtfs_standards.Rd index abf3a96..38dd1b5 100644 --- a/man/get_gtfs_standards.Rd +++ b/man/get_gtfs_standards.Rd @@ -11,8 +11,10 @@ A named list, in which each element represents the R equivalent of each GTFS table standard. } \description{ -\emph{This function is deprecated and no longer used in \code{\link[=import_gtfs]{import_gtfs()}} or \code{\link[=export_gtfs]{export_gtfs()}}.} - +The dataset \link{gtfs_reference} now contains the standard specifications. +This function is deprecated and no longer used in \code{\link[=import_gtfs]{import_gtfs()}} or \code{\link[=export_gtfs]{export_gtfs()}}. +} +\details{ Generates a list specifying the standards to be used when reading and writing GTFS feeds with R. Each list element (also a list) represents a distinct GTFS table, and describes: @@ -57,3 +59,6 @@ represent each GTFS data type are described below: gtfs_standards <- get_gtfs_standards() } } +\seealso{ +\link{gtfs_reference} +}