You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We noticed some problems with species names: *Poecile montanus* and *Parus montanus*, *Dendrocopus major* and *Dendrocopos major* both refer to the same species. Since both species names are accepted names in GBIF we need to manually correct this (an issue was made for this with GBIF). *Saxicola torquatus* is most likely a wrong name and needs to be replaced with *Saxicola rubicola* (an issue was also opened for this with the data publisher of the ABV data).
@@ -95,21 +95,19 @@ To do: assess data quality across spatial, temporal, and taxonomical dimensions
95
95
The ABV dataset, which stands for Algemene Broedvogelmonitoring Vlaanderen (Common Breeding Bird Survey Flanders), is a structured monitoring dataset that tracks a group of approximately 100 common breeding bird species in Flanders, Belgium. Monitoring began in 2007 and the protocol involves selecting a random sample of 1200 UTM 1x1 km grid cells, stratified by land use. These cells are divided into groups of 300, and 300 grid cells are visited each year on a three-year rotation. Each grid cell contains six monitoring locations where bird counts are conducted. The data collection is standardized, with each grid cell being visited three times a year at fixed intervals (at least two weeks apart).
96
96
97
97
```{r}
98
-
summary(abv_data_total[, c("individualCount",
99
-
"eventDate",
100
-
"year",
101
-
"month")])
98
+
summary(abv_data_total[, c("n",
99
+
"year")])
102
100
```
103
101
104
102
```{r}
105
103
abv_data_total |>
106
-
group_by(TAG) |>
104
+
group_by(mgrscode) |>
107
105
summarise(n_visits = n_distinct(year)) |>
108
106
ggplot(aes(x = n_visits)) +
109
107
geom_histogram()
110
108
```
111
109
112
-
Out of the `r length(unique(abv_data_total$TAG))` visited km² over 150 were visited only once, while some were visited up to 13 times. This inconsistency in the number of visits is probably corrected for in the analysis of the ABV data, <spanstyle="color: red;">should we do the same?</span>
110
+
Out of the `r length(unique(abv_data_total$mgrscode))` visited km² over 150 were visited only once, while some were visited up to 13 times. This inconsistency in the number of visits is probably corrected for in the analysis of the ABV data, <spanstyle="color: red;">should we do the same?</span>
113
111
114
112
```{r}
115
113
abv_data_total |>
@@ -130,7 +128,7 @@ abv_data_total_tf |>
130
128
y = "Number of species")
131
129
```
132
130
133
-
There are 182 species present in the dataset. There are 32 species that were observed less than 10 times, 45 species that were observed more than 1000 times and 16 species that were observed more than 10 000 times. This dataset also contains absence data, which is not included/not present? in the cube.
131
+
There are 180 species present in the dataset. There are 38 species that were observed less than 10 times, 69 species that were observed more than 100 times and 30 species that were observed more than 1000 times.
134
132
135
133
```{r}
136
134
abv_data_total |>
@@ -141,7 +139,7 @@ abv_data_total |>
141
139
142
140
## The cube data
143
141
144
-
The cube contains 2 011 808 observations. There are 666 species present in the data. 355 of these were observed less than a 100 times, 197 were observed more than 1000 times. More information can be found [here](https://docs.b-cubed.eu/occurrence-cube/specification/#dimensions).
142
+
The cube contains 2 011 808 observations. There are 664 species present in the data. 358 of these were observed less than a 100 times, 197 were observed more than 1000 times. More information can be found [here](https://docs.b-cubed.eu/occurrence-cube/specification/#dimensions).
145
143
146
144
The cube is made up of several datasets:
147
145
@@ -191,12 +189,12 @@ birdcubeflanders_year |>
191
189
```{r}
192
190
utm_year <- abv_data_total |>
193
191
st_drop_geometry() |>
194
-
distinct(TAG, year)
192
+
distinct(mgrscode, year)
195
193
```
196
194
197
195
```{r}
198
196
filt_birdcube <- utm_year |>
199
-
left_join(birdcubeflanders_year, by = c("TAG", "year"))
197
+
left_join(birdcubeflanders_year, by = c("mgrscode", "year"))
0 commit comments