Nothing
urlToTemp <- structure(function#Temporary NFI data
### This function is implemented by other routines of the package to
### decompress \code{.zip} files with data sets of the SNFI.
##details<< The data sets are decompressed in a
##temporary file of the local
##machine. Compressed data containing file
##extensions other than \code{.mdb} or
##\code{.dbf} are not supported.
(
url., ##<<\code{character}. URL/path to a compressed file of the
##SNFI (.zip) having data of either .dbf or .mdb file
##extensions..
timeOut = timeout(60) ##<<\code{request}. Maximum request time,
##see \code{\link[httr]{timeout}}. Default
##\code{timeout(60)}
) {
if(is.null(url.))
return(NULL)
temp <- tempfile()
is.remote <- grepl('http',url.)
if(is.remote){
gf <- gracefully_fail(url., timeOut = timeOut)
if(is.null(gf))
return(gf)
download.file(url.,temp)
}
if(!is.remote)
file.copy(url.,temp)
con <- unzip(temp,
exdir = tempdir(),
list = TRUE)
con <- unzip(temp,
exdir = tempdir(),
files = NULL)
supr.only <- c('mdb','DBF')
tos <- grepl(paste(supr.only,
collapse = "|"), con)
con <- con[tos]
return(tryCatch(
con,error = function(e) NULL))
### \code{character}. Path to the NFI data (.mdb or .dbf) stored in a
### temporary file
}, ex = function(){
madridNFI <- system.file("ifn3p28_tcm30-293962.zip", package="basifoR")
tfmad <- urlToTemp(madridNFI)
tfmad
## Internet resources fail gracefully with an informative message if
## the resource is not available or has changed (and not give a check
## warning nor error):
path <- '/es/biodiversidad/servicios/banco-datos-naturaleza/090471228013cbbd_tcm30-278511.zip'
url2 <- httr::modify_url("https://www.miteco.gob.es", path = path)
tfmad <- urlToTemp(url2, timeOut=timeout(1))
})
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.