Skip to content

Instantly share code, notes, and snippets.

@jebyrnes
Created October 2, 2018 04:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jebyrnes/47ec881729e2506961cfea1e6266c951 to your computer and use it in GitHub Desktop.
Save jebyrnes/47ec881729e2506961cfea1e6266c951 to your computer and use it in GitHub Desktop.
library(sf)
library(rnaturalearth)
library(rnaturalearthdata)
library(ggplot2)
oceans <- ne_download(type = "ocean", category = "physical", returnclass="sf")
ocean_antarctic <- st_transform(oceans, 2154)
ggplot(ocean_antarctic) +
geom_sf(fill = "lightblue", color=NA)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment