#' Retrieve 1km^2 attribute of the German Census 2011
#'
#' This function retrieves an attribute with a raster resolution of 1km². You
#' can either choose to have it converted directly into the raster format
#' (default) or you can return it as a \code{sf} tibble object with point
#' geometries.
#'
#' @param attribute attribute name as definded in
#' \code{z11::z11_list_1km_attributes}
#' @param as_raster logical; shall the attribute be returned as raster or sf
#' object
#' @param data_location character string; location of the downloaded census data
#' from https://github.com/StefanJuenger/z11data; default is NULL - data are
#' downloaded from the internet
#'
#' @return Raster or sf
#'
#' @importFrom magrittr %>%
#'
#' @export
z11_get_1km_attribute <-
function(attribute, as_raster = TRUE, data_location = NULL) {
attribute <- rlang::enquo(attribute) %>% rlang::as_label()
# load data in session
if (is.null(data_location)) {
requested_attribute <-
paste0(
"https://github.com/StefanJuenger/z11data/raw/main/1km/",
attribute,
".rds"
) %>%
url("rb") %>%
readRDS()
} else {
requested_attribute <-
paste0(data_location, "/1km/", attribute, ".rds") %>%
readRDS()
}
if (isTRUE(as_raster)) {
requested_attribute %>%
stars::st_rasterize(dx = 1000, dy = 1000) %>%
terra::rast()
} else {
requested_attribute
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.