Moving to dplyr for real
Compare changes
- #1 from lindsaycarr/masterLaura A DeCicco authored
added readr >> read_tsv
+ 28
− 23
@@ -90,15 +90,20 @@ importWQP <- function(obs_url, zip=FALSE, tz=""){
@@ -90,15 +90,20 @@ importWQP <- function(obs_url, zip=FALSE, tz=""){
suppressWarnings(namesData <- read.delim(if(zip) doc else textConnection(doc) , header = TRUE, quote="",
suppressWarnings(retval <- read.delim(if(zip) doc else textConnection(doc), header = TRUE, quote="",
@@ -127,28 +132,28 @@ importWQP <- function(obs_url, zip=FALSE, tz=""){
@@ -127,28 +132,28 @@ importWQP <- function(obs_url, zip=FALSE, tz=""){
suppressWarnings(retval$ActivityStartDate <- as.Date(parse_date_time(retval$ActivityStartDate, c("Ymd", "mdY"))))
suppressWarnings(retval$ActivityEndDate <- as.Date(parse_date_time(retval$ActivityEndDate, c("Ymd", "mdY"))))
retval$ActivityStartDateTime <- with(retval, as.POSIXct(paste(ActivityStartDate, ActivityStartTime.Time),format="%Y-%m-%d %H:%M:%S", tz = "UTC"))
@@ -159,7 +164,7 @@ importWQP <- function(obs_url, zip=FALSE, tz=""){
@@ -159,7 +164,7 @@ importWQP <- function(obs_url, zip=FALSE, tz=""){
retval$ActivityEndDateTime <- with(retval, as.POSIXct(paste(ActivityEndDate, ActivityEndTime.Time),format="%Y-%m-%d %H:%M:%S", tz = "UTC"))