Nothing
setClass("STI", # space-time irregular
contains = "ST",
validity = function(object) {
stopifnot(nrow(object@time) == length(object@sp))
return(TRUE)
}
)
setClass("STIDF", # space-time irregular data frame
contains = "STI",
slots = c(data = "data.frame"),
validity = function(object) {
n = nrow(object@data)
stopifnot(n == length(object@sp))
stopifnot(n == nrow(object@time))
.checkAttrIsUnique(object@sp, object@time, object@data)
return(TRUE)
}
)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.