Functions in this package calculate normal and recovery stage envelopes for Lake Okeechobee. Complete documentation for this performance measure can be found on the USACE webpage.
library(AnalystHelper)
library(lubridate)
library(LORECOVER)
# Data from SFWMD
dat=DBHYDRO_daily(date.fun("2016-01-01"),date.fun("2021-12-31"),15611)
dat$CY=as.numeric(format(dat$Date,"%Y"))
citation('LORECOVER')
#>
#> To cite package 'LORECOVER' in publications use:
#>
#> Paul Julian (2021). LORECOVER: Lake Okeechobee Stage Envelope
#> Performance Measure Calculation. R package version 0.2.2.
#> https://github.com/SwampThingPaul/LORECOVER
#>
#> A BibTeX entry for LaTeX users is
#>
#> @Manual{,
#> title = {LORECOVER: Lake Okeechobee Stage Envelope Performance Measure Calculation},
#> author = {Paul Julian},
#> year = {2021},
#> note = {R package version 0.2.2},
#> url = {https://github.com/SwampThingPaul/LORECOVER},
#> }
Development version can be installed from this repo.
install.packages("devtools");# if you do not have it installed on your PC
devtools::install_github("SwampThingPaul/LORECOVER")