Skip to contents

A simplified data set of land, and nations, (for global usage) from Natural Earth. Basically, combined the high res land data set with the minor islands data set. Islands, which do not contain administrative info from Natural Earth were assigned by being 'nearest' feature to a nation. Based on visual inspection the match is good; any mismatch is not my intention - viva la Mexico and god bless the USA. "Made with Natural Earth. Free vector and raster map data @ naturalearthdata.com."

Usage

land

Format

sf/tibble/dataframe, with two multipolygons, one for each of the countries in the area.

Name

Name of the country.

geometry

A simplified multipolygon geometry.

Examples

data(land)

library(ggplot2)
ggplot() +
 geom_sf(data = land, aes(fill = name)) +
 theme_minimal()