Share of PRIO-GRID Cells Covered by Land (Natural Earth)
Source:R/data_naturalearth.R
gen_naturalearth_cover_share.RdComputes the proportion of each PRIO-GRID cell that intersects with land,
based on the Natural Earth 1:10m Physical Land dataset. Returns a raster
layer aligned to PRIO-GRID resolution with values in the range [0, 1]
indicating land coverage share.
Note
Values of
0correspond to ocean-only cellsValues of
1correspond to cells fully covered by landIntermediate values represent fractional coverage (e.g., coastal areas)
References
Natural Earth (2024). “Land. 10m Physical. Made with Natural Earth. Free Vector and Raster Map Data.”
Examples
if (FALSE) { # \dontrun{
# Compute PRIO-GRID land cover share
land_share <- gen_naturalearth_cover_share()
# Inspect values
summary(values(land_share))
# Plot global land cover share
terra::plot(land_share,
main = "Share of PRIO-GRID Cells Covered by Land")
# Extract land share for a region (e.g., West Africa)
africa_extent <- terra::ext(-20, 20, 0, 20)
terra::plot(terra::crop(land_share, africa_extent),
main = "Land Share in West Africa")
} # }