Nothing
# Author: Robert J. Hijmans
# Date : October 2010
# Version 1.0
# Licence GPL v3
setMethod('extract', signature(x='Raster', y='vector'),
function(x, y, ...){
y <- round(y)
return( .cellValues(x, y, ...) )
})
setMethod('extract', signature(x='Raster', y='sf'),
function(x, y, ...){
y <- .sf2sp(y)
#if (is.list(x)) {}
extract(x, y, ...)
}
)
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.