plotShiny {hyd1d} | R Documentation |
This convenience function enables the easy visualisation of
interpolated water levels stored as WaterLevelDataFrame using
the R package shiny. The
results of functions like waterLevel
and
waterLevelPegelonline
can be plotted interactively so that
the computation process itself becomes visible.
plotShiny(
wldf,
add_flys = TRUE,
add_flys_labels = TRUE,
add_weighting = TRUE,
...
)
wldf |
an object of class WaterLevelDataFrame. |
add_flys |
|
add_flys_labels |
|
add_weighting |
|
... |
further graphical parameters passed to
|
A plot of a WaterLevelDataFrame.
Bundesanstalt für Gewässerkunde (2016). “FLYS – Flusshydrologischer Webdienst.” http://www.bafg.de/DE/08_Ref/M2/03_Fliessgewmod/01_FLYS/flys_node.html.
wldf <- WaterLevelDataFrame(river = "Elbe",
time = as.POSIXct("2016-12-21"),
station = seq(257, 262, 0.1))
wldf <- waterLevel(wldf, shiny = TRUE)
plotShiny(wldf, TRUE, TRUE, TRUE)