Nothing
#handle_entities_dbi_csv
handle_entities_dbi_csv <- function(handler, source, config, handle = TRUE){
#read csv TODO -> options management: sep, encoding etc
#source <- read.csv(source,stringsAsFactors = F)
source <- as.data.frame(readr::read_csv(source, guess_max = 0))
if(!handle) return(source)
#apply generic handler
handle_entities_dbi_df <- source(system.file("metadata/entity", "entity_handler_dbi_df.R", package = "geoflow"))$value
entities <- handle_entities_dbi_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.