Nothing
# Author: Robert J. Hijmans
# Date : April 2011
# Version 1.0
# Licence GPL v3
.writeHdrPRJ <- function(x, ESRI=TRUE) {
if (.requireRgdal()) {
p4s <- wkt(x)
if (! inherits(p4s, "try-error")) {
prjfile <- filename(x)
extension(prjfile) <- '.prj'
cat(p4s, file=prjfile)
} else {
return(FALSE)
}
return(invisible(TRUE))
} else {
return(FALSE)
}
}
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.