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

Catching some test bugs.

parent 2c9ff6a9
No related branches found
No related tags found
1 merge request!151readr for importRDB1
......@@ -2,7 +2,7 @@ Package: dataRetrieval
Type: Package
Title: Retrieval Functions for USGS and EPA Hydrologic and Water Quality Data
Version: 2.4.0
Date: 2015-10-14
Date: 2015-11-25
Authors@R: c( person("Robert", "Hirsch", role = c("aut"),
email = "rhirsch@usgs.gov"),
person("Laura", "DeCicco", role = c("aut","cre"),
......
......@@ -45,5 +45,6 @@ importFrom(plyr,rbind.fill.matrix)
importFrom(readr,col_character)
importFrom(readr,cols)
importFrom(readr,read_delim)
importFrom(readr,read_lines)
importFrom(reshape2,dcast)
importFrom(reshape2,melt)
......@@ -45,6 +45,8 @@
#' @import utils
#' @import stats
#' @importFrom dplyr left_join
#' @importFrom readr read_lines
#' @importFrom readr read_delim
#' @examples
#' siteNumber <- "02177000"
#' startDate <- "2012-09-01"
......
......@@ -202,11 +202,6 @@ readNWISdata <- function(service="dv", ...){
retval$tz_cd <- rep(tz, nrow(retval))
}
}
if("qwdata" == service){
retval <- convertQWdates(retval)
}
}
return(retval)
......
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