Data
Load the data
Loading the annual gaugings of the Sainte-Anne river:
data = RatingCurves.dataset("50408")
first(data,5)
5 rows × 3 columns
Date | Level | Discharge | |
---|---|---|---|
Date… | Float64 | Float64 | |
1 | 1965-05-13 | 28.465 | 236.681 |
2 | 1965-05-20 | 27.959 | 146.701 |
3 | 1965-08-20 | 27.216 | 41.481 |
4 | 1965-10-14 | 27.578 | 83.24 |
5 | 1966-05-25 | 28.599 | 261.782 |
The gaugings can be shown as by plotting the discharges as function of the levels:
set_default_plot_size(12cm, 8cm)
plot(data, x=:Level, y=:Discharge, Geom.point)
Construct the Gauging type
It is possible to construct a Gauging
type with a level and discharge couple:
julia> h = data.Level[1]
28.465
julia> q = data.Discharge[1]
236.681
julia> G = Gauging(h,q)
Gauging(28.465, 236.681)
The level and the discharge of the gauging G
can be retrieved with level
and discharge
methods respectively:
julia> h = level(G)
28.465
julia> q = discharge(G)
236.681
The constructor can be broadcasted to obtain a vector of type Gauging
:
julia> G = Gauging.(data.Level, data.Discharge)
194-element Vector{Gauging}: Gauging(28.465, 236.681) Gauging(27.959, 146.701) Gauging(27.216, 41.481) Gauging(27.578, 83.24) Gauging(28.599, 261.782) Gauging(27.011, 21.718) Gauging(27.094, 25.478) Gauging(27.216, 39.005) Gauging(29.883, 568.914) Gauging(29.334, 418.551) ⋮ Gauging(28.182, 179.309) Gauging(26.964, 15.863) Gauging(27.193, 34.025) Gauging(27.374, 52.74) Gauging(26.874, 12.109) Gauging(29.186, 364.835) Gauging(29.697, 479.014) Gauging(27.793, 116.077) Gauging(28.471, 230.759)
The level
and discharge
methods can also be broadcasted. For example:
julia> discharge.(G)
194-element Vector{Float64}: 236.681 146.701 41.481 83.24 261.782 21.718 25.478 39.005 568.914 418.551 ⋮ 179.309 15.863 34.025 52.74 12.109 364.835 479.014 116.077 230.759