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