This package aims to estimate discharge time series of ungauged catchments (non-instrumented catchment where discharge is therefore not available) using hydrological observation of neighbouring gauged catchments (instrumented catchment where discharge is available). The hydrological modelling is based on a description of catchment geomorphology that can be assessed at any location. An inversion of this model at gauged locations allows estimating the net rainfall that makes the transfer of observed discharge easier to ungauged locations.
An object of class transfR needs to be created first with the
function as_transfr()
. It will also be used to gather all
the catchment attributes and intermediary results from the different
steps. This object needs to be created from two users inputs:
This package does not provide functions to create these two inputs. It needs to be prepared beforehand by the user. Several GIS softwares offer possibilities to extract them from a digital elevation model such as GRASS toolkits (Jasiewicz and Metz 2011), Whitebox GAT (see Lindsay (2016) or WhiteboxTools), TauDEM (D. Tarboton, Utah State University) or online services (Squividant et al. (2015) for catchment delineation only). The vignettes mentioned above give some guidance on the preparation of input data.
The ‘Oudon’ example dataset contains these two inputs with hourly
discharge observation of 6 sub-catchments (Oudon French river) with
their respective catchment boundary and maps of their hydraulic length.
All catchments are gauged, however, in this example, we will use the
first 3 as gauged catchments and the last 3 as ungauged catchments. Note
that, in order to evaluate the methodology, the package can also perform
a leave-one-out analysis by considering each gauged catchment as
ungauged one after another and without the need of creating the
following sim
object (set cv=TRUE
when using
mixr()
function, step 6).
library(transfR)
data(Oudon)
obs <- as_transfr(st = Oudon$obs[,,1:3], hl = Oudon$hl[1:3]) #gauged catchments
sim <- as_transfr(st = Oudon$obs[,,4:6], hl = Oudon$hl[4:6]) #catchments considered as ungauged
The package also offers simple plots for transfR objects.
The streamflow velocity (uc
) is the unique parameter of
the transfer function that needs to be estimated. It allows assessing
the travel time from each pixel of the map of hydraulic length
(hl
) to the outlet, and then to create the unit hydrograph
(uh
). Here we will use the function velocity()
to estimate an average streamflow velocity from a regionalisation
established over the Loire River [de Lavenne et
al. (2016); see help of the function for details]. If the input
of velocity()
is a transfR object, the velocity will be
computed for each catchment.
Assuming a description of the flow path length (hl
) and
a streamflow velocity (uc
), the transfer function of the
river network can be built based on the unit hydrograph theory. This is
done using the function uh()
that requires these two
inputs. If the input of uh()
is a transfR object the unit
hydrograph will be computed for each catchments.
To solve the inversion, an a priori on the net rainfall
needs to be provided. We will estimate this a priori through
the specific discharge simply delayed by a lagtime using functions
lagtime()
and rapriori()
.
Using the results of previous steps, the inversion can finally be
computed in order to estimate net rainfall time series of each gauged
catchment that best reconstitute the observed discharge according to the
transfer function. This is done following the inversion theory [Tarantola and Valette (1982); Menke (1989); Boudhraâ et
al. (2018); see help of inversion()
for more
details] (see help of inversion()
for more details). If the
inputs of inversion()
is a transfR object, the net rainfall
will be estimated for each gauged catchment sequentially.
The net rainfall of an ungauged catchment is an average value of
neighbouring gauged catchments. This average can be weighted by the
inverse of the distance between the gauged catchment and the ungauged
catchment. The distance between two catchments is the rescaled Ghosh
distance (using the function hdist()
) as defined by de Lavenne et al. (2016). The function
transfr()
is then using this distance matrix to estimate
the net rainfall time series at every ungauged location.
A discharge time series at ungauged locations can finally be
simulated through a convolution between the unit hydrograph and the net
rainfall time series of each catchment. This is done with the function
convolution()
. In this example, it is possible to compare
discharge simulation and discharge observation because ungauged
locations were deliberately defined from gauged locations (as defined in
step 1.). Note that the beginning and the end of the simulation are cut
because of the warmup and cooldown periods needed for the inversion.