Get sea ice data at ftp://sidads.colorado.edu/DATASETS/NOAA/G02135/shapefiles
library('rnoaa') library('dplyr') library('ggplot2')
res <- sapply(seq(1986, 1990, 1), function(x) sea_ice(x, month = 'Feb', pole = 'S')) lapply(res, head)
ggplot(res[[1]], aes(long, lat, group=group)) + geom_polygon(fill="steelblue") + theme_ice()
dat <- sea_ice(year = 1985:1990, month = 'Apr', pole = 'N') df <- bind_rows(dat, .id = "x") ggplot(df, aes(long, lat, group = group)) + geom_polygon(fill = "steelblue") + theme_ice() + facet_wrap(~ x)