Skip to content
Snippets Groups Projects
Commit f0756220 authored by Laura A DeCicco's avatar Laura A DeCicco
Browse files

Realized I was using unlink wrong.

parent 4c3b343e
No related branches found
No related tags found
1 merge request!85Updates mainly to expose sysdata, but also improvements in readNWISdata and qw.
......@@ -30,6 +30,14 @@
#' }
importWQP <- function(obs_url, zip=FALSE, tz=""){
if(tz != ""){
tz <- match.arg(tz, c("America/New_York","America/Chicago",
"America/Denver","America/Los_Angeles",
"America/Anchorage","America/Honolulu",
"America/Jamaica","America/Managua",
"America/Phoenix","America/Metlakatla"))
}
if(zip){
h <- basicHeaderGatherer()
httpHEAD(obs_url, headerfunction = h$update)
......@@ -49,7 +57,6 @@ importWQP <- function(obs_url, zip=FALSE, tz=""){
if(headerInfo['status'] == "200"){
doc <- unzip(temp)
unlink(temp)
} else {
unlink(temp)
......@@ -61,14 +68,6 @@ importWQP <- function(obs_url, zip=FALSE, tz=""){
headerInfo <- attr(doc, "headerInfo")
}
if(tz != ""){
tz <- match.arg(tz, c("America/New_York","America/Chicago",
"America/Denver","America/Los_Angeles",
"America/Anchorage","America/Honolulu",
"America/Jamaica","America/Managua",
"America/Phoenix","America/Metlakatla"))
}
numToBeReturned <- as.numeric(headerInfo["Total-Result-Count"])
if (!is.na(numToBeReturned) & numToBeReturned != 0){
......@@ -132,7 +131,10 @@ importWQP <- function(obs_url, zip=FALSE, tz=""){
if(all(is.na(retval$ActivityEndDateTime))){
retval$ActivityEndDateTime <- NULL
}
if(zip){
unlink(doc)
}
return(retval)
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment