birds {jSDM} | R Documentation |
birds dataset
Description
The Swiss breeding bird survey ("Monitoring Häufige Brutvögel" MHB) has monitored the populations of 158 common species since 1999.
The MHB sample from data(MHB2014, package="AHMbook")
consists of 267 1-km squares that are laid out as a grid across Switzerland. Fieldwork is conducted by about 200 skilled birdwatchers, most of them volunteers. Avian populations are monitored using a simplified territory mapping protocol, where each square is surveyed up to three times during the breeding season (only twice above the tree line).
Surveys are conducted along a transect that does not change over the years. The birds
dataset has the data for 2014, except one quadrat not surveyed in 2014.
Usage
data("birds")
Format
A data frame with 266 observations on the following 166 variables.
158 bird species named in latin and whose occurrences are indicated as the number of visits to each site during which the species was observed, including 13 species not recorded in the year 2014 and 5 covariates collected on the 266 1x1 km quadrat as well as their identifiers and coordinates :
siteID | an alphanumeric site identifier |
coordx | a numeric vector indicating the x coordinate of the centre of the quadrat. |
The coordinate reference system is not specified intentionally. | |
coordy | a numeric vector indicating the y coordinate of the centre of the quadrat. |
elev | a numeric vector indicating the mean elevation of the quadrat (m). |
rlength | the length of the route walked in the quadrat (km). |
nsurvey | a numeric vector indicating the number of replicate surveys planned in the quadrat; |
above the tree-line 2, otherwise 3. | |
forest | a numeric vector indicating the percentage of forest cover in the quadrat. |
obs14 | a categorical vector indicating the identifying number of the observer. |
Details
Only the Latin names of bird species are given in this dataset but you can find the corresponding English names in the original dataset : data(MHB2014, package="AHMbook")
.
Source
Swiss Ornithological Institute
References
Kéry and Royle (2016) Applied Hierarachical Modeling in Ecology Section 11.3
Examples
data(birds, package="jSDM")
head(birds)
# find species not recorded in 2014
which(colSums(birds[,1:158])==0)