Science Score: 44.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
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (16.2%) to scientific vocabulary
Keywords
oscibio
r
r-package
radar
rstats
Last synced: 10 months ago
·
JSON representation
·
Repository
R package to download radar data for biological research
Basic Info
- Host: GitHub
- Owner: aloftdata
- License: other
- Language: R
- Default Branch: main
- Homepage: https://aloftdata.github.io/getRad/
- Size: 27 MB
Statistics
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 15
- Releases: 2
Topics
oscibio
r
r-package
radar
rstats
Created over 1 year ago
· Last pushed 10 months ago
Metadata Files
Readme
Changelog
Contributing
License
Code of conduct
Citation
Codemeta
README.Rmd
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%",
warning = FALSE,
message = FALSE
)
```
# getRad
[](https://CRAN.R-project.org/package=getRad)
[](https://github.com/aloftdata/getRad/actions/workflows/R-CMD-check.yaml)
[](https://app.codecov.io/gh/aloftdata/getRad/)
[](https://www.repostatus.org/#active)
getRad is an R package that provides a unified interface to download radar data for biological and aeroecological research. It gives access to both polar volume radar data and [vertical profile data](https://aloftdata.eu/vpts-csv/) from [different sources](https://aloftdata.github.io/getRad/articles/supported_sources.html) and loads it directly into R. getRad also facilitates further exploration of the data by other tools such as [bioRad](https://adriaandokter.com/bioRad/) by standardizing the data.
## Installation
Install the latest released version from CRAN:
```{r, eval = FALSE}
install.packages("getRad")
```
Or the development version from [GitHub](https://github.com/aloftdata/getRad):
```{r, eval = FALSE}
# install.packages("devtools")
devtools::install_github("aloftdata/getRad")
```
## Usage
Download a polar volume, and then plot it using `bioRad`:
```{r example}
library(getRad)
library(bioRad)
# Plot daytime insect movements in Finland (Mäkinen et al. 2022)
pvol <- get_pvol("fianj", as.POSIXct("2012-05-17 14:00", tz = "UTC"))
plot(project_as_ppi(get_scan(pvol, 0), range_max = 75000))
plot(calculate_vp(pvol, h_layer = 50, n_layer = 40, warning = FALSE))
# Plot nocturnal migration in Finland
pvol <- get_pvol("fianj", as.POSIXct("2012-05-11 23:00", tz = "UTC"))
plot(project_as_ppi(get_scan(pvol, 0), range_max = 75000))
plot(calculate_vp(pvol, h_layer = 50, n_layer = 40, warning = FALSE))
```
Download a vertical profile time series from the [Aloft bucket](https://aloftdata.eu/browse/):
```{r vpts}
# Plot VPTS data for two radars
vpts_list <- get_vpts(
radar = c("bejab", "deess"),
datetime = lubridate::interval(
lubridate::as_datetime("2021-10-03 16:00:00"),
lubridate::as_datetime("2021-10-05 10:00:00")
),
source = "baltrad"
)
par(mfrow = 2:1)
for (i in names(vpts_list)) {
plot(regularize_vpts(vpts_list[[i]]), main = i)
}
```
## Meta
- We welcome [contributions](https://aloftdata.github.io/getRad/CONTRIBUTING.html) including bug reports.
- License: MIT
- Get [citation information](https://aloftdata.github.io/getRad/authors.html#citation) for getRad in R doing `citation("getRad")`.
- Please note that this project is released with a [Contributor Code of Conduct](https://aloftdata.github.io/getRad/CODE_OF_CONDUCT.html). By participating in this project you agree to abide by its terms.
Owner
- Name: Aloft
- Login: aloftdata
- Kind: organization
- Website: https://aloftdata.eu
- Repositories: 15
- Profile: https://github.com/aloftdata
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 "getRad" in publications use:'
type: software
license: MIT
title: 'getRad: Download Radar Data for Biological Research'
version: 0.2.0.9000
doi: 10.32614/CRAN.package.getRad
abstract: Load polar volume and vertical profile data for aeroecological research
directly into R. With 'getRad' you can access data from several sources in Europe
and the US and standardize it to facilitate further exploration in tools such as
'bioRad'.
authors:
- family-names: Kranstauber
given-names: Bart
email: b.kranstauber@uva.nl
orcid: https://orcid.org/0000-0001-8303-780X
affiliation: University of Amsterdam
- family-names: Huybrechts
given-names: Pieter
email: pieter.huybrechts@inbo.be
orcid: https://orcid.org/0000-0002-6658-6062
affiliation: Research Institute for Nature and Forest (INBO)
- family-names: Desmet
given-names: Peter
email: peter.desmet@inbo.be
orcid: https://orcid.org/0000-0002-8442-8025
affiliation: Research Institute for Nature and Forest (INBO)
repository: https://CRAN.R-project.org/package=getRad
repository-code: https://github.com/aloftdata/getRad
url: https://aloftdata.github.io/getRad/
contact:
- family-names: Kranstauber
given-names: Bart
email: b.kranstauber@uva.nl
orcid: https://orcid.org/0000-0001-8303-780X
affiliation: University of Amsterdam
keywords:
- oscibio
- r
- r-package
- radar
- rstats
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: '2025'
version: '>= 4.1.0'
- type: software
title: bioRad
abstract: 'bioRad: Biological Analysis and Visualization of Weather Radar Data'
notes: Imports
url: https://github.com/adokter/bioRad/
repository: https://CRAN.R-project.org/package=bioRad
authors:
- family-names: Dokter
given-names: Adriaan M.
email: biorad@cornell.edu
orcid: https://orcid.org/0000-0001-6573-066X
- family-names: Desmet
given-names: Peter
email: peter.desmet@inbo.be
orcid: https://orcid.org/0000-0002-8442-8025
- family-names: Kranstauber
given-names: Bart
email: b.kranstauber@uva.nl
orcid: https://orcid.org/0000-0001-8303-780X
- family-names: Nilsson
given-names: Cecilia
email: cecilia.nilsson709@gmail.com
orcid: https://orcid.org/0000-0001-8957-4411
- family-names: Van Hoey
given-names: Stijn
email: stijnvanhoey@gmail.com
orcid: https://orcid.org/0000-0001-6413-3185
year: '2025'
doi: 10.32614/CRAN.package.bioRad
- type: software
title: cachem
abstract: 'cachem: Cache R Objects with Automatic Pruning'
notes: Imports
url: https://cachem.r-lib.org/
repository: https://CRAN.R-project.org/package=cachem
authors:
- family-names: Chang
given-names: Winston
email: winston@posit.co
year: '2025'
doi: 10.32614/CRAN.package.cachem
- type: software
title: cli
abstract: 'cli: Helpers for Developing Command Line Interfaces'
notes: Imports
url: https://cli.r-lib.org
repository: https://CRAN.R-project.org/package=cli
authors:
- family-names: Csárdi
given-names: Gábor
email: gabor@posit.co
year: '2025'
doi: 10.32614/CRAN.package.cli
- 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: hadley@posit.co
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: davis@posit.co
orcid: https://orcid.org/0000-0003-4777-038X
year: '2025'
doi: 10.32614/CRAN.package.dplyr
version: '>= 1.1.0'
- 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: jenny@posit.co
orcid: https://orcid.org/0000-0002-6983-2759
year: '2025'
doi: 10.32614/CRAN.package.glue
- type: software
title: httr2
abstract: 'httr2: Perform HTTP Requests and Process the Responses'
notes: Imports
url: https://httr2.r-lib.org
repository: https://CRAN.R-project.org/package=httr2
authors:
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
year: '2025'
doi: 10.32614/CRAN.package.httr2
version: '>= 1.1.1'
- 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: spinuvit@gmail.com
- family-names: Grolemund
given-names: Garrett
- family-names: Wickham
given-names: Hadley
year: '2025'
doi: 10.32614/CRAN.package.lubridate
- type: software
title: purrr
abstract: 'purrr: Functional Programming Tools'
notes: Imports
url: https://purrr.tidyverse.org/
repository: https://CRAN.R-project.org/package=purrr
authors:
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
orcid: https://orcid.org/0000-0003-4757-117X
- family-names: Henry
given-names: Lionel
email: lionel@posit.co
year: '2025'
doi: 10.32614/CRAN.package.purrr
version: '>= 1.0.0'
- 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: '2025'
doi: 10.32614/CRAN.package.rlang
- type: software
title: tibble
abstract: 'tibble: Simple Data Frames'
notes: Imports
url: https://tibble.tidyverse.org/
repository: https://CRAN.R-project.org/package=tibble
authors:
- family-names: Müller
given-names: Kirill
email: kirill@cynkra.com
orcid: https://orcid.org/0000-0002-1416-3412
- family-names: Wickham
given-names: Hadley
email: hadley@rstudio.com
year: '2025'
doi: 10.32614/CRAN.package.tibble
- type: software
title: tools
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: '2025'
- 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: '2025'
- type: software
title: vroom
abstract: 'vroom: Read and Write Rectangular Text Data Quickly'
notes: Imports
url: https://vroom.r-lib.org
repository: https://CRAN.R-project.org/package=vroom
authors:
- family-names: Hester
given-names: Jim
orcid: https://orcid.org/0000-0002-2739-7082
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
orcid: https://orcid.org/0000-0003-4757-117X
- family-names: Bryan
given-names: Jennifer
email: jenny@posit.co
orcid: https://orcid.org/0000-0002-6983-2759
year: '2025'
doi: 10.32614/CRAN.package.vroom
- 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: '2025'
doi: 10.32614/CRAN.package.withr
- type: software
title: xml2
abstract: 'xml2: Parse XML'
notes: Imports
url: https://xml2.r-lib.org
repository: https://CRAN.R-project.org/package=xml2
authors:
- family-names: Wickham
given-names: Hadley
- family-names: Hester
given-names: Jim
- family-names: Ooms
given-names: Jeroen
email: jeroenooms@gmail.com
year: '2025'
doi: 10.32614/CRAN.package.xml2
- type: software
title: askpass
abstract: 'askpass: Password Entry Utilities for R, Git, and SSH'
notes: Suggests
url: https://r-lib.r-universe.dev/askpass
repository: https://CRAN.R-project.org/package=askpass
authors:
- family-names: Ooms
given-names: Jeroen
email: jeroenooms@gmail.com
orcid: https://orcid.org/0000-0002-4035-0289
year: '2025'
doi: 10.32614/CRAN.package.askpass
- type: software
title: htmltools
abstract: 'htmltools: Tools for HTML'
notes: Suggests
url: https://rstudio.github.io/htmltools/
repository: https://CRAN.R-project.org/package=htmltools
authors:
- family-names: Cheng
given-names: Joe
email: joe@posit.co
- family-names: Sievert
given-names: Carson
email: carson@posit.co
orcid: https://orcid.org/0000-0002-4958-2844
- family-names: Schloerke
given-names: Barret
email: barret@posit.co
orcid: https://orcid.org/0000-0001-9986-114X
- family-names: Chang
given-names: Winston
email: winston@posit.co
orcid: https://orcid.org/0000-0002-1576-2126
- family-names: Xie
given-names: Yihui
email: yihui@posit.co
- family-names: Allen
given-names: Jeff
year: '2025'
doi: 10.32614/CRAN.package.htmltools
- type: software
title: keyring
abstract: 'keyring: Access the System Credential Store from R'
notes: Suggests
url: https://keyring.r-lib.org/
repository: https://CRAN.R-project.org/package=keyring
authors:
- family-names: Csárdi
given-names: Gábor
email: csardi.gabor@gmail.com
year: '2025'
doi: 10.32614/CRAN.package.keyring
- 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: '2025'
doi: 10.32614/CRAN.package.knitr
- type: software
title: leaflet
abstract: 'leaflet: Create Interactive Web Maps with the JavaScript ''Leaflet''
Library'
notes: Suggests
url: https://rstudio.github.io/leaflet/
repository: https://CRAN.R-project.org/package=leaflet
authors:
- family-names: Cheng
given-names: Joe
email: joe@posit.co
- family-names: Schloerke
given-names: Barret
email: barret@posit.co
orcid: https://orcid.org/0000-0001-9986-114X
- family-names: Karambelkar
given-names: Bhaskar
- family-names: Xie
given-names: Yihui
year: '2025'
doi: 10.32614/CRAN.package.leaflet
- type: software
title: rhdf5
abstract: 'rhdf5: R Interface to HDF5'
notes: Suggests
url: https://github.com/Huber-group-EMBL/rhdf5
repository: https://bioconductor.org/
authors:
- family-names: Fischer
given-names: Bernd
- family-names: Smith
given-names: Mike
email: mike.smith@embl.de
orcid: https://orcid.org/0000-0002-7800-3848
- family-names: Pau
given-names: Gregoire
year: '2025'
doi: 10.18129/B9.bioc.rhdf5
- type: software
title: rnaturalearth
abstract: 'rnaturalearth: World Map Data from Natural Earth'
notes: Suggests
url: https://docs.ropensci.org/rnaturalearth/
repository: https://CRAN.R-project.org/package=rnaturalearth
authors:
- family-names: Massicotte
given-names: Philippe
email: pmassicotte@hotmail.com
orcid: https://orcid.org/0000-0002-5919-4116
- family-names: South
given-names: Andy
email: southandy@gmail.com
year: '2025'
doi: 10.32614/CRAN.package.rnaturalearth
- type: software
title: rnaturalearthdata
abstract: 'rnaturalearthdata: World Vector Map Data from Natural Earth Used in ''rnaturalearth'''
notes: Suggests
url: https://docs.ropensci.org/rnaturalearthdata/
repository: https://CRAN.R-project.org/package=rnaturalearthdata
authors:
- family-names: South
given-names: Andy
email: southandy@gmail.com
orcid: https://orcid.org/0000-0003-4051-6135
- family-names: Michael
given-names: Schramm
email: mpschramm@gmail.com
- family-names: Massicotte
given-names: Philippe
email: pmassicotte@hotmail.com
orcid: https://orcid.org/0000-0002-5919-4116
year: '2025'
doi: 10.32614/CRAN.package.rnaturalearthdata
- type: software
title: sf
abstract: 'sf: Simple Features for R'
notes: Suggests
url: https://r-spatial.github.io/sf/
repository: https://CRAN.R-project.org/package=sf
authors:
- family-names: Pebesma
given-names: Edzer
email: edzer.pebesma@uni-muenster.de
orcid: https://orcid.org/0000-0001-8049-7069
year: '2025'
doi: 10.32614/CRAN.package.sf
- 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: '2025'
doi: 10.32614/CRAN.package.testthat
version: '>= 3.0.0'
- type: software
title: tidyr
abstract: 'tidyr: Tidy Messy Data'
notes: Suggests
url: https://tidyr.tidyverse.org
repository: https://CRAN.R-project.org/package=tidyr
authors:
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
- family-names: Vaughan
given-names: Davis
email: davis@posit.co
- family-names: Girlich
given-names: Maximilian
year: '2025'
doi: 10.32614/CRAN.package.tidyr
- 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: anders.henja@gmail.com
- family-names: Dokter
given-names: Adriaan M.
email: vol2birdr@cornell.edu
orcid: https://orcid.org/0000-0001-6573-066X
year: '2025'
doi: 10.32614/CRAN.package.vol2birdR
CodeMeta (codemeta.json)
{
"@context": "https://doi.org/10.5063/schema/codemeta-2.0",
"@type": "SoftwareSourceCode",
"identifier": "getRad",
"description": "Load polar volume and vertical profile data for aeroecological research directly into R. With 'getRad' you can access data from several sources in Europe and the US and standardize it to facilitate further exploration in tools such as 'bioRad'.",
"name": "getRad: Download Radar Data for Biological Research",
"relatedLink": "https://aloftdata.github.io/getRad/",
"codeRepository": "https://github.com/aloftdata/getRad",
"issueTracker": "https://github.com/aloftdata/getRad/issues",
"license": "https://spdx.org/licenses/MIT",
"version": "0.2.0",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
"url": "https://r-project.org"
},
"runtimePlatform": "R version 4.5.1 (2025-06-13)",
"author": [
{
"@type": "Person",
"givenName": "Bart",
"familyName": "Kranstauber",
"email": "b.kranstauber@uva.nl",
"@id": "https://orcid.org/0000-0001-8303-780X"
},
{
"@type": "Person",
"givenName": "Pieter",
"familyName": "Huybrechts",
"email": "pieter.huybrechts@inbo.be",
"@id": "https://orcid.org/0000-0002-6658-6062"
},
{
"@type": "Person",
"givenName": "Peter",
"familyName": "Desmet",
"email": "peter.desmet@inbo.be",
"@id": "https://orcid.org/0000-0002-8442-8025"
}
],
"contributor": [
{
"@type": "Person",
"givenName": "Cecilia",
"familyName": "Nilsson",
"email": "cecilia.nilsson@biol.lu.se",
"@id": "https://orcid.org/0000-0001-8957-4411"
},
{
"@type": "Person",
"givenName": "Alexander",
"familyName": "Tedeschi",
"email": "at744@cornell.edu",
"@id": "https://orcid.org/0000-0003-0772-6931"
},
{
"@type": "Person",
"givenName": "Hidde",
"familyName": "Leijnse",
"@id": "https://orcid.org/0000-0001-7835-4480"
},
{
"@type": "Person",
"givenName": "Bart",
"familyName": "Hoekstra",
"@id": "https://orcid.org/0000-0002-7085-3805"
}
],
"copyrightHolder": [
{
"@type": "Organization",
"name": "University of Amsterdam"
}
],
"funder": [
{
"@type": "Organization",
"name": "Biodiversa+"
}
],
"maintainer": [
{
"@type": "Person",
"givenName": "Bart",
"familyName": "Kranstauber",
"email": "b.kranstauber@uva.nl",
"@id": "https://orcid.org/0000-0001-8303-780X"
}
],
"softwareSuggestions": [
{
"@type": "SoftwareApplication",
"identifier": "askpass",
"name": "askpass",
"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=askpass"
},
{
"@type": "SoftwareApplication",
"identifier": "htmltools",
"name": "htmltools",
"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=htmltools"
},
{
"@type": "SoftwareApplication",
"identifier": "keyring",
"name": "keyring",
"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=keyring"
},
{
"@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": "leaflet",
"name": "leaflet",
"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=leaflet"
},
{
"@type": "SoftwareApplication",
"identifier": "rhdf5",
"name": "rhdf5",
"provider": {
"@id": "https://www.bioconductor.org",
"@type": "Organization",
"name": "Bioconductor",
"url": "https://www.bioconductor.org"
},
"sameAs": "https://bioconductor.org/packages/release/bioc/html/rhdf5.html"
},
{
"@type": "SoftwareApplication",
"identifier": "rnaturalearth",
"name": "rnaturalearth",
"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=rnaturalearth"
},
{
"@type": "SoftwareApplication",
"identifier": "rnaturalearthdata",
"name": "rnaturalearthdata",
"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=rnaturalearthdata"
},
{
"@type": "SoftwareApplication",
"identifier": "sf",
"name": "sf",
"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=sf"
},
{
"@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"
},
{
"@type": "SoftwareApplication",
"identifier": "tidyr",
"name": "tidyr",
"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=tidyr"
},
{
"@type": "SoftwareApplication",
"identifier": "vol2birdR",
"name": "vol2birdR",
"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=vol2birdR"
},
{
"@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"
}
],
"softwareRequirements": {
"1": {
"@type": "SoftwareApplication",
"identifier": "R",
"name": "R",
"version": ">= 4.1.0"
},
"2": {
"@type": "SoftwareApplication",
"identifier": "bioRad",
"name": "bioRad",
"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=bioRad"
},
"3": {
"@type": "SoftwareApplication",
"identifier": "cachem",
"name": "cachem",
"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=cachem"
},
"4": {
"@type": "SoftwareApplication",
"identifier": "cli",
"name": "cli",
"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=cli"
},
"5": {
"@type": "SoftwareApplication",
"identifier": "dplyr",
"name": "dplyr",
"version": ">= 1.1.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=dplyr"
},
"6": {
"@type": "SoftwareApplication",
"identifier": "glue",
"name": "glue",
"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=glue"
},
"7": {
"@type": "SoftwareApplication",
"identifier": "httr2",
"name": "httr2",
"version": ">= 1.1.1",
"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=httr2"
},
"8": {
"@type": "SoftwareApplication",
"identifier": "lubridate",
"name": "lubridate",
"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=lubridate"
},
"9": {
"@type": "SoftwareApplication",
"identifier": "purrr",
"name": "purrr",
"version": ">= 1.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=purrr"
},
"10": {
"@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"
},
"11": {
"@type": "SoftwareApplication",
"identifier": "tibble",
"name": "tibble",
"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=tibble"
},
"12": {
"@type": "SoftwareApplication",
"identifier": "tools",
"name": "tools"
},
"13": {
"@type": "SoftwareApplication",
"identifier": "utils",
"name": "utils"
},
"14": {
"@type": "SoftwareApplication",
"identifier": "vroom",
"name": "vroom",
"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=vroom"
},
"15": {
"@type": "SoftwareApplication",
"identifier": "xml2",
"name": "xml2",
"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=xml2"
},
"SystemRequirements": null
},
"fileSize": "4558.06KB"
}
GitHub Events
Total
- Create event: 37
- Release event: 1
- Issues event: 67
- Delete event: 36
- Issue comment event: 137
- Push event: 320
- Pull request review comment event: 75
- Pull request event: 84
- Pull request review event: 94
Last Year
- Create event: 37
- Release event: 1
- Issues event: 67
- Delete event: 36
- Issue comment event: 137
- Push event: 320
- Pull request review comment event: 75
- Pull request event: 84
- Pull request review event: 94
Issues and Pull Requests
Last synced: 10 months ago
All Time
- Total issues: 44
- Total pull requests: 53
- Average time to close issues: about 1 month
- Average time to close pull requests: 7 days
- Total issue authors: 5
- Total pull request authors: 5
- Average comments per issue: 1.36
- Average comments per pull request: 0.87
- Merged pull requests: 42
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 44
- Pull requests: 53
- Average time to close issues: about 1 month
- Average time to close pull requests: 7 days
- Issue authors: 5
- Pull request authors: 5
- Average comments per issue: 1.36
- Average comments per pull request: 0.87
- Merged pull requests: 42
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- bart1 (24)
- PietrH (10)
- peterdesmet (7)
- adokter (1)
- YohanSassi (1)
Pull Request Authors
- bart1 (34)
- PietrH (9)
- peterdesmet (5)
- iskandari (1)
- CeciliaNilsson709 (1)
Top Labels
Issue Labels
enhancement (9)
bug (3)
question (1)
invalid (1)
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- cran 225 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 2
- Total maintainers: 1
cran.r-project.org: getRad
Download Radar Data for Biological Research
- Homepage: https://github.com/aloftdata/getRad
- Documentation: http://cran.r-project.org/web/packages/getRad/getRad.pdf
- License: MIT + file LICENSE
-
Latest release: 0.2.1
published 10 months ago
Rankings
Dependent packages count: 25.9%
Dependent repos count: 31.8%
Average: 47.8%
Downloads: 85.6%
Maintainers (1)
Last synced:
10 months ago
Dependencies
.github/workflows/R-CMD-check.yaml
actions
- actions/checkout v4 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/pkgdown.yaml
actions
- JamesIves/github-pages-deploy-action v4.5.0 composite
- actions/checkout v4 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/test-coverage.yaml
actions
- actions/checkout v4 composite
- actions/upload-artifact v4 composite
- codecov/codecov-action v4 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
.github/workflows/update-citation-cff.yaml
actions
- actions/checkout v3 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
DESCRIPTION
cran
- testthat >= 3.0.0 suggests