Provides pooled gauged, ungauged, or fake ungauged results, directly from the catchment descriptors
QuickResults(
CDs,
gauged = FALSE,
dons = 2,
Qmed = NULL,
FUngauged = FALSE,
plot = TRUE,
dist = "GenLog"
)
A list of length two. Element one is a data frame with columns; return period (RP), peak flow estimates (Q) and growth factor estimates (GF). Two additional columns quantify the uncertainty. The second element is the estimated Lcv and Lskew (linear coefficient of variation and skewness). By default an extreme value plot is also returned
catchment descriptors derived from either GetCDs or CDsXML
logical argument with a default of FALSE. TRUE for gauged results and FALSE for ungauged
number of donors required with a choice of 0, 1, or 2
user supplied QMED which overrides the default QMED estimate
logical argument with a default of FALSE. TRUE provides a fake ungauged estimate (an ungauged estimate whilst excluding the gauged site (the site with the most similar CDs))
logical argument with a default of TRUE. TRUE provides an extreme value plot. FALSE prevents the plot
a choice of distribution for the estimates. The choices are "GenLog", "GEV", "Kappa3", or "Gumbel; the generalised logistic, generalised extreme value, Kappa3,and Gumbel distributions, respectively. The default is "GenLog"
Anthony Hammond
The quick results function provides results with a default pooling group. If gauged = FALSE the median annual maximum flood (QMED) is estimated from catchment descriptors using the QMED equation adjusted with the 2 closest non-urban gauged sites as donors (though 0 or 1 donors can instead be used if specified) and the growth curve is formed from the ungauged pooling group. If the ungauged site is urban (URBEXT > 0.03), an urban adjustment is made to the QMED and to the pooled growth curve. If gauged = TRUE QMED is the median of the gauged annual maxima and the growth curve is formed with the gauged weighting procedure (often known as enhanced single site). Note that if Gauged = TRUE, the functionality assumes that the top site in the pooling group (i.e. the first row) is the subject "gauged" catchment. If the gauged catchment is urban (URBEXT > 0.03), it's included in the pooling group and deurbanised before an urban adjustment is made to the final growth curve. However, the urban expansion (UEF) is not applied. Note that gauged = TRUE should only be applied where the site is suitable for pooling. If FUngauged = TRUE, the top site in the pooling group is excluded and the QMED and growth curve estimates are performed henceforth in the manner of gauged = FALSE. Note that FUngauged = TRUE should only be applied where the site is suitable for pooling and in conjunction with the argument gauged = FALSE.
This function applies the index flood procedure in a quick way and therefore encompasses all the associated assumptions. Note that it is recommended that the default results should only be used for broad-scale and/or initial assessments.
# Get some catchment descriptors
cds_73005 <- GetCDs(73005)
# Get default ungauged results
QuickResults(cds_73005)
# Get gauged results with a GEV distribution
QuickResults(cds_73005, gauged = TRUE, dist = "GEV")
# Get fake ungauged results with one donor
QuickResults(cds_73005, FUngauged = TRUE, dons = 1)
Run the code above in your browser using DataLab