Nothing
"subsetmap.kasc" <- function(x, xlim=NULL, ylim=NULL, ref=names(x)[1], ...)
{
## Verifications
if (!inherits(x, "kasc"))
stop("x should be of class kasc")
## asks the boundaries of the new map
if ((is.null(xlim))|(is.null(ylim))) {
image(getkasc(x, ref), main="select the boudaries of the subset")
ii<-locator(2)
xlim<-ii$x
ylim<-ii$y
}
## subsetmap.asc for each map
so<-list()
for (i in names(x))
so[[i]]<-subsetmap.asc(getkasc(x, i), xlim=xlim, ylim=ylim)
so<-as.kasc(so)
## Output
return(so)
}
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.