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

fixed time zone bug.

parent cf41677a
No related branches found
No related tags found
No related merge requests found
Package: dataRetrieval Package: dataRetrieval
Type: Package Type: Package
Title: Retrieval functions for USGS data Title: Retrieval functions for USGS data
Version: 1.2.0 Version: 1.2.1
Date: 2012-07-19 Date: 2012-12-31
Author: Robert M. Hirsch, Laura De Cicco Author: Robert M. Hirsch, Laura De Cicco
Maintainer: Laura De Cicco <ldecicco@usgs.gov> Maintainer: Laura De Cicco <ldecicco@usgs.gov>
Description: Collection of functions to help retrieve USGS data from either web Description: Collection of functions to help retrieve USGS data from either web
......
...@@ -64,6 +64,6 @@ retrieveUnitNWISData <- function (siteNumber,ParameterCd,StartDate,EndDate,inter ...@@ -64,6 +64,6 @@ retrieveUnitNWISData <- function (siteNumber,ParameterCd,StartDate,EndDate,inter
ret.val <- x ret.val <- x
return(ret.val)}) return(ret.val)})
retval <- as.data.frame(retval, stringsAsFactors=FALSE) retval <- as.data.frame(retval, stringsAsFactors=FALSE)
names(retval) <- c('agency', 'site', 'dateTime', 'value', 'code') names(retval) <- c('agency', 'site', 'dateTime', 'tzone', 'value', 'code')
return (retval) return (retval)
} }
\ No newline at end of file
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