Nothing
#handle_entities_excel
handle_entities_excel <- function(handler, source, config, handle = TRUE){
isSourceUrl <- regexpr("(http|https)[^([:blank:]|\\\"|<|&|#\n\r)]+", source) > 0
if(isSourceUrl){
source_local_name <- "entities.xlsx"
if(endsWith(source, ".xlsx")) source_local_name <- basename(source)
source_local <- file.path(tempdir(), source_local_name)
download.file(url = source, destfile = source_local, mode = "wb")
source <- source_local
}
#read excel TODO -> options management: sep, encoding etc
source <- as.data.frame(readxl::read_excel(source))
if(!handle) return(source)
#apply generic handler
handler_script = if(handler$getOption("enrich_from_dbi")) "entity_handler_dbi_df.R" else "entity_handler_df.R"
handle_entities_df <- source(system.file("metadata/entity", handler_script, package = "geoflow"))$value
entities <- handle_entities_df(handler, source, config)
return(entities)
}
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.