R/read_catalog.R

Defines functions read_catalog

Documented in read_catalog

#' @title Read a Catalog
#' @description A convenient yaml wrapper to read a catalog yaml file that is saved through `caralogr()`
#' @param yaml_filepath the filepath of the saved catalog file
#' @export
read_catalog <- function(yaml_filepath = file.path(getwd(), "catalogr.yaml")) {
  yaml::read_yaml(yaml_filepath)
}
sada1993/catalogr documentation built on April 15, 2022, 3:32 a.m.