Skip to content

Instantly share code, notes, and snippets.

@mdsumner
Created January 13, 2025 00:12
Show Gist options
  • Save mdsumner/a50cb328b323b9c6905d1efcbd9b9c0c to your computer and use it in GitHub Desktop.
Save mdsumner/a50cb328b323b9c6905d1efcbd9b9c0c to your computer and use it in GitHub Desktop.
library(terra)
dates <- seq(as.Date("2024-01-12"), as.Date("2025-01-11"), by = "1 day")
r <- rast(sds::nsidc_seaice(dates[length(dates)], hemisphere = "north"))
r[r > 2500] <- NA
r <- r/10
plot(r)

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment