Skip to content
Prev 16783 / 29559 Next

calculate CRPS on rasters

Robert,
you're right, it works. 
I must have done something wrong yesterday
I'm trying to optimize the computation time
I've tested the two alternatives on a predictor of 51 layers of 680x810 pixels

CRPS[] <- crps(obs[],pred[])$crps ? ? ? ? ? ? ? ? took 0.98 second
CRPS  <- overlay(obs, pred, fun=function(x,y) crps(x,y)$crps)????????? took 1.45 seconds

anyway, thank you all!

Lorenzo


________________________________