Nothing
#' Grid dataset
#'
#' @description
#' These datasets contain grid cells covering the European land
#' territory, for various resolutions from 1km to 100km. Base statistics such
#' as population figures are provided for these cells.
#'
#' @family grids
#' @inheritParams gisco_get_countries
#' @inherit gisco_get_countries return
#' @export
#'
#' @source
#' <https://ec.europa.eu/eurostat/web/gisco/geodata/grids>.
#'
#' There are specific downloading provisions, please see
#' <https://ec.europa.eu/eurostat/web/gisco/geodata/grids>.
#'
#' @param resolution Resolution of the grid cells on kms. Available values are
#' `"1"`, `"2"`, `"5"`, `"10"`, `"20"`, `"50"`, `"100"`. See **Details**.
#' @param spatialtype Select one of `"REGION"` or `"POINT"`.
#'
#' @details
#' Files are distributed on [`EPSG:3035`](https://epsg.io/3035).
#'
#' The file sizes range is from 428Kb (`resolution = 100`)
#' to 1.7Gb `resolution = 1`.
#'
#'
#' @examplesIf gisco_check_access()
#' grid <- gisco_get_grid(resolution = 20)
#'
#' # If downloaded correctly proceed
#'
#' if (!is.null(grid)) {
#' library(dplyr)
#'
#' grid <- grid |>
#' mutate(popdens = TOT_P_2021 / 20)
#'
#' breaks <- c(0, 0.1, 100, 500, 1000, 5000, 10000, Inf)
#'
#' # Cut groups
#' grid <- grid |>
#' mutate(popdens_cut = cut(popdens,
#' breaks = breaks,
#' include.lowest = TRUE
#' ))
#'
#' cut_labs <- prettyNum(breaks, big.mark = " ")[-1]
#' cut_labs[1] <- "0"
#' cut_labs[7] <- "> 10 000"
#'
#' pal <- c("black", hcl.colors(length(breaks) - 2,
#' palette = "Spectral",
#' alpha = 0.9
#' ))
#'
#' library(ggplot2)
#'
#' ggplot(grid) +
#' geom_sf(aes(fill = popdens_cut), color = NA, linewidth = 0) +
#' coord_sf(
#' xlim = c(2500000, 7000000),
#' ylim = c(1500000, 5200000)
#' ) +
#' scale_fill_manual(
#' values = pal, na.value = "black",
#' name = "people per sq. kilometer",
#' labels = cut_labs,
#' guide = guide_legend(
#' direction = "horizontal",
#' nrow = 1
#' )
#' ) +
#' theme_void() +
#' labs(
#' title = "Population density in Europe",
#' subtitle = "Grid: 20 km.",
#' caption = gisco_attributions()
#' ) +
#' theme(
#' text = element_text(colour = "white"),
#' plot.background = element_rect(fill = "grey2"),
#' plot.title = element_text(hjust = 0.5),
#' plot.subtitle = element_text(hjust = 0.5, face = "bold"),
#' plot.caption = element_text(
#' color = "grey60", hjust = 0.5, vjust = 0,
#' margin = margin(t = 5, b = 10)
#' ),
#' legend.position = "bottom",
#' legend.title.position = "top",
#' legend.text.position = "bottom",
#' legend.key.height = unit(0.5, "lines"),
#' legend.key.width = unit(1, "lines")
#' )
#' }
gisco_get_grid <- function(
resolution = c(100, 50, 20, 10, 5, 2, 1),
spatialtype = c("REGION", "POINT"),
cache_dir = NULL,
update_cache = FALSE,
verbose = FALSE
) {
resolution <- match_arg_pretty(resolution)
spatialtype <- match_arg_pretty(spatialtype)
valid <- c("REGION", "POINT")
translate <- c("surf", "point")
ftrans <- translate[valid == spatialtype]
filename <- paste0("grid_", resolution, "km_", ftrans, ".gpkg")
api_entry <- "https://gisco-services.ec.europa.eu/grid"
url <- file.path(api_entry, filename)
file_local <- download_url(
url,
basename(url),
cache_dir,
"grid",
update_cache,
verbose
)
if (is.null(file_local)) {
return(NULL)
}
data_sf <- read_geo_file_sf(file_local)
data_sf
}
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.