Skip to contents

Example Hydrological Data of d Normal Year

Example data sets with inflow and outflow of a reservoir (in Mio m3/d) of a normal, a wet and a dry year.

Format

Data frame with the following columns:

time

time in days

inflow

water inflow

outflow

managed outflow, e.g. for drinking water supply

outflow_wb

outflow to the river bed

Source

Lukas Gunzelmann, derived from real measurements

Examples


data("discharge_normal")

plot(inflow ~ time, data = discharge_normal, type="l", ylim=c(0, 1.5))
lines(outflow ~ time, data = discharge_normal, col="blue")
lines(outflow_wb ~ time, data = discharge_normal, col="green")