Moving to dplyr for real
Compare changes
Files
5- Laura A DeCicco authored
+ 54
− 43
@@ -15,7 +17,13 @@
@@ -15,7 +17,13 @@
@@ -62,7 +70,7 @@ importWQP <- function(obs_url, zip=FALSE, tz=""){
@@ -62,7 +70,7 @@ importWQP <- function(obs_url, zip=FALSE, tz=""){
@@ -74,16 +82,21 @@ importWQP <- function(obs_url, zip=FALSE, tz=""){
@@ -74,16 +82,21 @@ importWQP <- function(obs_url, zip=FALSE, tz=""){
retval <- suppressWarnings(fread(obs_url,colClasses = "character",verbose = FALSE,showProgress = FALSE))
@@ -96,49 +109,47 @@ importWQP <- function(obs_url, zip=FALSE, tz=""){
@@ -96,49 +109,47 @@ importWQP <- function(obs_url, zip=FALSE, tz=""){
retval <- suppressWarnings(retval[, (dateCols) := lapply(.SD, function(x) as.Date(parse_date_time(x, c("Ymd", "mdY")))),
retval <- retval[,ActivityStartDateTime:=fast_strptime(ActivityStartDateTime, '%Y-%m-%d %H:%M:%S')+60*60*timeZoneStart]
retval <- retval[,ActivityEndDateTime:=fast_strptime(ActivityEndDateTime, '%Y-%m-%d %H:%M:%S')+60*60*timeZoneEnd]
\ No newline at end of file