I've noticed that processing vertical profiles of birds for Portuguese radars are a rare event. Is there a reason (lack of functionality) or inefficiencies of EUMETNET/OPERA in providing the data to ENRAM?
library(bioRad)
# Download Vertical Profiles
download_vpfiles(
'2020-01-01',
'2020-10-31',
radar = c("ptlis"),
directory = here::here('data-raw'),
overwrite = FALSE
)
# List h5f files
h5f <- list.files(here::here('data-raw'), pattern = '.h5', recursive = T, full.names = T)
# Read vertical profiles
vpf <- lapply(h5f, read_vpfiles)
# Bind VP into time series vpts
vpts0 <- bind_into_vpts(vpf)
tsReg1 <- regularize_vpts(vpts0)
plot(
tsReg1,
quantity = "dens",
xlab = NA,
ylab = "Altitude (m)",
ylim = c(0, 1830),
)
I've noticed that processing vertical profiles of birds for Portuguese radars are a rare event. Is there a reason (lack of functionality) or inefficiencies of EUMETNET/OPERA in providing the data to ENRAM?
Data available for 2020 as retrieved and processed with bioRad