vol2birdR

R package for the vol2bird algorithm: generate vertical profiles of biological signals in weather radar data

https://github.com/adokter/vol2birdr

Science Score: 67.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 23 DOI reference(s) in README
  • Academic publication links
    Links to: zenodo.org
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (19.8%) to scientific vocabulary
Last synced: 6 months ago · JSON representation ·

Repository

R package for the vol2bird algorithm: generate vertical profiles of biological signals in weather radar data

Basic Info
Statistics
  • Stars: 6
  • Watchers: 2
  • Forks: 3
  • Open Issues: 16
  • Releases: 13
Created about 4 years ago · Last pushed 6 months ago
Metadata Files
Readme Changelog License Citation Codemeta

README.Rmd

---
output: github_document
editor_options: 
  markdown: 
    wrap: 72
---



```{r setup, include = FALSE}
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)
```



[![CRAN
status](https://www.r-pkg.org/badges/version/vol2birdR)](https://cran.r-project.org/package=vol2birdR)
[![R-CMD-check](https://github.com/adokter/vol2birdR/workflows/R-CMD-check/badge.svg)](https://github.com/adokter/vol2birdR/actions)
[![repo status](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.7992026.svg)](https://doi.org/10.5281/zenodo.7992026)



# vol2birdR

'**vol2birdR**' is an 'R' package for the 'vol2bird' algorithm for
calculating vertical profiles of birds and other biological scatterers
from weather radar data.

It also provides an 'R' interface to the 'MistNet' convolutional neural
network for precipitation segmentation, installing PyTorch libraries and
model.

'**vol2birdR**' can be used as a stand-alone package, but we recommend
[bioRad](https://adriaandokter.com/bioRad/) as the primary user
interface, with '**vol2birdR**' acting as a dependency of
[bioRad](https://adriaandokter.com/bioRad/).

# Install

'**vol2birdR**' is available for all major platforms (Linux, OS X and
Windows).

For OS X and Windows, you can install the released version of 'vol2birdR' from
[CRAN](https://CRAN.R-project.org) with:

```{r eval = FALSE}
install.packages("vol2birdR")
```

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/vol2birdR")
```

For Linux and for installation of the development version the GNU Scientific Library (GSL), PROJ and HDF5
libraries need to be installed as system libraries prior to installation
of '**vol2birdR**':

Click here for additional information when installing the dependencies on macOS Since the installation process requires the [Homebrew](https://brew.sh/) package manager you will have to install it. Open a terminal and issue the following command: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" When the installation has completed it will print out some additional information that is essential to follow. ==> Next steps: - Run these two commands in your terminal to add Homebrew to your PATH: echo >> /Users/$USER/.zprofile echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/$USER/.zprofile eval "$(/opt/homebrew/bin/brew shellenv)" - Run brew help to get started - Further documentation: https://docs.brew.sh You need to ensure that you follow the above three commands. The first two will add the necessary environment variables to your zshell user profile. echo >> /Users/$USER/.zprofile echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/$USER/.zprofile The second command will ensure that you get the necessary environment variables into the terminal where you ran the installation process of Homebrew. eval "$(/opt/homebrew/bin/brew shellenv)"
| System | Command | |:----------------------------------|:------------------------------------| | **OS X (using Homebrew)** | `brew install hdf5 proj gsl pkg-config` | | **Debian-based systems (including Ubuntu)** | `sudo apt-get install libhdf5-dev libproj-dev gsl-bin libgsl-dev pkg-config libbz2-dev` | | **Systems supporting yum and RPMs** | `sudo yum install hdf5-devel proj-devel gsl gsl-devel pkgconfig` | Then load the package with: ```{r load_vol2birdR} library(vol2birdR) ``` ### MistNet installation MistNet is a deep convolution neural net for segmenting out precipitation from radar data, see Lin et al. 2019. To use MistNet, follow the following additional installation steps in R: ``` # STEP 1: install additional libraries for using MistNet: library(vol2birdR) install_mistnet() ``` After completing this step, the following command should evaluate to `TRUE`: ``` mistnet_exists() ``` Next, download the mistnet model. Note that the model file is large, over 500Mb. ``` # STEP 2: download mistnet model: install_mistnet_model() ``` See [vignette](https://adriaandokter.com/vol2birdR/articles/vol2birdR.html) for additional installation information ## References: Citation for 'vol2bird' algorithm: - [**Bird migration flight altitudes studied by a network of operational weather radars**](https://doi.org/10.1098/rsif.2010.0116) Dokter AM, Liechti F, Stark H, Delobbe L, Tabary P, Holleman I J. R. Soc. Interface, **8**, 30--43, 2011, DOI [10.1098/rsif.2010.0116](https://doi.org/10.1098/rsif.2010.0116) Paper describing recent algorithm extensions and the bioRad package: - [**bioRad: biological analysis and visualization of weather radar data**](https://doi.org/10.1111/ecog.04028) Dokter AM, Desmet P, Spaaks JH, van Hoey S, Veen L, Verlinden L, Nilsson C, Haase G, Leijnse H, Farnsworth A, Bouten W, Shamoun-Baranes J. Ecography, **42**, 852-860, 2019, DOI [10.1111/ecog.04028](https://doi.org/10.1111/ecog.04028) 'vol2bird' implements dealiasing using the torus mapping method by Haase and Landelius: - [**Dealiasing of Doppler radar velocities using a torus mapping**](https://doi.org/10.1175/1520-0426(2004)021%3C1566:DODRVU%3E2.0.CO;2) Haase G, Landelius T. Journal of Atmospheric and Oceanic Technology **21**, 1566-1573, 2004, DOI [10.1175/1520-0426(2004)021\<1566:DODRVU\>2.0.CO;2](https://doi.org/10.1175/1520-0426(2004)021%3C1566:DODRVU%3E2.0.CO;2) Use the following citation for the 'MistNet' rain segmentation model: - [**MistNet: Measuring historical bird migration in the US using archived weather radar data and convolutional neural networks.**](https://doi.org/10.1111/2041-210X.13280) Lin T-Y, Winner K, Bernstein G, Mittal A, Dokter AM, Horton KG, Nilsson C, Van Doren BM, Farnsworth A, La Sorte FA, Maji S, Sheldon D. Methods in Ecology and Evolution, **10**, 1908-1922, 2019, DOI [10.1111/2041-210X.13280](https://doi.org/10.1111/2041-210X.13280)

Owner

  • Name: Adriaan Dokter
  • Login: adokter
  • Kind: user
  • Company: Lab of ornithology, Cornell University

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 "vol2birdR" in publications use:'
type: software
license: LGPL-3.0-or-later
title: 'vol2birdR: Vertical Profiles of Biological Signals in Weather Radar Data'
version: 1.0.4
doi: 10.32614/CRAN.package.vol2birdR
identifiers:
- type: url
  value: https://adriaandokter.com/vol2bird/
abstract: '''R'' implementation of the ''vol2bird'' software for generating vertical
  profiles of birds and other biological signals in weather radar data. See Dokter
  et al. (2011) <https://doi.org/10.1098/rsif.2010.0116> for a paper describing the
  methodology.'
authors:
- family-names: Henja
  given-names: Anders
  email: anders.henja@gmail.com
- family-names: Dokter
  given-names: Adriaan M.
  email: vol2birdr@cornell.edu
  orcid: https://orcid.org/0000-0001-6573-066X
repository: https://CRAN.R-project.org/package=vol2birdR
repository-code: https://github.com/adokter/vol2birdR
url: https://github.com/adokter/vol2birdR/
date-released: '2024-08-21'
contact:
- family-names: Dokter
  given-names: Adriaan M.
  email: vol2birdr@cornell.edu
  orcid: https://orcid.org/0000-0001-6573-066X
references:
- 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: hadley@rstudio.com
  year: '2024'
  doi: 10.32614/CRAN.package.assertthat
- 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: pkgbuild
  abstract: 'pkgbuild: Find Tools Needed to Build R Packages'
  notes: Imports
  url: https://pkgbuild.r-lib.org
  repository: https://CRAN.R-project.org/package=pkgbuild
  authors:
  - family-names: Wickham
    given-names: Hadley
  - family-names: Hester
    given-names: Jim
  - family-names: Csárdi
    given-names: Gábor
    email: csardi.gabor@gmail.com
  year: '2024'
  doi: 10.32614/CRAN.package.pkgbuild
- type: software
  title: Rcpp
  abstract: 'Rcpp: Seamless R and C++ Integration'
  notes: Imports
  url: https://www.rcpp.org
  repository: https://CRAN.R-project.org/package=Rcpp
  authors:
  - family-names: Eddelbuettel
    given-names: Dirk
  - family-names: Francois
    given-names: Romain
  - family-names: Allaire
    given-names: JJ
  - family-names: Ushey
    given-names: Kevin
  - family-names: Kou
    given-names: Qiang
  - family-names: Russell
    given-names: Nathan
  - family-names: Ucar
    given-names: Inaki
  - family-names: Bates
    given-names: Douglas
  - family-names: Chambers
    given-names: John
  year: '2024'
  doi: 10.32614/CRAN.package.Rcpp
  version: '>= 1.0.4'
- 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: lionel@posit.co
  - family-names: Wickham
    given-names: Hadley
    email: hadley@posit.co
  year: '2024'
  doi: 10.32614/CRAN.package.rlang
- 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: withr
  abstract: 'withr: Run Code ''With'' Temporarily Modified Global State'
  notes: Imports
  url: https://withr.r-lib.org
  repository: https://CRAN.R-project.org/package=withr
  authors:
  - family-names: Hester
    given-names: Jim
  - family-names: Henry
    given-names: Lionel
    email: lionel@posit.co
  - family-names: Müller
    given-names: Kirill
    email: krlmlr+r@mailbox.org
  - family-names: Ushey
    given-names: Kevin
    email: kevinushey@gmail.com
  - family-names: Wickham
    given-names: Hadley
    email: hadley@posit.co
  - family-names: Chang
    given-names: Winston
  year: '2024'
  doi: 10.32614/CRAN.package.withr
- type: software
  title: Rcpp
  abstract: 'Rcpp: Seamless R and C++ Integration'
  notes: Imports
  url: https://www.rcpp.org
  repository: https://CRAN.R-project.org/package=Rcpp
  authors:
  - family-names: Eddelbuettel
    given-names: Dirk
  - family-names: Francois
    given-names: Romain
  - family-names: Allaire
    given-names: JJ
  - family-names: Ushey
    given-names: Kevin
  - family-names: Kou
    given-names: Qiang
  - family-names: Russell
    given-names: Nathan
  - family-names: Ucar
    given-names: Inaki
  - family-names: Bates
    given-names: Douglas
  - family-names: Chambers
    given-names: John
  year: '2024'
  doi: 10.32614/CRAN.package.Rcpp
- type: software
  title: RcppGSL
  abstract: 'RcppGSL: ''Rcpp'' Integration for ''GNU GSL'' Vectors and Matrices'
  notes: LinkingTo
  url: https://dirk.eddelbuettel.com/code/rcpp.gsl.html
  repository: https://CRAN.R-project.org/package=RcppGSL
  authors:
  - family-names: Eddelbuettel
    given-names: Dirk
  - family-names: Francois
    given-names: Romain
  year: '2024'
  doi: 10.32614/CRAN.package.RcppGSL
- 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: xie@yihui.name
    orcid: https://orcid.org/0000-0003-0645-5666
  year: '2024'
  doi: 10.32614/CRAN.package.knitr
- 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: jj@posit.co
  - family-names: Xie
    given-names: Yihui
    email: xie@yihui.name
    orcid: https://orcid.org/0000-0003-0645-5666
  - family-names: Dervieux
    given-names: Christophe
    email: cderv@posit.co
    orcid: https://orcid.org/0000-0003-4474-2498
  - family-names: McPherson
    given-names: Jonathan
    email: jonathan@posit.co
  - family-names: Luraschi
    given-names: Javier
  - family-names: Ushey
    given-names: Kevin
    email: kevin@posit.co
  - family-names: Atkins
    given-names: Aron
    email: aron@posit.co
  - family-names: Wickham
    given-names: Hadley
    email: hadley@posit.co
  - family-names: Cheng
    given-names: Joe
    email: joe@posit.co
  - family-names: Chang
    given-names: Winston
    email: winston@posit.co
  - family-names: Iannone
    given-names: Richard
    email: rich@posit.co
    orcid: https://orcid.org/0000-0003-3925-190X
  year: '2024'
  doi: 10.32614/CRAN.package.rmarkdown
- 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: hadley@posit.co
  year: '2024'
  doi: 10.32614/CRAN.package.testthat
  version: '>= 3.0.0'

CodeMeta (codemeta.json)

{
  "@context": "https://doi.org/10.5063/schema/codemeta-2.0",
  "@type": "SoftwareSourceCode",
  "identifier": "vol2birdR",
  "description": "'R' implementation of the 'vol2bird' software for generating vertical profiles of birds and other biological signals in weather radar data. See Dokter et al. (2011) <doi:10.1098/rsif.2010.0116> for a paper describing the methodology.",
  "name": "vol2birdR: Vertical Profiles of Biological Signals in Weather Radar Data",
  "relatedLink": [
    "https://adriaandokter.com/vol2bird/",
    "https://CRAN.R-project.org/package=vol2birdR"
  ],
  "codeRepository": "https://github.com/adokter/vol2birdR/",
  "issueTracker": "https://github.com/adokter/vol2birdR/issues",
  "license": "https://spdx.org/licenses/LGPL-3.0",
  "version": "1.2.1",
  "programmingLanguage": {
    "@type": "ComputerLanguage",
    "name": "R",
    "url": "https://r-project.org"
  },
  "runtimePlatform": "R version 4.4.2 (2024-10-31)",
  "provider": {
    "@id": "https://cran.r-project.org",
    "@type": "Organization",
    "name": "Comprehensive R Archive Network (CRAN)",
    "url": "https://cran.r-project.org"
  },
  "author": [
    {
      "@type": "Person",
      "givenName": "Anders",
      "familyName": "Henja",
      "email": "anders.henja@gmail.com"
    },
    {
      "@type": "Person",
      "givenName": "Adriaan M.",
      "familyName": "Dokter",
      "email": "vol2birdr@cornell.edu",
      "@id": "https://orcid.org/0000-0001-6573-066X"
    }
  ],
  "contributor": [
    {
      "@type": "Person",
      "givenName": "Alexander",
      "familyName": "Tedeschi",
      "email": "at744@cornell.edu",
      "@id": "https://orcid.org/0000-0003-0772-6931"
    },
    {
      "@type": "Person",
      "givenName": "Tsung-Yu",
      "familyName": "Lin"
    },
    {
      "@type": "Person",
      "givenName": "Subranshu",
      "familyName": "Maji",
      "email": "smaji@cs.umass.edu"
    },
    {
      "@type": "Person",
      "givenName": "Daniel",
      "familyName": "Sheldon",
      "email": "sheldon@cs.umass.edu"
    },
    {
      "@type": "Person",
      "givenName": "Bart",
      "familyName": "Kranstauber",
      "email": "b.kranstauber@uva.nl",
      "@id": "https://orcid.org/0000-0001-8303-780X"
    },
    {
      "@type": "Person",
      "givenName": "Jurriaan H.",
      "familyName": "Spaaks"
    },
    {
      "@type": "Person",
      "givenName": "Lourens",
      "familyName": "Veen"
    },
    {
      "@type": "Person",
      "givenName": "Iwan",
      "familyName": "Holleman"
    },
    {
      "@type": "Person",
      "givenName": "Hidde",
      "familyName": "Leijnse"
    },
    {
      "@type": "Person",
      "givenName": "John H.",
      "familyName": "Merritt"
    },
    {
      "@type": "Person",
      "givenName": "Bart",
      "familyName": "Kelley"
    },
    {
      "@type": "Person",
      "givenName": "Mark",
      "familyName": "Couture"
    },
    {
      "@type": "Person",
      "givenName": "Daniel",
      "familyName": "Falbel"
    }
  ],
  "copyrightHolder": [
    {
      "@type": "Person",
      "givenName": "John H.",
      "familyName": "Merritt"
    },
    {
      "@type": "Organization",
      "name": "Swedish Meteorological and Hydrological Institute, SMHI"
    }
  ],
  "funder": [
    {
      "@type": "Organization",
      "name": "GloBAM"
    }
  ],
  "maintainer": [
    {
      "@type": "Person",
      "givenName": "Adriaan M.",
      "familyName": "Dokter",
      "email": "vol2birdr@cornell.edu",
      "@id": "https://orcid.org/0000-0001-6573-066X"
    }
  ],
  "softwareSuggestions": [
    {
      "@type": "SoftwareApplication",
      "identifier": "knitr",
      "name": "knitr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=knitr"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "rmarkdown",
      "name": "rmarkdown",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=rmarkdown"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "testthat",
      "name": "testthat",
      "version": ">= 3.0.0",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=testthat"
    }
  ],
  "softwareRequirements": {
    "1": {
      "@type": "SoftwareApplication",
      "identifier": "R",
      "name": "R",
      "version": ">= 4.0.0"
    },
    "2": {
      "@type": "SoftwareApplication",
      "identifier": "assertthat",
      "name": "assertthat",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=assertthat"
    },
    "3": {
      "@type": "SoftwareApplication",
      "identifier": "methods",
      "name": "methods"
    },
    "4": {
      "@type": "SoftwareApplication",
      "identifier": "pkgbuild",
      "name": "pkgbuild",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=pkgbuild"
    },
    "5": {
      "@type": "SoftwareApplication",
      "identifier": "Rcpp",
      "name": "Rcpp",
      "version": ">= 1.0.4",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=Rcpp"
    },
    "6": {
      "@type": "SoftwareApplication",
      "identifier": "rlang",
      "name": "rlang",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=rlang"
    },
    "7": {
      "@type": "SoftwareApplication",
      "identifier": "utils",
      "name": "utils"
    },
    "8": {
      "@type": "SoftwareApplication",
      "identifier": "withr",
      "name": "withr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=withr"
    },
    "SystemRequirements": "GNU make, GSL, HDF5, PROJ"
  },
  "fileSize": "15134.825KB",
  "releaseNotes": "https://github.com/adokter/vol2birdR/blob/master/NEWS.md",
  "readme": "https://github.com/adokter/vol2birdR/blob/main/README.md",
  "contIntegration": "https://github.com/adokter/vol2birdR/actions",
  "developmentStatus": "https://www.repostatus.org/#active"
}

GitHub Events

Total
  • Create event: 23
  • Issues event: 41
  • Release event: 9
  • Delete event: 24
  • Issue comment event: 51
  • Push event: 88
  • Pull request event: 37
Last Year
  • Create event: 23
  • Issues event: 41
  • Release event: 9
  • Delete event: 24
  • Issue comment event: 51
  • Push event: 88
  • Pull request event: 37

Committers

Last synced: 11 months ago

All Time
  • Total Commits: 516
  • Total Committers: 7
  • Avg Commits per committer: 73.714
  • Development Distribution Score (DDS): 0.486
Past Year
  • Commits: 144
  • Committers: 3
  • Avg Commits per committer: 48.0
  • Development Distribution Score (DDS): 0.285
Top Committers
Name Email Commits
Adriaan Dokter a****r@g****m 265
iskandari s****i@g****m 141
Anders Henja a****s@b****u 97
peterdesmet p****t@i****e 9
Tomas Kalibera t****a@g****m 2
bart1 1****1 1
Jeroen Ooms j****s@g****m 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 70
  • Total pull requests: 94
  • Average time to close issues: 2 months
  • Average time to close pull requests: 19 days
  • Total issue authors: 5
  • Total pull request authors: 6
  • Average comments per issue: 1.56
  • Average comments per pull request: 0.54
  • Merged pull requests: 79
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 23
  • Pull requests: 38
  • Average time to close issues: 18 days
  • Average time to close pull requests: 3 days
  • Issue authors: 4
  • Pull request authors: 2
  • Average comments per issue: 0.48
  • Average comments per pull request: 0.37
  • Merged pull requests: 30
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • adokter (59)
  • iskandari (5)
  • peterdesmet (4)
  • ForChimneySwifts (1)
  • fyiguo (1)
Pull Request Authors
  • adokter (67)
  • iskandari (19)
  • kalibera (4)
  • bart1 (2)
  • peterdesmet (1)
  • jeroen (1)
Top Labels
Issue Labels
bug (15) enhancement (7) documentation (2)
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • cran 312 last-month
  • Total dependent packages: 1
  • Total dependent repositories: 0
  • Total versions: 13
  • Total maintainers: 1
cran.r-project.org: vol2birdR

Vertical Profiles of Biological Signals in Weather Radar Data

  • Versions: 13
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Downloads: 312 Last month
Rankings
Forks count: 21.9%
Dependent packages count: 29.8%
Average: 30.6%
Stargazers count: 35.2%
Dependent repos count: 35.5%
Maintainers (1)
Last synced: 6 months ago

Dependencies

DESCRIPTION cran
  • Rcpp >= 1.0.4 imports
  • assertthat * imports
  • methods * imports
  • pkgbuild * imports
  • rlang * imports
  • utils * imports
  • withr * imports
  • knitr * suggests
  • rmarkdown * suggests
  • testthat >= 3.0.0 suggests
.github/workflows/R-CMD-check.yaml actions
  • 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
.github/workflows/mistnet.yaml actions
  • actions/checkout v3 composite
  • actions/download-artifact v1 composite
  • actions/upload-artifact v1 composite
  • keithweaver/aws-s3-github-action v1.0.0 composite
  • montudor/action-zip v0.1.0 composite