DemoData: Demonstration data

Description Usage Arguments See Also Examples

View source: R/DemoData.R

Description

Return hydrometric data available in the package CSHShydRology but in the format required by the modeling functions in floodnetRfa. Different datasets can be requested: the annual maxima from station 01AF007 ('amax'), the daily streamflow ('daily') or exceedances ('peaks') from station 01AD002 and the annual maxima from 38 stations in the Atlantic provinces ('region').

Usage

1
DemoData(type = "amax")

Arguments

type

Type of hydrometric data to return.

See Also

flowStJohn, flowAtlantic.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
x <- DemoData()
head(x)

x <- DemoData(type = 'daily')
head(x)

x <- DemoData(type = 'peaks')
head(x)
PeaksMeta(x)

x <- DemoData(type = 'region')
head(x)

x <- DemoData(type = 'descriptor')
head(x)

floodnetProject16/floodnetRfa documentation built on Oct. 24, 2020, 9:19 a.m.