I need some help with a geospatial data project:
I downloaded this dataset of yearly mean temperatures: https://psl.noaa.gov/data/gridded/data.UDel_AirT_Precip.html (this one) from which I need to data of 1990.
I imported the data into R with the following command:
ras_tempdata_v5 = raster("PATH/air.mon.mean.v501.nc")
and was hoping I could go with something like
tempdata_v5_90 <- raster(ras_tempdata_v5@history == 1990)
(would the "raster" here be needed again or would it automatically be raster data?)
to end up with just the data for 1990. But I have no idea where is the dataset the years are stored and how to access only the data for one specific year.
This is what the dataset looks like in RSTudio.
I also installed Panoply (looked like this) to find out something about the variable structure, but that didn't really help me either.
Any help would be highly appreciated!