bioRad
R package for analysis and visualisation of biological signals in weather radar data.
https://github.com/adokter/bioRad
Category: Biosphere
Sub Category: Avian Monitoring and Analysis
Keywords
aeroecology enram eumetnet-opera lifewatch movement-ecology nexrad oscibio package r radar weather-radar wsr-88d
Keywords from Contributors
birds ecology biodiversity gbif invasive-species jekyll simulator geolocation climate camera-traps
Last synced: 30 minutes ago
JSON representation
Repository metadata
R package for analysis and visualisation of biological signals in weather radar data
- Host: GitHub
- URL: https://github.com/adokter/bioRad
- Owner: adokter
- License: other
- Created: 2016-05-24T15:49:06.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2025-04-09T15:35:37.000Z (18 days ago)
- Last Synced: 2025-04-10T14:52:30.512Z (17 days ago)
- Topics: aeroecology, enram, eumetnet-opera, lifewatch, movement-ecology, nexrad, oscibio, package, r, radar, weather-radar, wsr-88d
- Language: R
- Homepage: http://adokter.github.io/bioRad
- Size: 353 MB
- Stars: 29
- Watchers: 8
- Forks: 17
- Open Issues: 70
- Releases: 17
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Citation: CITATION.cff
- Codemeta: codemeta.json
README.Rmd
--- output: github_document --- ```{r setup, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "man/figures/README-", out.width = "100%" ) ``` # bioRad[](https://cran.r-project.org/package=bioRad) [](https://github.com/adokter/bioRad/actions/workflows/R-CMD-check.yaml) [](https://www.repostatus.org/#active) [](https://app.codecov.io/gh/adokter/bioRad) [](https://doi.org/10.5281/zenodo.3370004) [](https://doi.org/10.5281/zenodo.7992026) bioRad provides standardized methods for extracting and reporting biological signals from weather radars. It includes functionality to inspect low-level radar data, process these data into meaningful biological information on animal speeds and directions at different altitudes in the atmosphere, visualize these biological extractions, and calculate further summary statistics. To get started, see: * [Dokter et al. (2019)](https://doi.org/10.1111/ecog.04028): a paper describing the package. * [bioRad vignette](https://adriaandokter.com/bioRad/articles/bioRad.html): an introduction to bioRad's main functionalities. * [Function reference](https://adriaandokter.com/bioRad/reference/index.html): an overview of all bioRad functions. * [Introductory exercises](https://adriaandokter.com/bioRad/articles/rad_aero_19.html): a tutorial with code examples and exercises. More vignettes: * [Range correction](https://adriaandokter.com/bioRad/articles/range_correction.html): estimate spatial images of vertically integrated density corrected for range effects. Documentation for the latest development version can be found [here](https://adriaandokter.com/bioRad/dev/). ## Installation ### Install system libraries For OS X and Linux the GNU Scientific Library (GSL), PROJ and HDF5 libraries need to be installed as system libraries prior to installation, which are required by dependency package **[vol2birdR](https://adriaandokter.com/vol2birdR/)**: | System | Command |:------------------------------------------|:---------------------------------------------| |**OS X (using Homebrew)** | `brew install hdf5 proj gsl` |**Debian-based systems (including Ubuntu)**| `sudo apt-get install libhdf5-dev libproj-dev gsl-bin libgsl-dev` |**Systems supporting yum and RPMs** | `sudo yum install hdf5-devel proj-devel gsl gsl-devel`
Additional required system libraries on Linux (Ubuntu)
The following system libraries are required before installing bioRad on Linux systems. In terminal, install these with: ``` sudo apt install libcurl4-openssl-dev sudo apt install libssl-dev sudo apt install libgdal-dev ```
### Install bioRad You can install the released version of bioRad from [CRAN](https://CRAN.R-project.org) with: ```{r eval = FALSE} install.packages("bioRad") ``` Alternatively, you can install the latest development version from [GitHub](https://github.com/adokter/bioRad) with: ```{r eval = FALSE} # install.packages("devtools") devtools::install_github("adokter/bioRad") ``` Then load the package with: ```{r load_bioRad} library(bioRad) ``` ### (optional) Enable MistNet To enable MistNet, the following vol2birdR commands should be executed: ```{r, eval=FALSE} vol2birdR::install_mistnet() vol2birdR::install_mistnet_model() ``` Read the [vol2birdR documentation](https://adriaandokter.com/vol2birdR/articles/vol2birdR.html) for more details. ## Usage ### Radar data example bioRad can read weather radar data (= polar volumes) in the [`ODIM`](http://eumetnet.eu/wp-content/uploads/2017/01/OPERA_hdf_description_2014.pdf) format and formats supported by the [RSL library](https://trmm-fc.gsfc.nasa.gov/trmm_gv/software/rsl/), such as NEXRAD data. NEXRAD data (US) are [available as open data](https://www.ncdc.noaa.gov/nexradinv/) and on [AWS](https://registry.opendata.aws/noaa-nexrad/). Here we read an example polar volume data file with `read_pvolfile()`, extract the scan/sweep at elevation angle 3 with `get_scan()`, project the data to a plan position indicator with `project_as_ppi()` and plot the _radial velocity_ of detected targets with `plot()`: ```{r plot_ppi, warning = FALSE, message = FALSE} library(tidyverse) # To pipe %>% the steps below system.file("extdata", "volume.h5", package = "bioRad") %>% read_pvolfile() %>% get_scan(3) %>% project_as_ppi() %>% plot(param = "VRADH") # VRADH = radial velocity in m/s ``` _Radial velocities towards the radar are negative, while radial velocities away from the radar are positive, so in this plot there is movement from the top right to the bottom left._ ### Vertical profile data example Weather radar data can be processed into vertical profiles of biological targets using `calculate_vp()`. This type of data is [available as open data](https://aloftdata.eu) for over 100 European weather radars. Once vertical profile data are loaded into bioRad, these can be bound into time series using `bind_into_vpts()`. Here we read an example time series, project it on a regular time grid with `regularize_vpts()` and plot it with `plot()`: ```{r plot_vpts, warning = FALSE, message = FALSE} example_vpts %>% regularize_vpts() %>% plot() ``` _The gray bars in the plot indicate gaps in the data._ The altitudes in the profile can be integrated with `integrate_profile()` resulting in a dataframe with rows for datetimes and columns for quantities. Here we plot the quantity _migration traffic rate_ (column `mtr`) with `plot()`: ```{r plot_vpi, warning = FALSE, message = FALSE} my_vpi <- integrate_profile(example_vpts) plot(my_vpi, quantity = "mtr") # mtr = migration traffic rate ``` To know the total number of birds passing over the radar during the full time series, we use the last value of the _cumulative migration traffic_ (column `mt`): ```{r mt_value, warning = FALSE, message = FALSE} my_vpi %>% pull(mt) %>% # Extract column mt as a vector last() ``` For more exercises, see [this tutorial](https://adriaandokter.com/bioRad/articles/rad_aero_19.html). ## Meta * We welcome [contributions](https://adriaandokter.com/bioRad/CONTRIBUTING.html) including bug reports. * License: MIT * Get citation information for `bioRad` in R doing `citation("bioRad")`. * Please note that this project is released with a [Contributor Code of Conduct](https://adriaandokter.com/bioRad/CODE_OF_CONDUCT.html). By participating in this project you agree to abide by its terms.
Citation (CITATION.cff)
# -------------------------------------------- # CITATION file created with {cffr} R package # See also: https://docs.ropensci.org/cffr/ # -------------------------------------------- cff-version: 1.2.0 message: 'To cite package "bioRad" in publications use:' type: software license: MIT title: 'bioRad: Biological Analysis and Visualization of Weather Radar Data' version: 0.8.1.9000 doi: 10.1111/ecog.04028 identifiers: - type: doi value: 10.32614/CRAN.package.bioRad - type: url value: https://adriaandokter.com/bioRad/ abstract: 'Extract, visualize and summarize aerial movements of birds and insects from weather radar data. See Dokter, A. M. et al. (2018) "bioRad: biological analysis and visualization of weather radar data" <https://doi.org/10.1111/ecog.04028> for a software paper describing package and methodologies.' authors: - family-names: Dokter given-names: Adriaan M. email: [email protected] orcid: https://orcid.org/0000-0001-6573-066X - family-names: Desmet given-names: Peter email: [email protected] orcid: https://orcid.org/0000-0002-8442-8025 - family-names: Kranstauber given-names: Bart email: [email protected] orcid: https://orcid.org/0000-0001-8303-780X - family-names: Nilsson given-names: Cecilia email: [email protected] orcid: https://orcid.org/0000-0001-8957-4411 - family-names: Van Hoey given-names: Stijn email: [email protected] orcid: https://orcid.org/0000-0001-6413-3185 preferred-citation: type: article title: 'bioRad: biological analysis and visualization of weather radar data' authors: - family-names: Dokter given-names: Adriaan M. email: [email protected] orcid: https://orcid.org/0000-0001-6573-066X - family-names: Desmet given-names: Peter email: [email protected] orcid: https://orcid.org/0000-0002-8442-8025 - family-names: Spaaks given-names: Jurriaan H. - family-names: Van Hoey given-names: Stijn email: [email protected] orcid: https://orcid.org/0000-0001-6413-3185 - family-names: Veen given-names: Lourens - family-names: Verlinden given-names: Liesbeth - family-names: Nilsson given-names: Cecilia email: [email protected] orcid: https://orcid.org/0000-0001-8957-4411 - family-names: Haase given-names: Günther - family-names: Leijnse given-names: Hidde - family-names: Farnsworth given-names: Andrew - family-names: Bouten given-names: Willem - family-names: Shamoun-Baranes given-names: Judy journal: Ecography year: '2019' volume: '42' doi: 10.1111/ecog.04028 start: 852-860 repository: https://CRAN.R-project.org/package=bioRad repository-code: https://github.com/adokter/bioRad url: https://github.com/adokter/bioRad/ contact: - family-names: Dokter given-names: Adriaan M. email: [email protected] orcid: https://orcid.org/0000-0001-6573-066X keywords: - aeroecology - enram - eumetnet-opera - lifewatch - movement-ecology - nexrad - oscibio - package - r - radar - weather-radar - wsr-88d references: - type: software title: 'R: A Language and Environment for Statistical Computing' notes: Depends url: https://www.R-project.org/ authors: - name: R Core Team institution: name: R Foundation for Statistical Computing address: Vienna, Austria year: '2024' version: '>= 3.5.0' - type: software title: assertthat abstract: 'assertthat: Easy Pre and Post Assertions' notes: Imports repository: https://CRAN.R-project.org/package=assertthat authors: - family-names: Wickham given-names: Hadley email: [email protected] year: '2024' doi: 10.32614/CRAN.package.assertthat - type: software title: curl abstract: 'curl: A Modern and Flexible Web Client for R' notes: Imports url: https://jeroen.r-universe.dev/curl repository: https://CRAN.R-project.org/package=curl authors: - family-names: Ooms given-names: Jeroen email: [email protected] orcid: https://orcid.org/0000-0002-4035-0289 year: '2024' doi: 10.32614/CRAN.package.curl - type: software title: dplyr abstract: 'dplyr: A Grammar of Data Manipulation' notes: Imports url: https://dplyr.tidyverse.org repository: https://CRAN.R-project.org/package=dplyr authors: - family-names: Wickham given-names: Hadley email: [email protected] orcid: https://orcid.org/0000-0003-4757-117X - family-names: François given-names: Romain orcid: https://orcid.org/0000-0002-2444-4226 - family-names: Henry given-names: Lionel - family-names: Müller given-names: Kirill orcid: https://orcid.org/0000-0002-1416-3412 - family-names: Vaughan given-names: Davis email: [email protected] orcid: https://orcid.org/0000-0003-4777-038X year: '2024' doi: 10.32614/CRAN.package.dplyr version: '>= 1.1.0' - type: software title: fields abstract: 'fields: Tools for Spatial Data' notes: Imports url: https://github.com/dnychka/fieldsRPackage repository: https://CRAN.R-project.org/package=fields authors: - family-names: Nychka given-names: Douglas email: [email protected] - family-names: Furrer given-names: Reinhard email: [email protected] - family-names: Paige given-names: John email: [email protected] - family-names: Sain given-names: Stephan email: [email protected] - family-names: Gerber given-names: Florian email: [email protected] - family-names: Iverson given-names: Matthew email: [email protected] - family-names: Johnson given-names: Rider year: '2024' doi: 10.32614/CRAN.package.fields - type: software title: ggplot2 abstract: 'ggplot2: Create Elegant Data Visualisations Using the Grammar of Graphics' notes: Imports url: https://ggplot2.tidyverse.org repository: https://CRAN.R-project.org/package=ggplot2 authors: - family-names: Wickham given-names: Hadley email: [email protected] orcid: https://orcid.org/0000-0003-4757-117X - family-names: Chang given-names: Winston orcid: https://orcid.org/0000-0002-1576-2126 - family-names: Henry given-names: Lionel - family-names: Pedersen given-names: Thomas Lin email: [email protected] orcid: https://orcid.org/0000-0002-5147-4711 - family-names: Takahashi given-names: Kohske - family-names: Wilke given-names: Claus orcid: https://orcid.org/0000-0002-7470-9261 - family-names: Woo given-names: Kara orcid: https://orcid.org/0000-0002-5125-4188 - family-names: Yutani given-names: Hiroaki orcid: https://orcid.org/0000-0002-3385-7233 - family-names: Dunnington given-names: Dewey orcid: https://orcid.org/0000-0002-9415-4582 - family-names: Brand given-names: Teun name-particle: van den orcid: https://orcid.org/0000-0002-9335-7468 year: '2024' doi: 10.32614/CRAN.package.ggplot2 - type: software title: glue abstract: 'glue: Interpreted String Literals' notes: Imports url: https://glue.tidyverse.org/ repository: https://CRAN.R-project.org/package=glue authors: - family-names: Hester given-names: Jim orcid: https://orcid.org/0000-0002-2739-7082 - family-names: Bryan given-names: Jennifer email: [email protected] orcid: https://orcid.org/0000-0002-6983-2759 year: '2024' doi: 10.32614/CRAN.package.glue - type: software title: graphics abstract: 'R: A Language and Environment for Statistical Computing' notes: Imports authors: - name: R Core Team institution: name: R Foundation for Statistical Computing address: Vienna, Austria year: '2024' - type: software title: jsonlite abstract: 'jsonlite: A Simple and Robust JSON Parser and Generator for R' notes: Imports url: https://jeroen.r-universe.dev/jsonlite repository: https://CRAN.R-project.org/package=jsonlite authors: - family-names: Ooms given-names: Jeroen email: [email protected] orcid: https://orcid.org/0000-0002-4035-0289 year: '2024' doi: 10.32614/CRAN.package.jsonlite - type: software title: lubridate abstract: 'lubridate: Make Dealing with Dates a Little Easier' notes: Imports url: https://lubridate.tidyverse.org repository: https://CRAN.R-project.org/package=lubridate authors: - family-names: Spinu given-names: Vitalie email: [email protected] - family-names: Grolemund given-names: Garrett - family-names: Wickham given-names: Hadley year: '2024' doi: 10.32614/CRAN.package.lubridate - type: software title: lutz abstract: 'lutz: Look Up Time Zones of Point Coordinates' notes: Imports url: https://andyteucher.ca/lutz/ repository: https://CRAN.R-project.org/package=lutz authors: - family-names: Teucher given-names: Andy email: [email protected] orcid: https://orcid.org/0000-0002-7840-692X year: '2024' doi: 10.32614/CRAN.package.lutz - type: software title: methods abstract: 'R: A Language and Environment for Statistical Computing' notes: Imports authors: - name: R Core Team institution: name: R Foundation for Statistical Computing address: Vienna, Austria year: '2024' - type: software title: raster abstract: 'raster: Geographic Data Analysis and Modeling' notes: Imports url: https://rspatial.org/raster repository: https://CRAN.R-project.org/package=raster authors: - family-names: Hijmans given-names: Robert J. email: [email protected] orcid: https://orcid.org/0000-0001-5872-2872 year: '2024' doi: 10.32614/CRAN.package.raster - type: software title: readr abstract: 'readr: Read Rectangular Text Data' notes: Imports url: https://readr.tidyverse.org repository: https://CRAN.R-project.org/package=readr authors: - family-names: Wickham given-names: Hadley email: [email protected] - family-names: Hester given-names: Jim - family-names: Bryan given-names: Jennifer email: [email protected] orcid: https://orcid.org/0000-0002-6983-2759 year: '2024' doi: 10.32614/CRAN.package.readr - type: software title: rhdf5 abstract: 'rhdf5: R Interface to HDF5' notes: Imports url: https://github.com/grimbough/rhdf5 repository: https://bioconductor.org/ authors: - family-names: Fischer given-names: Bernd - family-names: Smith given-names: Mike email: [email protected] orcid: https://orcid.org/0000-0002-7800-3848 - family-names: Pau given-names: Gregoire year: '2024' doi: 10.18129/B9.bioc.rhdf5 - type: software title: rlang abstract: 'rlang: Functions for Base Types and Core R and ''Tidyverse'' Features' notes: Imports url: https://rlang.r-lib.org repository: https://CRAN.R-project.org/package=rlang authors: - family-names: Henry given-names: Lionel email: [email protected] - family-names: Wickham given-names: Hadley email: [email protected] year: '2024' doi: 10.32614/CRAN.package.rlang - type: software title: sf abstract: 'sf: Simple Features for R' notes: Imports url: https://r-spatial.github.io/sf/ repository: https://CRAN.R-project.org/package=sf authors: - family-names: Pebesma given-names: Edzer email: [email protected] orcid: https://orcid.org/0000-0001-8049-7069 year: '2024' doi: 10.32614/CRAN.package.sf - type: software title: sp abstract: 'sp: Classes and Methods for Spatial Data' notes: Imports url: https://github.com/edzer/sp/ repository: https://CRAN.R-project.org/package=sp authors: - family-names: Pebesma given-names: Edzer email: [email protected] - family-names: Bivand given-names: Roger email: [email protected] year: '2024' doi: 10.32614/CRAN.package.sp - type: software title: stats abstract: 'R: A Language and Environment for Statistical Computing' notes: Imports authors: - name: R Core Team institution: name: R Foundation for Statistical Computing address: Vienna, Austria year: '2024' - type: software title: stringr abstract: 'stringr: Simple, Consistent Wrappers for Common String Operations' notes: Imports url: https://stringr.tidyverse.org repository: https://CRAN.R-project.org/package=stringr authors: - family-names: Wickham given-names: Hadley email: [email protected] year: '2024' doi: 10.32614/CRAN.package.stringr - type: software title: suntools abstract: 'suntools: Calculate Sun Position, Sunrise, Sunset, Solar Noon and Twilight' notes: Imports url: https://github.com/adokter/suntools/ repository: https://CRAN.R-project.org/package=suntools authors: - family-names: Bivand given-names: Roger email: [email protected] orcid: https://orcid.org/0000-0003-2392-6140 - family-names: Luque given-names: Sebastian year: '2024' doi: 10.32614/CRAN.package.suntools - type: software title: tidyr abstract: 'tidyr: Tidy Messy Data' notes: Imports url: https://tidyr.tidyverse.org repository: https://CRAN.R-project.org/package=tidyr authors: - family-names: Wickham given-names: Hadley email: [email protected] - family-names: Vaughan given-names: Davis email: [email protected] - family-names: Girlich given-names: Maximilian year: '2024' doi: 10.32614/CRAN.package.tidyr - type: software title: tidyselect abstract: 'tidyselect: Select from a Set of Strings' notes: Imports url: https://tidyselect.r-lib.org repository: https://CRAN.R-project.org/package=tidyselect authors: - family-names: Henry given-names: Lionel email: [email protected] - family-names: Wickham given-names: Hadley email: [email protected] year: '2024' doi: 10.32614/CRAN.package.tidyselect - type: software title: utils abstract: 'R: A Language and Environment for Statistical Computing' notes: Imports authors: - name: R Core Team institution: name: R Foundation for Statistical Computing address: Vienna, Austria year: '2024' - type: software title: viridis abstract: 'viridis: Colorblind-Friendly Color Maps for R' notes: Imports url: https://sjmgarnier.github.io/viridis/ repository: https://CRAN.R-project.org/package=viridis authors: - family-names: Garnier given-names: Simon email: [email protected] year: '2024' doi: 10.32614/CRAN.package.viridis - type: software title: viridisLite abstract: 'viridisLite: Colorblind-Friendly Color Maps (Lite Version)' notes: Imports url: https://sjmgarnier.github.io/viridisLite/ repository: https://CRAN.R-project.org/package=viridisLite authors: - family-names: Garnier given-names: Simon email: [email protected] year: '2024' doi: 10.32614/CRAN.package.viridisLite - type: software title: aws.s3 abstract: 'aws.s3: ''AWS S3'' Client Package' notes: Suggests url: https://github.com/cloudyr/aws.s3 repository: https://CRAN.R-project.org/package=aws.s3 authors: - family-names: Leeper given-names: Thomas J. email: [email protected] orcid: https://orcid.org/0000-0003-4097-6326 year: '2024' doi: 10.32614/CRAN.package.aws.s3 - type: software title: ggspatial abstract: 'ggspatial: Spatial Data Framework for ggplot2' notes: Suggests url: https://paleolimbot.github.io/ggspatial/ repository: https://CRAN.R-project.org/package=ggspatial authors: - family-names: Dunnington given-names: Dewey email: [email protected] orcid: https://orcid.org/0000-0002-9415-4582 year: '2024' doi: 10.32614/CRAN.package.ggspatial - type: software title: knitr abstract: 'knitr: A General-Purpose Package for Dynamic Report Generation in R' notes: Suggests url: https://yihui.org/knitr/ repository: https://CRAN.R-project.org/package=knitr authors: - family-names: Xie given-names: Yihui email: [email protected] orcid: https://orcid.org/0000-0003-0645-5666 year: '2024' doi: 10.32614/CRAN.package.knitr - type: software title: prettymapr abstract: 'prettymapr: Scale Bar, North Arrow, and Pretty Margins in R' notes: Suggests url: https://github.com/paleolimbot/prettymapr repository: https://CRAN.R-project.org/package=prettymapr authors: - family-names: Dunnington given-names: Dewey email: [email protected] year: '2024' doi: 10.32614/CRAN.package.prettymapr - type: software title: rmarkdown abstract: 'rmarkdown: Dynamic Documents for R' notes: Suggests url: https://pkgs.rstudio.com/rmarkdown/ repository: https://CRAN.R-project.org/package=rmarkdown authors: - family-names: Allaire given-names: JJ email: [email protected] - family-names: Xie given-names: Yihui email: [email protected] orcid: https://orcid.org/0000-0003-0645-5666 - family-names: Dervieux given-names: Christophe email: [email protected] orcid: https://orcid.org/0000-0003-4474-2498 - family-names: McPherson given-names: Jonathan email: [email protected] - family-names: Luraschi given-names: Javier - family-names: Ushey given-names: Kevin email: [email protected] - family-names: Atkins given-names: Aron email: [email protected] - family-names: Wickham given-names: Hadley email: [email protected] - family-names: Cheng given-names: Joe email: [email protected] - family-names: Chang given-names: Winston email: [email protected] - family-names: Iannone given-names: Richard email: [email protected] orcid: https://orcid.org/0000-0003-3925-190X year: '2024' doi: 10.32614/CRAN.package.rmarkdown - type: software title: rosm abstract: 'rosm: Plot Raster Map Tiles from Open Street Map and Other Sources' notes: Suggests url: https://github.com/paleolimbot/rosm repository: https://CRAN.R-project.org/package=rosm authors: - family-names: Dunnington given-names: Dewey email: [email protected] orcid: https://orcid.org/0000-0002-9415-4582 year: '2024' doi: 10.32614/CRAN.package.rosm - type: software title: testthat abstract: 'testthat: Unit Testing for R' notes: Suggests url: https://testthat.r-lib.org repository: https://CRAN.R-project.org/package=testthat authors: - family-names: Wickham given-names: Hadley email: [email protected] year: '2024' doi: 10.32614/CRAN.package.testthat version: '>= 3.0.0' - type: software title: vdiffr abstract: 'vdiffr: Visual Regression Testing and Graphical Diffing' notes: Suggests url: https://vdiffr.r-lib.org/ repository: https://CRAN.R-project.org/package=vdiffr authors: - family-names: Henry given-names: Lionel email: [email protected] - family-names: Pedersen given-names: Thomas Lin email: [email protected] orcid: https://orcid.org/0000-0002-5147-4711 - family-names: Luciani given-names: T Jake email: [email protected] - family-names: Decorde given-names: Matthieu email: [email protected] - family-names: Lise given-names: Vaudor email: [email protected] year: '2024' doi: 10.32614/CRAN.package.vdiffr - type: software title: vol2birdR abstract: 'vol2birdR: Vertical Profiles of Biological Signals in Weather Radar Data' notes: Suggests url: https://github.com/adokter/vol2birdR/ repository: https://CRAN.R-project.org/package=vol2birdR authors: - family-names: Henja given-names: Anders email: [email protected] - family-names: Dokter given-names: Adriaan M. email: [email protected] orcid: https://orcid.org/0000-0001-6573-066X year: '2024' doi: 10.32614/CRAN.package.vol2birdR
Owner metadata
- Name: Adriaan Dokter
- Login: adokter
- Email:
- Kind: user
- Description:
- Website: http://adriaandokter.com
- Location:
- Twitter:
- Company: Lab of ornithology, Cornell University
- Icon url: https://avatars.githubusercontent.com/u/8268415?u=9a31996e5983bb33a62836b08ab12c7b87c8f748&v=4
- Repositories: 25
- Last ynced at: 2024-06-11T15:36:14.141Z
- Profile URL: https://github.com/adokter
GitHub Events
Total
- Create event: 13
- Release event: 2
- Issues event: 33
- Delete event: 30
- Member event: 1
- Issue comment event: 39
- Push event: 82
- Pull request review comment event: 5
- Pull request review event: 6
- Pull request event: 31
Last Year
- Create event: 13
- Release event: 2
- Issues event: 33
- Delete event: 30
- Member event: 1
- Issue comment event: 39
- Push event: 82
- Pull request review comment event: 5
- Pull request review event: 6
- Pull request event: 31
Committers metadata
Last synced: 4 days ago
Total Commits: 2,701
Total Committers: 21
Avg Commits per committer: 128.619
Development Distribution Score (DDS): 0.584
Commits in past year: 190
Committers in past year: 6
Avg Commits per committer in past year: 31.667
Development Distribution Score (DDS) in past year: 0.326
Name | Commits | |
---|---|---|
adokter | a****r@g****m | 1123 |
peterdesmet | p****t@i****e | 491 |
stijnvanhoey | s****y@g****m | 361 |
iskandari | s****i@g****m | 278 |
Pieter Huybrechts | 4****H | 236 |
bart | b****t@e****m | 86 |
Cecilia Nilsson | c****n@b****e | 62 |
Raphaël Nussbaumer | r****s@g****m | 23 |
Bart Hoekstra | b****a@g****m | 9 |
Bart | b****t@m****s | 6 |
GitHub Actions | a****s@g****m | 5 |
Nicolas Noé | n****e@i****e | 5 |
bart | y****u@e****m | 4 |
Berend-Christiaan Wijers | b****s@m****m | 3 |
Plieper | l****k@g****m | 2 |
fyiguo | 6****o | 2 |
Baptiste Schmid | b****d@v****h | 1 |
iskandari | s****i@g****O | 1 |
Alexander Tedeschi | a****4@a****u | 1 |
Adriaan Michiel Dokter | a****7@c****u | 1 |
Dan Sheldon | s****n@c****u | 1 |
Committer domains:
- inbo.be: 2
- cs.umass.edu: 1
- cornell.edu: 1
- ag-clo-at744.ad.cornell.edu: 1
- gmail.como: 1
- vogelwarte.ch: 1
- msn.com: 1
- github.com: 1
- biol.lu.se: 1
Issue and Pull Request metadata
Last synced: 1 day ago
Total issues: 416
Total pull requests: 302
Average time to close issues: 5 months
Average time to close pull requests: 17 days
Total issue authors: 28
Total pull request authors: 14
Average comments per issue: 2.75
Average comments per pull request: 1.43
Merged pull request: 276
Bot issues: 0
Bot pull requests: 0
Past year issues: 31
Past year pull requests: 30
Past year average time to close issues: 6 days
Past year average time to close pull requests: 4 days
Past year issue authors: 5
Past year pull request authors: 4
Past year average comments per issue: 1.26
Past year average comments per pull request: 0.53
Past year merged pull request: 27
Past year bot issues: 0
Past year bot pull requests: 0
Top Issue Authors
- adokter (235)
- peterdesmet (95)
- bart1 (24)
- plieper (11)
- iskandari (7)
- stijnvanhoey (7)
- CeciliaNilsson709 (6)
- BerendWijers (5)
- barthoekstra (2)
- grapemanJac (2)
- jshamoun (2)
- PietrH (2)
- rsbivand (2)
- ElmoreEcology (2)
- Rafnuss (1)
Top Pull Request Authors
- adokter (144)
- peterdesmet (60)
- bart1 (36)
- CeciliaNilsson709 (13)
- iskandari (11)
- stijnvanhoey (11)
- Rafnuss (8)
- PietrH (7)
- barthoekstra (6)
- niconoe (2)
- baptischmi (1)
- BerendWijers (1)
- plieper (1)
- dsheldon (1)
Top Issue Labels
- bug (47)
- enhancement (37)
- sprint (35)
- documentation (30)
- wontfix (13)
- VPTS CSV (9)
- question (5)
- tests (4)
- blocked (3)
- GA (3)
- new feature (3)
- help wanted (2)
- duplicate (2)
- to test (1)
Top Pull Request Labels
- sprint (6)
- documentation (5)
- enhancement (5)
- bug (2)
- tests (2)
- blocked (1)
- to test (1)
Package metadata
- Total packages: 1
-
Total downloads:
- cran: 769 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 14
- Total maintainers: 1
cran.r-project.org: bioRad
Biological Analysis and Visualization of Weather Radar Data
- Homepage: https://github.com/adokter/bioRad/
- Documentation: http://cran.r-project.org/web/packages/bioRad/bioRad.pdf
- Licenses: MIT + file LICENSE
- Latest release: 0.9.1 (published 23 days ago)
- Last Synced: 2025-04-26T13:39:41.724Z (1 day ago)
- Versions: 14
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 769 Last month
-
Rankings:
- Forks count: 5.307%
- Stargazers count: 10.984%
- Average: 21.412%
- Downloads: 25.518%
- Dependent packages count: 29.797%
- Dependent repos count: 35.455%
- Maintainers (1)
Dependencies
- R >= 3.5.0 depends
- assertthat * imports
- aws.s3 * imports
- curl * imports
- data.table * imports
- fields * imports
- ggmap >= 3.0.0 imports
- ggplot2 * imports
- glue * imports
- graphics * imports
- lubridate * imports
- lutz * imports
- maptools * imports
- methods * imports
- raster * imports
- rgdal * imports
- rhdf5 * imports
- sp * imports
- stats * imports
- tidyr * imports
- utils * imports
- viridis * imports
- viridisLite * imports
- dplyr >= 0.7 suggests
- knitr * suggests
- rlang * suggests
- rmarkdown * suggests
- testthat * suggests
- tidyselect * suggests
- vdiffr * suggests
- actions/checkout v3 composite
- r-lib/actions/check-r-package v2 composite
- r-lib/actions/setup-pandoc v2 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
- actions/checkout v3 composite
- r-lib/actions/setup-pandoc v2 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
- actions/checkout v3 composite
- r-lib/actions/pr-fetch v2 composite
- r-lib/actions/pr-push v2 composite
- r-lib/actions/setup-r v2 composite
- actions/checkout v3 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
Score: 14.286032802705742