Nothing
# Author: Robert J. Hijmans
# Date : April 2009
# Version 0.9
# Licence GPL v3
setMethod('ncell', signature(x='BasicRaster'),
function(x) {
return(as.numeric(x@ncols) * x@nrows)
}
)
setMethod('ncell', signature(x='ANY'),
function(x) {
NROW(x) * NCOL(x)
}
)
setMethod('length', signature(x='BasicRaster'),
function(x) {
ncell(x) * nlayers(x)
}
)
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.