Nothing
get.shapefile.names <- function(path){
#get all filenames in folder
all.filenames <- list.files(path)
#remove file extenstions
all.filenames.list <- strsplit(all.filenames, split="[.]")
all.filenames <- lapply(all.filenames.list, function(x){return(x[1])})
all.filenames <- as.character(all.filenames)
#find unique shapefiles
unique.shapefiles <- unique(all.filenames)
#remove meta.txt file
unique.shapefiles <- unique.shapefiles[unique.shapefiles != "Meta"]
return(unique.shapefiles)
}
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.