Nothing
#' gen_signs
#'
#' @description Function to list all currently used special signs (e.g., 0, *, X, (), p, ...) and their meaning in GENESIS, Zensus 2022 and/or regionalstatistik.de.
#'
#' @param database Character string. Indicator if the GENESIS ('genesis'), Zensus 2022 ('zensus') or regionalstatistik.de ('regio') database is called. Default option is 'all'.
#' @param error.ignore Boolean. Indicator if the function should stop if an error occurs or no object for the request is found or if it should produce a token as response. Default option is 'FALSE'. Important note: This does not apply to errors generated by the API call itself (especially server or client errors with status codes 5xx or 4xx). In this case, the function call will error even if error.ignore is set to TRUE.
#' @param verbose Boolean. In case of success, should a message be printed? Defaults to 'TRUE'.
#' @param ... Additional parameters for the API call. These parameters are only affecting the call itself, no further processing. For more details see `vignette("additional_parameter")`.
#'
#' @return A list of all current used special signs.
#' @export
#'
gen_signs <- function(database = c("all", "genesis", "zensus", "regio"),
error.ignore = FALSE,
verbose = TRUE,
...) {
caller <- as.character(match.call()[1])
check_function_input(error.ignore = error.ignore,
database = database,
caller = caller,
verbose = verbose)
# database_vector will hold a vector of the specified databases to query
database_vector <- test_database_function(database,
error.input = error.ignore,
text = verbose)
res <- lapply(database_vector, function(db){
results_raw <- gen_api(endpoint = "catalogue/qualitysigns",
database = db,
...)
results_json <- test_if_json(results_raw)
mid_res <- list("Output" = tibble::as_tibble(binding_lapply(results_json$List,
characteristics = c("Code",
"Content"))))
attr(mid_res, "Database") <- db
attr(mid_res, "Language") <- results_json$Parameter$language
attr(mid_res, "Copyright") <- results_json$Copyright
return(mid_res)
})
res <- check_results(res)
return(res)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.