R/data_norway_map.R
norway_nuts3_map_b2020_default_dt.Rd
We conveniently package map datasets for Norwegian county (taken from Geonorge) that can be used in ggplot2 without needing any geo libraries. This data is licensed under Creative Commons BY 4.0 (CC BY 4.0).
norway_nuts3_map_b2020_default_dt norway_nuts3_position_geolabels_b2020_default_dt
Location code.
Location name.
The order that this line should be plotted in.
Needs to be used as 'group' aesthetic in ggplot2.
Location code (county code).
An object of class data.table
(inherits from data.frame
) with 11 rows and 3 columns.
library(ggplot2) q <- ggplot(mapping = aes(x = long, y = lat)) q <- q + geom_polygon( data = fhimaps::norway_nuts3_map_b2020_default_dt, mapping = aes(group = group, fill = location_code), color = "black", fill = "white", size = 0.2 ) q <- q + geom_label( data = fhimaps::norway_nuts3_position_geolabels_b2020_default_dt, mapping = aes(label = location_code), color = "red" ) q <- q + theme_void() q <- q + coord_quickmap() q