[This article was first published on r.iresmi.net, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don’t.
Day 6 of 30DayMapChallenge: « Raster » (previously).
What was the temperature at your birth place when you were born?
Copernicus provides many climate datasets. We can use ERA5 post-processed daily statistics on single levels from 1940 to present to display the weather on your birth date.
Some packages help to download and manipulate ERA5 data ({KrigR}, {Ag5Tools}, {ecmwfr}, or directly by the CDS API,…) but for this one shot, we’ll do a manual download from the web interface.
You need to create a (free) account first.
Then we can chose the product:
- Reanalysis
- 2m temperature
- Date : 1970 / January / 01 (for example)
- Daily mean
- 1-hourly
library(terra) temperature <- rast("65361bd1333e205e6e593c9179183e4a.nc") |> rotate() temperature <- temperature - 273.15 crs(temperature) <- "+proj=longlat" temperature <- project(temperature, "+proj=eqearth")
plot(temperature, main = "Mean temperature on 1970-01-01", axes = FALSE, col = map.pal("magma"))
Related