diff --git a/DESCRIPTION b/DESCRIPTION index 1e55ef39b4c00782f53ebb64485c6795eeead2d4..e4ee236049ec2353f130091f9fe1d102073d45e1 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,13 +1,15 @@ Package: dataRetrieval Type: Package Title: Retrieval functions for hydrologic data -Version: 1.4.0 +Version: 1.4.1.9000 Date: 2014-10-06 -Author: Robert M. Hirsch, Laura De Cicco -Maintainer: Laura De Cicco <ldecicco@usgs.gov> +Authors@R: c( person("Robert", "Hirsch", role = c("aut"), + email = "rhirsch@usgs.gov"), + person("Laura", "DeCicco", role = c("aut","cre"), + email = "ldecicco@usgs.gov")) Description: Collection of functions to help retrieve USGS data from either web - services or user provided data files. -License: file LICENSE + services or user-provided data files. +License: Unlimited | file LICENSE Copyright: This software is in the public domain because it contains materials that originally came from the United States Geological Survey, an agency of the United States Department of Interior. For more information, see the @@ -30,3 +32,4 @@ LazyLoad: yes LazyData: yes VignetteBuilder: knitr BuildVignettes: true +Additional_repositories: http://usgs-r.github.com diff --git a/NAMESPACE b/NAMESPACE index d246fb10de47179e45a59bc2be9a5e3b5865e5dd..1fe6705ee06665c1871c4050904834ee8b3aebb4 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -7,11 +7,8 @@ export(dataOverview) export(dateFormatCheck) export(formatCheckDate) export(formatCheckParameterCd) -export(getDVData) export(getDailyDataFromFile) -export(getDataAvailability) export(getDataFromFile) -export(getMetaData) export(getNWISDaily) export(getNWISData) export(getNWISDataAvailability) @@ -23,12 +20,7 @@ export(getNWISSites) export(getNWISdvData) export(getNWISqwData) export(getNWISunitData) -export(getParameterInfo) export(getRDB1Data) -export(getSTORETSampleData) -export(getSampleData) -export(getSampleDataFromFile) -export(getSiteFileData) export(getUserDaily) export(getUserInfo) export(getUserSample) diff --git a/R/basicWQPData.R b/R/basicWQPData.R index 460375c18c25ebb24d024ce1e97f7aa2213b55b3..4b482189841dcbd970a9d81b13b9ffa02224b716 100644 --- a/R/basicWQPData.R +++ b/R/basicWQPData.R @@ -10,8 +10,10 @@ #' @importFrom lubridate parse_date_time #' @examples #' # These examples require an internet connection to run +#' \dontrun{ #' rawSampleURL <- constructNWISURL('USGS-01594440','01075', '1985-01-01', '1985-03-31',"wqp") #' rawSample <- readWQPData(rawSampleURL) +#' } readWQPData <- function(url){ h <- basicHeaderGatherer() diff --git a/R/constructNWISURL.r b/R/constructNWISURL.r index 8e7c99bb6af82b2dc8e0e4fd9fc75f65800f6748..8e7da895437e0b9515ff1cd230eb73e499234af4 100644 --- a/R/constructNWISURL.r +++ b/R/constructNWISURL.r @@ -9,7 +9,7 @@ #' @param startDate string starting date for data retrieval in the form YYYY-MM-DD. #' @param endDate string ending date for data retrieval in the form YYYY-MM-DD. #' @param statCd string or vector USGS statistic code only used for daily value service. This is usually 5 digits. Daily mean (00003) is the default. -#' @param service string USGS service to call. Possible values are "dv" (daily values), "uv" (unit/instantaneous values), "qw" (water quality data), and "wqp" (water quality portal, which can include STORET). +#' @param service string USGS service to call. Possible values are "dv" (daily values), "uv" (unit/instantaneous values), "qw" (water quality data), "gwlevels" (groundwater),and "wqp" (water quality portal, which can include STORET). #' @param format string, can be "tsv" or "xml", and is only applicable for daily and unit value requests. "tsv" returns results faster, but there is a possiblitiy that an incomplete file is returned without warning. XML is slower, #' but will offer a warning if the file was incomplete (for example, if there was a momentary problem with the internet connection). It is possible to safely use the "tsv" option, #' but the user must carefully check the results to see if the data returns matches what is expected. The default is therefore "xml". @@ -78,9 +78,9 @@ constructNWISURL <- function(siteNumber,parameterCd,startDate,endDate,service,st "format=rdb&rdb_qw_attributes=0&date_format=YYYY-MM-DD", "rdb_compression=value", sep = "&") if(expanded){ - url <- paste(url,"&qw_sample_wide=0",sep="") + url <- paste0(url,"&qw_sample_wide=0") } else { - url <- paste(url,"&qw_sample_wide=separated_wide",sep="") + url <- paste0(url,"&qw_sample_wide=separated_wide") } if (nzchar(startDate)) { @@ -114,7 +114,7 @@ constructNWISURL <- function(siteNumber,parameterCd,startDate,endDate,service,st } baseURL <- "http://www.waterqualitydata.us/Result/search?siteid=" - url <- paste(baseURL, + url <- paste0(baseURL, siteNumber, ifelse(pCodeLogic,"&pCode=","&characteristicName="), parameterCd, @@ -122,7 +122,7 @@ constructNWISURL <- function(siteNumber,parameterCd,startDate,endDate,service,st startDate, "&startDateHi=", endDate, - "&countrycode=US&mimeType=tsv",sep = "") + "&countrycode=US&mimeType=tsv") }, { # this will be either dv or uv @@ -130,43 +130,53 @@ constructNWISURL <- function(siteNumber,parameterCd,startDate,endDate,service,st if(multiplePcodes){ parameterCd <- paste(parameterCd, collapse=",") } else { - parameterCd <- formatCheckParameterCd(parameterCd, interactive=interactive) + if("gwlevels" != service){ + parameterCd <- formatCheckParameterCd(parameterCd, interactive=interactive) + } } if ("uv"==service) { service <- "iv" - baseURL <- paste("http://nwis.waterservices.usgs.gov/nwis/",service,sep="") + baseURL <- paste0("http://nwis.waterservices.usgs.gov/nwis/",service) } else { - baseURL <- paste("http://waterservices.usgs.gov/nwis/",service,sep="") + baseURL <- paste0("http://waterservices.usgs.gov/nwis/",service) } if ("xml"==format){ - format <- "waterml,1.1" + if("gwlevels" == service){ + format <- "waterml" + } else { + format <- "waterml,1.1" + } } else if ("tsv" == format){ format <- "rdb,1.0" } else { warning("non-supported format requested, please choose xml or tsv") } - url <- paste(baseURL,"/?site=",siteNumber, "&ParameterCd=",parameterCd, "&format=", format, sep = "") + url <- paste0(baseURL,"/?site=",siteNumber, "&format=", format) + + if("gwlevels"!= service){ + url <- paste0(url, "&ParameterCd=",parameterCd) + } if("dv"==service) { if(length(statCd) > 1){ statCd <- paste(statCd, collapse=",") } - url <- paste(url, "&StatCd=", statCd, sep = "") + url <- paste0(url, "&StatCd=", statCd) } if (nzchar(startDate)) { - url <- paste(url,"&startDT=",startDate,sep="") + url <- paste0(url,"&startDT=",startDate) } else { startorgin <- "1851-01-01" if ("iv" == service) startorgin <- "1900-01-01" - url <- paste(url,"&startDT=",startorgin,sep="") + url <- paste0(url,"&startDT=",startorgin) } if (nzchar(endDate)) { - url <- paste(url,"&endDT=",endDate,sep="") + url <- paste0(url,"&endDT=",endDate) } } diff --git a/R/dataOverview.r b/R/dataOverview.r index 530a4bde463d779d5c0225d2464371f90d1f69a7..85c811376875aa5a37e7cbbfcacfb79d010c3b18 100644 --- a/R/dataOverview.r +++ b/R/dataOverview.r @@ -2,8 +2,8 @@ #' #' Gives a summary of data to be used for WRTDS analysis #' -#' @param localDaily dataframe -#' @param localSample dataframe +#' @param Daily dataframe +#' @param Sample dataframe #' @keywords data import USGS WRTDS #' @export #' @seealso \code{\link{mergeReport}} @@ -11,26 +11,27 @@ #' # These examples require an internet connection to run #' exDaily <- getNWISDaily('01594440','00060', '1985-01-01', '1985-03-31', interactive=FALSE) #' exSample <- getNWISSample('01594440','01075', '1985-01-01', '1985-03-31', interactive=FALSE) -#' dataOverview(localDaily = exDaily, localSample = exSample) -dataOverview <- function(localDaily = Daily, localSample = Sample){ - numDays<-length(localDaily$Date) - numSamples<-length(localSample$Date) +#' dataOverview(Daily = exDaily, Sample = exSample) +dataOverview <- function(Daily, Sample ){ + + numDays<-length(Daily$Date) + numSamples<-length(Sample$Date) numYears<-round(numDays/365.25,digits=0) cat("\n Discharge Record is",numDays,"days long, which is",numYears,"years") - cat("\n First day of the discharge record is", as.character(localDaily$Date[1]),"and last day is",as.character(localDaily$Date[numDays])) + cat("\n First day of the discharge record is", as.character(Daily$Date[1]),"and last day is",as.character(Daily$Date[numDays])) cat("\n The water quality record has",numSamples,"samples") - cat("\n The first sample is from", as.character(localSample$Date[1]),"and the last sample is from",as.character(localSample$Date[numSamples])) - if(localSample$Date[1]<localDaily$Date[1]) cat("\n WE HAVE A PROBLEM first sample is from before the first daily discharge") - if(localSample$Date[numSamples]>localDaily$Date[numDays]) cat("\n WE HAVE A PROBLEM last sample is from after the last daily discharge") - Qmin<-signif(min(localDaily$Q),digits=3) - Qmean<-signif(mean(localDaily$Q),digits=3) - Qmax<-signif(max(localDaily$Q),digits=3) - Cmin<-signif(min(localSample$ConcHigh),digits=2) - Cmean<-signif(mean(localSample$ConcHigh),digits=2) - Cmax<-signif(max(localSample$ConcHigh),digits=2) + cat("\n The first sample is from", as.character(Sample$Date[1]),"and the last sample is from",as.character(Sample$Date[numSamples])) + if(Sample$Date[1]<Daily$Date[1]) cat("\n WE HAVE A PROBLEM first sample is from before the first daily discharge") + if(Sample$Date[numSamples]>Daily$Date[numDays]) cat("\n WE HAVE A PROBLEM last sample is from after the last daily discharge") + Qmin<-signif(min(Daily$Q),digits=3) + Qmean<-signif(mean(Daily$Q),digits=3) + Qmax<-signif(max(Daily$Q),digits=3) + Cmin<-signif(min(Sample$ConcHigh),digits=2) + Cmean<-signif(mean(Sample$ConcHigh),digits=2) + Cmax<-signif(max(Sample$ConcHigh),digits=2) cat("\n Discharge: Minimum, mean and maximum",Qmin,Qmean,Qmax) cat("\n Concentration: Minimum, mean and maximum",Cmin,Cmean,Cmax) - pct<-sum(localSample$Uncen) + pct<-sum(Sample$Uncen) pct<-((numSamples-pct)/numSamples)*100 cat("\n Percentage of the sample values that are censored is",signif(pct,digits=2),"%") } diff --git a/R/getDVData.r b/R/getDVData.r index f340440a43593ab6b359b8607e4651476f179433..8ddc694c1806d11e2b83053cd6c37249d651f98d 100644 --- a/R/getDVData.r +++ b/R/getDVData.r @@ -1,42 +1,3 @@ -#' Import Daily Data for WRTDS -#' -#' This function is being deprecated for \code{\link{getNWISDaily}}. -#' -#' @param siteNumber string USGS site number. This is usually an 8 digit number -#' @param parameterCd string USGS parameter code. This is usually an 5 digit number. -#' @param startDate string starting date for data retrieval in the form YYYY-MM-DD. -#' @param endDate string ending date for data retrieval in the form YYYY-MM-DD. -#' @param interactive logical Option for interactive mode. If true, there is user interaction for error handling and data checks. -#' @param convert logical Option to include a conversion from cfs to cms (35.314667). The default is TRUE, -#' which is appropriate for using NWIS data in the EGRET package. Set this to FALSE to not include the conversion. If the parameter code is not 00060 (NWIS discharge), -#' there is no conversion applied. -#' @param format string, can be "tsv" or "xml", and is only applicable for daily and unit value requests. "tsv" returns results faster, but there is a possiblitiy that an incomplete file is returned without warning. XML is slower, -#' but will offer a warning if the file was incomplete (for example, if there was a momentary problem with the internet connection). It is possible to safely use the "tsv" option, -#' but the user must carefully check the results to see if the data returns matches what is expected. The default is "tsv". -#' @keywords data import USGS WRTDS -#' @export -#' @return Daily dataframe -#' @seealso \code{\link{getNWISdvData}}, \code{\link{populateDaily}}, \code{\link{getNWISData}} -#' @examples -#' # These examples require an internet connection to run -#' \dontrun{Daily <- getDVData('01594440','00060', '1985-01-01', '1985-03-31')} -#' \dontrun{DailyCFS <- getDVData('01594440','00060', '1985-01-01', '1985-03-31',convert=FALSE)} -#' \dontrun{DailySuspSediment <- getDVData('01594440','80154', '1985-01-01', '1985-03-31')} -getDVData <- function (siteNumber,parameterCd,startDate,endDate,interactive=TRUE,convert=TRUE,format="tsv"){ - warning("This function is being deprecated, please use getNWISData") - data <- getNWISdvData(siteNumber,parameterCd,startDate,endDate,interactive=interactive,format=format) - - # need to setup conversion factor because the NWIS data are in cfs but we store in cms - names(data) <- c('agency', 'site', 'dateTime', 'value', 'code') # do a merge instead? - - qConvert <- ifelse("00060" == parameterCd, 35.314667, 1) - qConvert<- ifelse(convert,qConvert,1) - - localDaily <- populateDaily(data,qConvert,interactive=interactive) - return (localDaily) -} - - #' Import NWIS Daily Data for EGRET analysis #' #' Imports data from NWIS web service. This function gets the data from here: \url{http://waterservices.usgs.gov/} diff --git a/R/getDataAvailability.r b/R/getDataAvailability.r index bf1ff0dc11839a79bf22fca50923b828ba7ede8a..97c17b2f54536a685cae47c84aedf05202d0a4ef 100644 --- a/R/getDataAvailability.r +++ b/R/getDataAvailability.r @@ -56,77 +56,7 @@ getNWISDataAvailability <- function(siteNumber,type=c("uv","dv","qw")){ pCodes <- unique(SiteFile$parameter_cd) - pcodeINFO <- parameterCdFile[parameterCdFile$parameter_cd %in% pCodes,] - SiteFile <- merge(SiteFile,pcodeINFO,by="parameter_cd") - SiteFile <- SiteFile[SiteFile$service %in% type,] - return(SiteFile) - } else { - message(paste("URL caused an error:", urlSitefile)) - message("Content-Type=",h$value()["Content-Type"]) - return(NA) - } -} - - -#' USGS data availability -#' -#' This function is being deprecated for \code{\link{getNWISDataAvailability}}. -#' -#' @param siteNumber string USGS site number. -#' @param type vector string. Options are "uv", "dv", "qw" -#' @keywords data import USGS web service -#' @return retval dataframe with all information found in the expanded site file -#' @export -#' @import RCurl -#' @examples -#' # These examples require an internet connection to run -#' \dontrun{availableData <- getDataAvailability('05114000')} -#' # To find just unit value ('instantaneous') data: -#' \dontrun{uvData <- getDataAvailability('05114000',type="uv")} -#' \dontrun{uvDataMulti <- getDataAvailability(c('05114000','09423350'),type="uv")} -getDataAvailability <- function(siteNumber,type=c("uv","dv","qw")){ - - warning("This function is being deprecated, please use getNWISDataAvailability") - - siteNumber <- paste(siteNumber,collapse=",") - - urlSitefile <- paste("http://waterservices.usgs.gov/nwis/site/?format=rdb&seriesCatalogOutput=true&sites=",siteNumber,sep = "") - - doc = tryCatch({ - h <- basicHeaderGatherer() - doc <- getURL(urlSitefile, headerfunction = h$update) - - }, warning = function(w) { - message(paste("URL caused a warning:", urlSitefile)) - message(w) - }, error = function(e) { - message(paste("URL does not seem to exist:", urlSitefile)) - message(e) - return(NA) - }) - - if(h$value()["Content-Type"] == "text/plain;charset=UTF-8"){ - SiteFile <- read.delim( - textConnection(doc), - header = TRUE, - quote="\"", - dec=".", - sep='\t', - colClasses=c('character'), - fill = TRUE, - comment.char="#") - - SiteFile <- SiteFile[-1,] - - SiteFile <- with(SiteFile, data.frame(site_no=site_no, parameter_cd=parm_cd, statCd=stat_cd, startDate=begin_date,endDate=end_date, count=count_nu,service=data_type_cd,stringsAsFactors = FALSE)) - - SiteFile <- SiteFile[!is.na(SiteFile$parameter_cd),] - SiteFile <- SiteFile["" != SiteFile$parameter_cd,] - SiteFile$startDate <- as.Date(SiteFile$startDate) - SiteFile$endDate <- as.Date(SiteFile$endDate) - SiteFile$count <- as.numeric(SiteFile$count) - - pCodes <- unique(SiteFile$parameter_cd) + parameterCdFile <- parameterCdFile pcodeINFO <- parameterCdFile[parameterCdFile$parameter_cd %in% pCodes,] SiteFile <- merge(SiteFile,pcodeINFO,by="parameter_cd") @@ -137,4 +67,4 @@ getDataAvailability <- function(siteNumber,type=c("uv","dv","qw")){ message("Content-Type=",h$value()["Content-Type"]) return(NA) } -} \ No newline at end of file +} diff --git a/R/getMetaData.r b/R/getMetaData.r index b49758833bec1b5157a54cfbdc3ff00c4a75942f..281d558c75afa9b0e76675df357857c2ca0ba032 100644 --- a/R/getMetaData.r +++ b/R/getMetaData.r @@ -1,44 +1,3 @@ -#' Import Metadata for USGS Data -#' -#' This function is being deprecated for \code{\link{getNWISInfo}}. -#' -#' @param siteNumber string USGS site number. This is usually an 8 digit number -#' @param parameterCd string USGS parameter code. This is usually an 5 digit number. -#' @param interactive logical Option for interactive mode. If true, there is user interaction for error handling and data checks. -#' @keywords data import USGS web service WRTDS -#' @export -#' @return INFO dataframe with agency, site, dateTime, value, and code columns -#' @examples -#' # These examples require an internet connection to run -#' # Automatically gets information about site 05114000 and temperature, no interaction with user -#' INFO <- getMetaData('05114000','00010') -getMetaData <- function(siteNumber="", parameterCd="",interactive=TRUE){ - - warning("This function is being deprecated, please use getNWISInfo") - - if (nzchar(siteNumber)){ - INFO <- getNWISSiteInfo(siteNumber) - } else { - INFO <- as.data.frame(matrix(ncol = 2, nrow = 1)) - names(INFO) <- c('site.no', 'shortName') - } - INFO <- populateSiteINFO(INFO, siteNumber, interactive=interactive) - - if (nzchar(parameterCd)){ - parameterData <- getNWISPcodeInfo(parameterCd,interactive=interactive) - INFO$param.nm <- parameterData$parameter_nm - INFO$param.units <- parameterData$parameter_units - INFO$paramShortName <- parameterData$srsname - INFO$paramNumber <- parameterData$parameter_cd - } - - INFO <- populateParameterINFO(parameterCd, INFO, interactive=interactive) - INFO$paStart <- 10 - INFO$paLong <- 12 - - return(INFO) -} - #' Import Metadata for USGS Data #' #' Populates INFO data frame for EGRET study. If either station number or parameter code supplied, imports data about a particular USGS site from NWIS web service. @@ -101,11 +60,13 @@ getNWISInfo <- function(siteNumber, parameterCd,interactive=TRUE){ #' # Automatically gets information about site 01594440 and temperature, no interaction with user #' nameToUse <- 'Specific conductance' #' pcodeToUse <- '00095' +#' \dontrun{ #' INFO <- getWQPInfo('USGS-04024315',pcodeToUse,interactive=TRUE) #' INFO2 <- getWQPInfo('WIDNR_WQX-10032762',nameToUse) #' # To adjust the label names: #' INFO$shortName <- "Little" #' INFO$paramShortName <- "SC" +#' } getWQPInfo <- function(siteNumber, parameterCd, interactive=FALSE){ #Check for pcode: diff --git a/R/getNWISSites.R b/R/getNWISSites.R index fe7001f61a2877bb7ed813fb6c2518b9a2f6dbbf..0cfe7c4db81aea6eda5695764b3904f6f9c2dfc5 100644 --- a/R/getNWISSites.R +++ b/R/getNWISSites.R @@ -30,16 +30,16 @@ getNWISSites <- function(...){ if(h$value()["Content-Type"] == "text/xml;charset=UTF-8"){ xmlTreeParse(returnedDoc, getDTD = FALSE, useInternalNodes = TRUE) } else { - message(paste("URL caused an error:", obs_url)) + message(paste("URL caused an error:", urlCall)) message("Content-Type=",h$value()["Content-Type"]) return(NA) } }, warning = function(w) { - message(paste("URL caused a warning:", obs_url)) + message(paste("URL caused a warning:", urlCall)) message(w) }, error = function(e) { - message(paste("URL does not seem to exist:", obs_url)) + message(paste("URL does not seem to exist:", urlCall)) message(e) return(NA) }) diff --git a/R/getParameterInfo.r b/R/getParameterInfo.r index 05a5480c0d1d5d93eff3dff2a75cce2b0fd63d5f..46890671d2e920e01a54e0a8295b7821aefab818 100644 --- a/R/getParameterInfo.r +++ b/R/getParameterInfo.r @@ -14,30 +14,9 @@ getNWISPcodeInfo <- function(parameterCd,interactive=TRUE){ parameterCd <- formatCheckParameterCd(parameterCd, interactive=interactive) + parameterCdFile <- parameterCdFile + parameterData <- parameterCdFile[parameterCdFile$parameter_cd %in% parameterCd,] return(parameterData) } - -#' USGS Parameter Data Retrieval -#' -#' This function is being deprecated for \code{\link{getNWISPcodeInfo}}. -#' -#' @param parameterCd vector of USGS parameter codes. This is usually an 5 digit number. -#' @param interactive logical Option for interactive mode. If true, there is user interaction for error handling and data checks. -#' @keywords data import USGS web service -#' @return parameterData dataframe with all information from the USGS about the particular parameter (usually code, name, short name, units, and CAS registry numbers) -#' @export -#' @examples -#' # These examples require an internet connection to run -#' paramINFO <- getParameterInfo (c('01075','00060','00931')) -getParameterInfo <- function(parameterCd,interactive=TRUE){ - - warning("This function is being deprecated, please use getNWISPcodeInfo") - - parameterCd <- formatCheckParameterCd(parameterCd, interactive=interactive) - - parameterData <- parameterCdFile[parameterCdFile$parameter_cd %in% parameterCd,] - - return(parameterData) -} \ No newline at end of file diff --git a/R/getRawQWData.r b/R/getRawQWData.r index 7589cce5bc1bf3da6d47065dedfbff440ca23735..3991e17956bb626e77db8bf6d73c5ec2a46a0060 100644 --- a/R/getRawQWData.r +++ b/R/getRawQWData.r @@ -19,11 +19,13 @@ #' @export #' @import RCurl #' @seealso \code{\link{getWQPData}}, \code{\link{getWQPSites}}, -#' \code{\link{getSTORETSampleData}}, \code{\link{getNWISqwData}}, and \code{\link{readWQPData}} +#' \code{\link{getNWISqwData}}, and \code{\link{readWQPData}} #' @examples #' # These examples require an internet connection to run +#' \dontrun{ #' rawPcode <- getWQPqwData('USGS-01594440','01075', '1985-01-01', '1985-03-31') #' rawCharacteristicName <- getWQPqwData('WIDNR_WQX-10032762','Specific conductance', '', '') +#' } getWQPqwData <- function(siteNumber,parameterCd,startDate,endDate,interactive=TRUE){ url <- constructNWISURL(siteNumber,parameterCd,startDate,endDate,"wqp",interactive=interactive) diff --git a/R/getSTORETSampleData.R b/R/getSTORETSampleData.R index 90c15bcd328f9b84d9fc0539d1a1981a1e6708a3..a343d693e65398c63b36a94cb14b26d39464e509 100644 --- a/R/getSTORETSampleData.R +++ b/R/getSTORETSampleData.R @@ -1,47 +1,3 @@ -#' Import Sample Data for WRTDS -#' -#' This function is being deprecated for \code{\link{getWQPSample}}. -#' -#' @param siteNumber string site number. If USGS, it should be in the form :'USGS-XXXXXXXXX...' -#' @param characteristicName string -#' @param startDate string starting date for data retrieval in the form YYYY-MM-DD. -#' @param endDate string ending date for data retrieval in the form YYYY-MM-DD. -#' @param interactive logical Option for interactive mode. If true, there is user interaction for error handling and data checks. -#' @keywords data import USGS WRTDS -#' @export -#' @return Sample dataframe -#' @seealso \code{\link{getWQPSample}} -#' @examples -#' # These examples require an internet connection to run -#' \dontrun{Sample_01075 <- getSTORETSampleData('USGS-01594440','Chloride', '', '')} -#' \dontrun{Sample_All <- getSTORETSampleData('WIDNR_WQX-10032762','Specific conductance', '', '')} -getSTORETSampleData <- function(siteNumber,characteristicName,startDate,endDate,interactive=TRUE){ - - warning("This function is being deprecated, please use getWQPSample") - - retval <- getWQPqwData(siteNumber=siteNumber, - parameterCd=characteristicName, - startDate=startDate, - endDate=endDate, - interactive=interactive) - #Check for pcode: - if(all(nchar(characteristicName) == 5)){ - suppressWarnings(pCodeLogic <- all(!is.na(as.numeric(characteristicName)))) - } else { - pCodeLogic <- FALSE - } - - if(nrow(retval) > 0){ - data <- processQWData(retval,pCodeLogic) - } else { - data <- NULL - } - - compressedData <- compressData(data, interactive=interactive) - Sample <- populateSampleColumns(compressedData) - return(Sample) -} - #' Import Sample Data for WRTDS #' #' Imports data from the Water Quality Portal, so it could be STORET, NWIS, or . This function gets the data from: \url{http://www.waterqualitydata.us} @@ -61,8 +17,10 @@ getSTORETSampleData <- function(siteNumber,characteristicName,startDate,endDate, #' \code{\link{compressData}}, \code{\link{populateSampleColumns}} #' @examples #' # These examples require an internet connection to run +#' \dontrun{ #' Sample_01075 <- getWQPSample('USGS-01594440','Chloride', '', '') #' Sample_All <- getWQPSample('WIDNR_WQX-10032762','Specific conductance', '', '') +#' } getWQPSample <- function(siteNumber,characteristicName,startDate,endDate,interactive=TRUE){ retval <- getWQPqwData(siteNumber=siteNumber, diff --git a/R/getSampleData.r b/R/getSampleData.r index 3b30cbdf9f6bd293ad13cefe6f03fa334c4fb3d1..a32670102220a4bfa1c46df2fe0b68f19ffeb337 100644 --- a/R/getSampleData.r +++ b/R/getSampleData.r @@ -1,35 +1,3 @@ -#' Import Sample Data for WRTDS -#' -#' This function is being deprecated for \code{\link{getNWISSample}}. -#' -#' @param siteNumber string USGS site number. This is usually an 8 digit number -#' @param parameterCd string USGS parameter code. This is usually an 5 digit number. -#' @param startDate string starting date for data retrieval in the form YYYY-MM-DD. -#' @param endDate string ending date for data retrieval in the form YYYY-MM-DD. -#' @param interactive logical Option for interactive mode. If true, there is user interaction for error handling and data checks. -#' @keywords data import USGS WRTDS -#' @export -#' @return Sample dataframe -#' @seealso \code{\link{compressData}}, \code{\link{populateSampleColumns}}, \code{\link{getNWISSample}} -#' @examples -#' -#' # These examples require an internet connection to run -#' \dontrun{Sample_01075 <- getSampleData('01594440','01075', '1985-01-01', '1985-03-31')} -#' \dontrun{Sample_All <- getSampleData('05114000','00915;00931', '1985-01-01', '1985-03-31')} -#' \dontrun{Sample_Select <- getSampleData('05114000','00915;00931', '', '')} -getSampleData <- function(siteNumber,parameterCd,startDate,endDate,interactive=TRUE){ - - warning("This function is being deprecated, please use getNWISSample") - - rawSample <- getNWISqwData(siteNumber,parameterCd,startDate,endDate) - #rawSample$dateTime <- strptime(rawSample$dateTime,"%Y-%m-%d %H:%M:%S") - rawSample$dateTime <- as.Date(rawSample$dateTime) - rawSample$site <- NULL - compressedData <- compressData(rawSample, interactive=interactive) - Sample <- populateSampleColumns(compressedData) - return(Sample) -} - #' Import NWIS Sample Data for EGRET analysis #' #' Imports data from NWIS web service. This function gets the data from here: \url{http://nwis.waterdata.usgs.gov/nwis/qwdata/} diff --git a/R/getSampleDataFromFile.r b/R/getSampleDataFromFile.r index c69d8b6051d523ca3e39e6c2918de10bc8e6581d..2b6e0d37c5e6537ad56a94ec5c2e1a25d0664547 100644 --- a/R/getSampleDataFromFile.r +++ b/R/getSampleDataFromFile.r @@ -1,30 +1,3 @@ -#' Import Sample Data for WRTDS -#' -#' This function is being deprecated for \code{\link{getUserSample}}. -#' -#' @param filePath string specifying the path to the file -#' @param fileName string name of file to open -#' @param hasHeader logical true if the first row of data is the column headers -#' @param separator string character that separates data cells -#' @param interactive logical Option for interactive mode. If true, there is user interaction for error handling and data checks. -#' @keywords data import file -#' @export -#' @return Sample dataframe -#' @examples -#' filePath <- system.file("extdata", package="dataRetrieval") -#' filePath <- paste(filePath,"/",sep="") -#' fileName <- 'ChoptankRiverNitrate.csv' -#' \dontrun{Sample <- getSampleDataFromFile(filePath,fileName, separator=";",interactive=FALSE)} -getSampleDataFromFile <- function (filePath,fileName,hasHeader=TRUE,separator=",", interactive=TRUE){ - - warning("This function is being deprecated, please use getUserSample") - - data <- getDataFromFile(filePath,fileName,hasHeader=hasHeader,separator=separator) - compressedData <- compressData(data, interactive=interactive) - Sample <- populateSampleColumns(compressedData) - return(Sample) -} - #' Import user sample data for EGRET analysis #' #' Imports data from a user-supplied file, and converts it to a Sample data frame (including summing multiple constituents), appropriate for WRTDS calculations. diff --git a/R/getSiteFileData.r b/R/getSiteFileData.r index bc70fa58e27d4f8f58a81bbd17d26caba8477159..e7201f232ffe647ded4d208473c1ac81302004c4 100644 --- a/R/getSiteFileData.r +++ b/R/getSiteFileData.r @@ -55,64 +55,3 @@ getNWISSiteInfo <- function(siteNumber){ return(NA) } } - - -#' USGS Site File Data Retrieval -#' -#' This function is being deprecated for \code{\link{getNWISSiteInfo}}. -#' -#' @param siteNumber string USGS site number. This is usually an 8 digit number -#' @keywords data import USGS web service -#' @return retval dataframe with all information found in the expanded site file -#' @export -#' @examples -#' # These examples require an internet connection to run -#' \dontrun{siteINFO <- getSiteFileData('05114000')} -#' \dontrun{siteINFOMulti <- getSiteFileData(c('05114000','09423350'))} -getSiteFileData <- function(siteNumber){ - - warning("This function is being deprecated, please use getNWISSiteInfo") - - siteNumber <- paste(siteNumber,collapse=",") - urlSitefile <- paste("http://waterservices.usgs.gov/nwis/site/?format=rdb&siteOutput=Expanded&sites=",siteNumber,sep = "") - - doc = tryCatch({ - h <- basicHeaderGatherer() - doc <- getURL(urlSitefile, headerfunction = h$update) - - }, warning = function(w) { - message(paste("URL caused a warning:", urlSitefile)) - message(w) - }, error = function(e) { - message(paste("URL does not seem to exist:", urlSitefile)) - message(e) - return(NA) - }) - - if(h$value()["Content-Type"] == "text/plain;charset=UTF-8"){ - - SiteFile <- read.delim( - textConnection(doc), - header = TRUE, - quote="\"", - dec=".", - sep='\t', - colClasses=c('character'), - fill = TRUE, - comment.char="#") - - INFO <- SiteFile[-1,] - names(INFO) <- gsub("_",".",names(INFO)) - - INFO$queryTime <- Sys.time() - INFO$dec.lat.va <- as.numeric(INFO$dec.lat.va) - INFO$dec.long.va <- as.numeric(INFO$dec.long.va) - INFO$alt.va <- as.numeric(INFO$alt.va) - - return(INFO) - } else { - message(paste("URL caused an error:", urlSitefile)) - message("Content-Type=",h$value()["Content-Type"]) - return(NA) - } -} diff --git a/R/getWQPData.r b/R/getWQPData.r index f472390c75751144e0d748c37de5aeb658cea7be..f68b40791620da1a2ef684d79a879d10e1f15bfc 100644 --- a/R/getWQPData.r +++ b/R/getWQPData.r @@ -9,8 +9,10 @@ #' (subsequent qualifier/value columns could follow depending on requested parameter codes) #' @export #' @examples +#' \dontrun{ #' nameToUse <- "pH" #' pHData <- getWQPData(siteid="USGS-04024315",characteristicName=nameToUse) +#' } getWQPData <- function(...){ matchReturn <- list(...) diff --git a/R/getWQPSites.R b/R/getWQPSites.R index 3db5d6baf3bf9a8a626e26d7b287f1541a569802..1d3d2d3f952630286e57bbd72cbe7eab006efbcd 100644 --- a/R/getWQPSites.R +++ b/R/getWQPSites.R @@ -9,9 +9,11 @@ #' (subsequent qualifier/value columns could follow depending on requested parameter codes) #' @export #' @examples +#' \dontrun{ #' site1 <- getWQPSites(siteid="USGS-01594440") #' type <- "Stream" #' sites <- getWQPSites(statecode="US:55",countycode="US:55:025",siteType=type) +#' } getWQPSites <- function(...){ matchReturn <- list(...) diff --git a/R/getWaterML1Data.r b/R/getWaterML1Data.r index 4651109611b562ff6734483b55c89747c634f75e..f136e27068cd9f1f8ae02581cba2ac6ae7b4fabc 100644 --- a/R/getWaterML1Data.r +++ b/R/getWaterML1Data.r @@ -13,14 +13,18 @@ #' endDate <- "2012-10-01" #' offering <- '00003' #' property <- '00060' +#' urlBase <- "http://waterservices.usgs.gov/nwis" #' obs_url <- constructNWISURL(siteNumber,property,startDate,endDate,'dv') #' data <- getWaterML1Data(obs_url) #' urlMulti <- constructNWISURL("04085427",c("00060","00010"), #' startDate,endDate,'dv',statCd=c("00003","00001")) #' multiData <- getWaterML1Data(urlMulti) -#' goundwaterExampleURL <- -#' "http://waterservices.usgs.gov/nwis/gwlevels/?format=waterml&sites=431049071324301&startDT=2013-10-01&endDT=2014-06-30" -#' groundWater <- getWaterML1Data(goundwaterExampleURL) +#' groundWaterSite <- "431049071324301" +#' startGW <- "2013-10-01" +#' endGW <- "2014-06-30" +#' groundwaterExampleURL <- constructNWISURL(groundWaterSite, NA, +#' startGW,endGW, service="gwlevels", format="xml",interactive=FALSE) +#' groundWater <- getWaterML1Data(groundwaterExampleURL) #' unitDataURL <- constructNWISURL(siteNumber,property, #' as.character(Sys.Date()),as.character(Sys.Date()),'uv',format='xml') #' unitData <- getWaterML1Data(unitDataURL) @@ -53,7 +57,6 @@ getWaterML1Data <- function(obs_url){ for (i in 1:length(timeSeries)){ - chunk <- xmlDoc(timeSeries[[i]]) chunk <- xmlRoot(chunk) chunkNS <- xmlNamespaceDefinitions(chunk, simplify = TRUE) diff --git a/R/getWaterML2Data.r b/R/getWaterML2Data.r deleted file mode 100644 index f0fee9c234caebff41d5f2c948e1af962964b187..0000000000000000000000000000000000000000 --- a/R/getWaterML2Data.r +++ /dev/null @@ -1,75 +0,0 @@ -#' Function to return data from the WaterML2 data -#' -#' This function accepts a url parameter for a WaterML2 getObservation -#' -#' @param obs_url string containing the url for the retrieval -#' @return mergedDF a data frame containing columns agency, site, dateTime, values, and remark codes for all requested combinations -#' @export -#' @import XML -#' @importFrom dplyr rbind_all -#' @examples -#' URL <- "http://waterservices.usgs.gov/nwis/dv/?format=waterml,2.0&sites=01646500&startDT=2014-09-01&endDT=2014-09-08&statCd=00003¶meterCd=00060" -#' \dontrun{dataReturned3 <- getWaterML2Data(URL)} -getWaterML2Data <- function(obs_url){ - - h <- basicHeaderGatherer() - doc = tryCatch({ - returnedDoc <- getURL(obs_url, headerfunction = h$update) - if(h$value()["Content-Type"] == "text/xml;charset=UTF-8"){ - xmlTreeParse(returnedDoc, getDTD = FALSE, useInternalNodes = TRUE) - } else { - message(paste("URL caused an error:", obs_url)) - message("Content-Type=",h$value()["Content-Type"]) - return(NA) - } - - }, warning = function(w) { - message(paste("URL caused a warning:", obs_url)) - message(w) - }, error = function(e) { - message(paste("URL does not seem to exist:", obs_url)) - message(e) - return(NA) - }) - - doc <- xmlRoot(doc) - - ns <- xmlNamespaceDefinitions(doc, simplify = TRUE) - - timeseries2 <- xpathApply(doc, "//wml2:MeasurementTimeseries/wml2:point", namespaces = ns) - - xp <- xpathApply(doc, "//wml2:MeasurementTimeseries/wml2:point/wml2:MeasurementTVP", xpathSApply, ".//*[not(*)]", function(x) - setNames(ifelse(nzchar(xmlValue(x)), xmlValue(x), - ifelse("qualifier" == xmlName(x),xpathSApply(x,"./@xlink:title",namespaces = ns),"")), #originally I had the "" as xmlAttr(x) - xmlName(x)), namespaces = ns) - - DF2 <- do.call(rbind_all, lapply(xp, t)) - DF2 <- as.data.frame(DF2,stringsAsFactors=FALSE) - DF2$time <- gsub(":","",DF2$time) - DF2$time <- with(DF2, ifelse(nchar(time) > 18,as.POSIXct(strptime(time, format="%Y-%m-%dT%H%M%S%z")), - ifelse("Z" == substr(time,(nchar(time)),nchar(time)),as.POSIXct(strptime(time, format="%Y-%m-%dT%H%M%S",tz="GMT")), - as.POSIXct(strptime(time, format="%Y-%m-%dT%H%M%S",tz=""))))) - - DF2$time <- with(DF2, as.POSIXct(time,origin=as.POSIXct(strptime("1970-01-01 00:00:00", "%Y-%m-%d %H:%M:%S", tz="UTC")))) - - DF2$value <- as.numeric(gsub("true","",DF2$value)) - - # Very specific to USGS: - defaultQualifier <- as.character(xpathApply(doc, "//wml2:defaultPointMetadata/wml2:DefaultTVPMeasurementMetadata/wml2:qualifier/@xlink:title",namespaces = ns)) - - if (length(defaultQualifier) == 0 && (typeof(defaultQualifier) == "character")) { - defaultQualifier <- "NA" - } - - if("qualifier" %in% names(DF2)){ - DF2$qualifier <- ifelse(defaultQualifier != DF2$qualifier,DF2$qualifier,defaultQualifier) - } else { - DF2$qualifier <- rep(defaultQualifier,nrow(DF2)) - } - - - DF2$qualifier <- ifelse("Provisional data subject to revision." == DF2$qualifier, "P", - ifelse("Approved for publication. Processing and review completed." == DF2$qualifier, "A", DF2$qualifier)) - - return (DF2) -} diff --git a/R/mergeReport.r b/R/mergeReport.r index d5df07a0a00854afc2563c56a76add1833e9441e..8be574094d75fab6e70fb5fd7cc53cf313d93d22 100644 --- a/R/mergeReport.r +++ b/R/mergeReport.r @@ -2,8 +2,8 @@ #' #' Merges the flow data from the daily record into the sample record. #' -#' @param localDaily dataframe containing the daily data, default is Daily -#' @param localSample dataframe containing the sample data, default is Sample +#' @param Daily dataframe containing the daily data, default is Daily +#' @param Sample dataframe containing the sample data, default is Sample #' @param interactive logical Option for interactive mode. If true, there is user interaction for error handling and data checks. #' @keywords data import USGS WRTDS #' @export @@ -13,13 +13,14 @@ #' # These examples require an internet connection to run #' Daily <- getNWISDaily('01594440','00060', '1985-01-01', '1985-03-31') #' Sample <- getNWISSample('01594440','01075', '1985-01-01', '1985-03-31') -#' Sample <- mergeReport() -mergeReport<-function(localDaily = Daily, localSample = Sample, interactive=TRUE){ +#' Sample <- mergeReport(Daily, Sample) +mergeReport<-function(Daily, Sample, interactive=TRUE){ + if (interactive){ - dataOverview(localDaily, localSample) + dataOverview(Daily, Sample) } - newSample <- merge(localDaily[,c("Date","Q","LogQ")],localSample,by = "Date",all.y = TRUE) + newSample <- merge(Daily[,c("Date","Q","LogQ")],Sample,by = "Date",all.y = TRUE) return(newSample) } diff --git a/R/populateParameterINFO.r b/R/populateParameterINFO.r index f1a5e802a03e367e09c93634a5e75545ed38780d..c21ecc6c81a5ff30aa7a3d40bd8317274f0edee4 100644 --- a/R/populateParameterINFO.r +++ b/R/populateParameterINFO.r @@ -2,10 +2,10 @@ #' #' Populates INFO data frame with additional user-supplied information concerning the measured parameter. #' -#' @param localINFO dataframe with value and code columns. Default is INFO +#' @param INFO dataframe with value and code columns. Default is INFO #' @param parameterCd string USGS parameter code #' @param interactive logical Option for interactive mode. If true, there is user interaction for error handling and data checks. -#' @return localINFO dataframe +#' @return INFO dataframe #' @export #' @examples #' #This example requires an internet connection to run @@ -16,40 +16,40 @@ #' INFO$param.units <- parameterData$parameter_units #' INFO$paramShortName <- parameterData$srsname #' INFO$paramNumber <- parameterData$parameter_cd -#' INFO <- populateParameterINFO(parameterCd) -populateParameterINFO <- function(parameterCd, localINFO=INFO, interactive=TRUE){ +#' INFO <- populateParameterINFO(parameterCd, INFO) +populateParameterINFO <- function(parameterCd, INFO, interactive=TRUE){ if (nzchar(parameterCd)){ if(interactive){ - cat("Your water quality data are for parameter number", localINFO$paramNumber, "which has the name:'", localINFO$param.nm, "'.\n") - cat("Typically you will want a shorter name to be used in graphs and tables. The suggested short name is:'", localINFO$paramShortName, "'.\n") + cat("Your water quality data are for parameter number", INFO$paramNumber, "which has the name:'", INFO$param.nm, "'.\n") + cat("Typically you will want a shorter name to be used in graphs and tables. The suggested short name is:'", INFO$paramShortName, "'.\n") cat("If you would like to change the short name, enter it here, otherwise just hit enter (no quotes):") shortNameTemp <- readline() - if (nchar(shortNameTemp)>0) localINFO$paramShortName <- shortNameTemp - cat("The units for the water quality data are: ", localINFO$param.units, ".\n") + if (nchar(shortNameTemp)>0) INFO$paramShortName <- shortNameTemp + cat("The units for the water quality data are: ", INFO$param.units, ".\n") cat("It is helpful to set up a constiuent abbreviation when doing multi-constituent studies, enter a unique id (three or four characters should work something like tn or tp or NO3).\nIt is case sensitive. Even if you don't feel you need an abbreviation you need to enter something (no quotes):\n") - localINFO$constitAbbrev <- readline() + INFO$constitAbbrev <- readline() } else { - localINFO$constitAbbrev <- localINFO$paramShortName + INFO$constitAbbrev <- INFO$paramShortName } } else { if (interactive){ - localINFO$paramNumber <- NA + INFO$paramNumber <- NA cat("Enter a long name for the water quality data (no quotes):\n") - localINFO$param.nm <- readline() + INFO$param.nm <- readline() cat("Enter a short name to be used in graphs and tables(no quotes):\n") - localINFO$paramShortName <- readline() + INFO$paramShortName <- readline() cat("It is helpful to set up a constiuent abbreviation when doing multi-constituent studies, enter a unique id (three or four characters should work something like tn or tp or NO3).\nIt is case sensitive. Even if you don't feel you need an abbreviation you need to enter something (no quotes):\n") - localINFO$constitAbbrev <- readline() + INFO$constitAbbrev <- readline() cat("Enter the units of the water quality data(no quotes):\n") - localINFO$param.units <- readline() + INFO$param.units <- readline() } else { - localINFO$paramNumber <- NA - localINFO$param.nm <- NA - localINFO$paramShortName <- NA - localINFO$constitAbbrev <- NA - localINFO$param.units <- NA + INFO$paramNumber <- NA + INFO$param.nm <- NA + INFO$paramShortName <- NA + INFO$constitAbbrev <- NA + INFO$param.units <- NA } } - return(localINFO) + return(INFO) } diff --git a/R/processQWData.r b/R/processQWData.r index 7e3d466b0d29677a5ea7ab1d9527c56ef359a3e7..329374effcd4cc93368afc6a1ea3aa95887cb3ca 100644 --- a/R/processQWData.r +++ b/R/processQWData.r @@ -12,8 +12,10 @@ #' @export #' @examples #' # These examples require an internet connection to run -#' rawSample <- getWQPqwData('USGS-01594440','01075', '1985-01-01', '1985-03-31') +#' \dontrun{ +#' rawSample <- getWQPqwData('USGS-01594440','', '', '') #' rawSampleSelect <- processQWData(rawSample) +#' } processQWData <- function(data,pCode=TRUE){ qualifier <- ifelse((data$ResultDetectionConditionText == "Not Detected" | @@ -23,7 +25,6 @@ processQWData <- function(data,pCode=TRUE){ correctedData<-ifelse((nchar(qualifier)==0),data$ResultMeasureValue,data$DetectionQuantitationLimitMeasure.MeasureValue) test <- data.frame(data$USGSPCode) - # test$dateTime <- as.POSIXct(strptime(paste(data$ActivityStartDate,data$ActivityStartTime.Time,sep=" "), "%Y-%m-%d %H:%M:%S")) test$dateTime <- data$ActivityStartDate originalLength <- nrow(test) diff --git a/R/removeDuplicates.r b/R/removeDuplicates.r index ede786a68dd957fc0b2c9146654bdd150a388889..00687cc10f8a30b2168b0192ca262daa8c7e8f0f 100644 --- a/R/removeDuplicates.r +++ b/R/removeDuplicates.r @@ -2,7 +2,7 @@ #' #' Removes observations from the data frame Sample when the observation has the identical date and value as another observation #' -#' @param localSample dataframe with at least DecYear and ConcHigh, default name is Sample +#' @param Sample dataframe with at least DecYear and ConcHigh, default name is Sample #' @export #' @return Sample1 dataframe #' @examples @@ -10,8 +10,8 @@ #' ConcHigh <- c(1,2,3,3,5) #' dataInput <- data.frame(DecYear, ConcHigh, stringsAsFactors=FALSE) #' removeDuplicates(dataInput) -removeDuplicates <- function(localSample=Sample) { - Sample1 <- localSample[!duplicated(localSample[c("DecYear","ConcHigh")]),] +removeDuplicates <- function(Sample) { + Sample1 <- Sample[!duplicated(Sample[c("DecYear","ConcHigh")]),] return(Sample1) } diff --git a/R/tabbedDataRetrievals.R b/R/tabbedDataRetrievals.R index ae5eab52b2846a0da6ff95aaa6d7bae89f3535dc..cda474b6c1b5807c860ba9ea86119e12dbaaa1e4 100644 --- a/R/tabbedDataRetrievals.R +++ b/R/tabbedDataRetrievals.R @@ -3,7 +3,7 @@ #' \tabular{ll}{ #' Package: \tab dataRetrieval\cr #' Type: \tab Package\cr -#' Version: \tab 1.3.3\cr +#' Version: \tab 1.4.0\cr #' Date: \tab 2014-09-16\cr #' License: \tab Unlimited for this package, dependencies have more restrictive licensing.\cr #' Copyright: \tab This software is in the public domain because it contains materials @@ -23,25 +23,6 @@ #' @keywords data, retrieval NULL -#' Example Water Quality Data included in dataRetrieval -#' -#' Example data representing Nitrate from the Choptank River at Greensboro, MD, USGS data -#' -#' @name ChoptankRiverNitrate -#' @docType data -#' @author Robert M. Hirsch \email{rhirsch@@usgs.gov} -#' @keywords water quality data -NULL - -#' Example Streamflow Data included in dataRetrieval -#' -#' Example data representing Streamflow and Nitrate from the Choptank River at Greensboro, MD, USGS data -#' -#' @name ChoptankRiverFlow -#' @docType data -#' @author Robert M. Hirsch \email{rhirsch@@usgs.gov} -#' @keywords water flow data -NULL #' List of USGS parameter codes #' diff --git a/data/ChoptankRiverFlow.txt b/data/ChoptankRiverFlow.txt deleted file mode 100644 index 1aa92f002be518b6d369904d6acac643f62764d2..0000000000000000000000000000000000000000 --- a/data/ChoptankRiverFlow.txt +++ /dev/null @@ -1,4384 +0,0 @@ -date Qdaily -10/1/1999 3.029902561 -10/2/1999 2.406931941 -10/3/1999 2.152080324 -10/4/1999 2.152080324 -10/5/1999 3.19980364 -10/6/1999 2.775050944 -10/7/1999 2.350298249 -10/8/1999 2.152080324 -10/9/1999 1.925545553 -10/10/1999 1.86891186 -10/11/1999 2.605149866 -10/12/1999 2.095446631 -10/13/1999 2.010496092 -10/14/1999 1.982179246 -10/15/1999 1.86891186 -10/16/1999 2.237030863 -10/17/1999 2.18039717 -10/18/1999 2.152080324 -10/19/1999 1.982179246 -10/20/1999 2.944952022 -10/21/1999 4.020992184 -10/22/1999 4.700596497 -10/23/1999 4.44574488 -10/24/1999 4.417428034 -10/25/1999 3.992675338 -10/26/1999 3.369704718 -10/27/1999 3.001585715 -10/28/1999 2.775050944 -10/29/1999 2.57683302 -10/30/1999 2.463565634 -10/31/1999 2.350298249 -11/1/1999 2.831684637 -11/2/1999 2.49188248 -11/3/1999 2.831684637 -11/4/1999 2.973268869 -11/5/1999 2.746734098 -11/6/1999 2.49188248 -11/7/1999 2.378615095 -11/8/1999 2.293664556 -11/9/1999 2.208714017 -11/10/1999 2.18039717 -11/11/1999 2.123763478 -11/12/1999 2.067129785 -11/13/1999 2.038812939 -11/14/1999 1.982179246 -11/15/1999 1.982179246 -11/16/1999 1.925545553 -11/17/1999 1.86891186 -11/18/1999 1.812278168 -11/19/1999 1.755644475 -11/20/1999 1.727327628 -11/21/1999 1.755644475 -11/22/1999 1.755644475 -11/23/1999 1.727327628 -11/24/1999 1.727327628 -11/25/1999 1.755644475 -11/26/1999 1.812278168 -11/27/1999 3.82277426 -11/28/1999 5.323567117 -11/29/1999 4.615645958 -11/30/1999 3.51128895 -12/1/1999 3.001585715 -12/2/1999 2.746734098 -12/3/1999 2.605149866 -12/4/1999 2.520199327 -12/5/1999 2.435248788 -12/6/1999 2.548516173 -12/7/1999 3.426338411 -12/8/1999 3.313071025 -12/9/1999 2.973268869 -12/10/1999 2.88831833 -12/11/1999 3.454655257 -12/12/1999 3.51128895 -12/13/1999 3.228120486 -12/14/1999 4.898814422 -12/15/1999 11.80812494 -12/16/1999 11.49663963 -12/17/1999 7.334063209 -12/18/1999 5.606735581 -12/19/1999 4.785547036 -12/20/1999 4.389111187 -12/21/1999 4.44574488 -12/22/1999 4.474061726 -12/23/1999 4.190893263 -12/24/1999 3.907724799 -12/25/1999 3.652873182 -12/26/1999 3.426338411 -12/27/1999 3.398021564 -12/28/1999 3.284754179 -12/29/1999 3.143169947 -12/30/1999 3.001585715 -12/31/1999 2.944952022 -1/1/2000 2.80336779 -1/2/2000 2.661783559 -1/3/2000 2.633466712 -1/4/2000 2.746734098 -1/5/2000 4.728913344 -1/6/2000 5.748319813 -1/7/2000 4.700596497 -1/8/2000 4.077625877 -1/9/2000 3.737823721 -1/10/2000 3.737823721 -1/11/2000 4.049309031 -1/12/2000 3.964358492 -1/13/2000 3.596239489 -1/14/2000 3.341387872 -1/15/2000 2.973268869 -1/16/2000 2.860001483 -1/17/2000 2.831684637 -1/18/2000 2.661783559 -1/19/2000 2.775050944 -1/20/2000 2.718417251 -1/21/2000 2.661783559 -1/22/2000 2.49188248 -1/23/2000 2.690100405 -1/24/2000 2.520199327 -1/25/2000 2.435248788 -1/26/2000 2.746734098 -1/27/2000 2.633466712 -1/28/2000 2.293664556 -1/29/2000 2.265347709 -1/30/2000 2.265347709 -1/31/2000 3.454655257 -2/1/2000 4.275843802 -2/2/2000 4.417428034 -2/3/2000 3.936041645 -2/4/2000 3.82277426 -2/5/2000 3.766140567 -2/6/2000 3.652873182 -2/7/2000 3.567922642 -2/8/2000 3.794457413 -2/9/2000 3.907724799 -2/10/2000 4.247526955 -2/11/2000 5.635052427 -2/12/2000 7.56059798 -2/13/2000 7.475647441 -2/14/2000 6.824359975 -2/15/2000 10.84535216 -2/16/2000 11.24178801 -2/17/2000 7.730499059 -2/18/2000 6.880993668 -2/19/2000 15.51763181 -2/20/2000 22.20040755 -2/21/2000 14.61149273 -2/22/2000 9.627727765 -2/23/2000 7.362380056 -2/24/2000 6.597825204 -2/25/2000 5.521785042 -2/26/2000 5.69168612 -2/27/2000 6.31465674 -2/28/2000 6.00317143 -2/29/2000 5.748319813 -3/1/2000 5.238616578 -3/2/2000 4.842180729 -3/3/2000 4.44574488 -3/4/2000 4.105942723 -3/5/2000 3.907724799 -3/6/2000 3.709506874 -3/7/2000 3.454655257 -3/8/2000 3.313071025 -3/9/2000 3.313071025 -3/10/2000 3.228120486 -3/11/2000 3.086536254 -3/12/2000 3.369704718 -3/13/2000 3.539605796 -3/14/2000 3.313071025 -3/15/2000 3.114853101 -3/16/2000 3.029902561 -3/17/2000 4.077625877 -3/18/2000 4.955448115 -3/19/2000 4.332477494 -3/20/2000 3.82277426 -3/21/2000 8.070301215 -3/22/2000 66.54458897 -3/23/2000 56.9168612 -3/24/2000 23.44634879 -3/25/2000 15.80080027 -3/26/2000 13.08238302 -3/27/2000 11.83644178 -3/28/2000 27.80714313 -3/29/2000 29.44952022 -3/30/2000 16.33882035 -3/31/2000 11.55327332 -4/1/2000 8.778222374 -4/2/2000 7.419013749 -4/3/2000 6.654458897 -4/4/2000 6.597825204 -4/5/2000 7.079211592 -4/6/2000 6.739409436 -4/7/2000 5.974854584 -4/8/2000 5.295250271 -4/9/2000 6.31465674 -4/10/2000 7.64554852 -4/11/2000 7.107528439 -4/12/2000 5.918220891 -4/13/2000 5.0687155 -4/14/2000 4.530695419 -4/15/2000 4.44574488 -4/16/2000 5.266933425 -4/17/2000 12.96911564 -4/18/2000 19.4819903 -4/19/2000 19.1138713 -4/20/2000 14.7813938 -4/21/2000 11.92139232 -4/22/2000 15.23446335 -4/23/2000 15.2061465 -4/24/2000 11.12852062 -4/25/2000 8.608321296 -4/26/2000 8.664954989 -4/27/2000 8.749905528 -4/28/2000 7.730499059 -4/29/2000 6.62614205 -4/30/2000 5.861587198 -5/1/2000 5.097032346 -5/2/2000 4.643962804 -5/3/2000 4.304160648 -5/4/2000 3.936041645 -5/5/2000 3.709506874 -5/6/2000 3.369704718 -5/7/2000 3.171486793 -5/8/2000 3.029902561 -5/9/2000 2.831684637 -5/10/2000 2.520199327 -5/11/2000 2.746734098 -5/12/2000 2.463565634 -5/13/2000 2.406931941 -5/14/2000 2.973268869 -5/15/2000 2.661783559 -5/16/2000 2.237030863 -5/17/2000 2.067129785 -5/18/2000 2.010496092 -5/19/2000 1.840595014 -5/20/2000 1.86891186 -5/21/2000 2.038812939 -5/22/2000 3.058219408 -5/23/2000 4.275843802 -5/24/2000 3.681190028 -5/25/2000 3.171486793 -5/26/2000 2.746734098 -5/27/2000 2.435248788 -5/28/2000 2.548516173 -5/29/2000 3.001585715 -5/30/2000 3.029902561 -5/31/2000 2.690100405 -6/1/2000 2.406931941 -6/2/2000 2.237030863 -6/3/2000 2.095446631 -6/4/2000 1.953862399 -6/5/2000 1.812278168 -6/6/2000 2.18039717 -6/7/2000 2.463565634 -6/8/2000 2.095446631 -6/9/2000 1.812278168 -6/10/2000 1.614060243 -6/11/2000 1.500792858 -6/12/2000 1.415842318 -6/13/2000 1.699010782 -6/14/2000 1.755644475 -6/15/2000 1.699010782 -6/16/2000 1.953862399 -6/17/2000 1.897228707 -6/18/2000 1.812278168 -6/19/2000 2.378615095 -6/20/2000 2.775050944 -6/21/2000 2.123763478 -6/22/2000 2.067129785 -6/23/2000 1.925545553 -6/24/2000 1.642377089 -6/25/2000 1.444159165 -6/26/2000 1.330891779 -6/27/2000 1.387525472 -6/28/2000 1.330891779 -6/29/2000 1.699010782 -6/30/2000 1.982179246 -7/1/2000 2.406931941 -7/2/2000 1.812278168 -7/3/2000 1.330891779 -7/4/2000 1.529109704 -7/5/2000 1.699010782 -7/6/2000 1.387525472 -7/7/2000 1.019406469 -7/8/2000 0.906139084 -7/9/2000 0.906139084 -7/10/2000 0.906139084 -7/11/2000 0.93445593 -7/12/2000 0.849505391 -7/13/2000 0.764554852 -7/14/2000 0.736238006 -7/15/2000 1.444159165 -7/16/2000 3.567922642 -7/17/2000 8.806539221 -7/18/2000 5.493468196 -7/19/2000 2.520199327 -7/20/2000 2.605149866 -7/21/2000 2.49188248 -7/22/2000 2.860001483 -7/23/2000 3.737823721 -7/24/2000 2.49188248 -7/25/2000 2.010496092 -7/26/2000 2.88831833 -7/27/2000 5.125349193 -7/28/2000 5.578418735 -7/29/2000 4.247526955 -7/30/2000 3.171486793 -7/31/2000 3.029902561 -8/1/2000 4.219210109 -8/2/2000 4.360794341 -8/3/2000 3.539605796 -8/4/2000 3.029902561 -8/5/2000 2.80336779 -8/6/2000 2.435248788 -8/7/2000 2.237030863 -8/8/2000 2.010496092 -8/9/2000 1.755644475 -8/10/2000 1.585743397 -8/11/2000 1.55742655 -8/12/2000 1.472476011 -8/13/2000 1.444159165 -8/14/2000 2.718417251 -8/15/2000 14.38495796 -8/16/2000 15.48931496 -8/17/2000 8.466737064 -8/18/2000 5.465151349 -8/19/2000 4.219210109 -8/20/2000 3.652873182 -8/21/2000 3.19980364 -8/22/2000 2.775050944 -8/23/2000 2.463565634 -8/24/2000 2.237030863 -8/25/2000 2.095446631 -8/26/2000 1.897228707 -8/27/2000 1.812278168 -8/28/2000 1.86891186 -8/29/2000 1.840595014 -8/30/2000 1.925545553 -8/31/2000 1.925545553 -9/1/2000 1.86891186 -9/2/2000 2.605149866 -9/3/2000 4.389111187 -9/4/2000 7.079211592 -9/5/2000 9.854262536 -9/6/2000 7.164162131 -9/7/2000 4.389111187 -9/8/2000 3.341387872 -9/9/2000 2.88831833 -9/10/2000 2.633466712 -9/11/2000 2.378615095 -9/12/2000 2.18039717 -9/13/2000 2.038812939 -9/14/2000 1.897228707 -9/15/2000 2.463565634 -9/16/2000 2.80336779 -9/17/2000 2.605149866 -9/18/2000 2.548516173 -9/19/2000 2.350298249 -9/20/2000 2.944952022 -9/21/2000 3.539605796 -9/22/2000 3.143169947 -9/23/2000 2.520199327 -9/24/2000 2.293664556 -9/25/2000 3.398021564 -9/26/2000 17.27327628 -9/27/2000 33.13071025 -9/28/2000 18.40595014 -9/29/2000 11.41168909 -9/30/2000 7.815449598 -10/1/2000 6.229706201 -10/2/2000 5.210299732 -10/3/2000 4.587329112 -10/4/2000 4.105942723 -10/5/2000 3.709506874 -10/6/2000 3.539605796 -10/7/2000 3.454655257 -10/8/2000 3.114853101 -10/9/2000 2.88831833 -10/10/2000 2.718417251 -10/11/2000 2.633466712 -10/12/2000 2.520199327 -10/13/2000 2.406931941 -10/14/2000 2.293664556 -10/15/2000 2.208714017 -10/16/2000 2.123763478 -10/17/2000 2.010496092 -10/18/2000 1.982179246 -10/19/2000 1.925545553 -10/20/2000 1.86891186 -10/21/2000 1.840595014 -10/22/2000 1.755644475 -10/23/2000 1.670693936 -10/24/2000 1.614060243 -10/25/2000 1.642377089 -10/26/2000 1.614060243 -10/27/2000 1.585743397 -10/28/2000 1.585743397 -10/29/2000 1.529109704 -10/30/2000 1.444159165 -10/31/2000 1.415842318 -11/1/2000 1.359208626 -11/2/2000 1.444159165 -11/3/2000 1.387525472 -11/4/2000 1.359208626 -11/5/2000 1.359208626 -11/6/2000 1.330891779 -11/7/2000 1.274258087 -11/8/2000 1.24594124 -11/9/2000 1.330891779 -11/10/2000 1.699010782 -11/11/2000 1.812278168 -11/12/2000 1.614060243 -11/13/2000 1.500792858 -11/14/2000 1.55742655 -11/15/2000 1.699010782 -11/16/2000 1.585743397 -11/17/2000 1.55742655 -11/18/2000 1.500792858 -11/19/2000 1.444159165 -11/20/2000 1.415842318 -11/21/2000 1.387525472 -11/22/2000 1.359208626 -11/23/2000 1.330891779 -11/24/2000 1.302574933 -11/25/2000 1.330891779 -11/26/2000 2.435248788 -11/27/2000 3.709506874 -11/28/2000 3.539605796 -11/29/2000 2.80336779 -11/30/2000 2.605149866 -12/1/2000 2.463565634 -12/2/2000 2.293664556 -12/3/2000 2.152080324 -12/4/2000 2.038812939 -12/5/2000 2.038812939 -12/6/2000 2.010496092 -12/7/2000 1.953862399 -12/8/2000 1.925545553 -12/9/2000 1.897228707 -12/10/2000 2.038812939 -12/11/2000 2.208714017 -12/12/2000 1.670693936 -12/13/2000 1.614060243 -12/14/2000 1.982179246 -12/15/2000 2.746734098 -12/16/2000 3.001585715 -12/17/2000 7.107528439 -12/18/2000 21.52080324 -12/19/2000 14.75307696 -12/20/2000 8.211885447 -12/21/2000 6.116438816 -12/22/2000 5.097032346 -12/23/2000 4.190893263 -12/24/2000 3.964358492 -12/25/2000 3.539605796 -12/26/2000 3.454655257 -12/27/2000 3.19980364 -12/28/2000 3.256437332 -12/29/2000 3.171486793 -12/30/2000 2.944952022 -12/31/2000 2.831684637 -1/1/2001 2.718417251 -1/2/2001 2.605149866 -1/3/2001 2.293664556 -1/4/2001 2.18039717 -1/5/2001 2.350298249 -1/6/2001 2.378615095 -1/7/2001 2.321981402 -1/8/2001 2.321981402 -1/9/2001 2.548516173 -1/10/2001 2.463565634 -1/11/2001 2.350298249 -1/12/2001 2.350298249 -1/13/2001 2.265347709 -1/14/2001 2.18039717 -1/15/2001 2.321981402 -1/16/2001 2.435248788 -1/17/2001 2.406931941 -1/18/2001 2.378615095 -1/19/2001 3.001585715 -1/20/2001 10.73208477 -1/21/2001 21.15268424 -1/22/2001 15.48931496 -1/23/2001 9.854262536 -1/24/2001 7.447330595 -1/25/2001 6.569508358 -1/26/2001 5.974854584 -1/27/2001 5.295250271 -1/28/2001 4.927131268 -1/29/2001 4.530695419 -1/30/2001 4.700596497 -1/31/2001 6.484557818 -2/1/2001 6.909310514 -2/2/2001 5.635052427 -2/3/2001 4.842180729 -2/4/2001 4.360794341 -2/5/2001 6.088121969 -2/6/2001 17.18832575 -2/7/2001 15.6308992 -2/8/2001 9.854262536 -2/9/2001 7.362380056 -2/10/2001 6.569508358 -2/11/2001 6.031488277 -2/12/2001 5.153666039 -2/13/2001 5.012081807 -2/14/2001 5.153666039 -2/15/2001 5.210299732 -2/16/2001 5.436834503 -2/17/2001 10.50555 -2/18/2001 14.46990849 -2/19/2001 9.20297507 -2/20/2001 7.24911267 -2/21/2001 6.399607279 -2/22/2001 5.720002966 -2/23/2001 5.351883964 -2/24/2001 5.238616578 -2/25/2001 5.351883964 -2/26/2001 7.64554852 -2/27/2001 8.438420218 -2/28/2001 6.796043128 -3/1/2001 5.889904045 -3/2/2001 5.266933425 -3/3/2001 4.842180729 -3/4/2001 5.238616578 -3/5/2001 5.946537737 -3/6/2001 7.787132751 -3/7/2001 7.503964288 -3/8/2001 6.229706201 -3/9/2001 5.38020081 -3/10/2001 5.012081807 -3/11/2001 4.672279651 -3/12/2001 4.332477494 -3/13/2001 5.097032346 -3/14/2001 6.682775743 -3/15/2001 6.201389355 -3/16/2001 6.201389355 -3/17/2001 6.456240972 -3/18/2001 5.889904045 -3/19/2001 5.012081807 -3/20/2001 4.474061726 -3/21/2001 11.24178801 -3/22/2001 52.38616578 -3/23/2001 28.8831833 -3/24/2001 15.82911712 -3/25/2001 11.32673855 -3/26/2001 8.721588682 -3/27/2001 7.617231673 -3/28/2001 6.824359975 -3/29/2001 6.93762736 -3/30/2001 21.74733801 -3/31/2001 39.64358492 -4/1/2001 19.76515877 -4/2/2001 13.6770368 -4/3/2001 10.27901523 -4/4/2001 8.183568601 -4/5/2001 6.965944207 -4/6/2001 6.31465674 -4/7/2001 6.031488277 -4/8/2001 5.408517656 -4/9/2001 5.210299732 -4/10/2001 6.00317143 -4/11/2001 6.654458897 -4/12/2001 8.523370757 -4/13/2001 8.608321296 -4/14/2001 7.362380056 -4/15/2001 6.286339894 -4/16/2001 5.889904045 -4/17/2001 6.229706201 -4/18/2001 6.399607279 -4/19/2001 6.059805123 -4/20/2001 5.153666039 -4/21/2001 4.615645958 -4/22/2001 4.417428034 -4/23/2001 4.219210109 -4/24/2001 3.992675338 -4/25/2001 3.82277426 -4/26/2001 3.624556335 -4/27/2001 3.426338411 -4/28/2001 3.341387872 -4/29/2001 3.143169947 -4/30/2001 2.944952022 -5/1/2001 2.860001483 -5/2/2001 2.775050944 -5/3/2001 2.57683302 -5/4/2001 2.49188248 -5/5/2001 2.378615095 -5/6/2001 2.237030863 -5/7/2001 1.982179246 -5/8/2001 1.925545553 -5/9/2001 1.840595014 -5/10/2001 1.86891186 -5/11/2001 1.812278168 -5/12/2001 1.755644475 -5/13/2001 1.614060243 -5/14/2001 1.330891779 -5/15/2001 1.415842318 -5/16/2001 1.359208626 -5/17/2001 1.359208626 -5/18/2001 1.387525472 -5/19/2001 1.55742655 -5/20/2001 1.500792858 -5/21/2001 1.699010782 -5/22/2001 2.237030863 -5/23/2001 2.321981402 -5/24/2001 1.953862399 -5/25/2001 1.670693936 -5/26/2001 3.879407953 -5/27/2001 16.25386982 -5/28/2001 17.1600089 -5/29/2001 11.38337224 -5/30/2001 7.107528439 -5/31/2001 4.870497575 -6/1/2001 4.020992184 -6/2/2001 6.116438816 -6/3/2001 7.95703383 -6/4/2001 6.371290433 -6/5/2001 4.643962804 -6/6/2001 3.992675338 -6/7/2001 4.983764961 -6/8/2001 6.682775743 -6/9/2001 5.408517656 -6/10/2001 4.049309031 -6/11/2001 3.369704718 -6/12/2001 2.944952022 -6/13/2001 2.690100405 -6/14/2001 2.49188248 -6/15/2001 2.406931941 -6/16/2001 2.321981402 -6/17/2001 88.9148976 -6/18/2001 108.4535216 -6/19/2001 31.71486793 -6/20/2001 15.03624542 -6/21/2001 10.02416361 -6/22/2001 9.571094073 -6/23/2001 8.438420218 -6/24/2001 7.87208329 -6/25/2001 6.484557818 -6/26/2001 5.408517656 -6/27/2001 4.672279651 -6/28/2001 4.105942723 -6/29/2001 3.596239489 -6/30/2001 3.228120486 -7/1/2001 3.143169947 -7/2/2001 3.907724799 -7/3/2001 3.482972103 -7/4/2001 3.313071025 -7/5/2001 5.040398654 -7/6/2001 10.76040162 -7/7/2001 7.050894746 -7/8/2001 4.643962804 -7/9/2001 4.020992184 -7/10/2001 3.567922642 -7/11/2001 3.19980364 -7/12/2001 2.775050944 -7/13/2001 2.690100405 -7/14/2001 2.321981402 -7/15/2001 2.067129785 -7/16/2001 1.925545553 -7/17/2001 1.699010782 -7/18/2001 2.208714017 -7/19/2001 2.746734098 -7/20/2001 2.123763478 -7/21/2001 1.727327628 -7/22/2001 1.55742655 -7/23/2001 1.359208626 -7/24/2001 1.330891779 -7/25/2001 1.302574933 -7/26/2001 1.614060243 -7/27/2001 4.020992184 -7/28/2001 2.916635176 -7/29/2001 2.18039717 -7/30/2001 2.520199327 -7/31/2001 2.18039717 -8/1/2001 1.840595014 -8/2/2001 1.614060243 -8/3/2001 1.302574933 -8/4/2001 1.160990701 -8/5/2001 1.160990701 -8/6/2001 1.217624394 -8/7/2001 0.991089623 -8/8/2001 0.93445593 -8/9/2001 0.849505391 -8/10/2001 0.877822237 -8/11/2001 1.132673855 -8/12/2001 2.321981402 -8/13/2001 3.114853101 -8/14/2001 2.605149866 -8/15/2001 1.472476011 -8/16/2001 1.24594124 -8/17/2001 1.132673855 -8/18/2001 1.217624394 -8/19/2001 1.160990701 -8/20/2001 1.387525472 -8/21/2001 1.104357008 -8/22/2001 0.93445593 -8/23/2001 0.906139084 -8/24/2001 1.217624394 -8/25/2001 1.047723316 -8/26/2001 0.93445593 -8/27/2001 0.93445593 -8/28/2001 0.877822237 -8/29/2001 0.764554852 -8/30/2001 0.707921159 -8/31/2001 0.906139084 -9/1/2001 1.019406469 -9/2/2001 0.877822237 -9/3/2001 0.792871698 -9/4/2001 0.792871698 -9/5/2001 1.160990701 -9/6/2001 1.104357008 -9/7/2001 0.991089623 -9/8/2001 0.792871698 -9/9/2001 0.764554852 -9/10/2001 0.764554852 -9/11/2001 0.764554852 -9/12/2001 0.707921159 -9/13/2001 0.651287466 -9/14/2001 0.62297062 -9/15/2001 0.736238006 -9/16/2001 0.679604313 -9/17/2001 0.651287466 -9/18/2001 0.651287466 -9/19/2001 0.651287466 -9/20/2001 0.651287466 -9/21/2001 0.764554852 -9/22/2001 0.764554852 -9/23/2001 0.707921159 -9/24/2001 1.359208626 -9/25/2001 1.415842318 -9/26/2001 0.962772777 -9/27/2001 0.821188545 -9/28/2001 0.906139084 -9/29/2001 0.736238006 -9/30/2001 0.62297062 -10/1/2001 0.736238006 -10/2/2001 0.792871698 -10/3/2001 0.736238006 -10/4/2001 0.679604313 -10/5/2001 0.679604313 -10/6/2001 0.62297062 -10/7/2001 0.679604313 -10/8/2001 0.62297062 -10/9/2001 0.594653774 -10/10/2001 0.594653774 -10/11/2001 0.594653774 -10/12/2001 0.594653774 -10/13/2001 0.594653774 -10/14/2001 0.594653774 -10/15/2001 0.651287466 -10/16/2001 0.679604313 -10/17/2001 0.62297062 -10/18/2001 0.594653774 -10/19/2001 0.566336927 -10/20/2001 0.594653774 -10/21/2001 0.594653774 -10/22/2001 0.594653774 -10/23/2001 0.594653774 -10/24/2001 0.594653774 -10/25/2001 0.594653774 -10/26/2001 0.538020081 -10/27/2001 0.509703235 -10/28/2001 0.538020081 -10/29/2001 0.509703235 -10/30/2001 0.538020081 -10/31/2001 0.538020081 -11/1/2001 0.566336927 -11/2/2001 0.538020081 -11/3/2001 0.566336927 -11/4/2001 0.538020081 -11/5/2001 0.566336927 -11/6/2001 0.538020081 -11/7/2001 0.509703235 -11/8/2001 0.509703235 -11/9/2001 0.538020081 -11/10/2001 0.509703235 -11/11/2001 0.509703235 -11/12/2001 0.538020081 -11/13/2001 0.509703235 -11/14/2001 0.538020081 -11/15/2001 0.538020081 -11/16/2001 0.566336927 -11/17/2001 0.566336927 -11/18/2001 0.538020081 -11/19/2001 0.566336927 -11/20/2001 0.566336927 -11/21/2001 0.594653774 -11/22/2001 0.62297062 -11/23/2001 0.594653774 -11/24/2001 0.594653774 -11/25/2001 0.594653774 -11/26/2001 0.877822237 -11/27/2001 0.821188545 -11/28/2001 0.736238006 -11/29/2001 0.679604313 -11/30/2001 0.707921159 -12/1/2001 0.679604313 -12/2/2001 0.62297062 -12/3/2001 0.566336927 -12/4/2001 0.594653774 -12/5/2001 0.594653774 -12/6/2001 0.594653774 -12/7/2001 0.594653774 -12/8/2001 0.62297062 -12/9/2001 0.849505391 -12/10/2001 0.764554852 -12/11/2001 0.792871698 -12/12/2001 0.792871698 -12/13/2001 0.764554852 -12/14/2001 0.764554852 -12/15/2001 0.707921159 -12/16/2001 0.707921159 -12/17/2001 0.707921159 -12/18/2001 0.792871698 -12/19/2001 0.764554852 -12/20/2001 0.707921159 -12/21/2001 0.651287466 -12/22/2001 0.62297062 -12/23/2001 0.62297062 -12/24/2001 0.792871698 -12/25/2001 0.821188545 -12/26/2001 0.764554852 -12/27/2001 0.679604313 -12/28/2001 0.679604313 -12/29/2001 0.651287466 -12/30/2001 0.62297062 -12/31/2001 0.594653774 -1/1/2002 0.566336927 -1/2/2002 0.566336927 -1/3/2002 0.566336927 -1/4/2002 0.594653774 -1/5/2002 0.594653774 -1/6/2002 0.707921159 -1/7/2002 1.302574933 -1/8/2002 1.132673855 -1/9/2002 0.93445593 -1/10/2002 0.877822237 -1/11/2002 0.962772777 -1/12/2002 1.047723316 -1/13/2002 0.962772777 -1/14/2002 0.877822237 -1/15/2002 0.849505391 -1/16/2002 0.792871698 -1/17/2002 0.764554852 -1/18/2002 0.764554852 -1/19/2002 0.792871698 -1/20/2002 1.019406469 -1/21/2002 1.047723316 -1/22/2002 1.047723316 -1/23/2002 1.019406469 -1/24/2002 1.019406469 -1/25/2002 1.132673855 -1/26/2002 1.104357008 -1/27/2002 1.019406469 -1/28/2002 0.962772777 -1/29/2002 0.962772777 -1/30/2002 0.93445593 -1/31/2002 0.93445593 -2/1/2002 0.93445593 -2/2/2002 0.93445593 -2/3/2002 0.877822237 -2/4/2002 0.849505391 -2/5/2002 0.849505391 -2/6/2002 0.821188545 -2/7/2002 0.93445593 -2/8/2002 1.047723316 -2/9/2002 0.962772777 -2/10/2002 0.93445593 -2/11/2002 0.991089623 -2/12/2002 0.991089623 -2/13/2002 0.93445593 -2/14/2002 0.906139084 -2/15/2002 0.877822237 -2/16/2002 0.877822237 -2/17/2002 0.877822237 -2/18/2002 0.849505391 -2/19/2002 0.821188545 -2/20/2002 0.849505391 -2/21/2002 0.849505391 -2/22/2002 0.849505391 -2/23/2002 0.849505391 -2/24/2002 0.849505391 -2/25/2002 0.821188545 -2/26/2002 0.821188545 -2/27/2002 0.821188545 -2/28/2002 0.792871698 -3/1/2002 0.792871698 -3/2/2002 0.792871698 -3/3/2002 1.444159165 -3/4/2002 1.415842318 -3/5/2002 1.132673855 -3/6/2002 1.019406469 -3/7/2002 0.962772777 -3/8/2002 0.962772777 -3/9/2002 1.019406469 -3/10/2002 0.991089623 -3/11/2002 0.906139084 -3/12/2002 0.906139084 -3/13/2002 1.019406469 -3/14/2002 1.24594124 -3/15/2002 1.132673855 -3/16/2002 1.104357008 -3/17/2002 1.047723316 -3/18/2002 1.359208626 -3/19/2002 1.699010782 -3/20/2002 2.010496092 -3/21/2002 3.313071025 -3/22/2002 3.482972103 -3/23/2002 2.321981402 -3/24/2002 1.953862399 -3/25/2002 1.812278168 -3/26/2002 1.727327628 -3/27/2002 2.88831833 -3/28/2002 3.992675338 -3/29/2002 3.143169947 -3/30/2002 3.256437332 -3/31/2002 3.114853101 -4/1/2002 2.973268869 -4/2/2002 2.775050944 -4/3/2002 2.548516173 -4/4/2002 2.378615095 -4/5/2002 2.18039717 -4/6/2002 2.038812939 -4/7/2002 1.925545553 -4/8/2002 1.840595014 -4/9/2002 1.812278168 -4/10/2002 2.49188248 -4/11/2002 2.746734098 -4/12/2002 2.520199327 -4/13/2002 2.520199327 -4/14/2002 2.406931941 -4/15/2002 2.265347709 -4/16/2002 2.18039717 -4/17/2002 2.010496092 -4/18/2002 1.840595014 -4/19/2002 1.755644475 -4/20/2002 1.670693936 -4/21/2002 1.614060243 -4/22/2002 1.727327628 -4/23/2002 1.727327628 -4/24/2002 1.55742655 -4/25/2002 1.500792858 -4/26/2002 1.529109704 -4/27/2002 1.444159165 -4/28/2002 3.907724799 -4/29/2002 6.597825204 -4/30/2002 6.739409436 -5/1/2002 4.927131268 -5/2/2002 5.974854584 -5/3/2002 9.51446038 -5/4/2002 8.410103371 -5/5/2002 5.351883964 -5/6/2002 4.389111187 -5/7/2002 3.766140567 -5/8/2002 3.341387872 -5/9/2002 2.916635176 -5/10/2002 2.661783559 -5/11/2002 2.321981402 -5/12/2002 2.095446631 -5/13/2002 3.879407953 -5/14/2002 5.38020081 -5/15/2002 4.360794341 -5/16/2002 3.256437332 -5/17/2002 2.661783559 -5/18/2002 3.539605796 -5/19/2002 6.767726282 -5/20/2002 6.682775743 -5/21/2002 4.530695419 -5/22/2002 3.51128895 -5/23/2002 2.916635176 -5/24/2002 2.548516173 -5/25/2002 2.350298249 -5/26/2002 2.152080324 -5/27/2002 1.925545553 -5/28/2002 1.755644475 -5/29/2002 1.614060243 -5/30/2002 1.55742655 -5/31/2002 1.55742655 -6/1/2002 1.472476011 -6/2/2002 1.330891779 -6/3/2002 1.24594124 -6/4/2002 1.132673855 -6/5/2002 0.991089623 -6/6/2002 1.359208626 -6/7/2002 4.389111187 -6/8/2002 6.286339894 -6/9/2002 3.029902561 -6/10/2002 1.840595014 -6/11/2002 1.614060243 -6/12/2002 1.359208626 -6/13/2002 1.302574933 -6/14/2002 1.472476011 -6/15/2002 1.415842318 -6/16/2002 1.189307547 -6/17/2002 1.132673855 -6/18/2002 1.047723316 -6/19/2002 1.132673855 -6/20/2002 2.661783559 -6/21/2002 2.038812939 -6/22/2002 1.415842318 -6/23/2002 1.217624394 -6/24/2002 1.104357008 -6/25/2002 0.991089623 -6/26/2002 0.962772777 -6/27/2002 0.877822237 -6/28/2002 0.849505391 -6/29/2002 0.821188545 -6/30/2002 0.764554852 -7/1/2002 0.679604313 -7/2/2002 0.538020081 -7/3/2002 0.509703235 -7/4/2002 0.453069542 -7/5/2002 0.396435849 -7/6/2002 0.339802156 -7/7/2002 0.396435849 -7/8/2002 0.396435849 -7/9/2002 0.396435849 -7/10/2002 0.339802156 -7/11/2002 0.283168464 -7/12/2002 0.27467341 -7/13/2002 0.31148531 -7/14/2002 0.424752696 -7/15/2002 0.396435849 -7/16/2002 0.368119003 -7/17/2002 0.246356563 -7/18/2002 0.212376348 -7/19/2002 0.164237709 -7/20/2002 0.226534771 -7/21/2002 0.254851617 -7/22/2002 0.155742655 -7/23/2002 0.147247601 -7/24/2002 0.509703235 -7/25/2002 0.792871698 -7/26/2002 0.651287466 -7/27/2002 0.453069542 -7/28/2002 0.453069542 -7/29/2002 0.339802156 -7/30/2002 0.215208032 -7/31/2002 0.178396132 -8/1/2002 0.155742655 -8/2/2002 0.096277278 -8/3/2002 0.169901078 -8/4/2002 0.141584232 -8/5/2002 0.138752547 -8/6/2002 0.192554555 -8/7/2002 0.084950539 -8/8/2002 0.059465377 -8/9/2002 0.050970323 -8/10/2002 0.067960431 -8/11/2002 0.059465377 -8/12/2002 0.050970323 -8/13/2002 0.04247527 -8/14/2002 0.113267385 -8/15/2002 0.240693194 -8/16/2002 0.065128747 -8/17/2002 0.026051499 -8/18/2002 0.015857434 -8/19/2002 0.009910896 -8/20/2002 0.013875255 -8/21/2002 0.011893075 -8/22/2002 0.0368119 -8/23/2002 0.012176244 -8/24/2002 0.028316846 -8/25/2002 0.04247527 -8/26/2002 0.138752547 -8/27/2002 0.223703086 -8/28/2002 0.198217925 -8/29/2002 0.792871698 -8/30/2002 1.019406469 -8/31/2002 0.764554852 -9/1/2002 1.614060243 -9/2/2002 4.247526955 -9/3/2002 5.0687155 -9/4/2002 2.80336779 -9/5/2002 1.387525472 -9/6/2002 1.047723316 -9/7/2002 0.906139084 -9/8/2002 0.821188545 -9/9/2002 0.736238006 -9/10/2002 0.679604313 -9/11/2002 0.594653774 -9/12/2002 0.566336927 -9/13/2002 0.509703235 -9/14/2002 0.538020081 -9/15/2002 0.538020081 -9/16/2002 0.764554852 -9/17/2002 0.821188545 -9/18/2002 0.679604313 -9/19/2002 0.566336927 -9/20/2002 0.481386388 -9/21/2002 0.481386388 -9/22/2002 0.481386388 -9/23/2002 0.453069542 -9/24/2002 0.453069542 -9/25/2002 0.396435849 -9/26/2002 0.509703235 -9/27/2002 0.792871698 -9/28/2002 0.792871698 -9/29/2002 0.679604313 -9/30/2002 0.566336927 -10/1/2002 0.509703235 -10/2/2002 0.481386388 -10/3/2002 0.424752696 -10/4/2002 0.396435849 -10/5/2002 0.424752696 -10/6/2002 0.424752696 -10/7/2002 0.396435849 -10/8/2002 0.396435849 -10/9/2002 0.368119003 -10/10/2002 0.792871698 -10/11/2002 2.548516173 -10/12/2002 4.927131268 -10/13/2002 4.785547036 -10/14/2002 2.605149866 -10/15/2002 1.755644475 -10/16/2002 2.038812939 -10/17/2002 3.426338411 -10/18/2002 4.530695419 -10/19/2002 3.029902561 -10/20/2002 2.123763478 -10/21/2002 1.897228707 -10/22/2002 1.727327628 -10/23/2002 1.614060243 -10/24/2002 1.472476011 -10/25/2002 1.415842318 -10/26/2002 2.463565634 -10/27/2002 4.360794341 -10/28/2002 4.13425957 -10/29/2002 2.916635176 -10/30/2002 3.907724799 -10/31/2002 6.286339894 -11/1/2002 6.994261053 -11/2/2002 5.493468196 -11/3/2002 4.332477494 -11/4/2002 3.624556335 -11/5/2002 3.284754179 -11/6/2002 4.360794341 -11/7/2002 6.994261053 -11/8/2002 6.682775743 -11/9/2002 4.870497575 -11/10/2002 4.049309031 -11/11/2002 3.879407953 -11/12/2002 5.040398654 -11/13/2002 12.37446186 -11/14/2002 14.32832426 -11/15/2002 9.769311997 -11/16/2002 7.843766444 -11/17/2002 27.97704421 -11/18/2002 43.89111187 -11/19/2002 25.14535958 -11/20/2002 15.51763181 -11/21/2002 11.49663963 -11/22/2002 9.684361458 -11/23/2002 9.344559302 -11/24/2002 8.410103371 -11/25/2002 6.994261053 -11/26/2002 6.229706201 -11/27/2002 5.861587198 -11/28/2002 5.521785042 -11/29/2002 5.238616578 -11/30/2002 5.0687155 -12/1/2002 4.898814422 -12/2/2002 4.587329112 -12/3/2002 4.304160648 -12/4/2002 4.049309031 -12/5/2002 4.700596497 -12/6/2002 4.275843802 -12/7/2002 3.709506874 -12/8/2002 4.275843802 -12/9/2002 3.879407953 -12/10/2002 3.652873182 -12/11/2002 4.502378573 -12/12/2002 14.72476011 -12/13/2002 18.97228707 -12/14/2002 21.18100108 -12/15/2002 22.25704125 -12/16/2002 14.38495796 -12/17/2002 10.27901523 -12/18/2002 7.928716983 -12/19/2002 6.824359975 -12/20/2002 7.220795824 -12/21/2002 12.0912934 -12/22/2002 11.94970917 -12/23/2002 8.58000445 -12/24/2002 7.107528439 -12/25/2002 10.30733208 -12/26/2002 26.22139974 -12/27/2002 18.6891186 -12/28/2002 12.06297655 -12/29/2002 9.089707684 -12/30/2002 7.87208329 -12/31/2002 6.93762736 -1/1/2003 7.815449598 -1/2/2003 16.93347413 -1/3/2003 18.20773222 -1/4/2003 16.87684044 -1/5/2003 14.72476011 -1/6/2003 11.38337224 -1/7/2003 9.910896229 -1/8/2003 8.976440299 -1/9/2003 8.240202293 -1/10/2003 7.617231673 -1/11/2003 6.682775743 -1/12/2003 5.889904045 -1/13/2003 5.323567117 -1/14/2003 5.125349193 -1/15/2003 4.870497575 -1/16/2003 4.559012265 -1/17/2003 4.44574488 -1/18/2003 4.389111187 -1/19/2003 4.785547036 -1/20/2003 3.964358492 -1/21/2003 3.766140567 -1/22/2003 3.709506874 -1/23/2003 4.105942723 -1/24/2003 3.143169947 -1/25/2003 3.058219408 -1/26/2003 2.831684637 -1/27/2003 2.831684637 -1/28/2003 2.718417251 -1/29/2003 2.718417251 -1/30/2003 2.775050944 -1/31/2003 2.633466712 -2/1/2003 2.718417251 -2/2/2003 4.219210109 -2/3/2003 4.615645958 -2/4/2003 4.615645958 -2/5/2003 5.918220891 -2/6/2003 5.408517656 -2/7/2003 4.785547036 -2/8/2003 4.615645958 -2/9/2003 4.190893263 -2/10/2003 4.13425957 -2/11/2003 4.247526955 -2/12/2003 4.077625877 -2/13/2003 3.766140567 -2/14/2003 3.482972103 -2/15/2003 3.681190028 -2/16/2003 3.681190028 -2/17/2003 2.237030863 -2/18/2003 3.907724799 -2/19/2003 4.615645958 -2/20/2003 4.898814422 -2/21/2003 5.153666039 -2/22/2003 9.316242455 -2/23/2003 43.89111187 -2/24/2003 77.02182212 -2/25/2003 42.75843802 -2/26/2003 26.8726872 -2/27/2003 18.66080176 -2/28/2003 15.14951281 -3/1/2003 13.13901672 -3/2/2003 16.76357305 -3/3/2003 39.36041645 -3/4/2003 24.29585418 -3/5/2003 19.25545553 -3/6/2003 34.82972103 -3/7/2003 40.49309031 -3/8/2003 22.11545701 -3/9/2003 17.38654367 -3/10/2003 16.76357305 -3/11/2003 13.93188841 -3/12/2003 10.53386685 -3/13/2003 9.571094073 -3/14/2003 8.778222374 -3/15/2003 7.985350676 -3/16/2003 7.277429517 -3/17/2003 8.693271835 -3/18/2003 12.00634286 -3/19/2003 10.64713423 -3/20/2003 9.287925609 -3/21/2003 16.90515728 -3/22/2003 17.18832575 -3/23/2003 12.57267979 -3/24/2003 9.486143534 -3/25/2003 7.87208329 -3/26/2003 7.022577899 -3/27/2003 7.24911267 -3/28/2003 7.334063209 -3/29/2003 6.93762736 -3/30/2003 9.51446038 -3/31/2003 12.96911564 -4/1/2003 10.9303027 -4/2/2003 8.26851914 -4/3/2003 7.220795824 -4/4/2003 6.484557818 -4/5/2003 6.088121969 -4/6/2003 5.804953506 -4/7/2003 5.833270352 -4/8/2003 8.211885447 -4/9/2003 13.33723464 -4/10/2003 20.61466416 -4/11/2003 21.88892224 -4/12/2003 26.84437036 -4/13/2003 19.99169354 -4/14/2003 13.50713572 -4/15/2003 9.656044612 -4/16/2003 8.070301215 -4/17/2003 7.107528439 -4/18/2003 6.286339894 -4/19/2003 5.776636659 -4/20/2003 5.408517656 -4/21/2003 5.153666039 -4/22/2003 5.0687155 -4/23/2003 4.842180729 -4/24/2003 4.559012265 -4/25/2003 4.247526955 -4/26/2003 4.672279651 -4/27/2003 5.153666039 -4/28/2003 4.672279651 -4/29/2003 4.275843802 -4/30/2003 3.992675338 -5/1/2003 3.624556335 -5/2/2003 3.426338411 -5/3/2003 3.228120486 -5/4/2003 2.860001483 -5/5/2003 2.690100405 -5/6/2003 2.718417251 -5/7/2003 2.661783559 -5/8/2003 2.973268869 -5/9/2003 2.831684637 -5/10/2003 2.973268869 -5/11/2003 2.860001483 -5/12/2003 2.690100405 -5/13/2003 2.406931941 -5/14/2003 2.152080324 -5/15/2003 2.010496092 -5/16/2003 4.870497575 -5/17/2003 11.49663963 -5/18/2003 11.01525324 -5/19/2003 7.475647441 -5/20/2003 5.69168612 -5/21/2003 4.75723019 -5/22/2003 4.955448115 -5/23/2003 5.266933425 -5/24/2003 5.833270352 -5/25/2003 6.144755662 -5/26/2003 14.01683895 -5/27/2003 28.14694529 -5/28/2003 18.03783114 -5/29/2003 14.27169057 -5/30/2003 12.8841651 -5/31/2003 9.967529922 -6/1/2003 8.296835986 -6/2/2003 7.928716983 -6/3/2003 6.62614205 -6/4/2003 6.173072508 -6/5/2003 7.617231673 -6/6/2003 8.438420218 -6/7/2003 10.25069839 -6/8/2003 29.44952022 -6/9/2003 25.00377534 -6/10/2003 14.75307696 -6/11/2003 9.486143534 -6/12/2003 11.86475863 -6/13/2003 13.84693787 -6/14/2003 12.23287763 -6/15/2003 12.85584825 -6/16/2003 8.749905528 -6/17/2003 6.484557818 -6/18/2003 10.9303027 -6/19/2003 21.26595162 -6/20/2003 25.51347858 -6/21/2003 62.86339894 -6/22/2003 38.51091106 -6/23/2003 23.21981402 -6/24/2003 14.21505688 -6/25/2003 9.061390838 -6/26/2003 7.135845285 -6/27/2003 6.00317143 -6/28/2003 5.153666039 -6/29/2003 4.587329112 -6/30/2003 4.219210109 -7/1/2003 3.992675338 -7/2/2003 3.652873182 -7/3/2003 7.928716983 -7/4/2003 10.59050054 -7/5/2003 7.220795824 -7/6/2003 5.889904045 -7/7/2003 6.201389355 -7/8/2003 6.711092589 -7/9/2003 5.635052427 -7/10/2003 17.10337521 -7/11/2003 28.31684637 -7/12/2003 14.89466119 -7/13/2003 9.146341377 -7/14/2003 7.192478978 -7/15/2003 14.18674003 -7/16/2003 10.64713423 -7/17/2003 6.880993668 -7/18/2003 5.578418735 -7/19/2003 4.700596497 -7/20/2003 4.219210109 -7/21/2003 3.737823721 -7/22/2003 3.341387872 -7/23/2003 3.171486793 -7/24/2003 3.596239489 -7/25/2003 3.624556335 -7/26/2003 2.661783559 -7/27/2003 2.265347709 -7/28/2003 2.265347709 -7/29/2003 4.360794341 -7/30/2003 4.813863883 -7/31/2003 3.794457413 -8/1/2003 3.001585715 -8/2/2003 2.80336779 -8/3/2003 2.775050944 -8/4/2003 2.718417251 -8/5/2003 2.605149866 -8/6/2003 3.086536254 -8/7/2003 3.029902561 -8/8/2003 5.351883964 -8/9/2003 5.550101888 -8/10/2003 5.153666039 -8/11/2003 5.0687155 -8/12/2003 4.672279651 -8/13/2003 5.804953506 -8/14/2003 5.635052427 -8/15/2003 4.360794341 -8/16/2003 4.275843802 -8/17/2003 7.730499059 -8/18/2003 10.81703531 -8/19/2003 7.050894746 -8/20/2003 4.870497575 -8/21/2003 4.020992184 -8/22/2003 3.313071025 -8/23/2003 2.916635176 -8/24/2003 2.350298249 -8/25/2003 2.067129785 -8/26/2003 1.925545553 -8/27/2003 2.095446631 -8/28/2003 2.237030863 -8/29/2003 2.095446631 -8/30/2003 1.953862399 -8/31/2003 2.18039717 -9/1/2003 1.953862399 -9/2/2003 2.321981402 -9/3/2003 2.265347709 -9/4/2003 2.633466712 -9/5/2003 2.746734098 -9/6/2003 2.406931941 -9/7/2003 2.038812939 -9/8/2003 1.840595014 -9/9/2003 1.642377089 -9/10/2003 1.55742655 -9/11/2003 1.55742655 -9/12/2003 1.55742655 -9/13/2003 3.567922642 -9/14/2003 6.31465674 -9/15/2003 11.21347116 -9/16/2003 35.96239489 -9/17/2003 22.2287244 -9/18/2003 12.48772925 -9/19/2003 27.38239044 -9/20/2003 28.8831833 -9/21/2003 16.08396874 -9/22/2003 10.44891631 -9/23/2003 9.287925609 -9/24/2003 12.68594717 -9/25/2003 11.92139232 -9/26/2003 8.070301215 -9/27/2003 6.286339894 -9/28/2003 5.493468196 -9/29/2003 5.210299732 -9/30/2003 4.842180729 -10/1/2003 4.44574488 -10/2/2003 4.020992184 -10/3/2003 3.681190028 -10/4/2003 3.398021564 -10/5/2003 3.114853101 -10/6/2003 2.944952022 -10/7/2003 2.80336779 -10/8/2003 2.633466712 -10/9/2003 2.520199327 -10/10/2003 2.661783559 -10/11/2003 2.237030863 -10/12/2003 2.152080324 -10/13/2003 2.038812939 -10/14/2003 2.010496092 -10/15/2003 3.058219408 -10/16/2003 3.737823721 -10/17/2003 3.086536254 -10/18/2003 2.548516173 -10/19/2003 2.237030863 -10/20/2003 2.123763478 -10/21/2003 2.067129785 -10/22/2003 2.067129785 -10/23/2003 2.010496092 -10/24/2003 1.86891186 -10/25/2003 1.812278168 -10/26/2003 1.755644475 -10/27/2003 1.925545553 -10/28/2003 3.681190028 -10/29/2003 10.53386685 -10/30/2003 17.98119744 -10/31/2003 12.62931348 -11/1/2003 7.673865366 -11/2/2003 5.889904045 -11/3/2003 5.097032346 -11/4/2003 4.672279651 -11/5/2003 4.44574488 -11/6/2003 13.70535364 -11/7/2003 31.9980364 -11/8/2003 21.40753585 -11/9/2003 13.39386833 -11/10/2003 8.523370757 -11/11/2003 6.597825204 -11/12/2003 6.258023047 -11/13/2003 9.797628844 -11/14/2003 12.40277871 -11/15/2003 8.495053911 -11/16/2003 6.711092589 -11/17/2003 6.00317143 -11/18/2003 5.323567117 -11/19/2003 5.635052427 -11/20/2003 16.16891928 -11/21/2003 23.19149718 -11/22/2003 14.63980957 -11/23/2003 9.967529922 -11/24/2003 7.135845285 -11/25/2003 6.965944207 -11/26/2003 6.427924126 -11/27/2003 5.861587198 -11/28/2003 5.550101888 -11/29/2003 7.334063209 -11/30/2003 9.174658223 -12/1/2003 7.56059798 -12/2/2003 6.258023047 -12/3/2003 5.408517656 -12/4/2003 4.927131268 -12/5/2003 7.164162131 -12/6/2003 16.25386982 -12/7/2003 16.28218666 -12/8/2003 11.63822386 -12/9/2003 8.58000445 -12/10/2003 7.447330595 -12/11/2003 19.82179246 -12/12/2003 28.31684637 -12/13/2003 16.39545405 -12/14/2003 13.53545256 -12/15/2003 29.73268869 -12/16/2003 23.21981402 -12/17/2003 15.97070135 -12/18/2003 17.30159313 -12/19/2003 15.31941389 -12/20/2003 11.52495647 -12/21/2003 8.523370757 -12/22/2003 7.135845285 -12/23/2003 6.569508358 -12/24/2003 12.57267979 -12/25/2003 33.13071025 -12/26/2003 20.78456523 -12/27/2003 13.93188841 -12/28/2003 10.61881739 -12/29/2003 8.325152832 -12/30/2003 7.390696902 -12/31/2003 6.824359975 -1/1/2004 6.258023047 -1/2/2004 5.889904045 -1/3/2004 5.776636659 -1/4/2004 5.720002966 -1/5/2004 5.663369274 -1/6/2004 6.258023047 -1/7/2004 6.456240972 -1/8/2004 5.606735581 -1/9/2004 5.125349193 -1/10/2004 4.672279651 -1/11/2004 4.813863883 -1/12/2004 4.389111187 -1/13/2004 4.389111187 -1/14/2004 4.247526955 -1/15/2004 4.020992184 -1/16/2004 3.681190028 -1/17/2004 3.82277426 -1/18/2004 3.907724799 -1/19/2004 5.153666039 -1/20/2004 5.238616578 -1/21/2004 4.530695419 -1/22/2004 4.105942723 -1/23/2004 3.539605796 -1/24/2004 3.256437332 -1/25/2004 2.831684637 -1/26/2004 2.661783559 -1/27/2004 3.284754179 -1/28/2004 3.313071025 -1/29/2004 3.058219408 -1/30/2004 2.916635176 -1/31/2004 2.661783559 -2/1/2004 3.029902561 -2/2/2004 2.633466712 -2/3/2004 3.454655257 -2/4/2004 12.48772925 -2/5/2004 11.55327332 -2/6/2004 8.89148976 -2/7/2004 47.28913344 -2/8/2004 31.43169947 -2/9/2004 14.66812642 -2/10/2004 9.486143534 -2/11/2004 7.928716983 -2/12/2004 7.164162131 -2/13/2004 6.427924126 -2/14/2004 5.974854584 -2/15/2004 5.493468196 -2/16/2004 5.012081807 -2/17/2004 4.643962804 -2/18/2004 4.530695419 -2/19/2004 4.389111187 -2/20/2004 3.907724799 -2/21/2004 3.964358492 -2/22/2004 4.105942723 -2/23/2004 3.794457413 -2/24/2004 3.567922642 -2/25/2004 3.539605796 -2/26/2004 3.313071025 -2/27/2004 3.114853101 -2/28/2004 3.001585715 -2/29/2004 2.88831833 -3/1/2004 2.831684637 -3/2/2004 2.916635176 -3/3/2004 2.944952022 -3/4/2004 2.860001483 -3/5/2004 2.88831833 -3/6/2004 3.737823721 -3/7/2004 5.663369274 -3/8/2004 5.776636659 -3/9/2004 4.870497575 -3/10/2004 4.304160648 -3/11/2004 3.936041645 -3/12/2004 3.681190028 -3/13/2004 3.313071025 -3/14/2004 2.944952022 -3/15/2004 2.831684637 -3/16/2004 3.114853101 -3/17/2004 4.332477494 -3/18/2004 4.672279651 -3/19/2004 4.474061726 -3/20/2004 4.643962804 -3/21/2004 4.474061726 -3/22/2004 4.077625877 -3/23/2004 3.681190028 -3/24/2004 3.284754179 -3/25/2004 3.058219408 -3/26/2004 3.058219408 -3/27/2004 3.001585715 -3/28/2004 3.001585715 -3/29/2004 2.775050944 -3/30/2004 2.633466712 -3/31/2004 3.001585715 -4/1/2004 4.190893263 -4/2/2004 5.889904045 -4/3/2004 7.079211592 -4/4/2004 6.711092589 -4/5/2004 6.512874665 -4/6/2004 5.889904045 -4/7/2004 4.842180729 -4/8/2004 4.474061726 -4/9/2004 4.247526955 -4/10/2004 3.964358492 -4/11/2004 3.681190028 -4/12/2004 3.879407953 -4/13/2004 18.20773222 -4/14/2004 58.04953506 -4/15/2004 59.46537737 -4/16/2004 28.60001483 -4/17/2004 16.16891928 -4/18/2004 12.28951132 -4/19/2004 9.967529922 -4/20/2004 7.390696902 -4/21/2004 6.824359975 -4/22/2004 6.229706201 -4/23/2004 5.69168612 -4/24/2004 5.635052427 -4/25/2004 5.351883964 -4/26/2004 5.097032346 -4/27/2004 6.399607279 -4/28/2004 7.079211592 -4/29/2004 6.031488277 -4/30/2004 5.181982885 -5/1/2004 4.785547036 -5/2/2004 4.587329112 -5/3/2004 4.75723019 -5/4/2004 5.266933425 -5/5/2004 5.351883964 -5/6/2004 4.983764961 -5/7/2004 4.587329112 -5/8/2004 4.360794341 -5/9/2004 3.964358492 -5/10/2004 3.936041645 -5/11/2004 4.247526955 -5/12/2004 3.766140567 -5/13/2004 3.256437332 -5/14/2004 3.086536254 -5/15/2004 2.775050944 -5/16/2004 2.661783559 -5/17/2004 2.406931941 -5/18/2004 2.321981402 -5/19/2004 2.293664556 -5/20/2004 2.237030863 -5/21/2004 1.925545553 -5/22/2004 2.010496092 -5/23/2004 1.982179246 -5/24/2004 1.614060243 -5/25/2004 1.444159165 -5/26/2004 2.860001483 -5/27/2004 2.80336779 -5/28/2004 2.321981402 -5/29/2004 1.925545553 -5/30/2004 1.529109704 -5/31/2004 1.302574933 -6/1/2004 1.24594124 -6/2/2004 1.189307547 -6/3/2004 2.038812939 -6/4/2004 1.727327628 -6/5/2004 2.010496092 -6/6/2004 2.520199327 -6/7/2004 2.237030863 -6/8/2004 1.86891186 -6/9/2004 1.444159165 -6/10/2004 1.217624394 -6/11/2004 1.55742655 -6/12/2004 2.265347709 -6/13/2004 1.86891186 -6/14/2004 1.387525472 -6/15/2004 1.189307547 -6/16/2004 1.076040162 -6/17/2004 4.275843802 -6/18/2004 10.08079731 -6/19/2004 5.0687155 -6/20/2004 3.001585715 -6/21/2004 2.18039717 -6/22/2004 1.897228707 -6/23/2004 1.500792858 -6/24/2004 1.274258087 -6/25/2004 1.104357008 -6/26/2004 1.189307547 -6/27/2004 1.132673855 -6/28/2004 1.104357008 -6/29/2004 1.104357008 -6/30/2004 1.076040162 -7/1/2004 1.076040162 -7/2/2004 1.076040162 -7/3/2004 1.047723316 -7/4/2004 1.019406469 -7/5/2004 1.019406469 -7/6/2004 0.962772777 -7/7/2004 0.906139084 -7/8/2004 0.877822237 -7/9/2004 0.849505391 -7/10/2004 0.849505391 -7/11/2004 0.877822237 -7/12/2004 0.93445593 -7/13/2004 4.332477494 -7/14/2004 13.28060095 -7/15/2004 5.889904045 -7/16/2004 3.029902561 -7/17/2004 1.897228707 -7/18/2004 2.265347709 -7/19/2004 5.153666039 -7/20/2004 6.965944207 -7/21/2004 4.105942723 -7/22/2004 2.831684637 -7/23/2004 1.982179246 -7/24/2004 1.585743397 -7/25/2004 1.699010782 -7/26/2004 1.585743397 -7/27/2004 1.444159165 -7/28/2004 1.982179246 -7/29/2004 1.953862399 -7/30/2004 1.614060243 -7/31/2004 1.217624394 -8/1/2004 1.24594124 -8/2/2004 1.642377089 -8/3/2004 1.783961321 -8/4/2004 1.359208626 -8/5/2004 0.962772777 -8/6/2004 0.821188545 -8/7/2004 0.736238006 -8/8/2004 0.679604313 -8/9/2004 0.651287466 -8/10/2004 0.594653774 -8/11/2004 0.566336927 -8/12/2004 1.415842318 -8/13/2004 1.132673855 -8/14/2004 0.821188545 -8/15/2004 0.736238006 -8/16/2004 0.679604313 -8/17/2004 0.62297062 -8/18/2004 1.076040162 -8/19/2004 0.991089623 -8/20/2004 0.93445593 -8/21/2004 0.877822237 -8/22/2004 0.849505391 -8/23/2004 0.707921159 -8/24/2004 0.736238006 -8/25/2004 0.707921159 -8/26/2004 0.679604313 -8/27/2004 0.651287466 -8/28/2004 0.651287466 -8/29/2004 0.62297062 -8/30/2004 0.651287466 -8/31/2004 1.217624394 -9/1/2004 1.302574933 -9/2/2004 0.93445593 -9/3/2004 0.877822237 -9/4/2004 0.821188545 -9/5/2004 0.736238006 -9/6/2004 0.707921159 -9/7/2004 0.651287466 -9/8/2004 0.679604313 -9/9/2004 0.849505391 -9/10/2004 0.849505391 -9/11/2004 0.707921159 -9/12/2004 0.566336927 -9/13/2004 0.538020081 -9/14/2004 0.566336927 -9/15/2004 0.651287466 -9/16/2004 0.821188545 -9/17/2004 0.792871698 -9/18/2004 0.849505391 -9/19/2004 0.849505391 -9/20/2004 0.736238006 -9/21/2004 0.651287466 -9/22/2004 0.651287466 -9/23/2004 0.594653774 -9/24/2004 0.538020081 -9/25/2004 0.509703235 -9/26/2004 0.481386388 -9/27/2004 0.509703235 -9/28/2004 1.160990701 -9/29/2004 1.755644475 -9/30/2004 1.387525472 -10/1/2004 1.104357008 -10/2/2004 0.906139084 -10/3/2004 1.047723316 -10/4/2004 1.047723316 -10/5/2004 0.906139084 -10/6/2004 0.821188545 -10/7/2004 0.764554852 -10/8/2004 0.707921159 -10/9/2004 0.679604313 -10/10/2004 0.679604313 -10/11/2004 0.62297062 -10/12/2004 0.707921159 -10/13/2004 0.821188545 -10/14/2004 0.679604313 -10/15/2004 0.679604313 -10/16/2004 0.651287466 -10/17/2004 0.651287466 -10/18/2004 0.62297062 -10/19/2004 0.62297062 -10/20/2004 0.764554852 -10/21/2004 0.792871698 -10/22/2004 0.736238006 -10/23/2004 0.679604313 -10/24/2004 0.679604313 -10/25/2004 0.679604313 -10/26/2004 0.679604313 -10/27/2004 0.62297062 -10/28/2004 0.594653774 -10/29/2004 0.566336927 -10/30/2004 0.594653774 -10/31/2004 0.594653774 -11/1/2004 0.594653774 -11/2/2004 0.566336927 -11/3/2004 0.566336927 -11/4/2004 0.62297062 -11/5/2004 1.472476011 -11/6/2004 1.614060243 -11/7/2004 1.302574933 -11/8/2004 1.047723316 -11/9/2004 0.93445593 -11/10/2004 0.877822237 -11/11/2004 0.849505391 -11/12/2004 1.132673855 -11/13/2004 3.766140567 -11/14/2004 6.796043128 -11/15/2004 4.870497575 -11/16/2004 2.973268869 -11/17/2004 2.350298249 -11/18/2004 2.038812939 -11/19/2004 1.897228707 -11/20/2004 1.812278168 -11/21/2004 1.783961321 -11/22/2004 1.670693936 -11/23/2004 1.727327628 -11/24/2004 1.727327628 -11/25/2004 1.699010782 -11/26/2004 1.727327628 -11/27/2004 1.55742655 -11/28/2004 2.435248788 -11/29/2004 5.153666039 -11/30/2004 5.012081807 -12/1/2004 3.794457413 -12/2/2004 3.737823721 -12/3/2004 3.737823721 -12/4/2004 3.19980364 -12/5/2004 2.831684637 -12/6/2004 2.661783559 -12/7/2004 2.605149866 -12/8/2004 2.88831833 -12/9/2004 3.228120486 -12/10/2004 4.020992184 -12/11/2004 5.833270352 -12/12/2004 6.031488277 -12/13/2004 5.408517656 -12/14/2004 4.587329112 -12/15/2004 3.936041645 -12/16/2004 3.398021564 -12/17/2004 3.539605796 -12/18/2004 3.398021564 -12/19/2004 2.916635176 -12/20/2004 2.944952022 -12/21/2004 2.718417251 -12/22/2004 2.548516173 -12/23/2004 2.690100405 -12/24/2004 3.936041645 -12/25/2004 4.417428034 -12/26/2004 3.766140567 -12/27/2004 3.284754179 -12/28/2004 2.973268869 -12/29/2004 2.746734098 -12/30/2004 2.718417251 -12/31/2004 2.633466712 -1/1/2005 2.548516173 -1/2/2005 2.49188248 -1/3/2005 2.378615095 -1/4/2005 2.406931941 -1/5/2005 2.463565634 -1/6/2005 2.633466712 -1/7/2005 2.690100405 -1/8/2005 2.718417251 -1/9/2005 2.80336779 -1/10/2005 2.605149866 -1/11/2005 2.548516173 -1/12/2005 2.520199327 -1/13/2005 2.775050944 -1/14/2005 6.229706201 -1/15/2005 18.77406914 -1/16/2005 13.93188841 -1/17/2005 7.702182212 -1/18/2005 6.088121969 -1/19/2005 5.153666039 -1/20/2005 5.181982885 -1/21/2005 4.105942723 -1/22/2005 3.228120486 -1/23/2005 3.851091106 -1/24/2005 4.275843802 -1/25/2005 4.162576416 -1/26/2005 3.992675338 -1/27/2005 3.936041645 -1/28/2005 3.907724799 -1/29/2005 3.907724799 -1/30/2005 3.766140567 -1/31/2005 3.341387872 -2/1/2005 3.058219408 -2/2/2005 2.916635176 -2/3/2005 2.916635176 -2/4/2005 2.944952022 -2/5/2005 3.19980364 -2/6/2005 3.709506874 -2/7/2005 4.360794341 -2/8/2005 4.842180729 -2/9/2005 5.210299732 -2/10/2005 5.436834503 -2/11/2005 5.295250271 -2/12/2005 4.75723019 -2/13/2005 4.304160648 -2/14/2005 4.13425957 -2/15/2005 5.748319813 -2/16/2005 7.64554852 -2/17/2005 6.342973587 -2/18/2005 5.436834503 -2/19/2005 5.238616578 -2/20/2005 4.332477494 -2/21/2005 4.020992184 -2/22/2005 4.530695419 -2/23/2005 4.898814422 -2/24/2005 4.75723019 -2/25/2005 4.700596497 -2/26/2005 4.672279651 -2/27/2005 4.842180729 -2/28/2005 5.097032346 -3/1/2005 5.748319813 -3/2/2005 7.135845285 -3/3/2005 6.824359975 -3/4/2005 5.550101888 -3/5/2005 5.012081807 -3/6/2005 4.728913344 -3/7/2005 4.587329112 -3/8/2005 4.898814422 -3/9/2005 6.399607279 -3/10/2005 6.371290433 -3/11/2005 5.436834503 -3/12/2005 5.040398654 -3/13/2005 4.842180729 -3/14/2005 4.502378573 -3/15/2005 4.190893263 -3/16/2005 3.992675338 -3/17/2005 3.82277426 -3/18/2005 3.681190028 -3/19/2005 3.482972103 -3/20/2005 3.482972103 -3/21/2005 3.596239489 -3/22/2005 3.454655257 -3/23/2005 5.408517656 -3/24/2005 16.02733504 -3/25/2005 15.29109704 -3/26/2005 9.627727765 -3/27/2005 7.050894746 -3/28/2005 8.296835986 -3/29/2005 17.1600089 -3/30/2005 15.48931496 -3/31/2005 9.372876148 -4/1/2005 7.022577899 -4/2/2005 10.73208477 -4/3/2005 51.25349193 -4/4/2005 33.98021564 -4/5/2005 16.33882035 -4/6/2005 10.84535216 -4/7/2005 8.183568601 -4/8/2005 43.32477494 -4/9/2005 50.40398654 -4/10/2005 21.18100108 -4/11/2005 14.0451558 -4/12/2005 9.910896229 -4/13/2005 7.617231673 -4/14/2005 6.541191511 -4/15/2005 6.116438816 -4/16/2005 5.606735581 -4/17/2005 5.210299732 -4/18/2005 4.813863883 -4/19/2005 4.502378573 -4/20/2005 4.360794341 -4/21/2005 4.190893263 -4/22/2005 4.077625877 -4/23/2005 4.049309031 -4/24/2005 4.474061726 -4/25/2005 4.502378573 -4/26/2005 4.190893263 -4/27/2005 3.964358492 -4/28/2005 3.766140567 -4/29/2005 3.482972103 -4/30/2005 3.766140567 -5/1/2005 4.785547036 -5/2/2005 5.804953506 -5/3/2005 5.0687155 -5/4/2005 4.389111187 -5/5/2005 4.105942723 -5/6/2005 3.794457413 -5/7/2005 3.596239489 -5/8/2005 3.398021564 -5/9/2005 3.143169947 -5/10/2005 2.860001483 -5/11/2005 2.690100405 -5/12/2005 2.548516173 -5/13/2005 2.463565634 -5/14/2005 2.378615095 -5/15/2005 2.520199327 -5/16/2005 2.463565634 -5/17/2005 2.152080324 -5/18/2005 1.86891186 -5/19/2005 1.897228707 -5/20/2005 7.362380056 -5/21/2005 27.69387575 -5/22/2005 18.29268275 -5/23/2005 10.59050054 -5/24/2005 6.484557818 -5/25/2005 5.776636659 -5/26/2005 5.578418735 -5/27/2005 5.295250271 -5/28/2005 4.615645958 -5/29/2005 4.13425957 -5/30/2005 3.652873182 -5/31/2005 3.228120486 -6/1/2005 2.88831833 -6/2/2005 2.633466712 -6/3/2005 3.228120486 -6/4/2005 4.304160648 -6/5/2005 4.304160648 -6/6/2005 3.851091106 -6/7/2005 6.229706201 -6/8/2005 10.19406469 -6/9/2005 6.682775743 -6/10/2005 5.181982885 -6/11/2005 4.530695419 -6/12/2005 3.992675338 -6/13/2005 3.369704718 -6/14/2005 2.944952022 -6/15/2005 2.605149866 -6/16/2005 2.293664556 -6/17/2005 2.18039717 -6/18/2005 1.953862399 -6/19/2005 1.783961321 -6/20/2005 1.812278168 -6/21/2005 1.670693936 -6/22/2005 1.614060243 -6/23/2005 1.812278168 -6/24/2005 1.642377089 -6/25/2005 1.529109704 -6/26/2005 1.415842318 -6/27/2005 1.55742655 -6/28/2005 1.840595014 -6/29/2005 1.614060243 -6/30/2005 1.55742655 -7/1/2005 1.415842318 -7/2/2005 1.302574933 -7/3/2005 1.24594124 -7/4/2005 1.104357008 -7/5/2005 1.104357008 -7/6/2005 1.585743397 -7/7/2005 2.152080324 -7/8/2005 2.152080324 -7/9/2005 2.548516173 -7/10/2005 1.925545553 -7/11/2005 1.472476011 -7/12/2005 1.302574933 -7/13/2005 1.160990701 -7/14/2005 1.160990701 -7/15/2005 1.387525472 -7/16/2005 1.500792858 -7/17/2005 6.427924126 -7/18/2005 5.918220891 -7/19/2005 2.548516173 -7/20/2005 1.840595014 -7/21/2005 1.614060243 -7/22/2005 1.359208626 -7/23/2005 1.160990701 -7/24/2005 1.076040162 -7/25/2005 1.132673855 -7/26/2005 1.217624394 -7/27/2005 1.047723316 -7/28/2005 1.132673855 -7/29/2005 1.189307547 -7/30/2005 4.927131268 -7/31/2005 2.18039717 -8/1/2005 1.585743397 -8/2/2005 1.24594124 -8/3/2005 1.076040162 -8/4/2005 0.849505391 -8/5/2005 0.764554852 -8/6/2005 0.93445593 -8/7/2005 1.500792858 -8/8/2005 1.472476011 -8/9/2005 1.217624394 -8/10/2005 1.302574933 -8/11/2005 1.160990701 -8/12/2005 0.991089623 -8/13/2005 0.821188545 -8/14/2005 0.736238006 -8/15/2005 0.62297062 -8/16/2005 0.679604313 -8/17/2005 0.93445593 -8/18/2005 0.906139084 -8/19/2005 0.821188545 -8/20/2005 0.877822237 -8/21/2005 0.821188545 -8/22/2005 0.707921159 -8/23/2005 0.62297062 -8/24/2005 0.594653774 -8/25/2005 0.566336927 -8/26/2005 0.481386388 -8/27/2005 0.453069542 -8/28/2005 0.453069542 -8/29/2005 1.132673855 -8/30/2005 0.566336927 -8/31/2005 0.509703235 -9/1/2005 0.453069542 -9/2/2005 0.453069542 -9/3/2005 0.453069542 -9/4/2005 0.396435849 -9/5/2005 0.368119003 -9/6/2005 0.283168464 -9/7/2005 0.283168464 -9/8/2005 0.31148531 -9/9/2005 0.31148531 -9/10/2005 0.339802156 -9/11/2005 0.339802156 -9/12/2005 0.339802156 -9/13/2005 0.368119003 -9/14/2005 0.509703235 -9/15/2005 0.62297062 -9/16/2005 0.481386388 -9/17/2005 0.453069542 -9/18/2005 0.396435849 -9/19/2005 0.368119003 -9/20/2005 0.339802156 -9/21/2005 0.339802156 -9/22/2005 0.31148531 -9/23/2005 0.31148531 -9/24/2005 0.31148531 -9/25/2005 0.31148531 -9/26/2005 0.31148531 -9/27/2005 0.31148531 -9/28/2005 0.31148531 -9/29/2005 0.31148531 -9/30/2005 0.31148531 -10/1/2005 0.283168464 -10/2/2005 0.283168464 -10/3/2005 0.283168464 -10/4/2005 0.31148531 -10/5/2005 0.339802156 -10/6/2005 0.877822237 -10/7/2005 0.877822237 -10/8/2005 2.038812939 -10/9/2005 3.539605796 -10/10/2005 2.605149866 -10/11/2005 1.86891186 -10/12/2005 2.152080324 -10/13/2005 1.670693936 -10/14/2005 1.529109704 -10/15/2005 1.444159165 -10/16/2005 1.189307547 -10/17/2005 0.991089623 -10/18/2005 0.93445593 -10/19/2005 0.877822237 -10/20/2005 0.849505391 -10/21/2005 0.821188545 -10/22/2005 1.444159165 -10/23/2005 2.152080324 -10/24/2005 1.840595014 -10/25/2005 3.567922642 -10/26/2005 4.785547036 -10/27/2005 4.672279651 -10/28/2005 3.19980364 -10/29/2005 2.350298249 -10/30/2005 2.095446631 -10/31/2005 1.925545553 -11/1/2005 1.755644475 -11/2/2005 1.670693936 -11/3/2005 1.585743397 -11/4/2005 1.55742655 -11/5/2005 1.529109704 -11/6/2005 1.444159165 -11/7/2005 1.444159165 -11/8/2005 1.387525472 -11/9/2005 1.359208626 -11/10/2005 1.302574933 -11/11/2005 1.302574933 -11/12/2005 1.24594124 -11/13/2005 1.24594124 -11/14/2005 1.24594124 -11/15/2005 1.24594124 -11/16/2005 1.274258087 -11/17/2005 1.670693936 -11/18/2005 1.614060243 -11/19/2005 1.444159165 -11/20/2005 1.359208626 -11/21/2005 1.699010782 -11/22/2005 3.907724799 -11/23/2005 6.456240972 -11/24/2005 6.654458897 -11/25/2005 4.530695419 -11/26/2005 3.51128895 -11/27/2005 3.001585715 -11/28/2005 2.80336779 -11/29/2005 2.661783559 -11/30/2005 4.870497575 -12/1/2005 6.880993668 -12/2/2005 5.720002966 -12/3/2005 4.502378573 -12/4/2005 4.190893263 -12/5/2005 4.304160648 -12/6/2005 4.360794341 -12/7/2005 4.13425957 -12/8/2005 3.737823721 -12/9/2005 3.851091106 -12/10/2005 4.785547036 -12/11/2005 5.238616578 -12/12/2005 4.927131268 -12/13/2005 4.530695419 -12/14/2005 4.049309031 -12/15/2005 3.624556335 -12/16/2005 8.325152832 -12/17/2005 15.9990182 -12/18/2005 10.78871847 -12/19/2005 6.852676821 -12/20/2005 5.861587198 -12/21/2005 5.266933425 -12/22/2005 4.785547036 -12/23/2005 4.502378573 -12/24/2005 4.360794341 -12/25/2005 4.304160648 -12/26/2005 4.898814422 -12/27/2005 5.69168612 -12/28/2005 5.266933425 -12/29/2005 4.898814422 -12/30/2005 5.351883964 -12/31/2005 5.69168612 -1/1/2006 5.181982885 -1/2/2006 4.813863883 -1/3/2006 9.882579383 -1/4/2006 15.9990182 -1/5/2006 11.18515432 -1/6/2006 7.588914827 -1/7/2006 6.371290433 -1/8/2006 5.748319813 -1/9/2006 5.238616578 -1/10/2006 4.870497575 -1/11/2006 4.587329112 -1/12/2006 4.502378573 -1/13/2006 4.44574488 -1/14/2006 4.587329112 -1/15/2006 4.927131268 -1/16/2006 4.672279651 -1/17/2006 4.275843802 -1/18/2006 4.813863883 -1/19/2006 6.824359975 -1/20/2006 6.711092589 -1/21/2006 5.776636659 -1/22/2006 5.181982885 -1/23/2006 9.20297507 -1/24/2006 19.73684192 -1/25/2006 15.12119596 -1/26/2006 9.712678304 -1/27/2006 7.277429517 -1/28/2006 6.342973587 -1/29/2006 6.031488277 -1/30/2006 5.521785042 -1/31/2006 5.323567117 -2/1/2006 5.040398654 -2/2/2006 4.728913344 -2/3/2006 4.700596497 -2/4/2006 4.559012265 -2/5/2006 4.785547036 -2/6/2006 4.927131268 -2/7/2006 4.587329112 -2/8/2006 4.332477494 -2/9/2006 4.162576416 -2/10/2006 3.964358492 -2/11/2006 3.851091106 -2/12/2006 4.785547036 -2/13/2006 4.587329112 -2/14/2006 4.502378573 -2/15/2006 4.530695419 -2/16/2006 5.012081807 -2/17/2006 6.229706201 -2/18/2006 6.597825204 -2/19/2006 5.720002966 -2/20/2006 5.040398654 -2/21/2006 4.75723019 -2/22/2006 4.643962804 -2/23/2006 4.643962804 -2/24/2006 4.559012265 -2/25/2006 4.304160648 -2/26/2006 4.247526955 -2/27/2006 3.992675338 -2/28/2006 3.907724799 -3/1/2006 3.766140567 -3/2/2006 3.709506874 -3/3/2006 3.766140567 -3/4/2006 3.482972103 -3/5/2006 3.313071025 -3/6/2006 3.171486793 -3/7/2006 3.143169947 -3/8/2006 3.001585715 -3/9/2006 2.973268869 -3/10/2006 2.973268869 -3/11/2006 2.88831833 -3/12/2006 2.775050944 -3/13/2006 2.775050944 -3/14/2006 2.831684637 -3/15/2006 2.690100405 -3/16/2006 2.463565634 -3/17/2006 2.378615095 -3/18/2006 2.350298249 -3/19/2006 2.265347709 -3/20/2006 2.208714017 -3/21/2006 2.18039717 -3/22/2006 2.18039717 -3/23/2006 2.123763478 -3/24/2006 2.010496092 -3/25/2006 2.067129785 -3/26/2006 2.095446631 -3/27/2006 2.038812939 -3/28/2006 1.925545553 -3/29/2006 1.953862399 -3/30/2006 1.86891186 -3/31/2006 1.86891186 -4/1/2006 1.897228707 -4/2/2006 1.897228707 -4/3/2006 1.812278168 -4/4/2006 2.095446631 -4/5/2006 1.925545553 -4/6/2006 1.812278168 -4/7/2006 1.783961321 -4/8/2006 2.038812939 -4/9/2006 2.633466712 -4/10/2006 2.265347709 -4/11/2006 2.010496092 -4/12/2006 1.897228707 -4/13/2006 1.86891186 -4/14/2006 1.86891186 -4/15/2006 2.123763478 -4/16/2006 2.237030863 -4/17/2006 1.925545553 -4/18/2006 1.812278168 -4/19/2006 1.755644475 -4/20/2006 1.642377089 -4/21/2006 1.529109704 -4/22/2006 2.321981402 -4/23/2006 6.173072508 -4/24/2006 7.673865366 -4/25/2006 6.654458897 -4/26/2006 5.323567117 -4/27/2006 4.275843802 -4/28/2006 3.596239489 -4/29/2006 3.029902561 -4/30/2006 2.605149866 -5/1/2006 2.406931941 -5/2/2006 2.237030863 -5/3/2006 2.152080324 -5/4/2006 2.067129785 -5/5/2006 1.925545553 -5/6/2006 1.812278168 -5/7/2006 1.699010782 -5/8/2006 1.500792858 -5/9/2006 1.387525472 -5/10/2006 1.330891779 -5/11/2006 1.274258087 -5/12/2006 1.755644475 -5/13/2006 1.699010782 -5/14/2006 1.500792858 -5/15/2006 1.670693936 -5/16/2006 1.925545553 -5/17/2006 1.727327628 -5/18/2006 1.500792858 -5/19/2006 1.387525472 -5/20/2006 1.330891779 -5/21/2006 1.217624394 -5/22/2006 1.160990701 -5/23/2006 1.132673855 -5/24/2006 1.019406469 -5/25/2006 1.019406469 -5/26/2006 1.047723316 -5/27/2006 1.076040162 -5/28/2006 0.991089623 -5/29/2006 0.93445593 -5/30/2006 0.93445593 -5/31/2006 0.849505391 -6/1/2006 0.792871698 -6/2/2006 0.877822237 -6/3/2006 1.840595014 -6/4/2006 1.642377089 -6/5/2006 1.160990701 -6/6/2006 0.93445593 -6/7/2006 0.962772777 -6/8/2006 0.991089623 -6/9/2006 1.160990701 -6/10/2006 1.217624394 -6/11/2006 0.991089623 -6/12/2006 0.962772777 -6/13/2006 0.991089623 -6/14/2006 0.93445593 -6/15/2006 0.906139084 -6/16/2006 0.821188545 -6/17/2006 0.792871698 -6/18/2006 0.707921159 -6/19/2006 0.594653774 -6/20/2006 0.764554852 -6/21/2006 0.679604313 -6/22/2006 0.792871698 -6/23/2006 1.132673855 -6/24/2006 0.736238006 -6/25/2006 8.693271835 -6/26/2006 37.66140567 -6/27/2006 69.65944207 -6/28/2006 51.53666039 -6/29/2006 39.36041645 -6/30/2006 17.07505836 -7/1/2006 9.82594569 -7/2/2006 6.965944207 -7/3/2006 5.465151349 -7/4/2006 4.813863883 -7/5/2006 5.946537737 -7/6/2006 8.806539221 -7/7/2006 16.16891928 -7/8/2006 11.52495647 -7/9/2006 7.277429517 -7/10/2006 5.493468196 -7/11/2006 4.559012265 -7/12/2006 3.851091106 -7/13/2006 3.567922642 -7/14/2006 3.228120486 -7/15/2006 2.88831833 -7/16/2006 2.520199327 -7/17/2006 2.265347709 -7/18/2006 1.953862399 -7/19/2006 1.86891186 -7/20/2006 1.727327628 -7/21/2006 1.642377089 -7/22/2006 2.010496092 -7/23/2006 5.493468196 -7/24/2006 5.210299732 -7/25/2006 3.426338411 -7/26/2006 2.520199327 -7/27/2006 2.152080324 -7/28/2006 1.840595014 -7/29/2006 1.699010782 -7/30/2006 1.585743397 -7/31/2006 1.444159165 -8/1/2006 1.330891779 -8/2/2006 1.330891779 -8/3/2006 1.104357008 -8/4/2006 1.076040162 -8/5/2006 0.991089623 -8/6/2006 0.906139084 -8/7/2006 0.93445593 -8/8/2006 0.93445593 -8/9/2006 0.736238006 -8/10/2006 0.764554852 -8/11/2006 0.906139084 -8/12/2006 0.764554852 -8/13/2006 0.736238006 -8/14/2006 0.679604313 -8/15/2006 0.566336927 -8/16/2006 0.62297062 -8/17/2006 0.481386388 -8/18/2006 0.566336927 -8/19/2006 0.538020081 -8/20/2006 0.62297062 -8/21/2006 0.538020081 -8/22/2006 0.424752696 -8/23/2006 0.368119003 -8/24/2006 0.396435849 -8/25/2006 0.424752696 -8/26/2006 0.453069542 -8/27/2006 0.453069542 -8/28/2006 0.453069542 -8/29/2006 0.509703235 -8/30/2006 1.189307547 -8/31/2006 0.62297062 -9/1/2006 0.792871698 -9/2/2006 2.775050944 -9/3/2006 3.737823721 -9/4/2006 2.718417251 -9/5/2006 1.925545553 -9/6/2006 2.690100405 -9/7/2006 2.293664556 -9/8/2006 1.670693936 -9/9/2006 1.387525472 -9/10/2006 1.274258087 -9/11/2006 1.160990701 -9/12/2006 1.076040162 -9/13/2006 1.019406469 -9/14/2006 1.132673855 -9/15/2006 1.444159165 -9/16/2006 1.585743397 -9/17/2006 1.444159165 -9/18/2006 1.302574933 -9/19/2006 1.189307547 -9/20/2006 1.132673855 -9/21/2006 1.019406469 -9/22/2006 0.962772777 -9/23/2006 0.906139084 -9/24/2006 0.906139084 -9/25/2006 0.906139084 -9/26/2006 0.849505391 -9/27/2006 0.792871698 -9/28/2006 0.821188545 -9/29/2006 1.047723316 -9/30/2006 0.991089623 -10/1/2006 0.962772777 -10/2/2006 0.93445593 -10/3/2006 0.877822237 -10/4/2006 0.821188545 -10/5/2006 0.821188545 -10/6/2006 2.152080324 -10/7/2006 3.51128895 -10/8/2006 2.633466712 -10/9/2006 1.727327628 -10/10/2006 1.415842318 -10/11/2006 2.237030863 -10/12/2006 5.946537737 -10/13/2006 4.587329112 -10/14/2006 2.746734098 -10/15/2006 2.010496092 -10/16/2006 1.783961321 -10/17/2006 1.840595014 -10/18/2006 3.228120486 -10/19/2006 3.737823721 -10/20/2006 3.313071025 -10/21/2006 3.284754179 -10/22/2006 3.19980364 -10/23/2006 2.605149866 -10/24/2006 2.237030863 -10/25/2006 2.010496092 -10/26/2006 1.86891186 -10/27/2006 1.812278168 -10/28/2006 3.058219408 -10/29/2006 4.842180729 -10/30/2006 5.012081807 -10/31/2006 3.709506874 -11/1/2006 2.916635176 -11/2/2006 2.57683302 -11/3/2006 2.350298249 -11/4/2006 2.152080324 -11/5/2006 2.010496092 -11/6/2006 1.953862399 -11/7/2006 1.953862399 -11/8/2006 3.029902561 -11/9/2006 5.663369274 -11/10/2006 6.201389355 -11/11/2006 4.813863883 -11/12/2006 4.813863883 -11/13/2006 8.353469679 -11/14/2006 15.54594866 -11/15/2006 11.6665407 -11/16/2006 7.900400137 -11/17/2006 14.01683895 -11/18/2006 15.51763181 -11/19/2006 9.684361458 -11/20/2006 6.965944207 -11/21/2006 5.833270352 -11/22/2006 5.606735581 -11/23/2006 13.96020526 -11/24/2006 20.13327777 -11/25/2006 14.24337372 -11/26/2006 10.02416361 -11/27/2006 7.730499059 -11/28/2006 6.654458897 -11/29/2006 6.031488277 -11/30/2006 5.635052427 -12/1/2006 5.351883964 -12/2/2006 5.125349193 -12/3/2006 4.75723019 -12/4/2006 4.44574488 -12/5/2006 4.275843802 -12/6/2006 4.13425957 -12/7/2006 3.964358492 -12/8/2006 3.794457413 -12/9/2006 3.51128895 -12/10/2006 3.369704718 -12/11/2006 3.284754179 -12/12/2006 3.19980364 -12/13/2006 3.143169947 -12/14/2006 3.19980364 -12/15/2006 3.19980364 -12/16/2006 3.114853101 -12/17/2006 2.916635176 -12/18/2006 2.831684637 -12/19/2006 2.775050944 -12/20/2006 2.633466712 -12/21/2006 2.520199327 -12/22/2006 2.520199327 -12/23/2006 3.398021564 -12/24/2006 4.105942723 -12/25/2006 4.020992184 -12/26/2006 4.983764961 -12/27/2006 6.00317143 -12/28/2006 5.153666039 -12/29/2006 4.417428034 -12/30/2006 4.049309031 -12/31/2006 3.82277426 -1/1/2007 5.720002966 -1/2/2007 16.25386982 -1/3/2007 14.24337372 -1/4/2007 8.26851914 -1/5/2007 6.62614205 -1/6/2007 6.569508358 -1/7/2007 7.022577899 -1/8/2007 17.78297952 -1/9/2007 38.79407953 -1/10/2007 19.02892076 -1/11/2007 11.92139232 -1/12/2007 8.353469679 -1/13/2007 7.24911267 -1/14/2007 6.541191511 -1/15/2007 6.342973587 -1/16/2007 6.00317143 -1/17/2007 5.521785042 -1/18/2007 4.983764961 -1/19/2007 4.927131268 -1/20/2007 4.870497575 -1/21/2007 4.587329112 -1/22/2007 4.502378573 -1/23/2007 4.559012265 -1/24/2007 4.530695419 -1/25/2007 4.389111187 -1/26/2007 4.190893263 -1/27/2007 3.992675338 -1/28/2007 4.020992184 -1/29/2007 3.907724799 -1/30/2007 3.596239489 -1/31/2007 3.426338411 -2/1/2007 3.256437332 -2/2/2007 3.341387872 -2/3/2007 3.482972103 -2/4/2007 3.228120486 -2/5/2007 2.944952022 -2/6/2007 2.831684637 -2/7/2007 2.860001483 -2/8/2007 2.831684637 -2/9/2007 2.775050944 -2/10/2007 2.718417251 -2/11/2007 2.661783559 -2/12/2007 2.605149866 -2/13/2007 2.520199327 -2/14/2007 4.530695419 -2/15/2007 8.863172913 -2/16/2007 7.475647441 -2/17/2007 5.38020081 -2/18/2007 4.813863883 -2/19/2007 4.530695419 -2/20/2007 4.247526955 -2/21/2007 4.332477494 -2/22/2007 4.219210109 -2/23/2007 4.190893263 -2/24/2007 3.879407953 -2/25/2007 3.652873182 -2/26/2007 4.813863883 -2/27/2007 7.050894746 -2/28/2007 6.711092589 -3/1/2007 5.493468196 -3/2/2007 6.597825204 -3/3/2007 10.84535216 -3/4/2007 7.64554852 -3/5/2007 5.833270352 -3/6/2007 5.125349193 -3/7/2007 4.615645958 -3/8/2007 4.360794341 -3/9/2007 4.247526955 -3/10/2007 4.13425957 -3/11/2007 4.077625877 -3/12/2007 4.020992184 -3/13/2007 3.851091106 -3/14/2007 3.766140567 -3/15/2007 3.681190028 -3/16/2007 6.456240972 -3/17/2007 37.37823721 -3/18/2007 26.58951874 -3/19/2007 13.90357157 -3/20/2007 8.749905528 -3/21/2007 6.456240972 -3/22/2007 5.550101888 -3/23/2007 5.295250271 -3/24/2007 5.210299732 -3/25/2007 5.125349193 -3/26/2007 4.927131268 -3/27/2007 4.983764961 -3/28/2007 4.813863883 -3/29/2007 4.44574488 -3/30/2007 4.13425957 -3/31/2007 3.964358492 -4/1/2007 3.766140567 -4/2/2007 3.766140567 -4/3/2007 3.652873182 -4/4/2007 4.049309031 -4/5/2007 5.889904045 -4/6/2007 5.804953506 -4/7/2007 4.955448115 -4/8/2007 4.474061726 -4/9/2007 4.105942723 -4/10/2007 3.766140567 -4/11/2007 3.567922642 -4/12/2007 6.201389355 -4/13/2007 10.33564892 -4/14/2007 8.098618061 -4/15/2007 22.37030863 -4/16/2007 118.0812494 -4/17/2007 65.97825204 -4/18/2007 24.66397319 -4/19/2007 16.3671372 -4/20/2007 12.62931348 -4/21/2007 9.571094073 -4/22/2007 7.815449598 -4/23/2007 6.852676821 -4/24/2007 6.144755662 -4/25/2007 5.606735581 -4/26/2007 5.210299732 -4/27/2007 4.927131268 -4/28/2007 5.0687155 -4/29/2007 4.842180729 -4/30/2007 4.502378573 -5/1/2007 4.304160648 -5/2/2007 3.709506874 -5/3/2007 3.51128895 -5/4/2007 3.284754179 -5/5/2007 3.086536254 -5/6/2007 2.973268869 -5/7/2007 2.80336779 -5/8/2007 2.548516173 -5/9/2007 2.49188248 -5/10/2007 2.548516173 -5/11/2007 2.57683302 -5/12/2007 2.49188248 -5/13/2007 2.690100405 -5/14/2007 2.57683302 -5/15/2007 2.265347709 -5/16/2007 2.18039717 -5/17/2007 2.690100405 -5/18/2007 2.520199327 -5/19/2007 2.237030863 -5/20/2007 2.18039717 -5/21/2007 2.038812939 -5/22/2007 1.840595014 -5/23/2007 1.699010782 -5/24/2007 1.55742655 -5/25/2007 1.472476011 -5/26/2007 1.415842318 -5/27/2007 1.330891779 -5/28/2007 1.387525472 -5/29/2007 1.387525472 -5/30/2007 1.302574933 -5/31/2007 1.217624394 -6/1/2007 1.132673855 -6/2/2007 1.104357008 -6/3/2007 1.132673855 -6/4/2007 2.237030863 -6/5/2007 2.350298249 -6/6/2007 1.755644475 -6/7/2007 1.444159165 -6/8/2007 1.274258087 -6/9/2007 1.160990701 -6/10/2007 1.132673855 -6/11/2007 1.104357008 -6/12/2007 1.076040162 -6/13/2007 1.812278168 -6/14/2007 1.585743397 -6/15/2007 1.444159165 -6/16/2007 1.387525472 -6/17/2007 1.330891779 -6/18/2007 1.160990701 -6/19/2007 0.962772777 -6/20/2007 0.906139084 -6/21/2007 0.906139084 -6/22/2007 0.877822237 -6/23/2007 0.849505391 -6/24/2007 0.764554852 -6/25/2007 0.736238006 -6/26/2007 0.679604313 -6/27/2007 0.651287466 -6/28/2007 0.651287466 -6/29/2007 0.651287466 -6/30/2007 0.679604313 -7/1/2007 0.707921159 -7/2/2007 0.679604313 -7/3/2007 0.481386388 -7/4/2007 0.509703235 -7/5/2007 0.651287466 -7/6/2007 0.566336927 -7/7/2007 0.453069542 -7/8/2007 0.396435849 -7/9/2007 0.31148531 -7/10/2007 0.62297062 -7/11/2007 1.55742655 -7/12/2007 1.812278168 -7/13/2007 1.076040162 -7/14/2007 0.821188545 -7/15/2007 0.62297062 -7/16/2007 0.368119003 -7/17/2007 0.368119003 -7/18/2007 0.368119003 -7/19/2007 0.339802156 -7/20/2007 0.263346671 -7/21/2007 0.283168464 -7/22/2007 0.223703086 -7/23/2007 0.215208032 -7/24/2007 0.212376348 -7/25/2007 0.15291097 -7/26/2007 0.186891186 -7/27/2007 0.283168464 -7/28/2007 0.31148531 -7/29/2007 0.31148531 -7/30/2007 1.274258087 -7/31/2007 2.831684637 -8/1/2007 1.925545553 -8/2/2007 0.962772777 -8/3/2007 0.594653774 -8/4/2007 0.424752696 -8/5/2007 0.368119003 -8/6/2007 0.453069542 -8/7/2007 0.368119003 -8/8/2007 0.271841725 -8/9/2007 0.368119003 -8/10/2007 0.424752696 -8/11/2007 0.368119003 -8/12/2007 0.277505094 -8/13/2007 0.201049609 -8/14/2007 0.141584232 -8/15/2007 0.155742655 -8/16/2007 0.192554555 -8/17/2007 0.283168464 -8/18/2007 0.201049609 -8/19/2007 0.215208032 -8/20/2007 0.424752696 -8/21/2007 0.764554852 -8/22/2007 0.764554852 -8/23/2007 0.679604313 -8/24/2007 0.594653774 -8/25/2007 0.396435849 -8/26/2007 0.509703235 -8/27/2007 0.453069542 -8/28/2007 0.368119003 -8/29/2007 0.339802156 -8/30/2007 0.339802156 -8/31/2007 0.31148531 -9/1/2007 0.280336779 -9/2/2007 0.229366456 -9/3/2007 0.212376348 -9/4/2007 0.209544663 -9/5/2007 0.453069542 -9/6/2007 0.283168464 -9/7/2007 0.257683302 -9/8/2007 0.172732763 -9/9/2007 0.155742655 -9/10/2007 0.203881294 -9/11/2007 0.368119003 -9/12/2007 0.368119003 -9/13/2007 0.31148531 -9/14/2007 0.277505094 -9/15/2007 0.453069542 -9/16/2007 0.453069542 -9/17/2007 0.368119003 -9/18/2007 0.31148531 -9/19/2007 0.31148531 -9/20/2007 0.31148531 -9/21/2007 0.283168464 -9/22/2007 0.283168464 -9/23/2007 0.263346671 -9/24/2007 0.254851617 -9/25/2007 0.254851617 -9/26/2007 0.246356563 -9/27/2007 0.237861509 -9/28/2007 0.266178356 -9/29/2007 0.254851617 -9/30/2007 0.31148531 -10/1/2007 0.23219814 -10/2/2007 0.223703086 -10/3/2007 0.226534771 -10/4/2007 0.229366456 -10/5/2007 0.283168464 -10/6/2007 0.271841725 -10/7/2007 0.260514987 -10/8/2007 0.212376348 -10/9/2007 0.201049609 -10/10/2007 0.283168464 -10/11/2007 0.283168464 -10/12/2007 0.229366456 -10/13/2007 0.226534771 -10/14/2007 0.246356563 -10/15/2007 0.257683302 -10/16/2007 0.254851617 -10/17/2007 0.266178356 -10/18/2007 0.283168464 -10/19/2007 0.280336779 -10/20/2007 0.283168464 -10/21/2007 0.283168464 -10/22/2007 0.235029825 -10/23/2007 0.237861509 -10/24/2007 0.424752696 -10/25/2007 0.849505391 -10/26/2007 0.821188545 -10/27/2007 1.359208626 -10/28/2007 1.274258087 -10/29/2007 0.962772777 -10/30/2007 0.764554852 -10/31/2007 0.651287466 -11/1/2007 0.538020081 -11/2/2007 0.481386388 -11/3/2007 0.453069542 -11/4/2007 0.453069542 -11/5/2007 0.481386388 -11/6/2007 0.453069542 -11/7/2007 0.509703235 -11/8/2007 0.481386388 -11/9/2007 0.453069542 -11/10/2007 0.453069542 -11/11/2007 0.453069542 -11/12/2007 0.566336927 -11/13/2007 0.453069542 -11/14/2007 0.453069542 -11/15/2007 0.453069542 -11/16/2007 0.509703235 -11/17/2007 0.453069542 -11/18/2007 0.453069542 -11/19/2007 0.538020081 -11/20/2007 0.62297062 -11/21/2007 0.538020081 -11/22/2007 0.538020081 -11/23/2007 0.509703235 -11/24/2007 0.453069542 -11/25/2007 0.424752696 -11/26/2007 0.453069542 -11/27/2007 0.509703235 -11/28/2007 0.509703235 -11/29/2007 0.481386388 -11/30/2007 0.453069542 -12/1/2007 0.453069542 -12/2/2007 0.481386388 -12/3/2007 0.821188545 -12/4/2007 0.849505391 -12/5/2007 0.736238006 -12/6/2007 1.189307547 -12/7/2007 0.792871698 -12/8/2007 0.736238006 -12/9/2007 0.821188545 -12/10/2007 0.764554852 -12/11/2007 0.764554852 -12/12/2007 0.736238006 -12/13/2007 0.707921159 -12/14/2007 0.764554852 -12/15/2007 0.736238006 -12/16/2007 1.415842318 -12/17/2007 1.982179246 -12/18/2007 1.897228707 -12/19/2007 1.359208626 -12/20/2007 1.160990701 -12/21/2007 1.076040162 -12/22/2007 0.93445593 -12/23/2007 0.906139084 -12/24/2007 1.019406469 -12/25/2007 0.991089623 -12/26/2007 0.962772777 -12/27/2007 1.019406469 -12/28/2007 1.047723316 -12/29/2007 1.500792858 -12/30/2007 2.095446631 -12/31/2007 2.661783559 -1/1/2008 2.548516173 -1/2/2008 2.095446631 -1/3/2008 1.699010782 -1/4/2008 1.500792858 -1/5/2008 1.444159165 -1/6/2008 1.444159165 -1/7/2008 1.472476011 -1/8/2008 1.444159165 -1/9/2008 1.387525472 -1/10/2008 1.359208626 -1/11/2008 1.55742655 -1/12/2008 1.925545553 -1/13/2008 1.840595014 -1/14/2008 1.812278168 -1/15/2008 1.783961321 -1/16/2008 1.699010782 -1/17/2008 1.642377089 -1/18/2008 2.57683302 -1/19/2008 3.539605796 -1/20/2008 3.001585715 -1/21/2008 2.265347709 -1/22/2008 1.953862399 -1/23/2008 1.982179246 -1/24/2008 1.953862399 -1/25/2008 1.840595014 -1/26/2008 1.755644475 -1/27/2008 1.727327628 -1/28/2008 1.727327628 -1/29/2008 1.699010782 -1/30/2008 1.699010782 -1/31/2008 1.642377089 -2/1/2008 2.406931941 -2/2/2008 7.220795824 -2/3/2008 8.013667522 -2/4/2008 4.983764961 -2/5/2008 4.190893263 -2/6/2008 3.879407953 -2/7/2008 3.596239489 -2/8/2008 3.284754179 -2/9/2008 3.001585715 -2/10/2008 2.80336779 -2/11/2008 2.49188248 -2/12/2008 2.265347709 -2/13/2008 4.44574488 -2/14/2008 10.10911415 -2/15/2008 8.126934908 -2/16/2008 5.408517656 -2/17/2008 4.474061726 -2/18/2008 4.275843802 -2/19/2008 4.247526955 -2/20/2008 3.879407953 -2/21/2008 3.539605796 -2/22/2008 3.482972103 -2/23/2008 4.020992184 -2/24/2008 4.304160648 -2/25/2008 4.275843802 -2/26/2008 4.247526955 -2/27/2008 4.530695419 -2/28/2008 4.643962804 -2/29/2008 4.077625877 -3/1/2008 3.766140567 -3/2/2008 3.567922642 -3/3/2008 3.313071025 -3/4/2008 3.171486793 -3/5/2008 3.992675338 -3/6/2008 5.181982885 -3/7/2008 4.813863883 -3/8/2008 10.9303027 -3/9/2008 31.9980364 -3/10/2008 19.31208922 -3/11/2008 10.78871847 -3/12/2008 7.815449598 -3/13/2008 6.541191511 -3/14/2008 5.720002966 -3/15/2008 5.38020081 -3/16/2008 5.153666039 -3/17/2008 4.927131268 -3/18/2008 4.502378573 -3/19/2008 4.389111187 -3/20/2008 4.75723019 -3/21/2008 4.559012265 -3/22/2008 4.190893263 -3/23/2008 4.020992184 -3/24/2008 3.709506874 -3/25/2008 3.426338411 -3/26/2008 3.256437332 -3/27/2008 3.171486793 -3/28/2008 3.114853101 -3/29/2008 2.973268869 -3/30/2008 2.661783559 -3/31/2008 2.520199327 -4/1/2008 2.633466712 -4/2/2008 2.661783559 -4/3/2008 2.463565634 -4/4/2008 3.19980364 -4/5/2008 3.964358492 -4/6/2008 3.992675338 -4/7/2008 4.389111187 -4/8/2008 4.275843802 -4/9/2008 3.879407953 -4/10/2008 3.539605796 -4/11/2008 3.341387872 -4/12/2008 3.313071025 -4/13/2008 5.097032346 -4/14/2008 6.965944207 -4/15/2008 4.870497575 -4/16/2008 3.766140567 -4/17/2008 3.482972103 -4/18/2008 3.341387872 -4/19/2008 3.143169947 -4/20/2008 2.944952022 -4/21/2008 2.860001483 -4/22/2008 2.775050944 -4/23/2008 2.520199327 -4/24/2008 2.378615095 -4/25/2008 2.237030863 -4/26/2008 2.152080324 -4/27/2008 3.936041645 -4/28/2008 3.737823721 -4/29/2008 4.105942723 -4/30/2008 3.879407953 -5/1/2008 3.482972103 -5/2/2008 3.256437332 -5/3/2008 2.944952022 -5/4/2008 2.633466712 -5/5/2008 2.378615095 -5/6/2008 2.18039717 -5/7/2008 2.010496092 -5/8/2008 2.067129785 -5/9/2008 4.587329112 -5/10/2008 10.64713423 -5/11/2008 11.94970917 -5/12/2008 25.99486497 -5/13/2008 56.63369274 -5/14/2008 26.07981551 -5/15/2008 14.89466119 -5/16/2008 9.939213075 -5/17/2008 8.664954989 -5/18/2008 7.673865366 -5/19/2008 6.456240972 -5/20/2008 6.541191511 -5/21/2008 8.211885447 -5/22/2008 8.211885447 -5/23/2008 6.258023047 -5/24/2008 5.153666039 -5/25/2008 4.474061726 -5/26/2008 4.105942723 -5/27/2008 3.681190028 -5/28/2008 3.398021564 -5/29/2008 3.114853101 -5/30/2008 2.690100405 -5/31/2008 2.80336779 -6/1/2008 3.624556335 -6/2/2008 4.077625877 -6/3/2008 3.029902561 -6/4/2008 3.766140567 -6/5/2008 11.75149124 -6/6/2008 14.7813938 -6/7/2008 8.466737064 -6/8/2008 5.748319813 -6/9/2008 4.615645958 -6/10/2008 3.851091106 -6/11/2008 3.114853101 -6/12/2008 2.605149866 -6/13/2008 2.237030863 -6/14/2008 2.095446631 -6/15/2008 1.925545553 -6/16/2008 1.783961321 -6/17/2008 1.897228707 -6/18/2008 1.812278168 -6/19/2008 1.670693936 -6/20/2008 1.444159165 -6/21/2008 1.217624394 -6/22/2008 1.132673855 -6/23/2008 1.019406469 -6/24/2008 0.93445593 -6/25/2008 0.877822237 -6/26/2008 0.821188545 -6/27/2008 0.764554852 -6/28/2008 0.764554852 -6/29/2008 0.736238006 -6/30/2008 0.707921159 -7/1/2008 0.679604313 -7/2/2008 0.651287466 -7/3/2008 0.594653774 -7/4/2008 0.566336927 -7/5/2008 0.594653774 -7/6/2008 0.707921159 -7/7/2008 0.849505391 -7/8/2008 1.359208626 -7/9/2008 1.019406469 -7/10/2008 1.670693936 -7/11/2008 1.840595014 -7/12/2008 1.189307547 -7/13/2008 0.906139084 -7/14/2008 0.764554852 -7/15/2008 0.707921159 -7/16/2008 0.651287466 -7/17/2008 0.594653774 -7/18/2008 0.538020081 -7/19/2008 0.481386388 -7/20/2008 0.424752696 -7/21/2008 0.396435849 -7/22/2008 0.368119003 -7/23/2008 0.764554852 -7/24/2008 0.991089623 -7/25/2008 0.707921159 -7/26/2008 0.594653774 -7/27/2008 0.509703235 -7/28/2008 0.481386388 -7/29/2008 0.453069542 -7/30/2008 0.396435849 -7/31/2008 0.368119003 -8/1/2008 0.31148531 -8/2/2008 0.283168464 -8/3/2008 0.266178356 -8/4/2008 0.243524879 -8/5/2008 0.237861509 -8/6/2008 0.226534771 -8/7/2008 0.223703086 -8/8/2008 0.260514987 -8/9/2008 0.15291097 -8/10/2008 0.090613908 -8/11/2008 0.147247601 -8/12/2008 0.147247601 -8/13/2008 0.073623801 -8/14/2008 0.067960431 -8/15/2008 0.084950539 -8/16/2008 0.161406024 -8/17/2008 0.172732763 -8/18/2008 0.181227817 -8/19/2008 0.167069394 -8/20/2008 0.141584232 -8/21/2008 0.090613908 -8/22/2008 0.15291097 -8/23/2008 0.31148531 -8/24/2008 0.31148531 -8/25/2008 0.186891186 -8/26/2008 0.144415916 -8/27/2008 0.133089178 -8/28/2008 0.150079286 -8/29/2008 0.229366456 -8/30/2008 0.237861509 -8/31/2008 0.184059501 -9/1/2008 0.161406024 -9/2/2008 0.147247601 -9/3/2008 0.135920863 -9/4/2008 0.135920863 -9/5/2008 0.566336927 -9/6/2008 0.424752696 -9/7/2008 0.538020081 -9/8/2008 0.453069542 -9/9/2008 0.368119003 -9/10/2008 0.339802156 -9/11/2008 0.339802156 -9/12/2008 0.339802156 -9/13/2008 0.453069542 -9/14/2008 0.594653774 -9/15/2008 0.509703235 -9/16/2008 0.368119003 -9/17/2008 0.339802156 -9/18/2008 0.31148531 -9/19/2008 0.283168464 -9/20/2008 0.283168464 -9/21/2008 0.27467341 -9/22/2008 0.269010041 -9/23/2008 0.209544663 -9/24/2008 0.220871402 -9/25/2008 0.368119003 -9/26/2008 0.481386388 -9/27/2008 0.481386388 -9/28/2008 0.453069542 -9/29/2008 0.396435849 -9/30/2008 0.396435849 -10/1/2008 0.594653774 -10/2/2008 0.509703235 -10/3/2008 0.424752696 -10/4/2008 0.368119003 -10/5/2008 0.339802156 -10/6/2008 0.339802156 -10/7/2008 0.31148531 -10/8/2008 0.31148531 -10/9/2008 0.31148531 -10/10/2008 0.339802156 -10/11/2008 0.31148531 -10/12/2008 0.31148531 -10/13/2008 0.280336779 -10/14/2008 0.31148531 -10/15/2008 0.31148531 -10/16/2008 0.283168464 -10/17/2008 0.266178356 -10/18/2008 0.23219814 -10/19/2008 0.243524879 -10/20/2008 0.246356563 -10/21/2008 0.260514987 -10/22/2008 0.263346671 -10/23/2008 0.257683302 -10/24/2008 0.254851617 -10/25/2008 0.283168464 -10/26/2008 0.368119003 -10/27/2008 0.368119003 -10/28/2008 0.538020081 -10/29/2008 0.538020081 -10/30/2008 0.424752696 -10/31/2008 0.368119003 -11/1/2008 0.368119003 -11/2/2008 0.368119003 -11/3/2008 0.339802156 -11/4/2008 0.368119003 -11/5/2008 0.453069542 -11/6/2008 0.481386388 -11/7/2008 0.481386388 -11/8/2008 0.453069542 -11/9/2008 0.481386388 -11/10/2008 0.424752696 -11/11/2008 0.396435849 -11/12/2008 0.396435849 -11/13/2008 0.481386388 -11/14/2008 0.906139084 -11/15/2008 1.076040162 -11/16/2008 1.387525472 -11/17/2008 1.132673855 -11/18/2008 0.991089623 -11/19/2008 0.877822237 -11/20/2008 0.764554852 -11/21/2008 0.736238006 -11/22/2008 0.679604313 -11/23/2008 0.651287466 -11/24/2008 0.62297062 -11/25/2008 0.821188545 -11/26/2008 0.821188545 -11/27/2008 0.736238006 -11/28/2008 0.707921159 -11/29/2008 0.679604313 -11/30/2008 0.764554852 -12/1/2008 1.019406469 -12/2/2008 0.906139084 -12/3/2008 0.849505391 -12/4/2008 0.821188545 -12/5/2008 0.792871698 -12/6/2008 0.821188545 -12/7/2008 0.764554852 -12/8/2008 0.736238006 -12/9/2008 0.707921159 -12/10/2008 0.736238006 -12/11/2008 1.387525472 -12/12/2008 6.824359975 -12/13/2008 11.46832278 -12/14/2008 5.436834503 -12/15/2008 2.944952022 -12/16/2008 2.435248788 -12/17/2008 2.973268869 -12/18/2008 3.737823721 -12/19/2008 3.51128895 -12/20/2008 4.219210109 -12/21/2008 4.530695419 -12/22/2008 4.813863883 -12/23/2008 4.247526955 -12/24/2008 3.228120486 -12/25/2008 3.086536254 -12/26/2008 2.88831833 -12/27/2008 2.548516173 -12/28/2008 2.49188248 -12/29/2008 2.463565634 -12/30/2008 2.350298249 -12/31/2008 2.208714017 -1/1/2009 2.038812939 -1/2/2009 1.897228707 -1/3/2009 1.897228707 -1/4/2009 1.840595014 -1/5/2009 1.812278168 -1/6/2009 1.840595014 -1/7/2009 3.171486793 -1/8/2009 7.220795824 -1/9/2009 7.928716983 -1/10/2009 5.266933425 -1/11/2009 4.474061726 -1/12/2009 4.417428034 -1/13/2009 4.190893263 -1/14/2009 3.82277426 -1/15/2009 3.426338411 -1/16/2009 3.284754179 -1/17/2009 3.114853101 -1/18/2009 2.944952022 -1/19/2009 2.775050944 -1/20/2009 2.661783559 -1/21/2009 2.548516173 -1/22/2009 2.435248788 -1/23/2009 2.265347709 -1/24/2009 2.152080324 -1/25/2009 2.038812939 -1/26/2009 1.897228707 -1/27/2009 1.86891186 -1/28/2009 2.152080324 -1/29/2009 3.19980364 -1/30/2009 3.454655257 -1/31/2009 3.114853101 -2/1/2009 2.80336779 -2/2/2009 2.775050944 -2/3/2009 2.690100405 -2/4/2009 2.57683302 -2/5/2009 2.463565634 -2/6/2009 2.350298249 -2/7/2009 2.293664556 -2/8/2009 2.406931941 -2/9/2009 2.378615095 -2/10/2009 2.237030863 -2/11/2009 2.265347709 -2/12/2009 2.293664556 -2/13/2009 2.208714017 -2/14/2009 2.038812939 -2/15/2009 1.953862399 -2/16/2009 1.897228707 -2/17/2009 1.812278168 -2/18/2009 1.840595014 -2/19/2009 2.010496092 -2/20/2009 1.925545553 -2/21/2009 1.783961321 -2/22/2009 1.755644475 -2/23/2009 1.783961321 -2/24/2009 1.699010782 -2/25/2009 1.642377089 -2/26/2009 1.642377089 -2/27/2009 1.642377089 -2/28/2009 1.670693936 -3/1/2009 1.783961321 -3/2/2009 1.982179246 -3/3/2009 1.925545553 -3/4/2009 1.783961321 -3/5/2009 1.783961321 -3/6/2009 2.038812939 -3/7/2009 3.001585715 -3/8/2009 3.907724799 -3/9/2009 3.624556335 -3/10/2009 3.058219408 -3/11/2009 2.633466712 -3/12/2009 2.435248788 -3/13/2009 2.237030863 -3/14/2009 2.123763478 -3/15/2009 2.18039717 -3/16/2009 2.265347709 -3/17/2009 2.237030863 -3/18/2009 2.152080324 -3/19/2009 2.067129785 -3/20/2009 2.095446631 -3/21/2009 1.925545553 -3/22/2009 1.840595014 -3/23/2009 1.783961321 -3/24/2009 1.755644475 -3/25/2009 1.699010782 -3/26/2009 1.727327628 -3/27/2009 2.067129785 -3/28/2009 2.548516173 -3/29/2009 3.482972103 -3/30/2009 3.624556335 -3/31/2009 3.029902561 -4/1/2009 2.548516173 -4/2/2009 2.860001483 -4/3/2009 3.652873182 -4/4/2009 5.606735581 -4/5/2009 5.408517656 -4/6/2009 4.360794341 -4/7/2009 4.587329112 -4/8/2009 4.672279651 -4/9/2009 4.105942723 -4/10/2009 3.482972103 -4/11/2009 3.539605796 -4/12/2009 4.190893263 -4/13/2009 4.162576416 -4/14/2009 4.927131268 -4/15/2009 8.919806606 -4/16/2009 14.49822534 -4/17/2009 12.65763033 -4/18/2009 8.155251754 -4/19/2009 6.427924126 -4/20/2009 5.663369274 -4/21/2009 8.523370757 -4/22/2009 11.44000593 -4/23/2009 9.627727765 -4/24/2009 8.183568601 -4/25/2009 6.512874665 -4/26/2009 5.550101888 -4/27/2009 4.898814422 -4/28/2009 4.304160648 -4/29/2009 3.851091106 -4/30/2009 3.454655257 -5/1/2009 3.228120486 -5/2/2009 3.19980364 -5/3/2009 3.19980364 -5/4/2009 4.44574488 -5/5/2009 5.861587198 -5/6/2009 7.24911267 -5/7/2009 12.00634286 -5/8/2009 17.38654367 -5/9/2009 12.23287763 -5/10/2009 7.985350676 -5/11/2009 6.144755662 -5/12/2009 5.0687155 -5/13/2009 3.964358492 -5/14/2009 3.454655257 -5/15/2009 3.426338411 -5/16/2009 3.284754179 -5/17/2009 3.539605796 -5/18/2009 3.936041645 -5/19/2009 3.398021564 -5/20/2009 2.88831833 -5/21/2009 2.520199327 -5/22/2009 2.208714017 -5/23/2009 2.152080324 -5/24/2009 1.982179246 -5/25/2009 2.860001483 -5/26/2009 9.287925609 -5/27/2009 7.56059798 -5/28/2009 5.238616578 -5/29/2009 4.304160648 -5/30/2009 4.13425957 -5/31/2009 3.709506874 -6/1/2009 3.001585715 -6/2/2009 2.406931941 -6/3/2009 2.18039717 -6/4/2009 2.49188248 -6/5/2009 6.654458897 -6/6/2009 17.30159313 -6/7/2009 14.58317588 -6/8/2009 8.523370757 -6/9/2009 7.390696902 -6/10/2009 17.38654367 -6/11/2009 21.4358527 -6/12/2009 13.53545256 -6/13/2009 9.089707684 -6/14/2009 7.305746363 -6/15/2009 6.059805123 -6/16/2009 6.597825204 -6/17/2009 5.606735581 -6/18/2009 5.408517656 -6/19/2009 5.974854584 -6/20/2009 6.852676821 -6/21/2009 10.81703531 -6/22/2009 10.5621837 -6/23/2009 7.164162131 -6/24/2009 5.521785042 -6/25/2009 4.728913344 -6/26/2009 4.219210109 -6/27/2009 3.794457413 -6/28/2009 3.341387872 -6/29/2009 3.001585715 -6/30/2009 2.661783559 -7/1/2009 2.463565634 -7/2/2009 2.435248788 -7/3/2009 2.435248788 -7/4/2009 2.067129785 -7/5/2009 1.840595014 -7/6/2009 1.614060243 -7/7/2009 1.614060243 -7/8/2009 1.472476011 -7/9/2009 1.330891779 -7/10/2009 1.217624394 -7/11/2009 1.076040162 -7/12/2009 1.076040162 -7/13/2009 1.047723316 -7/14/2009 0.962772777 -7/15/2009 0.906139084 -7/16/2009 0.93445593 -7/17/2009 0.962772777 -7/18/2009 0.93445593 -7/19/2009 0.764554852 -7/20/2009 0.679604313 -7/21/2009 0.62297062 -7/22/2009 0.707921159 -7/23/2009 0.849505391 -7/24/2009 0.991089623 -7/25/2009 0.849505391 -7/26/2009 0.877822237 -7/27/2009 0.792871698 -7/28/2009 0.707921159 -7/29/2009 0.991089623 -7/30/2009 3.766140567 -7/31/2009 2.067129785 -8/1/2009 1.585743397 -8/2/2009 1.444159165 -8/3/2009 1.86891186 -8/4/2009 1.387525472 -8/5/2009 1.160990701 -8/6/2009 1.24594124 -8/7/2009 1.274258087 -8/8/2009 1.132673855 -8/9/2009 1.047723316 -8/10/2009 0.962772777 -8/11/2009 0.877822237 -8/12/2009 0.906139084 -8/13/2009 2.520199327 -8/14/2009 2.293664556 -8/15/2009 1.415842318 -8/16/2009 1.132673855 -8/17/2009 0.906139084 -8/18/2009 0.792871698 -8/19/2009 0.792871698 -8/20/2009 0.679604313 -8/21/2009 0.538020081 -8/22/2009 30.01585715 -8/23/2009 73.90696902 -8/24/2009 38.2277426 -8/25/2009 14.38495796 -8/26/2009 8.296835986 -8/27/2009 6.144755662 -8/28/2009 5.720002966 -8/29/2009 7.843766444 -8/30/2009 9.740995151 -8/31/2009 10.59050054 -9/1/2009 8.041984369 -9/2/2009 5.210299732 -9/3/2009 4.530695419 -9/4/2009 4.049309031 -9/5/2009 3.341387872 -9/6/2009 2.916635176 -9/7/2009 2.605149866 -9/8/2009 2.548516173 -9/9/2009 2.406931941 -9/10/2009 2.265347709 -9/11/2009 5.804953506 -9/12/2009 18.88733653 -9/13/2009 15.91406766 -9/14/2009 9.712678304 -9/15/2009 7.050894746 -9/16/2009 5.578418735 -9/17/2009 4.842180729 -9/18/2009 4.332477494 -9/19/2009 3.936041645 -9/20/2009 3.426338411 -9/21/2009 3.086536254 -9/22/2009 2.831684637 -9/23/2009 2.633466712 -9/24/2009 2.463565634 -9/25/2009 2.321981402 -9/26/2009 2.18039717 -9/27/2009 4.672279651 -9/28/2009 7.334063209 -9/29/2009 6.484557818 -9/30/2009 4.75723019 -10/1/2009 3.794457413 -10/2/2009 3.143169947 -10/3/2009 2.88831833 -10/4/2009 2.718417251 -10/5/2009 2.435248788 -10/6/2009 2.237030863 -10/7/2009 2.095446631 -10/8/2009 1.953862399 -10/9/2009 1.86891186 -10/10/2009 1.812278168 -10/11/2009 1.783961321 -10/12/2009 1.699010782 -10/13/2009 1.642377089 -10/14/2009 1.614060243 -10/15/2009 1.699010782 -10/16/2009 2.152080324 -10/17/2009 2.265347709 -10/18/2009 3.879407953 -10/19/2009 5.210299732 -10/20/2009 4.474061726 -10/21/2009 3.426338411 -10/22/2009 2.944952022 -10/23/2009 2.57683302 -10/24/2009 2.435248788 -10/25/2009 3.907724799 -10/26/2009 4.927131268 -10/27/2009 6.088121969 -10/28/2009 27.18417251 -10/29/2009 40.20992184 -10/30/2009 17.92456375 -10/31/2009 11.44000593 -11/1/2009 12.99743248 -11/2/2009 16.42377089 -11/3/2009 12.51604609 -11/4/2009 8.976440299 -11/5/2009 7.390696902 -11/6/2009 6.512874665 -11/7/2009 5.918220891 -11/8/2009 5.465151349 -11/9/2009 5.210299732 -11/10/2009 4.983764961 -11/11/2009 4.898814422 -11/12/2009 11.32673855 -11/13/2009 44.4574488 -11/14/2009 35.67922642 -11/15/2009 19.4819903 -11/16/2009 13.6770368 -11/17/2009 10.137431 -11/18/2009 8.211885447 -11/19/2009 7.334063209 -11/20/2009 7.95703383 -11/21/2009 8.664954989 -11/22/2009 7.730499059 -11/23/2009 6.796043128 -11/24/2009 7.985350676 -11/25/2009 7.928716983 -11/26/2009 7.362380056 -11/27/2009 7.390696902 -11/28/2009 6.852676821 -11/29/2009 6.229706201 -11/30/2009 5.804953506 -12/1/2009 6.371290433 -12/2/2009 6.739409436 -12/3/2009 24.38080472 -12/4/2009 30.58219408 -12/5/2009 16.90515728 -12/6/2009 25.17367642 -12/7/2009 21.09605054 -12/8/2009 14.0451558 -12/9/2009 45.02378573 -12/10/2009 86.36638142 -12/11/2009 30.01585715 -12/12/2009 16.33882035 -12/13/2009 13.47881887 -12/14/2009 17.64139529 -12/15/2009 16.7918899 -12/16/2009 12.43109556 -12/17/2009 9.316242455 -12/18/2009 7.87208329 -12/19/2009 7.164162131 -12/20/2009 7.503964288 -12/21/2009 7.900400137 -12/22/2009 7.24911267 -12/23/2009 7.050894746 -12/24/2009 6.909310514 -12/25/2009 6.711092589 -12/26/2009 41.90893263 -12/27/2009 77.58815905 -12/28/2009 32.84754179 -12/29/2009 18.7457523 -12/30/2009 12.99743248 -12/31/2009 10.50555 -1/1/2010 11.75149124 -1/2/2010 12.03465971 -1/3/2010 9.457826687 -1/4/2010 7.588914827 -1/5/2010 6.824359975 -1/6/2010 6.342973587 -1/7/2010 6.00317143 -1/8/2010 5.833270352 -1/9/2010 5.550101888 -1/10/2010 5.238616578 -1/11/2010 4.983764961 -1/12/2010 4.870497575 -1/13/2010 4.813863883 -1/14/2010 4.672279651 -1/15/2010 4.615645958 -1/16/2010 4.643962804 -1/17/2010 5.153666039 -1/18/2010 10.22238154 -1/19/2010 11.83644178 -1/20/2010 8.098618061 -1/21/2010 6.739409436 -1/22/2010 6.059805123 -1/23/2010 5.663369274 -1/24/2010 5.266933425 -1/25/2010 10.25069839 -1/26/2010 29.73268869 -1/27/2010 19.42535661 -1/28/2010 12.0912934 -1/29/2010 8.778222374 -1/30/2010 7.079211592 -1/31/2010 6.456240972 -2/1/2010 6.229706201 -2/2/2010 6.031488277 -2/3/2010 5.946537737 -2/4/2010 5.918220891 -2/5/2010 5.776636659 -2/6/2010 5.69168612 -2/7/2010 6.258023047 -2/8/2010 6.824359975 -2/9/2010 6.456240972 -2/10/2010 6.371290433 -2/11/2010 6.173072508 -2/12/2010 6.00317143 -2/13/2010 5.889904045 -2/14/2010 5.804953506 -2/15/2010 5.889904045 -2/16/2010 6.00317143 -2/17/2010 6.229706201 -2/18/2010 6.512874665 -2/19/2010 7.079211592 -2/20/2010 8.126934908 -2/21/2010 9.344559302 -2/22/2010 11.12852062 -2/23/2010 19.36872292 -2/24/2010 47.85547036 -2/25/2010 50.97032346 -2/26/2010 34.26338411 -2/27/2010 20.67129785 -2/28/2010 17.58476159 -3/1/2010 16.08396874 -3/2/2010 15.5742655 -3/3/2010 15.14951281 -3/4/2010 15.88575081 -3/5/2010 13.39386833 -3/6/2010 10.78871847 -3/7/2010 8.976440299 -3/8/2010 8.155251754 -3/9/2010 7.503964288 -3/10/2010 6.824359975 -3/11/2010 6.371290433 -3/12/2010 7.503964288 -3/13/2010 37.66140567 -3/14/2010 93.44559302 -3/15/2010 35.67922642 -3/16/2010 21.8039717 -3/17/2010 15.29109704 -3/18/2010 11.89307547 -3/19/2010 9.910896229 -3/20/2010 8.495053911 -3/21/2010 7.64554852 -3/22/2010 7.079211592 -3/23/2010 6.654458897 -3/24/2010 6.31465674 -3/25/2010 5.776636659 -3/26/2010 6.00317143 -3/27/2010 6.229706201 -3/28/2010 5.720002966 -3/29/2010 18.20773222 -3/30/2010 31.14853101 -3/31/2010 30.01585715 -4/1/2010 21.4358527 -4/2/2010 13.81862103 -4/3/2010 9.627727765 -4/4/2010 8.325152832 -4/5/2010 7.334063209 -4/6/2010 6.62614205 -4/7/2010 6.173072508 -4/8/2010 5.69168612 -4/9/2010 6.682775743 -4/10/2010 7.447330595 -4/11/2010 6.31465674 -4/12/2010 5.521785042 -4/13/2010 5.0687155 -4/14/2010 4.955448115 -4/15/2010 4.672279651 -4/16/2010 4.530695419 -4/17/2010 4.474061726 -4/18/2010 4.219210109 -4/19/2010 3.936041645 -4/20/2010 3.652873182 -4/21/2010 3.567922642 -4/22/2010 3.709506874 -4/23/2010 3.567922642 -4/24/2010 3.313071025 -4/25/2010 3.256437332 -4/26/2010 6.258023047 -4/27/2010 6.965944207 -4/28/2010 5.521785042 -4/29/2010 4.275843802 -4/30/2010 3.794457413 -5/1/2010 3.624556335 -5/2/2010 3.398021564 -5/3/2010 3.114853101 -5/4/2010 2.944952022 -5/5/2010 2.605149866 -5/6/2010 2.463565634 -5/7/2010 2.237030863 -5/8/2010 2.123763478 -5/9/2010 1.953862399 -5/10/2010 1.783961321 -5/11/2010 1.727327628 -5/12/2010 1.86891186 -5/13/2010 2.010496092 -5/14/2010 1.86891186 -5/15/2010 1.812278168 -5/16/2010 1.727327628 -5/17/2010 1.642377089 -5/18/2010 2.746734098 -5/19/2010 5.181982885 -5/20/2010 4.077625877 -5/21/2010 2.860001483 -5/22/2010 2.378615095 -5/23/2010 2.18039717 -5/24/2010 2.123763478 -5/25/2010 2.095446631 -5/26/2010 1.982179246 -5/27/2010 1.783961321 -5/28/2010 1.699010782 -5/29/2010 1.642377089 -5/30/2010 1.585743397 -5/31/2010 1.472476011 -6/1/2010 1.444159165 -6/2/2010 1.55742655 -6/3/2010 1.444159165 -6/4/2010 1.217624394 -6/5/2010 1.132673855 -6/6/2010 1.472476011 -6/7/2010 1.330891779 -6/8/2010 1.160990701 -6/9/2010 1.019406469 -6/10/2010 0.962772777 -6/11/2010 0.906139084 -6/12/2010 0.877822237 -6/13/2010 0.849505391 -6/14/2010 0.821188545 -6/15/2010 0.792871698 -6/16/2010 0.736238006 -6/17/2010 0.991089623 -6/18/2010 0.93445593 -6/19/2010 0.821188545 -6/20/2010 0.736238006 -6/21/2010 0.679604313 -6/22/2010 0.594653774 -6/23/2010 0.991089623 -6/24/2010 1.302574933 -6/25/2010 1.302574933 -6/26/2010 1.047723316 -6/27/2010 0.93445593 -6/28/2010 0.792871698 -6/29/2010 0.594653774 -6/30/2010 0.538020081 -7/1/2010 0.453069542 -7/2/2010 0.368119003 -7/3/2010 0.339802156 -7/4/2010 0.368119003 -7/5/2010 0.396435849 -7/6/2010 0.283168464 -7/7/2010 0.226534771 -7/8/2010 0.396435849 -7/9/2010 0.263346671 -7/10/2010 1.359208626 -7/11/2010 9.259608763 -7/12/2010 4.190893263 -7/13/2010 3.851091106 -7/14/2010 10.73208477 -7/15/2010 8.89148976 -7/16/2010 4.417428034 -7/17/2010 2.293664556 -7/18/2010 1.812278168 -7/19/2010 1.614060243 -7/20/2010 1.55742655 -7/21/2010 1.529109704 -7/22/2010 1.330891779 -7/23/2010 1.076040162 -7/24/2010 0.962772777 -7/25/2010 0.93445593 -7/26/2010 1.274258087 -7/27/2010 1.274258087 -7/28/2010 0.906139084 -7/29/2010 0.849505391 -7/30/2010 0.877822237 -7/31/2010 0.849505391 -8/1/2010 0.792871698 -8/2/2010 0.679604313 -8/3/2010 0.594653774 -8/4/2010 0.821188545 -8/5/2010 0.877822237 -8/6/2010 0.792871698 -8/7/2010 0.679604313 -8/8/2010 0.509703235 -8/9/2010 0.481386388 -8/10/2010 0.509703235 -8/11/2010 0.481386388 -8/12/2010 0.736238006 -8/13/2010 0.906139084 -8/14/2010 0.821188545 -8/15/2010 0.764554852 -8/16/2010 0.736238006 -8/17/2010 0.509703235 -8/18/2010 1.585743397 -8/19/2010 2.690100405 -8/20/2010 1.727327628 -8/21/2010 1.132673855 -8/22/2010 0.962772777 -8/23/2010 0.906139084 -8/24/2010 0.849505391 -8/25/2010 0.821188545 -8/26/2010 0.792871698 -8/27/2010 0.736238006 -8/28/2010 0.62297062 -8/29/2010 0.594653774 -8/30/2010 0.538020081 -8/31/2010 0.538020081 -9/1/2010 0.424752696 -9/2/2010 0.453069542 -9/3/2010 0.509703235 -9/4/2010 0.481386388 -9/5/2010 0.424752696 -9/6/2010 0.368119003 -9/7/2010 0.368119003 -9/8/2010 0.368119003 -9/9/2010 0.339802156 -9/10/2010 0.283168464 -9/11/2010 0.339802156 -9/12/2010 0.424752696 -9/13/2010 0.481386388 -9/14/2010 0.424752696 -9/15/2010 0.368119003 -9/16/2010 0.368119003 -9/17/2010 0.368119003 -9/18/2010 0.424752696 -9/19/2010 0.566336927 -9/20/2010 0.31148531 -9/21/2010 0.283168464 -9/22/2010 0.280336779 -9/23/2010 0.283168464 -9/24/2010 0.31148531 -9/25/2010 0.266178356 -9/26/2010 0.218039717 -9/27/2010 0.368119003 -9/28/2010 0.509703235 -9/29/2010 0.991089623 -9/30/2010 1.189307547 -10/1/2010 25.14535958 -10/2/2010 28.06199475 -10/3/2010 9.712678304 -10/4/2010 4.813863883 -10/5/2010 4.219210109 -10/6/2010 3.851091106 -10/7/2010 3.086536254 -10/8/2010 2.548516173 -10/9/2010 2.152080324 -10/10/2010 1.897228707 -10/11/2010 1.783961321 -10/12/2010 1.699010782 -10/13/2010 1.642377089 -10/14/2010 1.727327628 -10/15/2010 2.548516173 -10/16/2010 2.095446631 -10/17/2010 1.840595014 -10/18/2010 1.699010782 -10/19/2010 1.642377089 -10/20/2010 1.642377089 -10/21/2010 1.670693936 -10/22/2010 1.614060243 -10/23/2010 1.500792858 -10/24/2010 1.444159165 -10/25/2010 1.387525472 -10/26/2010 1.415842318 -10/27/2010 1.55742655 -10/28/2010 1.953862399 -10/29/2010 1.897228707 -10/30/2010 1.699010782 -10/31/2010 1.614060243 -11/1/2010 1.55742655 -11/2/2010 1.472476011 -11/3/2010 1.444159165 -11/4/2010 2.095446631 -11/5/2010 3.964358492 -11/6/2010 4.162576416 -11/7/2010 2.88831833 -11/8/2010 2.435248788 -11/9/2010 2.293664556 -11/10/2010 2.208714017 -11/11/2010 2.038812939 -11/12/2010 1.86891186 -11/13/2010 1.812278168 -11/14/2010 1.783961321 -11/15/2010 1.783961321 -11/16/2010 1.925545553 -11/17/2010 2.010496092 -11/18/2010 1.982179246 -11/19/2010 1.840595014 -11/20/2010 1.755644475 -11/21/2010 1.727327628 -11/22/2010 1.670693936 -11/23/2010 1.670693936 -11/24/2010 1.699010782 -11/25/2010 1.642377089 -11/26/2010 1.642377089 -11/27/2010 1.642377089 -11/28/2010 1.585743397 -11/29/2010 1.529109704 -11/30/2010 1.614060243 -12/1/2010 1.755644475 -12/2/2010 2.973268869 -12/3/2010 2.860001483 -12/4/2010 2.350298249 -12/5/2010 2.18039717 -12/6/2010 2.010496092 -12/7/2010 1.925545553 -12/8/2010 1.840595014 -12/9/2010 1.755644475 -12/10/2010 1.670693936 -12/11/2010 1.670693936 -12/12/2010 2.095446631 -12/13/2010 3.398021564 -12/14/2010 3.82277426 -12/15/2010 2.80336779 -12/16/2010 2.520199327 -12/17/2010 2.435248788 -12/18/2010 2.237030863 -12/19/2010 2.18039717 -12/20/2010 2.123763478 -12/21/2010 2.038812939 -12/22/2010 1.982179246 -12/23/2010 1.953862399 -12/24/2010 1.86891186 -12/25/2010 1.840595014 -12/26/2010 1.86891186 -12/27/2010 1.925545553 -12/28/2010 1.840595014 -12/29/2010 1.812278168 -12/30/2010 1.812278168 -12/31/2010 1.812278168 -1/1/2011 1.897228707 -1/2/2011 2.406931941 -1/3/2011 2.831684637 -1/4/2011 2.57683302 -1/5/2011 2.378615095 -1/6/2011 2.237030863 -1/7/2011 2.18039717 -1/8/2011 2.095446631 -1/9/2011 2.038812939 -1/10/2011 1.840595014 -1/11/2011 1.783961321 -1/12/2011 1.86891186 -1/13/2011 1.812278168 -1/14/2011 1.783961321 -1/15/2011 1.783961321 -1/16/2011 1.755644475 -1/17/2011 1.755644475 -1/18/2011 2.406931941 -1/19/2011 4.049309031 -1/20/2011 4.75723019 -1/21/2011 4.190893263 -1/22/2011 3.539605796 -1/23/2011 3.029902561 -1/24/2011 2.690100405 -1/25/2011 2.633466712 -1/26/2011 2.973268869 -1/27/2011 5.351883964 -1/28/2011 6.994261053 -1/29/2011 5.748319813 -1/30/2011 4.785547036 -1/31/2011 4.304160648 -2/1/2011 3.964358492 -2/2/2011 6.852676821 -2/3/2011 16.99010782 -2/4/2011 11.69485755 -2/5/2011 7.390696902 -2/6/2011 6.909310514 -2/7/2011 6.62614205 -2/8/2011 5.635052427 -2/9/2011 4.870497575 -2/10/2011 4.360794341 -2/11/2011 4.049309031 -2/12/2011 3.851091106 -2/13/2011 3.709506874 -2/14/2011 3.567922642 -2/15/2011 3.426338411 -2/16/2011 3.171486793 -2/17/2011 3.114853101 -2/18/2011 3.086536254 -2/19/2011 3.001585715 -2/20/2011 2.831684637 -2/21/2011 2.775050944 -2/22/2011 3.058219408 -2/23/2011 3.001585715 -2/24/2011 2.831684637 -2/25/2011 3.992675338 -2/26/2011 6.597825204 -2/27/2011 6.427924126 -2/28/2011 5.578418735 -3/1/2011 8.778222374 -3/2/2011 10.08079731 -3/3/2011 7.164162131 -3/4/2011 5.521785042 -3/5/2011 4.813863883 -3/6/2011 5.012081807 -3/7/2011 13.08238302 -3/8/2011 14.49822534 -3/9/2011 9.146341377 -3/10/2011 8.183568601 -3/11/2011 13.42218518 -3/12/2011 16.31050351 -3/13/2011 10.64713423 -3/14/2011 7.87208329 -3/15/2011 6.484557818 -3/16/2011 7.56059798 -3/17/2011 10.61881739 -3/18/2011 8.948123453 -3/19/2011 7.277429517 -3/20/2011 6.031488277 -3/21/2011 5.465151349 -3/22/2011 5.748319813 -3/23/2011 5.748319813 -3/24/2011 6.796043128 -3/25/2011 7.362380056 -3/26/2011 6.201389355 -3/27/2011 5.266933425 -3/28/2011 4.75723019 -3/29/2011 4.417428034 -3/30/2011 4.105942723 -3/31/2011 4.077625877 -4/1/2011 4.275843802 -4/2/2011 4.304160648 -4/3/2011 4.077625877 -4/4/2011 3.794457413 -4/5/2011 3.737823721 -4/6/2011 3.879407953 -4/7/2011 3.567922642 -4/8/2011 3.482972103 -4/9/2011 3.851091106 -4/10/2011 3.907724799 -4/11/2011 3.766140567 -4/12/2011 3.709506874 -4/13/2011 4.219210109 -4/14/2011 4.559012265 -4/15/2011 4.105942723 -4/16/2011 4.360794341 -4/17/2011 21.8039717 -4/18/2011 21.32258532 -4/19/2011 11.77980809 -4/20/2011 8.495053911 -4/21/2011 6.880993668 -4/22/2011 5.606735581 -4/23/2011 5.097032346 -4/24/2011 5.040398654 -4/25/2011 6.682775743 -4/26/2011 7.305746363 -4/27/2011 6.00317143 -4/28/2011 5.040398654 -4/29/2011 4.672279651 -4/30/2011 4.105942723 -5/1/2011 3.681190028 -5/2/2011 3.454655257 -5/3/2011 3.284754179 -5/4/2011 3.596239489 -5/5/2011 4.162576416 -5/6/2011 3.737823721 -5/7/2011 3.341387872 -5/8/2011 3.086536254 -5/9/2011 2.860001483 -5/10/2011 2.661783559 -5/11/2011 2.463565634 -5/12/2011 2.321981402 -5/13/2011 2.237030863 -5/14/2011 2.293664556 -5/15/2011 3.058219408 -5/16/2011 3.313071025 -5/17/2011 2.88831833 -5/18/2011 2.605149866 -5/19/2011 2.520199327 -5/20/2011 2.80336779 -5/21/2011 2.605149866 -5/22/2011 2.265347709 -5/23/2011 2.095446631 -5/24/2011 1.982179246 -5/25/2011 1.86891186 -5/26/2011 1.727327628 -5/27/2011 1.614060243 -5/28/2011 1.529109704 -5/29/2011 1.472476011 -5/30/2011 1.415842318 -5/31/2011 1.359208626 -6/1/2011 1.274258087 -6/2/2011 1.160990701 -6/3/2011 1.047723316 -6/4/2011 0.962772777 -6/5/2011 0.991089623 -6/6/2011 1.076040162 -6/7/2011 1.047723316 -6/8/2011 0.962772777 -6/9/2011 0.906139084 -6/10/2011 1.132673855 -6/11/2011 1.444159165 -6/12/2011 1.953862399 -6/13/2011 3.596239489 -6/14/2011 1.925545553 -6/15/2011 1.359208626 -6/16/2011 1.189307547 -6/17/2011 1.217624394 -6/18/2011 1.132673855 -6/19/2011 0.962772777 -6/20/2011 0.991089623 -6/21/2011 1.019406469 -6/22/2011 1.302574933 -6/23/2011 1.24594124 -6/24/2011 1.019406469 -6/25/2011 0.877822237 -6/26/2011 0.651287466 -6/27/2011 0.509703235 -6/28/2011 0.679604313 -6/29/2011 0.62297062 -6/30/2011 0.424752696 -7/1/2011 0.424752696 -7/2/2011 0.257683302 -7/3/2011 0.396435849 -7/4/2011 0.651287466 -7/5/2011 0.566336927 -7/6/2011 0.566336927 -7/7/2011 0.679604313 -7/8/2011 0.962772777 -7/9/2011 3.001585715 -7/10/2011 1.585743397 -7/11/2011 1.019406469 -7/12/2011 0.792871698 -7/13/2011 0.481386388 -7/14/2011 0.424752696 -7/15/2011 0.339802156 -7/16/2011 0.368119003 -7/17/2011 0.215208032 -7/18/2011 0.178396132 -7/19/2011 0.181227817 -7/20/2011 0.736238006 -7/21/2011 1.302574933 -7/22/2011 0.566336927 -7/23/2011 0.31148531 -7/24/2011 0.339802156 -7/25/2011 0.424752696 -7/26/2011 0.481386388 -7/27/2011 0.283168464 -7/28/2011 0.147247601 -7/29/2011 0.192554555 -7/30/2011 0.07928717 -7/31/2011 0.175564447 -8/1/2011 0.237861509 -8/2/2011 0.31148531 -8/3/2011 0.453069542 -8/4/2011 0.509703235 -8/5/2011 0.481386388 -8/6/2011 0.396435849 -8/7/2011 0.339802156 -8/8/2011 0.260514987 -8/9/2011 0.212376348 -8/10/2011 0.138752547 -8/11/2011 0.065128747 -8/12/2011 0.065128747 -8/13/2011 0.133089178 -8/14/2011 6.258023047 -8/15/2011 11.2984217 -8/16/2011 10.98693639 -8/17/2011 6.654458897 -8/18/2011 2.463565634 -8/19/2011 2.18039717 -8/20/2011 6.031488277 -8/21/2011 6.201389355 -8/22/2011 4.190893263 -8/23/2011 2.860001483 -8/24/2011 1.982179246 -8/25/2011 2.49188248 -8/26/2011 3.341387872 -8/27/2011 14.72476011 -8/28/2011 246.3565634 -8/29/2011 192.5545553 -8/30/2011 84.95053911 -8/31/2011 25.88159758 -9/1/2011 14.35664111 -9/2/2011 9.20297507 -9/3/2011 7.362380056 -9/4/2011 6.62614205 -9/5/2011 5.720002966 -9/6/2011 5.38020081 -9/7/2011 7.702182212 -9/8/2011 13.22396725 -9/9/2011 20.30317885 -9/10/2011 19.96337669 -9/11/2011 12.17624394 -9/12/2011 9.061390838 -9/13/2011 8.013667522 -9/14/2011 6.909310514 -9/15/2011 6.00317143 -9/16/2011 5.097032346 -9/17/2011 4.530695419 -9/18/2011 4.190893263 -9/19/2011 3.964358492 -9/20/2011 3.82277426 -9/21/2011 3.794457413 -9/22/2011 3.624556335 -9/23/2011 3.766140567 -9/24/2011 4.898814422 -9/25/2011 5.550101888 -9/26/2011 4.728913344 -9/27/2011 4.304160648 -9/28/2011 8.58000445 -9/29/2011 13.90357157 -9/30/2011 9.457826687 diff --git a/data/ChoptankRiverNitrate.csv b/data/ChoptankRiverNitrate.csv deleted file mode 100644 index dbe882ea77d4f2238f20ec9d5e18642a52c80e38..0000000000000000000000000000000000000000 --- a/data/ChoptankRiverNitrate.csv +++ /dev/null @@ -1,8 +0,0 @@ -cdate;remarkCode;Nitrate -1999-10-07;;1.4 -1999-11-04;;0.99 -1999-12-30;;1.42 -2000-01-04;;1.59 -2000-02-03;;1.54 -2000-02-15;;1.37 -2000-02-19;;1.24 diff --git a/inst/tests/test_2.R b/inst/tests/test_2.R index dcc64157890aaaf846ff17ae974537156e8ff98d..ed8ea4f39a5f56685736b6f7c64af63ac2b23a7c 100644 --- a/inst/tests/test_2.R +++ b/inst/tests/test_2.R @@ -4,9 +4,6 @@ expect_that(dateFormatCheck('1985-01-01'), is_true()) expect_that(dateFormatCheck('01/01/1985'), is_false()) # formatCheckSiteNumber: -expect_that(formatCheckSiteNumber('01594440'),prints_text('01594440')) -# formatCheckParameterCd: -expect_that(formatCheckParameterCd('00001'),prints_text('00001')) # formatCheckDate: expect_that(formatCheckDate('1985-01-01', "startDate"),prints_text('1985-01-01')) # checkStartEndDate: @@ -60,8 +57,6 @@ dataInputForPopulateSampleData <- compressData(dataInputForCompressData) # Date <- as.character(Date) dataReturnForPopulateSampleColumns <- data.frame(Date, ConcLow, ConcHigh, Uncen, ConcAve, dataReturnForPopulateDateColumns[,-1], SinDY, CosDY, stringsAsFactors=FALSE) # populateSampleColumns -####################################### next 1 has issues..... -expect_that(populateSampleColumns(dataInputForPopulateSampleData), equals(dataReturnForPopulateSampleColumns)) code <- comment2 dataInputForPopulateConcentrations <- data.frame(value, code, stringsAsFactors=FALSE) @@ -84,44 +79,15 @@ expect_that(actualReturnFromRemoveDuplicates$DecYear, equals(dataReturnForRemove expect_that(actualReturnFromRemoveDuplicates$ConcHigh, equals(dataReturnForRemoveDuplicates$ConcHigh)) -# getPreLoadedDailyData: -#data(ChoptankRiverNitrate) -filePathToExampleData = "~/RData/" -pathToChopQ <- paste(filePathToExampleData, "ChoptankRiverFlow.txt", sep="") -pathToChopNit <- paste(filePathToExampleData, "ChoptankRiverNitrate.csv", sep="") -ChopQ <- read.delim(pathToChopQ, header = TRUE, colClasses=c('character'), sep="\t", fill = TRUE, comment.char="#") -ChopNit <- read.delim(pathToChopNit, header = TRUE, colClasses=c('character'), sep=";", fill = TRUE, comment.char="#") -Daily1 <- getPreLoadedDailyData(ChopQ, interactive=FALSE) - -expect_that(Daily1$Date[1], equals(as.Date("1999-10-01"))) -expect_that(Daily1$Q[1], equals(0.08579728533189906469758)) -expect_that(Daily1$Julian[1], equals(54694)) -expect_that(Daily1$Month[1], equals(10)) -expect_that(Daily1$Day[1], equals(274)) -expect_that(Daily1$DecYear[1], equals(1999.747267759562873835)) -expect_that(Daily1$MonthSeq[1], equals(1798)) -expect_that(Daily1$LogQ[1], equals(-2.455767912477115455516)) -expect_that(Daily1$Q7[7], equals(0.07308233384405732335765)) -expect_that(Daily1$Q30[30], equals(0.07724428493501958592482)) - # retrieveNWISData: -Daily2 <- retrieveNWISData('01594440','00060', '1985-01-01', '1985-01-31') +Daily2 <- getNWISdvData('01594440','00060', '1985-01-01', '1985-01-31') expect_that(Daily2$agency[1], equals("USGS")) expect_that(Daily2$site[1], equals("01594440")) -expect_that(Daily2$dateTime[1], equals(as.Date("1985-01-01"))) -expect_that(Daily2$value[1], equals(157)) -expect_that(Daily2$code[1], equals("A")) # getNWISSiteInfo: INFO1 <- getNWISSiteInfo('01594440') expect_that(INFO1$station.nm, equals("PATUXENT RIVER NEAR BOWIE, MD")) -# getQWData: -Sample1 <- getQWData('01594440','01075', '1985-01-01', '1985-03-31') -expect_that(Sample1$dateTime[1], equals(as.Date("1985-03-13"))) -expect_that(Sample1$qualifier.01075[1], equals("<")) -expect_that(Sample1$value.01075[1], equals(1)) - # getNWISPcodeInfo: INFO2 <- getNWISPcodeInfo('01075') expect_that(INFO2$parameter_nm, equals("Silver, water, filtered, micrograms per liter")) @@ -135,11 +101,9 @@ INFO2$param.nm <- INFO2$parameter_nm INFO2$param.units <- INFO2$parameter_units INFO2$paramShortName <- INFO2$srsname INFO2$paramNumber <- INFO2$parameter_cd -INFO2 <- populateParameterINFO(INFO2, '01075', interactive=FALSE) -expect_that(INFO2$constitAbbrev, equals(INFO2$paramShortName)) # getDVData: -Daily <- getDVData('01594440','00060', '1985-01-01', '1985-03-31', interactive=FALSE) +Daily <- getNWISDaily('01594440','00060', '1985-01-01', '1985-03-31', interactive=FALSE) expect_that(Daily$Date[1], equals(as.Date("1985-01-01"))) expect_that(Daily$Q[1], equals(4.44574488)) expect_that(Daily$Julian[1], equals(49308)) @@ -151,7 +115,7 @@ expect_that(Daily$LogQ[1], equals(1.49194743)) expect_that(Daily$Q7[7], equals(8.725634)) # getSampleData: -Sample <- getSampleData('01594440','01075', '1985-01-01', '1985-03-31', interactive=FALSE) +Sample <- getNWISSample('01594440','01075', '1985-01-01', '1985-03-31', interactive=FALSE) expect_that(Sample$Date, equals(as.Date("1985-03-13"))) expect_that(Sample$ConcLow, equals(NA)) expect_that(Sample$ConcHigh, equals(1)) @@ -159,29 +123,4 @@ expect_that(Sample$Uncen, equals(0)) expect_that(Sample$ConcAve, equals(0.5)) expect_that(Sample$Julian, equals(49379)) expect_that(Sample$Month, equals(3)) -expect_that(Sample$Day, equals(72)) -expect_that(Sample$MonthSeq, equals(1623)) -expect_that(Sample$DecYear, equals(1985.195355)) -expect_that(Sample$SinDY, equals(0.9416344)) -expect_that(Sample$CosDY, equals(0.336637284)) - -# getMetaData: -INFO <- getMetaData('05114000','00010',interactive=FALSE) -expect_that(INFO$station.nm, equals("SOURIS RIVER NR SHERWOOD, ND")) -expect_that(INFO$paramShortName, equals("Temperature, water")) - -# data(ChoptankRiverFlow) -filePathToExampleData = "D:/LADData/R Code/gitWRTDS/MainRCodes/dataRetrieval/data/" -pathToChopQ <- paste(filePathToExampleData, "ChoptankRiverFlow.txt", sep="") -pathToChopNit <- paste(filePathToExampleData, "ChoptankRiverNitrate.csv", sep="") -ChopQ <- read.delim(pathToChopQ, header = TRUE, colClasses=c('character'), sep="\t", fill = TRUE, comment.char="#") -ChopNit <- read.delim(pathToChopNit, header = TRUE, colClasses=c('character'), sep=";", fill = TRUE, comment.char="#") - -# getPreLoadedSampleData: -Sample1 <- getPreLoadedSampleData(ChoptankRiverNitrate, interactive=FALSE) -expect_that(Sample1$Uncen[135], equals(1)) -expect_that(Sample1$ConcLow[135], equals(1.42)) -expect_that(Sample1$ConcAve[135], equals(1.42)) - - diff --git a/man/ChoptankRiverFlow.Rd b/man/ChoptankRiverFlow.Rd deleted file mode 100644 index 9f63b70b08e7e9b45ecec338b3cc1b5a46e2d183..0000000000000000000000000000000000000000 --- a/man/ChoptankRiverFlow.Rd +++ /dev/null @@ -1,15 +0,0 @@ -% Generated by roxygen2 (4.0.2): do not edit by hand -\docType{data} -\name{ChoptankRiverFlow} -\alias{ChoptankRiverFlow} -\title{Example Streamflow Data included in dataRetrieval} -\description{ -Example data representing Streamflow and Nitrate from the Choptank River at Greensboro, MD, USGS data -} -\author{ -Robert M. Hirsch \email{rhirsch@usgs.gov} -} -\keyword{data} -\keyword{flow} -\keyword{water} - diff --git a/man/ChoptankRiverNitrate.Rd b/man/ChoptankRiverNitrate.Rd deleted file mode 100644 index a9a07745f12958cba7e57918c008ec17054d453f..0000000000000000000000000000000000000000 --- a/man/ChoptankRiverNitrate.Rd +++ /dev/null @@ -1,15 +0,0 @@ -% Generated by roxygen2 (4.0.2): do not edit by hand -\docType{data} -\name{ChoptankRiverNitrate} -\alias{ChoptankRiverNitrate} -\title{Example Water Quality Data included in dataRetrieval} -\description{ -Example data representing Nitrate from the Choptank River at Greensboro, MD, USGS data -} -\author{ -Robert M. Hirsch \email{rhirsch@usgs.gov} -} -\keyword{data} -\keyword{quality} -\keyword{water} - diff --git a/man/constructNWISURL.Rd b/man/constructNWISURL.Rd index bc503ef25d639e879ca3f9ebe3f1de2969bf81a4..c8208e01258b31856cfcb9d24994db044efc515d 100644 --- a/man/constructNWISURL.Rd +++ b/man/constructNWISURL.Rd @@ -16,7 +16,7 @@ constructNWISURL(siteNumber, parameterCd, startDate, endDate, service, \item{endDate}{string ending date for data retrieval in the form YYYY-MM-DD.} -\item{service}{string USGS service to call. Possible values are "dv" (daily values), "uv" (unit/instantaneous values), "qw" (water quality data), and "wqp" (water quality portal, which can include STORET).} +\item{service}{string USGS service to call. Possible values are "dv" (daily values), "uv" (unit/instantaneous values), "qw" (water quality data), "gwlevels" (groundwater),and "wqp" (water quality portal, which can include STORET).} \item{statCd}{string or vector USGS statistic code only used for daily value service. This is usually 5 digits. Daily mean (00003) is the default.} diff --git a/man/dataOverview.Rd b/man/dataOverview.Rd index e52b5e5c45c82ed85dcc19b83401f81c80ed9e6d..e8fdb6c6cc17af832e76549f5403e98bb8a34950 100644 --- a/man/dataOverview.Rd +++ b/man/dataOverview.Rd @@ -3,12 +3,12 @@ \alias{dataOverview} \title{Data Overview for WRTDS} \usage{ -dataOverview(localDaily = Daily, localSample = Sample) +dataOverview(Daily, Sample) } \arguments{ -\item{localDaily}{dataframe} +\item{Daily}{dataframe} -\item{localSample}{dataframe} +\item{Sample}{dataframe} } \description{ Gives a summary of data to be used for WRTDS analysis @@ -17,7 +17,7 @@ Gives a summary of data to be used for WRTDS analysis # These examples require an internet connection to run exDaily <- getNWISDaily('01594440','00060', '1985-01-01', '1985-03-31', interactive=FALSE) exSample <- getNWISSample('01594440','01075', '1985-01-01', '1985-03-31', interactive=FALSE) -dataOverview(localDaily = exDaily, localSample = exSample) +dataOverview(Daily = exDaily, Sample = exSample) } \seealso{ \code{\link{mergeReport}} diff --git a/man/dataRetrieval-package.Rd b/man/dataRetrieval-package.Rd index b7f83a2b966dec71e435985eaed6b1eaa3ae5eb8..06e4b1493549825394033e4d506114e541c1d8cc 100644 --- a/man/dataRetrieval-package.Rd +++ b/man/dataRetrieval-package.Rd @@ -7,7 +7,7 @@ \tabular{ll}{ Package: \tab dataRetrieval\cr Type: \tab Package\cr -Version: \tab 1.3.3\cr +Version: \tab 1.4.0\cr Date: \tab 2014-09-16\cr License: \tab Unlimited for this package, dependencies have more restrictive licensing.\cr Copyright: \tab This software is in the public domain because it contains materials diff --git a/man/getDVData.Rd b/man/getDVData.Rd deleted file mode 100644 index fd8fa266416c7b8e870ddf59732ac8a41564e268..0000000000000000000000000000000000000000 --- a/man/getDVData.Rd +++ /dev/null @@ -1,47 +0,0 @@ -% Generated by roxygen2 (4.0.2): do not edit by hand -\name{getDVData} -\alias{getDVData} -\title{Import Daily Data for WRTDS} -\usage{ -getDVData(siteNumber, parameterCd, startDate, endDate, interactive = TRUE, - convert = TRUE, format = "tsv") -} -\arguments{ -\item{siteNumber}{string USGS site number. This is usually an 8 digit number} - -\item{parameterCd}{string USGS parameter code. This is usually an 5 digit number.} - -\item{startDate}{string starting date for data retrieval in the form YYYY-MM-DD.} - -\item{endDate}{string ending date for data retrieval in the form YYYY-MM-DD.} - -\item{interactive}{logical Option for interactive mode. If true, there is user interaction for error handling and data checks.} - -\item{convert}{logical Option to include a conversion from cfs to cms (35.314667). The default is TRUE, -which is appropriate for using NWIS data in the EGRET package. Set this to FALSE to not include the conversion. If the parameter code is not 00060 (NWIS discharge), -there is no conversion applied.} - -\item{format}{string, can be "tsv" or "xml", and is only applicable for daily and unit value requests. "tsv" returns results faster, but there is a possiblitiy that an incomplete file is returned without warning. XML is slower, -but will offer a warning if the file was incomplete (for example, if there was a momentary problem with the internet connection). It is possible to safely use the "tsv" option, -but the user must carefully check the results to see if the data returns matches what is expected. The default is "tsv".} -} -\value{ -Daily dataframe -} -\description{ -This function is being deprecated for \code{\link{getNWISDaily}}. -} -\examples{ -# These examples require an internet connection to run -\dontrun{Daily <- getDVData('01594440','00060', '1985-01-01', '1985-03-31')} -\dontrun{DailyCFS <- getDVData('01594440','00060', '1985-01-01', '1985-03-31',convert=FALSE)} -\dontrun{DailySuspSediment <- getDVData('01594440','80154', '1985-01-01', '1985-03-31')} -} -\seealso{ -\code{\link{getNWISdvData}}, \code{\link{populateDaily}}, \code{\link{getNWISData}} -} -\keyword{USGS} -\keyword{WRTDS} -\keyword{data} -\keyword{import} - diff --git a/man/getDataAvailability.Rd b/man/getDataAvailability.Rd deleted file mode 100644 index b4955943661147c9fb24bc6c8fac9d533c3e9893..0000000000000000000000000000000000000000 --- a/man/getDataAvailability.Rd +++ /dev/null @@ -1,31 +0,0 @@ -% Generated by roxygen2 (4.0.2): do not edit by hand -\name{getDataAvailability} -\alias{getDataAvailability} -\title{USGS data availability} -\usage{ -getDataAvailability(siteNumber, type = c("uv", "dv", "qw")) -} -\arguments{ -\item{siteNumber}{string USGS site number.} - -\item{type}{vector string. Options are "uv", "dv", "qw"} -} -\value{ -retval dataframe with all information found in the expanded site file -} -\description{ -This function is being deprecated for \code{\link{getNWISDataAvailability}}. -} -\examples{ -# These examples require an internet connection to run -\dontrun{availableData <- getDataAvailability('05114000')} -# To find just unit value ('instantaneous') data: -\dontrun{uvData <- getDataAvailability('05114000',type="uv")} -\dontrun{uvDataMulti <- getDataAvailability(c('05114000','09423350'),type="uv")} -} -\keyword{USGS} -\keyword{data} -\keyword{import} -\keyword{service} -\keyword{web} - diff --git a/man/getMetaData.Rd b/man/getMetaData.Rd deleted file mode 100644 index 92df4ef0a327374d62d5e26eb06503e6c1dae612..0000000000000000000000000000000000000000 --- a/man/getMetaData.Rd +++ /dev/null @@ -1,32 +0,0 @@ -% Generated by roxygen2 (4.0.2): do not edit by hand -\name{getMetaData} -\alias{getMetaData} -\title{Import Metadata for USGS Data} -\usage{ -getMetaData(siteNumber = "", parameterCd = "", interactive = TRUE) -} -\arguments{ -\item{siteNumber}{string USGS site number. This is usually an 8 digit number} - -\item{parameterCd}{string USGS parameter code. This is usually an 5 digit number.} - -\item{interactive}{logical Option for interactive mode. If true, there is user interaction for error handling and data checks.} -} -\value{ -INFO dataframe with agency, site, dateTime, value, and code columns -} -\description{ -This function is being deprecated for \code{\link{getNWISInfo}}. -} -\examples{ -# These examples require an internet connection to run -# Automatically gets information about site 05114000 and temperature, no interaction with user -INFO <- getMetaData('05114000','00010') -} -\keyword{USGS} -\keyword{WRTDS} -\keyword{data} -\keyword{import} -\keyword{service} -\keyword{web} - diff --git a/man/getParameterInfo.Rd b/man/getParameterInfo.Rd deleted file mode 100644 index 1dcd19e33b11ee1834d754cde74ddb2b7c613a88..0000000000000000000000000000000000000000 --- a/man/getParameterInfo.Rd +++ /dev/null @@ -1,28 +0,0 @@ -% Generated by roxygen2 (4.0.2): do not edit by hand -\name{getParameterInfo} -\alias{getParameterInfo} -\title{USGS Parameter Data Retrieval} -\usage{ -getParameterInfo(parameterCd, interactive = TRUE) -} -\arguments{ -\item{parameterCd}{vector of USGS parameter codes. This is usually an 5 digit number.} - -\item{interactive}{logical Option for interactive mode. If true, there is user interaction for error handling and data checks.} -} -\value{ -parameterData dataframe with all information from the USGS about the particular parameter (usually code, name, short name, units, and CAS registry numbers) -} -\description{ -This function is being deprecated for \code{\link{getNWISPcodeInfo}}. -} -\examples{ -# These examples require an internet connection to run -paramINFO <- getParameterInfo (c('01075','00060','00931')) -} -\keyword{USGS} -\keyword{data} -\keyword{import} -\keyword{service} -\keyword{web} - diff --git a/man/getSTORETSampleData.Rd b/man/getSTORETSampleData.Rd deleted file mode 100644 index b478d3045695cfd4c0a7e74ba975edcde4c1e650..0000000000000000000000000000000000000000 --- a/man/getSTORETSampleData.Rd +++ /dev/null @@ -1,38 +0,0 @@ -% Generated by roxygen2 (4.0.2): do not edit by hand -\name{getSTORETSampleData} -\alias{getSTORETSampleData} -\title{Import Sample Data for WRTDS} -\usage{ -getSTORETSampleData(siteNumber, characteristicName, startDate, endDate, - interactive = TRUE) -} -\arguments{ -\item{siteNumber}{string site number. If USGS, it should be in the form :'USGS-XXXXXXXXX...'} - -\item{characteristicName}{string} - -\item{startDate}{string starting date for data retrieval in the form YYYY-MM-DD.} - -\item{endDate}{string ending date for data retrieval in the form YYYY-MM-DD.} - -\item{interactive}{logical Option for interactive mode. If true, there is user interaction for error handling and data checks.} -} -\value{ -Sample dataframe -} -\description{ -This function is being deprecated for \code{\link{getWQPSample}}. -} -\examples{ -# These examples require an internet connection to run -\dontrun{Sample_01075 <- getSTORETSampleData('USGS-01594440','Chloride', '', '')} -\dontrun{Sample_All <- getSTORETSampleData('WIDNR_WQX-10032762','Specific conductance', '', '')} -} -\seealso{ -\code{\link{getWQPSample}} -} -\keyword{USGS} -\keyword{WRTDS} -\keyword{data} -\keyword{import} - diff --git a/man/getSampleData.Rd b/man/getSampleData.Rd deleted file mode 100644 index e2f1b497c541d868b58ab1c71a888462d9023351..0000000000000000000000000000000000000000 --- a/man/getSampleData.Rd +++ /dev/null @@ -1,38 +0,0 @@ -% Generated by roxygen2 (4.0.2): do not edit by hand -\name{getSampleData} -\alias{getSampleData} -\title{Import Sample Data for WRTDS} -\usage{ -getSampleData(siteNumber, parameterCd, startDate, endDate, interactive = TRUE) -} -\arguments{ -\item{siteNumber}{string USGS site number. This is usually an 8 digit number} - -\item{parameterCd}{string USGS parameter code. This is usually an 5 digit number.} - -\item{startDate}{string starting date for data retrieval in the form YYYY-MM-DD.} - -\item{endDate}{string ending date for data retrieval in the form YYYY-MM-DD.} - -\item{interactive}{logical Option for interactive mode. If true, there is user interaction for error handling and data checks.} -} -\value{ -Sample dataframe -} -\description{ -This function is being deprecated for \code{\link{getNWISSample}}. -} -\examples{ -# These examples require an internet connection to run -\dontrun{Sample_01075 <- getSampleData('01594440','01075', '1985-01-01', '1985-03-31')} -\dontrun{Sample_All <- getSampleData('05114000','00915;00931', '1985-01-01', '1985-03-31')} -\dontrun{Sample_Select <- getSampleData('05114000','00915;00931', '', '')} -} -\seealso{ -\code{\link{compressData}}, \code{\link{populateSampleColumns}}, \code{\link{getNWISSample}} -} -\keyword{USGS} -\keyword{WRTDS} -\keyword{data} -\keyword{import} - diff --git a/man/getSampleDataFromFile.Rd b/man/getSampleDataFromFile.Rd deleted file mode 100644 index ee25a09c5fc0f71e70180d9629d778b83658896b..0000000000000000000000000000000000000000 --- a/man/getSampleDataFromFile.Rd +++ /dev/null @@ -1,35 +0,0 @@ -% Generated by roxygen2 (4.0.2): do not edit by hand -\name{getSampleDataFromFile} -\alias{getSampleDataFromFile} -\title{Import Sample Data for WRTDS} -\usage{ -getSampleDataFromFile(filePath, fileName, hasHeader = TRUE, separator = ",", - interactive = TRUE) -} -\arguments{ -\item{filePath}{string specifying the path to the file} - -\item{fileName}{string name of file to open} - -\item{hasHeader}{logical true if the first row of data is the column headers} - -\item{separator}{string character that separates data cells} - -\item{interactive}{logical Option for interactive mode. If true, there is user interaction for error handling and data checks.} -} -\value{ -Sample dataframe -} -\description{ -This function is being deprecated for \code{\link{getUserSample}}. -} -\examples{ -filePath <- system.file("extdata", package="dataRetrieval") -filePath <- paste(filePath,"/",sep="") -fileName <- 'ChoptankRiverNitrate.csv' -\dontrun{Sample <- getSampleDataFromFile(filePath,fileName, separator=";",interactive=FALSE)} -} -\keyword{data} -\keyword{file} -\keyword{import} - diff --git a/man/getSiteFileData.Rd b/man/getSiteFileData.Rd deleted file mode 100644 index 7eeecdf26f3377eb490f1904885f4075d6a70a28..0000000000000000000000000000000000000000 --- a/man/getSiteFileData.Rd +++ /dev/null @@ -1,27 +0,0 @@ -% Generated by roxygen2 (4.0.2): do not edit by hand -\name{getSiteFileData} -\alias{getSiteFileData} -\title{USGS Site File Data Retrieval} -\usage{ -getSiteFileData(siteNumber) -} -\arguments{ -\item{siteNumber}{string USGS site number. This is usually an 8 digit number} -} -\value{ -retval dataframe with all information found in the expanded site file -} -\description{ -This function is being deprecated for \code{\link{getNWISSiteInfo}}. -} -\examples{ -# These examples require an internet connection to run -\dontrun{siteINFO <- getSiteFileData('05114000')} -\dontrun{siteINFOMulti <- getSiteFileData(c('05114000','09423350'))} -} -\keyword{USGS} -\keyword{data} -\keyword{import} -\keyword{service} -\keyword{web} - diff --git a/man/getWQPData.Rd b/man/getWQPData.Rd index c46578d06675cbb8442038e65d4048ec39c38f89..7fa0bdd33b8da644b53bd7292c033bf145c4c729 100644 --- a/man/getWQPData.Rd +++ b/man/getWQPData.Rd @@ -17,9 +17,11 @@ Imports data from Water Quality Portal web service. This function gets the data because it allows for other agencies rather than the USGS. } \examples{ +\dontrun{ nameToUse <- "pH" pHData <- getWQPData(siteid="USGS-04024315",characteristicName=nameToUse) } +} \keyword{WQP} \keyword{data} \keyword{import} diff --git a/man/getWQPInfo.Rd b/man/getWQPInfo.Rd index 319513b4f0dd181beceb826b22ea9d82c5ef3a8e..46eb210ed08aa5c83c1e4035c4e2581013163f22 100644 --- a/man/getWQPInfo.Rd +++ b/man/getWQPInfo.Rd @@ -26,12 +26,14 @@ constitAbbrev - constitute abbreviation # Automatically gets information about site 01594440 and temperature, no interaction with user nameToUse <- 'Specific conductance' pcodeToUse <- '00095' +\dontrun{ INFO <- getWQPInfo('USGS-04024315',pcodeToUse,interactive=TRUE) INFO2 <- getWQPInfo('WIDNR_WQX-10032762',nameToUse) # To adjust the label names: INFO$shortName <- "Little" INFO$paramShortName <- "SC" } +} \keyword{USGS} \keyword{WRTDS} \keyword{data} diff --git a/man/getWQPSample.Rd b/man/getWQPSample.Rd index 4fb18800d312d3a52cbd44f9d86f27bac8a05d29..6418f32a98fce6ad5546d55b35ac9d2b9c78d148 100644 --- a/man/getWQPSample.Rd +++ b/man/getWQPSample.Rd @@ -27,9 +27,11 @@ chapter 7 of the EGRET user guide for more details, then converts it to the Samp } \examples{ # These examples require an internet connection to run +\dontrun{ Sample_01075 <- getWQPSample('USGS-01594440','Chloride', '', '') Sample_All <- getWQPSample('WIDNR_WQX-10032762','Specific conductance', '', '') } +} \seealso{ \code{\link{getWQPData}}, \code{\link{getWQPSites}}, \code{\link{getWQPqwData}}, \code{\link{getNWISqwData}}, and \code{\link{readWQPData}}, diff --git a/man/getWQPSites.Rd b/man/getWQPSites.Rd index 343631dfcf86701c8f14ec518d245f91b2f18273..6ac4d2163e830967c3d04f2d2b61cc5b518a3af7 100644 --- a/man/getWQPSites.Rd +++ b/man/getWQPSites.Rd @@ -17,10 +17,12 @@ Returns a list of sites from the Water Quality Portal web service. This function Arguments to the function should be based on \url{www.waterqualitydata.us/webservices_documentation.jsp} } \examples{ +\dontrun{ site1 <- getWQPSites(siteid="USGS-01594440") type <- "Stream" sites <- getWQPSites(statecode="US:55",countycode="US:55:025",siteType=type) } +} \keyword{WQP} \keyword{data} \keyword{import} diff --git a/man/getWQPqwData.Rd b/man/getWQPqwData.Rd index 44c6244eef89d43b496826606cd61cf3dd215776..4eb60fd4385a70b91ff24a6b989985f655e668a2 100644 --- a/man/getWQPqwData.Rd +++ b/man/getWQPqwData.Rd @@ -31,12 +31,14 @@ site name, such as 'USGS-01234567'. } \examples{ # These examples require an internet connection to run +\dontrun{ rawPcode <- getWQPqwData('USGS-01594440','01075', '1985-01-01', '1985-03-31') rawCharacteristicName <- getWQPqwData('WIDNR_WQX-10032762','Specific conductance', '', '') } +} \seealso{ \code{\link{getWQPData}}, \code{\link{getWQPSites}}, -\code{\link{getSTORETSampleData}}, \code{\link{getNWISqwData}}, and \code{\link{readWQPData}} +\code{\link{getNWISqwData}}, and \code{\link{readWQPData}} } \keyword{USGS} \keyword{data} diff --git a/man/getWaterML1Data.Rd b/man/getWaterML1Data.Rd index 575e44579cfa19b48b1cb8447e193342c12f08ca..4284dfbf438cde0afbd036293ba96acef4f7401d 100644 --- a/man/getWaterML1Data.Rd +++ b/man/getWaterML1Data.Rd @@ -21,14 +21,18 @@ startDate <- "2012-09-01" endDate <- "2012-10-01" offering <- '00003' property <- '00060' +urlBase <- "http://waterservices.usgs.gov/nwis" obs_url <- constructNWISURL(siteNumber,property,startDate,endDate,'dv') data <- getWaterML1Data(obs_url) urlMulti <- constructNWISURL("04085427",c("00060","00010"), startDate,endDate,'dv',statCd=c("00003","00001")) multiData <- getWaterML1Data(urlMulti) -goundwaterExampleURL <- - "http://waterservices.usgs.gov/nwis/gwlevels/?format=waterml&sites=431049071324301&startDT=2013-10-01&endDT=2014-06-30" -groundWater <- getWaterML1Data(goundwaterExampleURL) +groundWaterSite <- "431049071324301" +startGW <- "2013-10-01" +endGW <- "2014-06-30" +groundwaterExampleURL <- constructNWISURL(groundWaterSite, NA, + startGW,endGW, service="gwlevels", format="xml",interactive=FALSE) +groundWater <- getWaterML1Data(groundwaterExampleURL) unitDataURL <- constructNWISURL(siteNumber,property, as.character(Sys.Date()),as.character(Sys.Date()),'uv',format='xml') unitData <- getWaterML1Data(unitDataURL) diff --git a/man/getWaterML2Data.Rd b/man/getWaterML2Data.Rd deleted file mode 100644 index ac84669ef8160e9781b0ab7fb213679ababd6547..0000000000000000000000000000000000000000 --- a/man/getWaterML2Data.Rd +++ /dev/null @@ -1,21 +0,0 @@ -% Generated by roxygen2 (4.0.2): do not edit by hand -\name{getWaterML2Data} -\alias{getWaterML2Data} -\title{Function to return data from the WaterML2 data} -\usage{ -getWaterML2Data(obs_url) -} -\arguments{ -\item{obs_url}{string containing the url for the retrieval} -} -\value{ -mergedDF a data frame containing columns agency, site, dateTime, values, and remark codes for all requested combinations -} -\description{ -This function accepts a url parameter for a WaterML2 getObservation -} -\examples{ -URL <- "http://waterservices.usgs.gov/nwis/dv/?format=waterml,2.0&sites=01646500&startDT=2014-09-01&endDT=2014-09-08&statCd=00003¶meterCd=00060" -\dontrun{dataReturned3 <- getWaterML2Data(URL)} -} - diff --git a/man/mergeReport.Rd b/man/mergeReport.Rd index d246ee527ae06535a6add14c2c3288a96b405cf3..1ac27dabccc1862005ab7a4133ef3c54e15b02d7 100644 --- a/man/mergeReport.Rd +++ b/man/mergeReport.Rd @@ -3,12 +3,12 @@ \alias{mergeReport} \title{Merge Sample and Daily Data for WRTDS} \usage{ -mergeReport(localDaily = Daily, localSample = Sample, interactive = TRUE) +mergeReport(Daily, Sample, interactive = TRUE) } \arguments{ -\item{localDaily}{dataframe containing the daily data, default is Daily} +\item{Daily}{dataframe containing the daily data, default is Daily} -\item{localSample}{dataframe containing the sample data, default is Sample} +\item{Sample}{dataframe containing the sample data, default is Sample} \item{interactive}{logical Option for interactive mode. If true, there is user interaction for error handling and data checks.} } @@ -22,7 +22,7 @@ Merges the flow data from the daily record into the sample record. # These examples require an internet connection to run Daily <- getNWISDaily('01594440','00060', '1985-01-01', '1985-03-31') Sample <- getNWISSample('01594440','01075', '1985-01-01', '1985-03-31') -Sample <- mergeReport() +Sample <- mergeReport(Daily, Sample) } \seealso{ \code{\link{getNWISDaily}}, \code{\link{getNWISSample}} diff --git a/man/populateParameterINFO.Rd b/man/populateParameterINFO.Rd index 29c59aca4158c9081718fc891529449615f9ab5c..bfd5aa1f083a76c230f0e78fb2cd1f0e14451a9d 100644 --- a/man/populateParameterINFO.Rd +++ b/man/populateParameterINFO.Rd @@ -3,17 +3,17 @@ \alias{populateParameterINFO} \title{Populate Parameter Information Columns} \usage{ -populateParameterINFO(parameterCd, localINFO = INFO, interactive = TRUE) +populateParameterINFO(parameterCd, INFO, interactive = TRUE) } \arguments{ \item{parameterCd}{string USGS parameter code} -\item{localINFO}{dataframe with value and code columns. Default is INFO} +\item{INFO}{dataframe with value and code columns. Default is INFO} \item{interactive}{logical Option for interactive mode. If true, there is user interaction for error handling and data checks.} } \value{ -localINFO dataframe +INFO dataframe } \description{ Populates INFO data frame with additional user-supplied information concerning the measured parameter. @@ -27,6 +27,6 @@ INFO$param.nm <- parameterData$parameter_nm INFO$param.units <- parameterData$parameter_units INFO$paramShortName <- parameterData$srsname INFO$paramNumber <- parameterData$parameter_cd -INFO <- populateParameterINFO(parameterCd) +INFO <- populateParameterINFO(parameterCd, INFO) } diff --git a/man/processQWData.Rd b/man/processQWData.Rd index 1188049a94f21b856c49957d68e9a9f7bd138644..c68559e050ba0d224f575a3781b27c1e53f95fc7 100644 --- a/man/processQWData.Rd +++ b/man/processQWData.Rd @@ -21,9 +21,11 @@ conditions to determine if a value is left censored or not. Censored values are } \examples{ # These examples require an internet connection to run -rawSample <- getWQPqwData('USGS-01594440','01075', '1985-01-01', '1985-03-31') +\dontrun{ +rawSample <- getWQPqwData('USGS-01594440','', '', '') rawSampleSelect <- processQWData(rawSample) } +} \keyword{USGS} \keyword{data} \keyword{import} diff --git a/man/readWQPData.Rd b/man/readWQPData.Rd index 75a3337fbc7e012eba6935bb725435b9a9b17128..81f1ff3649e1c5446b05a828b395e65aabf10128 100644 --- a/man/readWQPData.Rd +++ b/man/readWQPData.Rd @@ -17,9 +17,11 @@ Imports data from the Water Quality Portal based on a specified url. } \examples{ # These examples require an internet connection to run +\dontrun{ rawSampleURL <- constructNWISURL('USGS-01594440','01075', '1985-01-01', '1985-03-31',"wqp") rawSample <- readWQPData(rawSampleURL) } +} \keyword{USGS} \keyword{data} \keyword{import} diff --git a/man/removeDuplicates.Rd b/man/removeDuplicates.Rd index a6711768866ae58f141b13dcb099e198d0fc0a7b..6eed234002f01221fa02e3777404c815c3a31f34 100644 --- a/man/removeDuplicates.Rd +++ b/man/removeDuplicates.Rd @@ -3,10 +3,10 @@ \alias{removeDuplicates} \title{Remove Duplicates} \usage{ -removeDuplicates(localSample = Sample) +removeDuplicates(Sample) } \arguments{ -\item{localSample}{dataframe with at least DecYear and ConcHigh, default name is Sample} +\item{Sample}{dataframe with at least DecYear and ConcHigh, default name is Sample} } \value{ Sample1 dataframe diff --git a/vignettes/dataRetrieval.Rnw b/vignettes/dataRetrieval.Rnw index ecd2d82431a11a2965d254b9fe479b5d9e42549e..4ecffbbe2a992c03ff0ccb6a19d5ada4547678cc 100644 --- a/vignettes/dataRetrieval.Rnw +++ b/vignettes/dataRetrieval.Rnw @@ -2,7 +2,7 @@ %\VignetteEngine{knitr::knitr} %\VignetteDepends{} %\VignetteSuggests{xtable,EGRET} -%\VignetteImports{zoo, XML, RCurl} +%\VignetteImports{zoo, XML, RCurl, dplyr, reshape2,lubridate} %\VignettePackage{dataRetrieval} \documentclass[a4paper,11pt]{article} @@ -1004,7 +1004,7 @@ endDate <- "2013-01-01" Daily <- getNWISDaily(siteNumber, "00060", startDate, endDate) Sample <- getNWISSample(siteNumber,parameterCd, startDate, endDate) -Sample <- mergeReport() +Sample <- mergeReport(Daily,Sample) names(Sample) @ diff --git a/vignettes/figure/egretEx.pdf b/vignettes/figure/egretEx.pdf index b06cd6fa6226005c41c3dff6449a573b0f09a9d7..87e7eaa2180bcea11e601464052ae1271f4246c3 100644 Binary files a/vignettes/figure/egretEx.pdf and b/vignettes/figure/egretEx.pdf differ diff --git a/vignettes/figure/getNWIStemperaturePlot.pdf b/vignettes/figure/getNWIStemperaturePlot.pdf index b89257452f8190556a4b65ee34493c5ea5f6f4b8..5cf81a71bd976ec7ebacf2a1cd9ce80e589cbc8e 100644 Binary files a/vignettes/figure/getNWIStemperaturePlot.pdf and b/vignettes/figure/getNWIStemperaturePlot.pdf differ diff --git a/vignettes/figure/getQWtemperaturePlot.pdf b/vignettes/figure/getQWtemperaturePlot.pdf index 9a5f1629424ea4246c17101915a887bac0eed346..25956da25d0bd807ce86645cbc6142f375ff2088 100644 Binary files a/vignettes/figure/getQWtemperaturePlot.pdf and b/vignettes/figure/getQWtemperaturePlot.pdf differ