View source: R/get_winfapapi.R
get_amax | R Documentation |
The function queries the NRFA API for the .AM file similar to the WINFAP file for a given stations. It then processes the file in a fashion similar to read_amax
.
get_amax(station)
station |
the NRFA station number for which the annual maxima records should be obtained. Can also be a vector of station numbers. |
a data.frame with information on the annual maxima for the station with the following columns
NRFA station number (can be a vector of station numbers)
the correct water year for the peak flow
date of maximum flow
the maximum flow in m3/s
the stage (height) reached by the river - this information is used to derive the flow via a rating curve
logical, if TRUE the water year has been flagged as rejected by the NRFA
read_amax
. Information on river flow gauging in the UK and the annual maxima can be found at the National River Flow Archive website https://nrfa.ceh.ac.uk
a40003 <- get_amax(40003) # the Medway at Teston / East Farleigh
multipleStations <- get_amax(c(40003, 42003))
names(multipleStations)
summary(multipleStations$`42003`)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.