Nothing
#handle_dictionary_excel
handle_dictionary_excel <- function(handler, source, config, handle = TRUE){
#read excel TODO -> options management: sep, encoding etc
source <- as.data.frame(readxl::read_excel(source))
if(!handle) return(source)
#apply generic handler
handle_dictionary_df <- source(system.file("metadata/dictionary", "dictionary_handler_df.R", package = "geoflow"))$value
dictionary <- handle_dictionary_df(handler, source, config)
return(dictionary)
}
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.