Access the AviList Global Avian Checklist in R
avilistr
provides easy access to the AviList Global Avian Checklist, the
first unified global bird taxonomy that harmonizes previous differences
between IOC, Clements, and BirdLife checklists. This package contains
the complete AviList dataset as R data objects, ready for analysis and
research.
AviList represents a landmark achievement in ornithology - the first unified global checklist of Earthβs bird species. Released in June 2025, it contains:
Install from CRAN:
install.packages("avilistr")
Or install the development version from GitHub:
# Install from GitHub
::install_github("dalyanalytics/avilistr")
devtools
# Or using pak
::pak("dalyanalytics/avilistr") pak
library(avilistr)
# Load the complete AviList dataset
data(avilist_2025)
# Or load the short version with essential fields only
data(avilist_2025_short)
# Get basic information about the data
nrow(avilist_2025) # Total records
sum(avilist_2025$Taxon_rank == "species") # Number of species
π For detailed examples and tutorials, see the Getting Started vignette.
The package provides three main datasets:
Dataset | Records | Fields | Description |
---|---|---|---|
avilist_2025 |
33,685 | 26 | Complete dataset with all available fields |
avilist_2025_short |
33,685 | ~12 | Essential taxonomic fields only |
avilist_metadata |
26 | 6 | Field descriptions and metadata |
Scientific_name
: Binomial scientific nameEnglish_name_AviList
: Official AviList common
nameEnglish_name_Clements_v2024
: Clements common nameOrder
, Family
: Taxonomic
classificationAuthority
: Original description author and yearTaxon_rank
: Species, subspecies, etc.AvibaseID
: Link to Avibase databaseIf you use avilistr
in your research, please cite both
the package and the underlying AviList data:
Package Citation:
citation("avilistr")
AviList Citation:
AviList Core Team. 2025. AviList: The Global Avian Checklist, v2025. https://doi.org/10.2173/avilist.v2025
This package currently provides the core AviList datasets. Future versions may include:
This package is licensed under the CC0 License (public domain). The AviList data is licensed under CC BY 4.0.
Built with β€οΈ for the global ornithology community