Skip to contents

Get corrected time series data

Usage

getTimeSeries(ts_id, start, end)

Arguments

ts_id

Time series identifier

start

Optional. Only retrieve data after and including this date/time. Can be an R POSIXct object, or a character string in ISO 8601 format (YYYY-MM-DDThh:mm:ss+/-hh:mm)

end

Optional. Only retrieve data after and including this date/time. Can be an R POSIXct object, or a character string in ISO 8601 format (YYYY-MM-DDThh:mm:ss+/-hh:mm)

Value

A list that includes timeseries data and metadata

Examples

if (FALSE) {
# Get timeseries data from Jan 1 2012 at midnight PST to Jan 1 2013 at midnight PST.
time_series <- getTimeSeries("Discharge.Working@Location", start = "2012-01-01T00:00:00−08:00", end = "2013-01-01T00:00:00−08:00")
}