I have downloaded this file. 'https://www.esrl.noaa.gov/psd/repository/entry/get/hpbl.mon.mean.nc?entryid=synth%3Ae570c8f9-ec09-4e89-93b4-babd5651e7a9%3AL05BUlIvTW9udGhsaWVzL21vbm9sZXZlbC9ocGJsLm1vbi5tZWFuLm5j'
Now I want to open it.
library(raster)
file <- "~/Desktop/input/hpbl/hpbl.mon.mean.nc"
data <- raster(file)
I get the following warning: Warning message:
Warning message:In cbind(m[i, ], vals) : number of rows of result is not a multiple of vector length (arg 2).
But I cannot figure out why.
Thanks!