You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am getting an error message when running krigeST with a separable spatio-temporal variogram when computing the full covariance matrix.
Here is some reproducible code showing the error that I adapted from the krigeST example:
I chased down the problem, krigeST calls krigeST.df, which calls covfn.ST, which calls covSeparable, which needs to called with argument separate = FALSE. This argument is missing and set to false with the following lines of code
if (missing(separate))
separate <- inherits(x, "STF") & inherits(y, "STF") &
length(x) > 1 & length(y) > 1
as the argument x (and y) is of class "STSDF".
The text was updated successfully, but these errors were encountered:
I am getting an error message when running krigeST with a separable spatio-temporal variogram when computing the full covariance matrix.
Here is some reproducible code showing the error that I adapted from the krigeST example:
I chased down the problem, krigeST calls krigeST.df, which calls covfn.ST, which calls covSeparable, which needs to called with argument separate = FALSE. This argument is missing and set to false with the following lines of code
as the argument x (and y) is of class "STSDF".
The text was updated successfully, but these errors were encountered: