getRad::get_vpts("behel", c("2025-03-18","2025-03-21"), source = "rmi")
#> Warning in check_multivalue_attributes(data): multiple rcs values found,
#> storing only first (11.0133105629406) as the functional attribute.
#> Irregular time series of vertical profiles (class vpts)
#>
#> radar: behel
#> # profiles: 1108
#> time range (UTC): 2025-03-18 00:00:00 - 2025-03-21 23:55:00
#> time step (s): min: 300 max: 4500
Where we get a warning from bioRad that the RCS values are varying. I think this because for each day the RCS is calculated separately here:
|
rcs = calc_single_mean_rcs(.data$eta, .data$dens) |
It would be good to prevent this I think as it is most likely only a result of rounding errors. We probably should check that the variation is in deed minute before averaging to one value. @PietrH could you pick this up? No hurry
Where we get a warning from bioRad that the RCS values are varying. I think this because for each day the RCS is calculated separately here:
getRad/R/utils_vpts_rmi.R
Line 128 in f4bc216
It would be good to prevent this I think as it is most likely only a result of rounding errors. We probably should check that the variation is in deed minute before averaging to one value. @PietrH could you pick this up? No hurry