From 9f422ebf46cbbf7ad08fc115713c49a08b579d85 Mon Sep 17 00:00:00 2001
From: Sanne Govaert <44606923+sannegovaert@users.noreply.github.com>
Date: Thu, 12 Sep 2024 17:09:13 +0200
Subject: [PATCH 01/19] Create prepare_eml_for_GBIF.Rmd
---
src/prepare_eml_for_GBIF.Rmd | 134 +++++++++++++++++++++++++++++++++++
1 file changed, 134 insertions(+)
create mode 100644 src/prepare_eml_for_GBIF.Rmd
diff --git a/src/prepare_eml_for_GBIF.Rmd b/src/prepare_eml_for_GBIF.Rmd
new file mode 100644
index 0000000..1e72826
--- /dev/null
+++ b/src/prepare_eml_for_GBIF.Rmd
@@ -0,0 +1,134 @@
+---
+title: "Prepare EML data for GBIF IPT upload"
+author: "Sanne Govaert"
+date: "`r Sys.Date()`"
+output: html_document
+---
+
+This script prepares EML data extracted from [IMIS](https://www.vliz.be/en/imis?module=dataset) for upload to a [GBIF IPT](https://gbif.org/ipt).
+
+```{r setup, include=FALSE}
+knitr::opts_chunk$set(echo = TRUE, warning = FALSE, message = FALSE)
+```
+
+Load libraries
+
+```{r}
+library(EML)
+library(here)
+```
+
+Set user-defined values
+
+```{r}
+project_id <- "2011_RIVIERPRIK"
+metadata_provider <- person(
+ given = "Peter",
+ family = "Desmet",
+ email = "peter.desmet@inbo.be",
+ comment = c(ORCID = "0000-0002-8442-8025")
+)
+```
+
+Read EML
+
+```{r}
+eml <- EML::read_eml(here::here("data", project_id, "raw", "eml.xml"))
+```
+
+# Cleaning
+
+## Clean creators and contact
+
+- Generic email "info@inbo.be" is removed
+- organizationName "Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek" is replaced by "Research Institute for Nature and Forest (INBO)"
+
+```{r}
+update_contact <- function(contact) {
+ if (
+ !is.null(contact$electronicMailAddress) && contact$electronicMailAddress == "info@inbo.be") {
+ contact$electronicMailAddress <- NULL
+ }
+ if (!is.null(contact$organizationName) && contact$organizationName == "Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek") {
+ contact$organizationName <- "Research Institute for Nature and Forest (INBO)"
+ }
+ contact
+}
+
+eml$dataset$creator <- purrr::map(eml$dataset$creator, update_contact)
+eml$dataset$contact <- update_contact(eml$dataset$contact)
+```
+
+## Set metadataProvider
+
+```{r}
+eml$dataset$metadataProvider <- EML::set_responsibleParty(
+ givenName = metadata_provider$given,
+ surName = metadata_provider$family,
+ electronicMailAddress = metadata_provider$email,
+ userId = if (!is.null(metadata_provider$comment[["ORCID"]])) {
+ list(directory = "https://orcid.org/", metadata_provider$comment[["ORCID"]])
+ } else {
+ NULL
+ }
+)
+```
+
+## Set generalTaxonomicCoverage and associatedParty to NULL
+
+```{r}
+eml$dataset$coverage$taxonomicCoverage$generalTaxonomicCoverage <- NULL
+eml$dataset$associatedParty <- NULL
+```
+
+## Set maintenanceUpdateFrequency to "Not planned"
+
+```{r}
+eml$dataset$maintenance$maintenanceUpdateFrequency <- "Not planned"
+```
+
+## clean keywords
+
+```{r}
+eml$dataset$keywordSet <- purrr::map(eml$dataset$keywordSet, ~ {
+ if (!"keywordThesaurus" %in% names(.)) {
+ . <- c(., keywordThesaurus = "n/a")
+ }
+ .
+})
+```
+
+## Update abstract
+
+The abstract on IMIS is limited to 1000 characters. Extra paragraphs are living in `additionalInfo`.
+We move the `additionalInfo` to the abstract and clean it up.
+
+```{r}
+additional_info <- eml$dataset$additionalInfo$para
+
+# Split `additional_info` in paragraphs
+paragraphs <- unlist(strsplit(additional_info, "
|
|\n", perl = TRUE))
+paragraphs <- paragraphs[!paragraphs %in% c("", "", "]]>")]
+
+# Split paragraph
+paragraphs <- unlist(strsplit(paragraphs, " Data were exported from", perl = TRUE))
+purrr::map(paragraphs, ~ if(grepl("^ the European", .x)) {
+ .x <- paste0("Data were exported from", .x)
+ } else {.x <- .x})
+
+# Rearrange paragraphs: abstract + additional_info
+eml$dataset$abstract$para <- c(eml$dataset$abstract$para, paragraphs)
+
+# Delete `additionalInfo`
+eml$dataset$additionalInfo <- NULL
+```
+
+
+# Write EML
+
+```{r}
+eml_path <- here::here("data", project_id, "processed", "eml.xml")
+EML::write_eml(eml, eml_path)
+```
+
+
From 9d7d5c0c20d2c3bd7b40b7a1c0512d8588fc89f8 Mon Sep 17 00:00:00 2001
From: Sanne Govaert <44606923+sannegovaert@users.noreply.github.com>
Date: Thu, 12 Sep 2024 17:17:04 +0200
Subject: [PATCH 02/19] upload data
---
data/2011_RIVIERPRIK/processed/eml.xml | 242 +++++++++++++++++++
data/2011_RIVIERPRIK/raw/eml.xml | 264 +++++++++++++++++++++
data/2012_LEOPOLDKANAAL/raw/eml.xml | 306 +++++++++++++++++++++++++
data/2013_ALBERTKANAAL/raw/eml.xml | 305 ++++++++++++++++++++++++
data/2014_DEMER/raw/eml.xml | 287 +++++++++++++++++++++++
data/2015_DIJLE/processed/eml.xml | 304 ++++++++++++++++++++++++
6 files changed, 1708 insertions(+)
create mode 100644 data/2011_RIVIERPRIK/processed/eml.xml
create mode 100644 data/2011_RIVIERPRIK/raw/eml.xml
create mode 100644 data/2012_LEOPOLDKANAAL/raw/eml.xml
create mode 100644 data/2013_ALBERTKANAAL/raw/eml.xml
create mode 100644 data/2014_DEMER/raw/eml.xml
create mode 100644 data/2015_DIJLE/processed/eml.xml
diff --git a/data/2011_RIVIERPRIK/processed/eml.xml b/data/2011_RIVIERPRIK/processed/eml.xml
new file mode 100644
index 0000000..6395ff3
--- /dev/null
+++ b/data/2011_RIVIERPRIK/processed/eml.xml
@@ -0,0 +1,242 @@
+
+
+
+
+ Extra metadata added by VLIZ to add parameter, platform info, as well as GBIF fields
+
+
+
+ Buysse, D.; Mouton, A.; Baeyens, R.; De Maerteleire, N.; Desmet, P.; Gelaude, E.; Jacobs, Y.; Pauwels, I.; Reyserhove, L.; Coeck, J.; (2020): 2011_RIVIERPRIK - Acoustic telemetry data for river lamprey (Lampetra fluviatilis) in the upper Scheldt river (Belgium). Marine Data Archive. https://dx.doi.org/10.14284/429https://dx.doi.org/10.14284/429
+ 2024-07-09T01:33:06+00:00
+ dataset
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://rshiny.lifewatch.be/etn-data/
+
+
+
+
+ Metadata
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.vliz.be//en/imis?dasid=5867
+
+
+
+
+ Fish detections
+ Fish sex
+ Fish total length
+ Wet weight of fish
+
+
+
+ 2011_RIVIERPRIK - Acoustic telemetry data for river lamprey (Lampetra fluviatilis) in the upper Scheldt river (Belgium)
+
+
+ David
+ Buysse
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-4437-5678
+
+
+
+ Ans
+ Mouton
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Raf
+ Baeyens
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-0651-3056
+
+
+
+ Nico
+ De Maerteleire
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ nico.demaerteleire@inbo.be
+
+
+
+ Peter
+ Desmet
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-8442-8025
+
+
+
+ Emilie
+ Gelaude
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Yves
+ Jacobs
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Ine
+ Pauwels
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ ine.pauwels@inbo.be
+ 0000-0002-2856-8787
+
+
+
+ Lien
+ Reyserhove
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ lien.reyserhove@inbo.be
+ 0000-0001-7484-9267
+
+
+
+ Johan
+ Coeck
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0003-2732-7428
+
+
+
+ Peter
+ Desmet
+
+ peter.desmet@inbo.be
+ 0000-0002-8442-8025
+
+ 2020-11-19
+ en
+
+ (https://lifewatch.be/en/fish-acoustic-receiver-network) for the project/study 2011_rivierprik, using VEMCO tags (V7, V8) and receivers (VR2, VR2W). In total 39 adult individuals of river lamprey (Lampetra fluviatilis) were captured, tagged and released in 2011 and 2012, to study the effect of weirs and shipping locks on their upstream spawning migration in the tidal and/or non-tidal part of the Scheldt river and its tributaries.]]>
+ The disruption of longitudinal and lateral connectivity of rivers has led to ecological catastrophes such as the extinction of several diadromous fish species. River lamprey is an important indicator species for the integrity of ecosystems and connectivity within and between catchment areas. In the highly fragmented Scheldt river basin first restoration actions are undertaken, such as the building of nature-like bypasses. The migration patterns in the river catchment and their behaviour at a tidal barrier, lock-weir complexes and fish bypasses (passage timing and delay) in the upper Scheldt river show that the disrupted water management of the river and in consequence of its barriers and bypasses are one keys to (un)successful spawning migration in the catchment, beside spawning habitat deterioration.
+ The study was commissioned by the Vlaamse Waterweg NV.
+ the European Tracking Network data portal <a href="http://www.lifewatch.be/etn"> (http://www.lifewatch.be/etn) </a> developed by VLIZ using the ETN R package <a href="https://inbo.github.io/etn/"> (https://inbo.github.io/etn/) </a> developed by INBO. Field definitions can be found at <a href="https://inbo.github.io/etn/articles/etn_fields.html">https://inbo.github.io/etn/articles/etn_fields.html</a>.
+
+
+ Acoustic telemetry
+ Spawning migrations
+ ASFA Thesaurus List
+
+
+ Acoustic Telemetry
+ ETN Context
+
+
+ Animal movement
+ Animal tracking
+ Biologging
+ Impact assessment
+ Migration barriers
+ River lamprey
+ VEMCO
+ n/a
+
+
+ Migration
+ CSA Technology Research Database Master Thesaurus
+
+
+ To the extent possible under law, the publisher has waived all rights to these data and has dedicated them to the Public Domain (CC0 1.0). Users may copy, modify, distribute and use the work, including for commercial purposes, without restriction.
+
+
+
+ Belgium, Flanders
+
+
+ Belgium, Scheldt
+
+
+
+
+ 2011-12-13
+
+
+ 2012-07-03
+
+
+
+
+
+ species
+ Lampetra fluviatilis (Linnaeus, 1758)
+
+
+
+
+
+
+
+ Not planned
+
+
+
+ David
+ Buysse
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-4437-5678
+
+
+
diff --git a/data/2011_RIVIERPRIK/raw/eml.xml b/data/2011_RIVIERPRIK/raw/eml.xml
new file mode 100644
index 0000000..2c884f9
--- /dev/null
+++ b/data/2011_RIVIERPRIK/raw/eml.xml
@@ -0,0 +1,264 @@
+
+
+
+ 2011_RIVIERPRIK - Acoustic telemetry data for river lamprey (Lampetra fluviatilis) in the upper Scheldt river (Belgium)
+
+
+
+ David
+ Buysse
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+ 0000-0002-4437-5678
+
+
+
+ Ans
+ Mouton
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+
+
+
+ Raf
+ Baeyens
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+ 0000-0002-0651-3056
+
+
+
+ Nico
+ De Maerteleire
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ nico.demaerteleire@inbo.be
+
+
+
+ Peter
+ Desmet
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ 0000-0002-8442-8025
+
+
+
+ Emilie
+ Gelaude
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+
+
+
+ Yves
+ Jacobs
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+
+
+
+ Ine
+ Pauwels
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ ine.pauwels@inbo.be
+ 0000-0002-2856-8787
+
+
+
+ Lien
+ Reyserhove
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ lien.reyserhove@inbo.be
+ 0000-0001-7484-9267
+
+
+
+ Johan
+ Coeck
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+ 0000-0003-2732-7428
+
+
+
+
+ Flanders Marine Institute (VLIZ)
+
+ BE
+
+ info@vliz.be
+ https://www.vliz.be
+
+
+
+ Vlaamse overheid; Beleidsdomein Omgeving Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+ contentProvider
+
+
+ 2020-11-19
+ en
+
+ (https://lifewatch.be/en/fish-acoustic-receiver-network) for the project/study 2011_rivierprik, using VEMCO tags (V7, V8) and receivers (VR2, VR2W). In total 39 adult individuals of river lamprey (Lampetra fluviatilis) were captured, tagged and released in 2011 and 2012, to study the effect of weirs and shipping locks on their upstream spawning migration in the tidal and/or non-tidal part of the Scheldt river and its tributaries.]]>
+
+
+ The disruption of longitudinal and lateral connectivity of rivers has led to ecological catastrophes such as the extinction of several diadromous fish species. River lamprey is an important indicator species for the integrity of ecosystems and connectivity within and between catchment areas. In the highly fragmented Scheldt river basin first restoration actions are undertaken, such as the building of nature-like bypasses. The migration patterns in the river catchment and their behaviour at a tidal barrier, lock-weir complexes and fish bypasses (passage timing and delay) in the upper Scheldt river show that the disrupted water management of the river and in consequence of its barriers and bypasses are one keys to (un)successful spawning migration in the catchment, beside spawning habitat deterioration.
+
+The study was commissioned by the Vlaamse Waterweg NV. Data were exported from the European Tracking Network data portal (http://www.lifewatch.be/etn) developed by VLIZ using the ETN R package (https://inbo.github.io/etn/) developed by INBO. Field definitions can be found at https://inbo.github.io/etn/articles/etn_fields.html.
]]>
+
+
+ Acoustic telemetry
+ Spawning migrations
+ ASFA Thesaurus List
+
+
+ Acoustic Telemetry
+ ETN Context
+
+
+ Animal movement
+ Animal tracking
+ Biologging
+ Impact assessment
+ Migration barriers
+ River lamprey
+ VEMCO
+
+
+ Migration
+ CSA Technology Research Database Master Thesaurus
+
+
+
+ To the extent possible under law, the publisher has waived all rights to these data and has dedicated them to the Public Domain (CC0 1.0). Users may copy, modify, distribute and use the work, including for commercial purposes, without restriction.
+
+
+
+ Belgium, Flanders
+ Belgium, Scheldt
+
+
+ 2011-12-13
+ 2012-07-03
+
+
+
+ urn:lsid:marinespecies.org:taxname:101172
+
+ species
+ Lampetra fluviatilis (Linnaeus, 1758)
+
+
+
+
+
+
+ unkown
+
+
+
+ David
+ Buysse
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+ 0000-0002-4437-5678
+
+
+
+
+ Extra metadata added by VLIZ to add parameter, platform info, as well as GBIF fields
+
+ Fish detections
+ Fish sex
+ Fish total length
+ Wet weight of fish
+
+
+ 2024-07-09T01:33:06+00:00dataset
+ Buysse, D.; Mouton, A.; Baeyens, R.; De Maerteleire, N.; Desmet, P.; Gelaude, E.; Jacobs, Y.; Pauwels, I.; Reyserhove, L.; Coeck, J.; (2020): 2011_RIVIERPRIK - Acoustic telemetry data for river lamprey (Lampetra fluviatilis) in the upper Scheldt river (Belgium). Marine Data Archive. https://dx.doi.org/10.14284/429
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://rshiny.lifewatch.be/etn-data/
+
+
+
+
+ Metadata
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.vliz.be//en/imis?dasid=5867
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/data/2012_LEOPOLDKANAAL/raw/eml.xml b/data/2012_LEOPOLDKANAAL/raw/eml.xml
new file mode 100644
index 0000000..872431d
--- /dev/null
+++ b/data/2012_LEOPOLDKANAAL/raw/eml.xml
@@ -0,0 +1,306 @@
+
+
+
+ 2012_LEOPOLDKANAAL - Acoustic telemetry data for European eel (Anguilla anguilla) in a polder area in Flanders (Belgium)
+
+
+
+ Pieterjan
+ Verhelst
+
+ Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
+
+ BE
+
+ isolde.degrem@ugent.be
+ 0000-0002-2610-6941
+
+
+
+ David
+ Buysse
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+ 0000-0002-4437-5678
+
+
+
+ Raf
+ Baeyens
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+ 0000-0002-0651-3056
+
+
+
+ Nico
+ De Maerteleire
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ nico.demaerteleire@inbo.be
+
+
+
+ Peter
+ Desmet
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ 0000-0002-8442-8025
+
+
+
+ Emilie
+ Gelaude
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+
+
+
+ Yves
+ Jacobs
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+
+
+
+ Tanja
+ Milotic
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+ 0000-0002-3129-6196
+
+
+
+ Ans
+ Mouton
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+
+
+
+ Lien
+ Reyserhove
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ lien.reyserhove@inbo.be
+ 0000-0001-7484-9267
+
+
+
+ Karen
+ Robberechts
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ karen.robberechts@inbo.be
+
+
+
+ Johan
+ Coeck
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+ 0000-0003-2732-7428
+
+
+
+
+ Flanders Marine Institute (VLIZ)
+
+ BE
+
+ info@vliz.be
+ https://www.vliz.be
+
+
+
+ Vlaamse overheid; Beleidsdomein Omgeving Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+ contentProvider
+
+
+ 2020-11-19
+ en
+
+ https://lifewatch.be/en/fish-acoustic-receiver-network) for the project/study 2012_leopoldkanaal, using VEMCO tags (V7, V13) and receivers (VR2AR, VR2W). In total 104 female individuals of European eel (Anguilla anguilla) were captured, tagged and released in 2011 and 2012, to study their movement behaviour during the yellow eel stage and migration behaviour during the silver eel stage for 4 years in Meetjesland, a polder area in Flanders, Belgium.]]>
+
+
+ Polder areas are lowland systems below sea level that are drained for agricultural and urbanization purposes. Hence, they are characterised by water regulating structures such as dykes, water pumping stations and weirs. They are characterised by a network of canals, connected ponds and ditches, resulting in a high habitat diversity and thus many potential growth areas. When the water level rises beyond a certain threshold during precipitation events, water is pumped from the polder area into the sea to maintain a specific water level. Not only does this result in irregular water flows, water pumping stations have already shown to negatively affect fish passing through them by various injuries and mortalities. In this tracking study, we investigated the movement and ranging behaviour of resident, yellow eels to understand their spatio-temporal habitat use in the polder. Second, we analysed what routes migrating silver eels take, what environmental factors influence this migration and to what extent they are delayed by the migration barriers.
+This dataset was collected using infrastructure provided by VLIZ and INBO funded by the Research Foundation - Flanders (FWO) as part of the Belgian contribution to LifeWatch. The study was commissioned by the Agency of Nature and Forest (ANB). Data were exported from the European Tracking Network data portal (http://www.lifewatch.be/etn) developed by VLIZ using the ETN R package (https://inbo.github.io/etn/) developed by INBO. Field definitions can be found at https://inbo.github.io/etn/articles/etn_fields.html.
]]>
+
+
+ Acoustic telemetry
+ Home range
+ ASFA Thesaurus List
+
+
+ Acoustic Telemetry
+ ETN Context
+
+
+ Animal movement
+ Animal tracking
+ Biologging
+ Impact assessment
+ LifeWatch
+ Migration barriers
+ VEMCO
+
+
+ Migration
+ CSA Technology Research Database Master Thesaurus
+
+
+
+ To the extent possible under law, the publisher has waived all rights to these data and has dedicated them to the Public Domain (CC0 1.0). Users may copy, modify, distribute and use the work, including for commercial purposes, without restriction.
+
+
+
+ ANE, Western Scheldt
+ Belgium, Belgian Coast
+ Belgium, Flanders
+ Belgium, Leopoldkanaal
+ Belgium, Meetjesland
+
+
+ 2012-07-03
+ 2020-09-28
+
+
+
+ urn:lsid:marinespecies.org:taxname:126281
+
+ species
+ Anguilla anguilla (Linnaeus, 1758)
+
+
+
+
+
+
+
+ Durif index
+
+
+
+ Entire sampling area
+ Durif index
+
+
+
+
+
+ unkown
+
+
+
+ Johan
+ Coeck
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+ 0000-0003-2732-7428
+
+
+
+
+ Extra metadata added by VLIZ to add parameter, platform info, as well as GBIF fields
+
+ Fish age
+ Fish detections
+ Fish lifestage
+ Fish sex
+ Fish total length
+ Horizontal eye diameter of fish
+ Pectoral fin length of fish
+ Vertical eye diameter of fish
+ Wet weight of fish
+
+
+ 2024-07-09T01:33:06+00:00dataset
+ Verhelst, P.; Buysse, D.; Baeyens, R.; De Maerteleire, N.; Desmet, P.; Gelaude, E.; Jacobs, Y.; Milotic, T.; Mouton, A.; Reyserhove, L.; Robberechts, K.; Coeck, J.; (2020): 2012_LEOPOLDKANAAL - Acoustic telemetry data for European eel (Anguilla anguilla) in a polder area in Flanders (Belgium). Marine Data Archive. https://dx.doi.org/10.14284/428
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://rshiny.lifewatch.be/etn-data/
+
+
+
+
+ Metadata
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.vliz.be//en/imis?dasid=5873
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/data/2013_ALBERTKANAAL/raw/eml.xml b/data/2013_ALBERTKANAAL/raw/eml.xml
new file mode 100644
index 0000000..10a6ccb
--- /dev/null
+++ b/data/2013_ALBERTKANAAL/raw/eml.xml
@@ -0,0 +1,305 @@
+
+
+
+ 2013_ALBERTKANAAL - Acoustic telemetry data for European eel (Anguilla anguilla) and hatched Salmon (Salmo salar) in the Albert canal (Belgium)
+
+
+
+ Raf
+ Baeyens
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+ 0000-0002-0651-3056
+
+
+
+ Jenna
+ Vergeynst
+
+ Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
+
+ BE
+
+ isolde.degrem@ugent.be
+ 0000-0001-8959-0884
+
+
+
+ Nico
+ De Maerteleire
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ nico.demaerteleire@inbo.be
+
+
+
+ Peter
+ Desmet
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ 0000-0002-8442-8025
+
+
+
+ Emilie
+ Gelaude
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+
+
+
+ Tanja
+ Milotic
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+ 0000-0002-3129-6196
+
+
+
+ Ans
+ Mouton
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+
+
+
+ Ine
+ Pauwels
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ ine.pauwels@inbo.be
+ 0000-0002-2856-8787
+
+
+
+ Sébastien
+ Pieters
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+
+
+
+ Lien
+ Reyserhove
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ lien.reyserhove@inbo.be
+ 0000-0001-7484-9267
+
+
+
+ Karen
+ Robberecht
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ Karen.Robberechts@inbo.be
+
+
+
+ Pieterjan
+ Verhelst
+
+ Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
+
+ BE
+
+ isolde.degrem@ugent.be
+ 0000-0002-2610-6941
+
+
+
+ Johan
+ Coeck
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+ 0000-0003-2732-7428
+
+
+
+
+ Flanders Marine Institute (VLIZ)
+
+ BE
+
+ info@vliz.be
+ https://www.vliz.be
+
+
+ 2020-11-20
+ en
+
+ (https://lifewatch.be/en/fish-acoustic-receiver-network) for the project/study 2013_albertkanaal, using VEMCO tags (V7, V9, V13) and receivers (VR2AR, VR2Tx, VR2W). In total 161 female individuals of European eel (Anguilla anguilla) and 134 (hatched) smolts of Atlantic salmon (Salmo salar) were captured, tagged and released between 2013 and 2017, to study the effect of shipping locks and hydropower plants on their downstream migration in the Albert canal.]]>
+
+
+ Navigation locks play an important role for ship navigation on canals and other regulated waterways worldwide. Unfortunately, these structures may severely impact the aquatic ecosystem and freshwater fish in particular. In Belgium (Europe), the Albert canal connecting the Meuse river to the Scheldt river, is an important migration route for European eel (critically endangered) and Atlantic salmon (vulnerable). During their downstream migration these fish are hampered by six subsequent navigation lock complexes present in the canal. Three of which are by-passed by a small channel leading to a hydropower plant with large Archimedes screw turbines. In the coming years, three more such hydropower plants are to be installed next to three of six ship lock complexes. The Archimedes screws function both as pump and turbine (hydropower generator). Two dimensional fine scale positioning, as well as impact assessment through assessment of fish injury and mortality at the Archimedes screws, was performed to better understand the overall impact of these anthropogenic structures on diadromous fish, such as eel and salmon.
+
+This dataset was collected using infrastructure provided by VLIZ and INBO funded by the Research Foundation - Flanders (FWO) as part of the Belgian contribution to LifeWatch. The study was commissioned by the Vlaamse Waterweg NV. Data were exported from the European Tracking Network data portal (http://www.lifewatch.be/etn) developed by VLIZ using the ETN R package (https://inbo.github.io/etn/) developed by INBO. Field definitions can be found at https://inbo.github.io/etn/articles/etn_fields.html.
]]>
+
+
+ Acoustic telemetry
+ ASFA Thesaurus List
+
+
+ Acoustic Telemetry
+ ETN Context
+
+
+ Animal movement
+ Animal tracking
+ Biologging
+ Hydropower
+ Impact assessment
+ LifeWatch
+ Migration barriers
+ Shipping canals
+ VEMCO
+
+
+ Migration
+ CSA Technology Research Database Master Thesaurus
+
+
+
+ To the extent possible under law, the publisher has waived all rights to these data and has dedicated them to the Public Domain (CC0 1.0). Users may copy, modify, distribute and use the work, including for commercial purposes, without restriction.
+
+
+
+ ANE, Western Scheldt
+ Belgium, Albert Canal
+ Belgium, Flanders
+ Belgium, Meuse Basin
+ Belgium, Zeeschelde, Antwerp Harbour
+
+
+ 2013-10-18
+ 2019-05-10
+
+
+
+ urn:lsid:marinespecies.org:taxname:126281
+
+ species
+ Anguilla anguilla (Linnaeus, 1758)
+
+
+
+ urn:lsid:marinespecies.org:taxname:127186
+
+ species
+ Salmo salar Linnaeus, 1758
+
+
+
+
+
+
+ unkown
+
+
+
+ Ine
+ Pauwels
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ ine.pauwels@inbo.be
+ 0000-0002-2856-8787
+
+
+
+
+ Extra metadata added by VLIZ to add parameter, platform info, as well as GBIF fields
+
+ Fish detections
+ Fish lifestage
+ Fish sex
+ Fish total length
+ Horizontal eye diameter of fish
+ Pectoral fin length of fish
+ Vertical eye diameter of fish
+ Wet weight of fish
+
+
+ 2024-07-09T01:33:06+00:00dataset
+ Baeyens, R.; Vergeynst, J.; De Maerteleire, N.; Desmet, P.; Gelaude, E.; Milotic, T.; Mouton, A.; Pauwels, I.; Pieters, S.; Reyserhove, L.; Robberechts, K.; Verhelst, P.; Coeck, J.; (2020): 2013_ALBERTKANAAL - Acoustic telemetry data for European eel (Anguilla anguilla) and hatched Salmon (Salmo salar) in the Albert canal (Belgium). Marine Data Archive. https://dx.doi.org/10.14284/431
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://rshiny.lifewatch.be/etn-data/
+
+
+
+
+ Metadata
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.vliz.be//en/imis?dasid=5868
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/data/2014_DEMER/raw/eml.xml b/data/2014_DEMER/raw/eml.xml
new file mode 100644
index 0000000..653f286
--- /dev/null
+++ b/data/2014_DEMER/raw/eml.xml
@@ -0,0 +1,287 @@
+
+
+
+ 2014_DEMER - Acoustic telemetry data for four fish species in the Demer river (Belgium)
+
+
+
+ Ine
+ Pauwels
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ ine.pauwels@inbo.be
+ 0000-0002-2856-8787
+
+
+
+ Raf
+ Baeyens
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+ 0000-0002-0651-3056
+
+
+
+ Nico
+ De Maerteleire
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ nico.demaerteleire@inbo.be
+
+
+
+ Peter
+ Desmet
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ 0000-0002-8442-8025
+
+
+
+ Emilie
+ Gelaude
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+
+
+
+ Tanja
+ Milotic
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+ 0000-0002-3129-6196
+
+
+
+ Sébastien
+ Pieters
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+
+
+
+ Lien
+ Reyserhove
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ lien.reyserhove@inbo.be
+ 0000-0001-7484-9267
+
+
+
+ Karen
+ Robberechts
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ karen.robberechts@inbo.be
+
+
+
+ Pieterjan
+ Verhelst
+
+ Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
+
+ BE
+
+ isolde.degrem@ugent.be
+ 0000-0002-2610-6941
+
+
+
+ Johan
+ Coeck
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+ 0000-0003-2732-7428
+
+
+
+
+ Flanders Marine Institute (VLIZ)
+
+ BE
+
+ info@vliz.be
+ https://www.vliz.be
+
+
+ 2020-11-23
+ en
+
+ (https://lifewatch.be/en/fish-acoustic-receiver-network) for the project/study 2014_demer, using VEMCO tags (V7, V13) and receivers (VR2W). In total 16 adult individuals of four local wild fish species (Petromyzon marinus, Rutilus rutilus, Silurus glanis, Squalius cephalus) were captured, tagged and released in 2014, to study the effect of a specific barrier on their upstream/downstream migration in the Demer basin.]]>
+
+
+ Longitudinal and lateral connectivity of rivers is necessary for fish to successfully fulfill their life cycle. In Flanders, fish are obstructed in their essential free migrations by weirs, sluices, mills, and pumping stations, which are needed to control the water level. The Demer river drains the eastern part of the Scheldt basin. Fish migrating from the sea to the Demer river are obstructed by three hydraulic constructions. In this study we aimed to evaluate the possibilities for fish migration around the most upstream of these three constructions, the Grote Steunbeer in the city of Diest. Therefore, behaviour of two sea lamprey (Petromyzon marinus), two roach (Rutilus rutilus), nine Wels catfish (Silurus glanis) and three chub (Squalius cephalus) was investigated by acoustic telemetry in the areas up-, downstream and around the fish migration barrier. The results indicated that free upstream fish migration in the Demer river is obstructed by the Grote Steunbeer barrier in its current state, and that adaptations to this barrier should get priority as the tributary of the Zwarte beek only partly offers an alternative route for fish to qualitative spawning habitats upstream.
+
+This dataset was collected using infrastructure provided by VLIZ and INBO funded by the Research Foundation - Flanders (FWO) as part of the Belgian contribution to LifeWatch. The study was commissioned by the Flemish Environment Agency (VMM). Data were exported from the European Tracking Network data portal (http://www.lifewatch.be/etn) developed by VLIZ using the ETN R package (https://inbo.github.io/etn/) developed by INBO. Field definitions can be found at https://inbo.github.io/etn/articles/etn_fields.html.]]>
+
+
+ Acoustic telemetry
+ ASFA Thesaurus List
+
+
+ Acoustic Telemetry
+ ETN Context
+
+
+ Animal movement
+ Animal tracking
+ Biologging
+ Impact assessment
+ LifeWatch
+ Migration barriers
+ VEMCO
+
+
+ Migration
+ CSA Technology Research Database Master Thesaurus
+
+
+
+ To the extent possible under law, the publisher has waived all rights to these data and has dedicated them to the Public Domain (CC0 1.0). Users may copy, modify, distribute and use the work, including for commercial purposes, without restriction.
+
+
+
+ Belgium, Demer R.
+ Belgium, Flanders
+
+
+ 2014-04-18
+ 2018-09-15
+
+
+
+ urn:lsid:marinespecies.org:taxname:101174
+
+ species
+ Petromyzon marinus Linnaeus, 1758
+
+
+
+ urn:lsid:marinespecies.org:taxname:154333
+
+ species
+ Rutilus rutilus (Linnaeus, 1758)
+
+
+
+ urn:lsid:marinespecies.org:taxname:154677
+
+ species
+ Silurus glanis Linnaeus, 1758
+
+
+
+ urn:lsid:marinespecies.org:taxname:282855
+
+ species
+ Squalius cephalus (Linnaeus, 1758)
+
+
+
+
+
+
+ unkown
+
+
+
+ Ine
+ Pauwels
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ ine.pauwels@inbo.be
+ 0000-0002-2856-8787
+
+
+
+
+ Extra metadata added by VLIZ to add parameter, platform info, as well as GBIF fields
+
+ Fish detections
+ Fish sex
+ Fish total length
+ Wet weight of fish
+
+
+ 2024-07-09T01:33:06+00:00dataset
+ Pauwels, I.; Baeyens, R.; De Maerteleire, N.; Desmet, P.; Gelaude, E.; Milotic, T.; Pieters, S.; Reyserhove, L.; Robberechts, K.; Verhelst, P.; Coeck, J.; (2020): 2014_DEMER - Acoustic telemetry data for four fish species in the Demer river (Belgium). Marine Data Archive. https://dx.doi.org/10.14284/432
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://rshiny.lifewatch.be/etn-data/
+
+
+
+
+ Metadata
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.vliz.be//en/imis?dasid=5871
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/data/2015_DIJLE/processed/eml.xml b/data/2015_DIJLE/processed/eml.xml
new file mode 100644
index 0000000..95ac037
--- /dev/null
+++ b/data/2015_DIJLE/processed/eml.xml
@@ -0,0 +1,304 @@
+
+
+
+ 2015_DIJLE - Acoustic telemetry data for five fish species in the Dijle river (Belgium)
+
+
+
+ Sophie
+ Vermeersch
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+
+
+
+ Ine
+ Pauwels
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ ine.pauwels@inbo.be
+ 0000-0002-2856-8787
+
+
+
+ Raf
+ Baeyens
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+ 0000-0002-0651-3056
+
+
+
+ Nico
+ De Maerteleire
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ nico.demaerteleire@inbo.be
+
+
+
+ Peter
+ Desmet
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ 0000-0002-8442-8025
+
+
+
+ Emilie
+ Gelaude
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+
+
+
+ Tanja
+ Milotic
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+ 0000-0002-3129-6196
+
+
+
+ Sébastien
+ Pieters
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+
+
+
+ Lien
+ Reyserhove
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ lien.reyserhove@inbo.be
+ 0000-0001-7484-9267
+
+
+
+ Karen
+ Robberechts
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ karen.robberechts@inbo.be
+
+
+
+ Pieterjan
+ Verhelst
+
+ Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
+
+ BE
+
+ isolde.degrem@ugent.be
+ 0000-0002-2610-6941
+
+
+
+ Johan
+ Coeck
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+ 0000-0003-2732-7428
+
+
+
+
+ Flanders Marine Institute (VLIZ)
+
+ BE
+
+ info@vliz.be
+ https://www.vliz.be
+
+
+ 2020-11-20
+ en
+
+ (https://lifewatch.be/en/fish-acoustic-receiver-network) for the project/study 2015_dijle, using VEMCO tags (V7, V13) and receivers (VR2AR, VR2W). In total 26 adult individuals of five local wild fish species (Anguilla anguilla, Cyprinus carpio, Platichthys flesus, Rutilus rutilus, Silurus glanis) were captured, tagged and released in 2015, to study the effect of a specific barrier on their upstream/downstream migration in the Dijle basin.]]>
+
+
+ Fish migrating from the sea to the Dijle river (or vice versa) are obstructed by a weir in the city of Mechelen which is designed to prevent tides from entering further inland. To mitigate this problem, fish-friendly weir management was implemented, the effect of which was measured in this study with acoustic telemetry. In 2015, 26 individuals of five fish species - European eel (Anguilla anguilla), common carp (Cyprinus carpio), flounder (Platichthys flesus), roach (Rutilus rutilus) and wels catfish (Silurus glanis) - were captured, tagged and tracked in the areas up- and downstream of the weir. 3 wels catfish tagged for the 2014_demer study were also detected. Results of the evaluated weir passages by fish showed that 21 of 29 fish were able to pass the weir at specific hydrological conditions and weir management options. The number of passages differed between species, but happened always in the periods that higher passage could be expected following their lifestyle. The study indicates the importance and benefits of a fish-friendly weir management.
+
+This dataset was collected using infrastructure provided by VLIZ and INBO funded by the Research Foundation - Flanders (FWO) as part of the Belgian contribution to LifeWatch. The study was commissioned by the Vlaamse Waterweg NV. Data were exported from the European Tracking Network data portal (http://www.lifewatch.be/etn) developed by VLIZ using the ETN R package (https://inbo.github.io/etn/) developed by INBO. Field definitions can be found at https://inbo.github.io/etn/articles/etn_fields.html.
]]>
+
+
+ Acoustic telemetry
+ ASFA Thesaurus List
+
+
+ Acoustic Telemetry
+ ETN Context
+
+
+ Animal movement
+ Animal tracking
+ Biologging
+ Impact assessment
+ LifeWatch
+ Migration barriers
+ VEMCO
+
+
+ Migration
+ CSA Technology Research Database Master Thesaurus
+
+
+
+ To the extent possible under law, the publisher has waived all rights to these data and has dedicated them to the Public Domain (CC0 1.0). Users may copy, modify, distribute and use the work, including for commercial purposes, without restriction.
+
+
+
+ Belgium, Dijle R.
+ Belgium, Flanders
+ Belgium, Scheldt
+
+
+ 2015-04-22
+ 2018-06-28
+
+
+
+ urn:lsid:marinespecies.org:taxname:126281
+
+ species
+ Anguilla anguilla (Linnaeus, 1758)
+
+
+
+ urn:lsid:marinespecies.org:taxname:154582
+
+ species
+ Cyprinus carpio Linnaeus, 1758
+
+
+
+ urn:lsid:marinespecies.org:taxname:127141
+
+ species
+ Platichthys flesus (Linneaus, 1758)
+
+
+
+ urn:lsid:marinespecies.org:taxname:154333
+
+ species
+ Rutilus rutilus (Linnaeus, 1758)
+
+
+
+ urn:lsid:marinespecies.org:taxname:154677
+
+ species
+ Silurus glanis Linnaeus, 1758
+
+
+
+
+
+
+ unkown
+
+
+
+ Sophie
+ Vermeersch
+
+ Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
+
+ BE
+
+ info@inbo.be
+
+
+
+
+ Extra metadata added by VLIZ to add parameter, platform info, as well as GBIF fields
+
+ Fish detections
+ Fish total length
+ Wet weight of fish
+
+
+ 2024-07-09T01:33:06+00:00dataset
+ Vermeersch, S.; Pauwels, I.; Baeyens, R.; De Maerteleire, N.; Desmet, P.; Gelaude, E.; Milotic, T.; Pieters, S.; Reyserhove, L.; Robberechts, K.; Verhelst, P.; Coeck, J.; (2020): 2015_DIJLE - Acoustic telemetry data for five fish species in the Dijle river (Belgium). Marine Data Archive. https://dx.doi.org/10.14284/430
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://rshiny.lifewatch.be/etn-data/
+
+
+
+
+ Metadata
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.vliz.be//en/imis?dasid=5872
+
+
+
+
+
+
+
+
+
\ No newline at end of file
From 7f6453b3c57738100b11e4bf8708252146939e19 Mon Sep 17 00:00:00 2001
From: Sanne Govaert <44606923+sannegovaert@users.noreply.github.com>
Date: Thu, 12 Sep 2024 17:25:29 +0200
Subject: [PATCH 03/19] fix typo's
---
data/2011_RIVIERPRIK/processed/eml.xml | 4 ++--
src/prepare_eml_for_GBIF.Rmd | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/2011_RIVIERPRIK/processed/eml.xml b/data/2011_RIVIERPRIK/processed/eml.xml
index 6395ff3..4f172b4 100644
--- a/data/2011_RIVIERPRIK/processed/eml.xml
+++ b/data/2011_RIVIERPRIK/processed/eml.xml
@@ -169,7 +169,7 @@
(https://lifewatch.be/en/fish-acoustic-receiver-network) for the project/study 2011_rivierprik, using VEMCO tags (V7, V8) and receivers (VR2, VR2W). In total 39 adult individuals of river lamprey (Lampetra fluviatilis) were captured, tagged and released in 2011 and 2012, to study the effect of weirs and shipping locks on their upstream spawning migration in the tidal and/or non-tidal part of the Scheldt river and its tributaries.]]>
The disruption of longitudinal and lateral connectivity of rivers has led to ecological catastrophes such as the extinction of several diadromous fish species. River lamprey is an important indicator species for the integrity of ecosystems and connectivity within and between catchment areas. In the highly fragmented Scheldt river basin first restoration actions are undertaken, such as the building of nature-like bypasses. The migration patterns in the river catchment and their behaviour at a tidal barrier, lock-weir complexes and fish bypasses (passage timing and delay) in the upper Scheldt river show that the disrupted water management of the river and in consequence of its barriers and bypasses are one keys to (un)successful spawning migration in the catchment, beside spawning habitat deterioration.
The study was commissioned by the Vlaamse Waterweg NV.
- the European Tracking Network data portal <a href="http://www.lifewatch.be/etn"> (http://www.lifewatch.be/etn) </a> developed by VLIZ using the ETN R package <a href="https://inbo.github.io/etn/"> (https://inbo.github.io/etn/) </a> developed by INBO. Field definitions can be found at <a href="https://inbo.github.io/etn/articles/etn_fields.html">https://inbo.github.io/etn/articles/etn_fields.html</a>.
+ Data were exported from the European Tracking Network data portal <a href="http://www.lifewatch.be/etn"> (http://www.lifewatch.be/etn) </a> developed by VLIZ using the ETN R package <a href="https://inbo.github.io/etn/"> (https://inbo.github.io/etn/) </a> developed by INBO. Field definitions can be found at <a href="https://inbo.github.io/etn/articles/etn_fields.html">https://inbo.github.io/etn/articles/etn_fields.html</a>.
Acoustic telemetry
@@ -188,7 +188,7 @@
Migration barriers
River lamprey
VEMCO
- n/a
+ N/A
Migration
diff --git a/src/prepare_eml_for_GBIF.Rmd b/src/prepare_eml_for_GBIF.Rmd
index 1e72826..fda38ec 100644
--- a/src/prepare_eml_for_GBIF.Rmd
+++ b/src/prepare_eml_for_GBIF.Rmd
@@ -92,7 +92,7 @@ eml$dataset$maintenance$maintenanceUpdateFrequency <- "Not planned"
```{r}
eml$dataset$keywordSet <- purrr::map(eml$dataset$keywordSet, ~ {
if (!"keywordThesaurus" %in% names(.)) {
- . <- c(., keywordThesaurus = "n/a")
+ . <- c(., keywordThesaurus = "N/A")
}
.
})
@@ -112,7 +112,7 @@ paragraphs <- paragraphs[!paragraphs %in% c("", "", "]]>")]
# Split paragraph
paragraphs <- unlist(strsplit(paragraphs, " Data were exported from", perl = TRUE))
-purrr::map(paragraphs, ~ if(grepl("^ the European", .x)) {
+paragraphs <- purrr::map(paragraphs, ~ if(grepl("^ the European", .x)) {
.x <- paste0("Data were exported from", .x)
} else {.x <- .x})
From 3f3be26994d8519eb29034c9a19b5a5fc70569a6 Mon Sep 17 00:00:00 2001
From: Sanne Govaert <44606923+sannegovaert@users.noreply.github.com>
Date: Fri, 13 Sep 2024 09:50:47 +0200
Subject: [PATCH 04/19] remove dx. in link
---
src/prepare_eml_for_GBIF.Rmd | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/src/prepare_eml_for_GBIF.Rmd b/src/prepare_eml_for_GBIF.Rmd
index fda38ec..b8d228f 100644
--- a/src/prepare_eml_for_GBIF.Rmd
+++ b/src/prepare_eml_for_GBIF.Rmd
@@ -98,6 +98,14 @@ eml$dataset$keywordSet <- purrr::map(eml$dataset$keywordSet, ~ {
})
```
+# Clean Reserouce Citation Identifier
+
+```{r}
+identifier <- eml$additionalMetadata$metadata$gbif$citation$identifier
+eml$additionalMetadata$metadata$gbif$citation$identifier <- sub("dx.", "", identifier)
+```
+
+
## Update abstract
The abstract on IMIS is limited to 1000 characters. Extra paragraphs are living in `additionalInfo`.
From 0c87a1d8a6991b1afa57c3b33a25fd3285a38e0b Mon Sep 17 00:00:00 2001
From: Sanne Govaert <44606923+sannegovaert@users.noreply.github.com>
Date: Fri, 13 Sep 2024 09:59:31 +0200
Subject: [PATCH 05/19] reorder
---
src/prepare_eml_for_GBIF.Rmd | 91 ++++++++++++++++++++----------------
1 file changed, 52 insertions(+), 39 deletions(-)
diff --git a/src/prepare_eml_for_GBIF.Rmd b/src/prepare_eml_for_GBIF.Rmd
index b8d228f..7a5910a 100644
--- a/src/prepare_eml_for_GBIF.Rmd
+++ b/src/prepare_eml_for_GBIF.Rmd
@@ -18,7 +18,7 @@ library(EML)
library(here)
```
-Set user-defined values
+# Set user-defined values
```{r}
project_id <- "2011_RIVIERPRIK"
@@ -30,7 +30,7 @@ metadata_provider <- person(
)
```
-Read EML
+# Read EML
```{r}
eml <- EML::read_eml(here::here("data", project_id, "raw", "eml.xml"))
@@ -38,10 +38,43 @@ eml <- EML::read_eml(here::here("data", project_id, "raw", "eml.xml"))
# Cleaning
-## Clean creators and contact
+## Basic Metadata
-- Generic email "info@inbo.be" is removed
-- organizationName "Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek" is replaced by "Research Institute for Nature and Forest (INBO)"
+### Set Update frequency to "Not planned"
+
+```{r}
+eml$dataset$maintenance$maintenanceUpdateFrequency <- "Not planned"
+```
+
+### Update Description
+
+The abstract on IMIS is limited to 1000 characters. Extra paragraphs are living in `additionalInfo` (Additional metadata).
+We move the `additionalInfo` to the abstract and clean it up.
+
+```{r}
+additional_info <- eml$dataset$additionalInfo$para
+
+# Split `additional_info` in paragraphs
+paragraphs <- unlist(strsplit(additional_info, "|
|\n", perl = TRUE))
+paragraphs <- paragraphs[!paragraphs %in% c("", "", "]]>")]
+
+# Split paragraph
+paragraphs <- unlist(strsplit(paragraphs, " Data were exported from", perl = TRUE))
+paragraphs <- purrr::map(paragraphs, ~ if(grepl("^ the European", .x)) {
+ .x <- paste0("Data were exported from", .x)
+ } else {.x <- .x})
+
+# Rearrange paragraphs: abstract + additional_info
+eml$dataset$abstract$para <- c(eml$dataset$abstract$para, paragraphs)
+
+# Delete `additionalInfo`
+eml$dataset$additionalInfo <- NULL
+```
+
+### Clean Resource contacts and Resource creators
+
+- Generic email "info@inbo.be" is removed.
+- Organization "Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek" is replaced by "Research Institute for Nature and Forest (INBO)".
```{r}
update_contact <- function(contact) {
@@ -59,7 +92,7 @@ eml$dataset$creator <- purrr::map(eml$dataset$creator, update_contact)
eml$dataset$contact <- update_contact(eml$dataset$contact)
```
-## Set metadataProvider
+### Set Metadata provider
```{r}
eml$dataset$metadataProvider <- EML::set_responsibleParty(
@@ -74,20 +107,17 @@ eml$dataset$metadataProvider <- EML::set_responsibleParty(
)
```
-## Set generalTaxonomicCoverage and associatedParty to NULL
+## Taxonomic coverage
+
+Remove description.
```{r}
eml$dataset$coverage$taxonomicCoverage$generalTaxonomicCoverage <- NULL
-eml$dataset$associatedParty <- NULL
```
-## Set maintenanceUpdateFrequency to "Not planned"
+## Keywords
-```{r}
-eml$dataset$maintenance$maintenanceUpdateFrequency <- "Not planned"
-```
-
-## clean keywords
+Clean keywords.
```{r}
eml$dataset$keywordSet <- purrr::map(eml$dataset$keywordSet, ~ {
@@ -98,40 +128,23 @@ eml$dataset$keywordSet <- purrr::map(eml$dataset$keywordSet, ~ {
})
```
-# Clean Reserouce Citation Identifier
+## Associated Parties
+
+Remove associated parties.
```{r}
-identifier <- eml$additionalMetadata$metadata$gbif$citation$identifier
-eml$additionalMetadata$metadata$gbif$citation$identifier <- sub("dx.", "", identifier)
+eml$dataset$associatedParty <- NULL
```
+## Citations
-## Update abstract
-
-The abstract on IMIS is limited to 1000 characters. Extra paragraphs are living in `additionalInfo`.
-We move the `additionalInfo` to the abstract and clean it up.
+Clean Resource citation identifier
```{r}
-additional_info <- eml$dataset$additionalInfo$para
-
-# Split `additional_info` in paragraphs
-paragraphs <- unlist(strsplit(additional_info, "|
|\n", perl = TRUE))
-paragraphs <- paragraphs[!paragraphs %in% c("", "", "]]>")]
-
-# Split paragraph
-paragraphs <- unlist(strsplit(paragraphs, " Data were exported from", perl = TRUE))
-paragraphs <- purrr::map(paragraphs, ~ if(grepl("^ the European", .x)) {
- .x <- paste0("Data were exported from", .x)
- } else {.x <- .x})
-
-# Rearrange paragraphs: abstract + additional_info
-eml$dataset$abstract$para <- c(eml$dataset$abstract$para, paragraphs)
-
-# Delete `additionalInfo`
-eml$dataset$additionalInfo <- NULL
+identifier <- eml$additionalMetadata$metadata$gbif$citation$identifier
+eml$additionalMetadata$metadata$gbif$citation$identifier <- sub("dx.", "", identifier)
```
-
# Write EML
```{r}
From e4ea86e8d931b075ef0b699050bed858aef27260 Mon Sep 17 00:00:00 2001
From: Sanne Govaert <44606923+sannegovaert@users.noreply.github.com>
Date: Fri, 13 Sep 2024 10:00:01 +0200
Subject: [PATCH 06/19] Clean Resource citation identifier
---
data/2011_RIVIERPRIK/processed/eml.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/data/2011_RIVIERPRIK/processed/eml.xml b/data/2011_RIVIERPRIK/processed/eml.xml
index 4f172b4..3094ede 100644
--- a/data/2011_RIVIERPRIK/processed/eml.xml
+++ b/data/2011_RIVIERPRIK/processed/eml.xml
@@ -6,7 +6,7 @@
- Buysse, D.; Mouton, A.; Baeyens, R.; De Maerteleire, N.; Desmet, P.; Gelaude, E.; Jacobs, Y.; Pauwels, I.; Reyserhove, L.; Coeck, J.; (2020): 2011_RIVIERPRIK - Acoustic telemetry data for river lamprey (Lampetra fluviatilis) in the upper Scheldt river (Belgium). Marine Data Archive. https://dx.doi.org/10.14284/429https://dx.doi.org/10.14284/429
+ Buysse, D.; Mouton, A.; Baeyens, R.; De Maerteleire, N.; Desmet, P.; Gelaude, E.; Jacobs, Y.; Pauwels, I.; Reyserhove, L.; Coeck, J.; (2020): 2011_RIVIERPRIK - Acoustic telemetry data for river lamprey (Lampetra fluviatilis) in the upper Scheldt river (Belgium). Marine Data Archive. https://dx.doi.org/10.14284/429https://doi.org/10.14284/429
2024-07-09T01:33:06+00:00
dataset
From 991d34dea36cd8af07bbead10c8d62b8dc2c35c3 Mon Sep 17 00:00:00 2001
From: Sanne Govaert <44606923+sannegovaert@users.noreply.github.com>
Date: Fri, 13 Sep 2024 10:20:27 +0200
Subject: [PATCH 07/19] fix typo
---
src/prepare_eml_for_GBIF.Rmd | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/prepare_eml_for_GBIF.Rmd b/src/prepare_eml_for_GBIF.Rmd
index 7a5910a..43d5bcf 100644
--- a/src/prepare_eml_for_GBIF.Rmd
+++ b/src/prepare_eml_for_GBIF.Rmd
@@ -112,6 +112,7 @@ eml$dataset$metadataProvider <- EML::set_responsibleParty(
Remove description.
```{r}
+eml$dataset$coverage$taxonomicCoverage$id <- NULL
eml$dataset$coverage$taxonomicCoverage$generalTaxonomicCoverage <- NULL
```
From f7fbcdd2d618c30db2c4390b12adb78952fb9fdc Mon Sep 17 00:00:00 2001
From: Sanne Govaert <44606923+sannegovaert@users.noreply.github.com>
Date: Fri, 13 Sep 2024 10:20:42 +0200
Subject: [PATCH 08/19] remove taxonomicCoverage id
---
data/2011_RIVIERPRIK/processed/eml.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/data/2011_RIVIERPRIK/processed/eml.xml b/data/2011_RIVIERPRIK/processed/eml.xml
index 3094ede..69fd4e3 100644
--- a/data/2011_RIVIERPRIK/processed/eml.xml
+++ b/data/2011_RIVIERPRIK/processed/eml.xml
@@ -214,7 +214,7 @@
-
+
species
Lampetra fluviatilis (Linnaeus, 1758)
From 8a3bef9ba02441e04bd1b23be195fc95f4712100 Mon Sep 17 00:00:00 2001
From: Sanne Govaert <44606923+sannegovaert@users.noreply.github.com>
Date: Fri, 13 Sep 2024 11:56:33 +0200
Subject: [PATCH 09/19] account for more than 1 species in taxonomic coverage
---
src/prepare_eml_for_GBIF.Rmd | 16 ++++++++++++++--
1 file changed, 14 insertions(+), 2 deletions(-)
diff --git a/src/prepare_eml_for_GBIF.Rmd b/src/prepare_eml_for_GBIF.Rmd
index 43d5bcf..925c2fe 100644
--- a/src/prepare_eml_for_GBIF.Rmd
+++ b/src/prepare_eml_for_GBIF.Rmd
@@ -112,8 +112,20 @@ eml$dataset$metadataProvider <- EML::set_responsibleParty(
Remove description.
```{r}
-eml$dataset$coverage$taxonomicCoverage$id <- NULL
-eml$dataset$coverage$taxonomicCoverage$generalTaxonomicCoverage <- NULL
+tax_coverage <- eml$dataset$coverage$taxonomicCoverage
+number_of_species <- length(tax_coverage)
+clean_coverage <- function(tax_coverage) {
+ tax_coverage <- tax_coverage[names(tax_coverage) != "id"]
+ tax_coverage <- tax_coverage[names(tax_coverage) != "generalTaxonomicCoverage"]
+ return(tax_coverage)
+}
+
+if (number_of_species == 1) {
+ eml$dataset$coverage$taxonomicCoverage$id <- NULL
+ eml$dataset$coverage$taxonomicCoverage$generalTaxonomicCoverage <- NULL
+} else {
+ eml$dataset$coverage$taxonomicCoverage <- purrr::map(tax_coverage, clean_coverage)
+}
```
## Keywords
From e627b42c7d9d4b333a70a051d46a99cc39f355e7 Mon Sep 17 00:00:00 2001
From: Sanne Govaert <44606923+sannegovaert@users.noreply.github.com>
Date: Tue, 17 Sep 2024 14:17:34 +0200
Subject: [PATCH 10/19] update description
---
src/prepare_eml_for_GBIF.Rmd | 66 +++++++++++++++++++++---------------
1 file changed, 39 insertions(+), 27 deletions(-)
diff --git a/src/prepare_eml_for_GBIF.Rmd b/src/prepare_eml_for_GBIF.Rmd
index 925c2fe..15c23da 100644
--- a/src/prepare_eml_for_GBIF.Rmd
+++ b/src/prepare_eml_for_GBIF.Rmd
@@ -16,6 +16,7 @@ Load libraries
```{r}
library(EML)
library(here)
+library(stringr)
```
# Set user-defined values
@@ -46,31 +47,6 @@ eml <- EML::read_eml(here::here("data", project_id, "raw", "eml.xml"))
eml$dataset$maintenance$maintenanceUpdateFrequency <- "Not planned"
```
-### Update Description
-
-The abstract on IMIS is limited to 1000 characters. Extra paragraphs are living in `additionalInfo` (Additional metadata).
-We move the `additionalInfo` to the abstract and clean it up.
-
-```{r}
-additional_info <- eml$dataset$additionalInfo$para
-
-# Split `additional_info` in paragraphs
-paragraphs <- unlist(strsplit(additional_info, "|
|\n", perl = TRUE))
-paragraphs <- paragraphs[!paragraphs %in% c("", "", "]]>")]
-
-# Split paragraph
-paragraphs <- unlist(strsplit(paragraphs, " Data were exported from", perl = TRUE))
-paragraphs <- purrr::map(paragraphs, ~ if(grepl("^ the European", .x)) {
- .x <- paste0("Data were exported from", .x)
- } else {.x <- .x})
-
-# Rearrange paragraphs: abstract + additional_info
-eml$dataset$abstract$para <- c(eml$dataset$abstract$para, paragraphs)
-
-# Delete `additionalInfo`
-eml$dataset$additionalInfo <- NULL
-```
-
### Clean Resource contacts and Resource creators
- Generic email "info@inbo.be" is removed.
@@ -154,8 +130,44 @@ eml$dataset$associatedParty <- NULL
Clean Resource citation identifier
```{r}
-identifier <- eml$additionalMetadata$metadata$gbif$citation$identifier
-eml$additionalMetadata$metadata$gbif$citation$identifier <- sub("dx.", "", identifier)
+identifier_raw <- eml$additionalMetadata$metadata$gbif$citation$identifier
+identifier <- sub("dx.", "", identifier_raw)
+eml$additionalMetadata$metadata$gbif$citation$identifier <- identifier
+```
+## Update Description in Metadata
+
+The abstract on IMIS is limited to 1000 characters. Extra paragraphs are living in `additionalInfo` (Additional metadata).
+We move the `additionalInfo` to the abstract and clean it up.
+
+```{r}
+# Get additional paragraphs
+additional_info <- eml$dataset$additionalInfo$para
+
+# Split `additional_info` in paragraphs
+paragraphs <- unlist(strsplit(additional_info, "|
|\n", perl = TRUE))
+paragraphs <- paragraphs[!paragraphs %in% c("", "", "]]>")]
+paragraphs <- unlist(strsplit(paragraphs, " Data were exported from", perl = TRUE))
+
+# Extract publication year
+citation <- eml$additionalMetadata$metadata$gbif$citation$citation
+pattern <- "\\(\\d{4}\\)"
+year <- stringr::str_extract(citation, pattern) %>%
+ stringr::str_remove_all("\\(|\\)")
+
+# Extract first author
+first_author <- stringr::str_split_1(citation, ",")[1]
+
+# Write new paragraph
+new_paragraph <- paste0("Data have been standardized to Darwin Core using the etn package and are downsampled to the first detection per hour. The original data are managed in the European Tracking Network data platform (https://www.lifewatch.be/etn/) and are available in ", first_author, " et al. (", year, ", ", identifier, ").")
+
+# Update last paragraph
+paragraphs[length(paragraphs)] <- new_paragraph
+
+# Rearrange paragraphs: abstract + additional_info
+eml$dataset$abstract$para <- c(eml$dataset$abstract$para, paragraphs)
+
+# Delete `additionalInfo`
+eml$dataset$additionalInfo <- NULL
```
# Write EML
From f70b4924e59636b03c0b416c0b4b09a7a8ae1ce1 Mon Sep 17 00:00:00 2001
From: Sanne Govaert <44606923+sannegovaert@users.noreply.github.com>
Date: Tue, 17 Sep 2024 15:25:30 +0200
Subject: [PATCH 11/19] update description
---
src/prepare_eml_for_GBIF.Rmd | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/src/prepare_eml_for_GBIF.Rmd b/src/prepare_eml_for_GBIF.Rmd
index 15c23da..02b74de 100644
--- a/src/prepare_eml_for_GBIF.Rmd
+++ b/src/prepare_eml_for_GBIF.Rmd
@@ -148,6 +148,12 @@ paragraphs <- unlist(strsplit(additional_info, "|
|\n", perl = TRUE))
paragraphs <- paragraphs[!paragraphs %in% c("", "", "]]>")]
paragraphs <- unlist(strsplit(paragraphs, " Data were exported from", perl = TRUE))
+# Wrap paragraphs with html with ")
+ } else {.x <- .x}
+)
+
# Extract publication year
citation <- eml$additionalMetadata$metadata$gbif$citation$citation
pattern <- "\\(\\d{4}\\)"
@@ -158,7 +164,7 @@ year <- stringr::str_extract(citation, pattern) %>%
first_author <- stringr::str_split_1(citation, ",")[1]
# Write new paragraph
-new_paragraph <- paste0("Data have been standardized to Darwin Core using the etn package and are downsampled to the first detection per hour. The original data are managed in the European Tracking Network data platform (https://www.lifewatch.be/etn/) and are available in ", first_author, " et al. (", year, ", ", identifier, ").")
+new_paragraph <- paste0("Data have been standardized to Darwin Core using the etn package and are downsampled to the first detection per hour. The original data are managed in the European Tracking Network data platform (https://www.lifewatch.be/etn/) and are available in ", first_author, " et al. (", year, ", ", identifier, ").")
# Update last paragraph
paragraphs[length(paragraphs)] <- new_paragraph
From 0f762d545736b96342d9edaf8a357e6173e3735b Mon Sep 17 00:00:00 2001
From: Peter Desmet
Date: Wed, 18 Sep 2024 09:47:37 +0200
Subject: [PATCH 12/19] Rename file
---
src/{prepare_eml_for_GBIF.Rmd => eml_for_gbif.Rmd} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
rename src/{prepare_eml_for_GBIF.Rmd => eml_for_gbif.Rmd} (100%)
diff --git a/src/prepare_eml_for_GBIF.Rmd b/src/eml_for_gbif.Rmd
similarity index 100%
rename from src/prepare_eml_for_GBIF.Rmd
rename to src/eml_for_gbif.Rmd
From 73eb6a244671dc4a370d5e0aef4c2083613a73eb Mon Sep 17 00:00:00 2001
From: Peter Desmet
Date: Wed, 18 Sep 2024 09:54:52 +0200
Subject: [PATCH 13/19] Minor textual updates (not to code)
---
src/eml_for_gbif.Rmd | 46 ++++++++++++++++++++------------------------
1 file changed, 21 insertions(+), 25 deletions(-)
diff --git a/src/eml_for_gbif.Rmd b/src/eml_for_gbif.Rmd
index 02b74de..cc5f3c0 100644
--- a/src/eml_for_gbif.Rmd
+++ b/src/eml_for_gbif.Rmd
@@ -19,7 +19,7 @@ library(here)
library(stringr)
```
-# Set user-defined values
+## Set user-defined values
```{r}
project_id <- "2011_RIVIERPRIK"
@@ -31,26 +31,24 @@ metadata_provider <- person(
)
```
-# Read EML
+## Read and clean EML
```{r}
eml <- EML::read_eml(here::here("data", project_id, "raw", "eml.xml"))
```
-# Cleaning
+### Basic Metadata
-## Basic Metadata
-
-### Set Update frequency to "Not planned"
+Set update frequency` to `Not planned`:
```{r}
eml$dataset$maintenance$maintenanceUpdateFrequency <- "Not planned"
```
-### Clean Resource contacts and Resource creators
+Clean resource contacts and resource creators:
-- Generic email "info@inbo.be" is removed.
-- Organization "Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek" is replaced by "Research Institute for Nature and Forest (INBO)".
+- Remove generic email `info@inbo.be`.
+- Replace organization `Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek` with `Research Institute for Nature and Forest (INBO)`.
```{r}
update_contact <- function(contact) {
@@ -68,7 +66,7 @@ eml$dataset$creator <- purrr::map(eml$dataset$creator, update_contact)
eml$dataset$contact <- update_contact(eml$dataset$contact)
```
-### Set Metadata provider
+Set metadata provider:
```{r}
eml$dataset$metadataProvider <- EML::set_responsibleParty(
@@ -83,9 +81,9 @@ eml$dataset$metadataProvider <- EML::set_responsibleParty(
)
```
-## Taxonomic coverage
+### Taxonomic coverage
-Remove description.
+Remove description:
```{r}
tax_coverage <- eml$dataset$coverage$taxonomicCoverage
@@ -104,9 +102,9 @@ if (number_of_species == 1) {
}
```
-## Keywords
+### Keywords
-Clean keywords.
+Clean keywords:
```{r}
eml$dataset$keywordSet <- purrr::map(eml$dataset$keywordSet, ~ {
@@ -117,27 +115,27 @@ eml$dataset$keywordSet <- purrr::map(eml$dataset$keywordSet, ~ {
})
```
-## Associated Parties
+### Associated Parties
-Remove associated parties.
+Remove associated parties:
```{r}
eml$dataset$associatedParty <- NULL
```
-## Citations
+### Citations
-Clean Resource citation identifier
+Clean resource citation identifier:
```{r}
identifier_raw <- eml$additionalMetadata$metadata$gbif$citation$identifier
identifier <- sub("dx.", "", identifier_raw)
eml$additionalMetadata$metadata$gbif$citation$identifier <- identifier
```
-## Update Description in Metadata
-The abstract on IMIS is limited to 1000 characters. Extra paragraphs are living in `additionalInfo` (Additional metadata).
-We move the `additionalInfo` to the abstract and clean it up.
+### Update Description
+
+The abstract in IMIS consists of multiple paragraph, but only the first one (limited to 1000 characters) is in `abstract`. The other paragraphs are in `additionalInfo`. As with our other datasets, we move all paragraphs to `abstract` and add an additional paragraph describing the transformation to Darwin Core.
```{r}
# Get additional paragraphs
@@ -148,7 +146,7 @@ paragraphs <- unlist(strsplit(additional_info, "|
|\n", perl = TRUE))
paragraphs <- paragraphs[!paragraphs %in% c("", "", "]]>")]
paragraphs <- unlist(strsplit(paragraphs, " Data were exported from", perl = TRUE))
-# Wrap paragraphs with html with
paragraphs <- purrr::map(paragraphs, ~ if(grepl("<", .)){
.x <- paste0("")
} else {.x <- .x}
@@ -179,8 +177,6 @@ eml$dataset$additionalInfo <- NULL
# Write EML
```{r}
-eml_path <- here::here("data", project_id, "processed", "eml.xml")
+eml_path <- here::here("data", "processed", project_id, "eml.xml")
EML::write_eml(eml, eml_path)
```
-
-
From 98f0d969e5e937ca6b8d85f07e6190b53eeb092c Mon Sep 17 00:00:00 2001
From: Peter Desmet
Date: Wed, 18 Sep 2024 14:21:26 +0200
Subject: [PATCH 14/19] Correct link in description
---
src/eml_for_gbif.Rmd | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/eml_for_gbif.Rmd b/src/eml_for_gbif.Rmd
index cc5f3c0..7221ea5 100644
--- a/src/eml_for_gbif.Rmd
+++ b/src/eml_for_gbif.Rmd
@@ -162,7 +162,7 @@ year <- stringr::str_extract(citation, pattern) %>%
first_author <- stringr::str_split_1(citation, ",")[1]
# Write new paragraph
-new_paragraph <- paste0("Data have been standardized to Darwin Core using the etn package and are downsampled to the first detection per hour. The original data are managed in the European Tracking Network data platform (https://www.lifewatch.be/etn/) and are available in ", first_author, " et al. (", year, ", ", identifier, ").")
+new_paragraph <- paste0("Data have been standardized to Darwin Core using the etn package and are downsampled to the first detection per hour. The original data are managed in the European Tracking Network data platform (https://www.lifewatch.be/etn/) and are available in ", first_author, " et al. (", year, ", ", identifier, ").")
# Update last paragraph
paragraphs[length(paragraphs)] <- new_paragraph
From c2c95c3ad7aeecc2be3a410068919ed67f91ecce Mon Sep 17 00:00:00 2001
From: Peter Desmet
Date: Wed, 18 Sep 2024 16:46:35 +0200
Subject: [PATCH 15/19] Use shorter url
---
src/eml_for_gbif.Rmd | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/eml_for_gbif.Rmd b/src/eml_for_gbif.Rmd
index 7221ea5..bbeeb5d 100644
--- a/src/eml_for_gbif.Rmd
+++ b/src/eml_for_gbif.Rmd
@@ -162,7 +162,7 @@ year <- stringr::str_extract(citation, pattern) %>%
first_author <- stringr::str_split_1(citation, ",")[1]
# Write new paragraph
-new_paragraph <- paste0("Data have been standardized to Darwin Core using the etn package and are downsampled to the first detection per hour. The original data are managed in the European Tracking Network data platform (https://www.lifewatch.be/etn/) and are available in ", first_author, " et al. (", year, ", ", identifier, ").")
+new_paragraph <- paste0("Data have been standardized to Darwin Core using the etn package and are downsampled to the first detection per hour. The original data are managed in the European Tracking Network data platform (https://lifewatch.be/etn/) and are available in ", first_author, " et al. (", year, ", ", identifier, ").")
# Update last paragraph
paragraphs[length(paragraphs)] <- new_paragraph
From 14fd09a52894b3beb318d7e0f57de28342f06387 Mon Sep 17 00:00:00 2001
From: Sanne Govaert <44606923+sannegovaert@users.noreply.github.com>
Date: Wed, 22 Jan 2025 18:02:24 +0100
Subject: [PATCH 16/19] change folder structure
---
data/2011_RIVIERPRIK/raw/eml.xml | 264 ---------------
data/2012_LEOPOLDKANAAL/raw/eml.xml | 306 ------------------
data/2013_ALBERTKANAAL/raw/eml.xml | 305 -----------------
data/2014_DEMER/raw/eml.xml | 287 ----------------
.../2011_RIVIERPRIK}/eml.xml | 0
.../2015_DIJLE}/eml.xml | 0
src/eml_for_gbif.Rmd | 2 +-
7 files changed, 1 insertion(+), 1163 deletions(-)
delete mode 100644 data/2011_RIVIERPRIK/raw/eml.xml
delete mode 100644 data/2012_LEOPOLDKANAAL/raw/eml.xml
delete mode 100644 data/2013_ALBERTKANAAL/raw/eml.xml
delete mode 100644 data/2014_DEMER/raw/eml.xml
rename data/{2011_RIVIERPRIK/processed => processed/2011_RIVIERPRIK}/eml.xml (100%)
rename data/{2015_DIJLE/processed => processed/2015_DIJLE}/eml.xml (100%)
diff --git a/data/2011_RIVIERPRIK/raw/eml.xml b/data/2011_RIVIERPRIK/raw/eml.xml
deleted file mode 100644
index 2c884f9..0000000
--- a/data/2011_RIVIERPRIK/raw/eml.xml
+++ /dev/null
@@ -1,264 +0,0 @@
-
-
-
- 2011_RIVIERPRIK - Acoustic telemetry data for river lamprey (Lampetra fluviatilis) in the upper Scheldt river (Belgium)
-
-
-
- David
- Buysse
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
- 0000-0002-4437-5678
-
-
-
- Ans
- Mouton
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
-
-
-
- Raf
- Baeyens
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
- 0000-0002-0651-3056
-
-
-
- Nico
- De Maerteleire
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- nico.demaerteleire@inbo.be
-
-
-
- Peter
- Desmet
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- 0000-0002-8442-8025
-
-
-
- Emilie
- Gelaude
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
-
-
-
- Yves
- Jacobs
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
-
-
-
- Ine
- Pauwels
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- ine.pauwels@inbo.be
- 0000-0002-2856-8787
-
-
-
- Lien
- Reyserhove
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- lien.reyserhove@inbo.be
- 0000-0001-7484-9267
-
-
-
- Johan
- Coeck
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
- 0000-0003-2732-7428
-
-
-
-
- Flanders Marine Institute (VLIZ)
-
- BE
-
- info@vliz.be
- https://www.vliz.be
-
-
-
- Vlaamse overheid; Beleidsdomein Omgeving Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
- contentProvider
-
-
- 2020-11-19
- en
-
- (https://lifewatch.be/en/fish-acoustic-receiver-network) for the project/study 2011_rivierprik, using VEMCO tags (V7, V8) and receivers (VR2, VR2W). In total 39 adult individuals of river lamprey (Lampetra fluviatilis) were captured, tagged and released in 2011 and 2012, to study the effect of weirs and shipping locks on their upstream spawning migration in the tidal and/or non-tidal part of the Scheldt river and its tributaries.]]>
-
-
- The disruption of longitudinal and lateral connectivity of rivers has led to ecological catastrophes such as the extinction of several diadromous fish species. River lamprey is an important indicator species for the integrity of ecosystems and connectivity within and between catchment areas. In the highly fragmented Scheldt river basin first restoration actions are undertaken, such as the building of nature-like bypasses. The migration patterns in the river catchment and their behaviour at a tidal barrier, lock-weir complexes and fish bypasses (passage timing and delay) in the upper Scheldt river show that the disrupted water management of the river and in consequence of its barriers and bypasses are one keys to (un)successful spawning migration in the catchment, beside spawning habitat deterioration.
-
-The study was commissioned by the Vlaamse Waterweg NV. Data were exported from the European Tracking Network data portal (http://www.lifewatch.be/etn) developed by VLIZ using the ETN R package (https://inbo.github.io/etn/) developed by INBO. Field definitions can be found at https://inbo.github.io/etn/articles/etn_fields.html.
]]>
-
-
- Acoustic telemetry
- Spawning migrations
- ASFA Thesaurus List
-
-
- Acoustic Telemetry
- ETN Context
-
-
- Animal movement
- Animal tracking
- Biologging
- Impact assessment
- Migration barriers
- River lamprey
- VEMCO
-
-
- Migration
- CSA Technology Research Database Master Thesaurus
-
-
-
- To the extent possible under law, the publisher has waived all rights to these data and has dedicated them to the Public Domain (CC0 1.0). Users may copy, modify, distribute and use the work, including for commercial purposes, without restriction.
-
-
-
- Belgium, Flanders
- Belgium, Scheldt
-
-
- 2011-12-13
- 2012-07-03
-
-
-
- urn:lsid:marinespecies.org:taxname:101172
-
- species
- Lampetra fluviatilis (Linnaeus, 1758)
-
-
-
-
-
-
- unkown
-
-
-
- David
- Buysse
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
- 0000-0002-4437-5678
-
-
-
-
- Extra metadata added by VLIZ to add parameter, platform info, as well as GBIF fields
-
- Fish detections
- Fish sex
- Fish total length
- Wet weight of fish
-
-
- 2024-07-09T01:33:06+00:00dataset
- Buysse, D.; Mouton, A.; Baeyens, R.; De Maerteleire, N.; Desmet, P.; Gelaude, E.; Jacobs, Y.; Pauwels, I.; Reyserhove, L.; Coeck, J.; (2020): 2011_RIVIERPRIK - Acoustic telemetry data for river lamprey (Lampetra fluviatilis) in the upper Scheldt river (Belgium). Marine Data Archive. https://dx.doi.org/10.14284/429
-
-
- Online dataset
- UTF-8
-
-
- HTML
-
-
-
-
- https://rshiny.lifewatch.be/etn-data/
-
-
-
-
- Metadata
- UTF-8
-
-
- HTML
-
-
-
-
- https://www.vliz.be//en/imis?dasid=5867
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/data/2012_LEOPOLDKANAAL/raw/eml.xml b/data/2012_LEOPOLDKANAAL/raw/eml.xml
deleted file mode 100644
index 872431d..0000000
--- a/data/2012_LEOPOLDKANAAL/raw/eml.xml
+++ /dev/null
@@ -1,306 +0,0 @@
-
-
-
- 2012_LEOPOLDKANAAL - Acoustic telemetry data for European eel (Anguilla anguilla) in a polder area in Flanders (Belgium)
-
-
-
- Pieterjan
- Verhelst
-
- Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
-
- BE
-
- isolde.degrem@ugent.be
- 0000-0002-2610-6941
-
-
-
- David
- Buysse
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
- 0000-0002-4437-5678
-
-
-
- Raf
- Baeyens
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
- 0000-0002-0651-3056
-
-
-
- Nico
- De Maerteleire
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- nico.demaerteleire@inbo.be
-
-
-
- Peter
- Desmet
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- 0000-0002-8442-8025
-
-
-
- Emilie
- Gelaude
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
-
-
-
- Yves
- Jacobs
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
-
-
-
- Tanja
- Milotic
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
- 0000-0002-3129-6196
-
-
-
- Ans
- Mouton
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
-
-
-
- Lien
- Reyserhove
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- lien.reyserhove@inbo.be
- 0000-0001-7484-9267
-
-
-
- Karen
- Robberechts
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- karen.robberechts@inbo.be
-
-
-
- Johan
- Coeck
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
- 0000-0003-2732-7428
-
-
-
-
- Flanders Marine Institute (VLIZ)
-
- BE
-
- info@vliz.be
- https://www.vliz.be
-
-
-
- Vlaamse overheid; Beleidsdomein Omgeving Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
- contentProvider
-
-
- 2020-11-19
- en
-
- https://lifewatch.be/en/fish-acoustic-receiver-network) for the project/study 2012_leopoldkanaal, using VEMCO tags (V7, V13) and receivers (VR2AR, VR2W). In total 104 female individuals of European eel (Anguilla anguilla) were captured, tagged and released in 2011 and 2012, to study their movement behaviour during the yellow eel stage and migration behaviour during the silver eel stage for 4 years in Meetjesland, a polder area in Flanders, Belgium.]]>
-
-
- Polder areas are lowland systems below sea level that are drained for agricultural and urbanization purposes. Hence, they are characterised by water regulating structures such as dykes, water pumping stations and weirs. They are characterised by a network of canals, connected ponds and ditches, resulting in a high habitat diversity and thus many potential growth areas. When the water level rises beyond a certain threshold during precipitation events, water is pumped from the polder area into the sea to maintain a specific water level. Not only does this result in irregular water flows, water pumping stations have already shown to negatively affect fish passing through them by various injuries and mortalities. In this tracking study, we investigated the movement and ranging behaviour of resident, yellow eels to understand their spatio-temporal habitat use in the polder. Second, we analysed what routes migrating silver eels take, what environmental factors influence this migration and to what extent they are delayed by the migration barriers.
-This dataset was collected using infrastructure provided by VLIZ and INBO funded by the Research Foundation - Flanders (FWO) as part of the Belgian contribution to LifeWatch. The study was commissioned by the Agency of Nature and Forest (ANB). Data were exported from the European Tracking Network data portal (http://www.lifewatch.be/etn) developed by VLIZ using the ETN R package (https://inbo.github.io/etn/) developed by INBO. Field definitions can be found at https://inbo.github.io/etn/articles/etn_fields.html.
]]>
-
-
- Acoustic telemetry
- Home range
- ASFA Thesaurus List
-
-
- Acoustic Telemetry
- ETN Context
-
-
- Animal movement
- Animal tracking
- Biologging
- Impact assessment
- LifeWatch
- Migration barriers
- VEMCO
-
-
- Migration
- CSA Technology Research Database Master Thesaurus
-
-
-
- To the extent possible under law, the publisher has waived all rights to these data and has dedicated them to the Public Domain (CC0 1.0). Users may copy, modify, distribute and use the work, including for commercial purposes, without restriction.
-
-
-
- ANE, Western Scheldt
- Belgium, Belgian Coast
- Belgium, Flanders
- Belgium, Leopoldkanaal
- Belgium, Meetjesland
-
-
- 2012-07-03
- 2020-09-28
-
-
-
- urn:lsid:marinespecies.org:taxname:126281
-
- species
- Anguilla anguilla (Linnaeus, 1758)
-
-
-
-
-
-
-
- Durif index
-
-
-
- Entire sampling area
- Durif index
-
-
-
-
-
- unkown
-
-
-
- Johan
- Coeck
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
- 0000-0003-2732-7428
-
-
-
-
- Extra metadata added by VLIZ to add parameter, platform info, as well as GBIF fields
-
- Fish age
- Fish detections
- Fish lifestage
- Fish sex
- Fish total length
- Horizontal eye diameter of fish
- Pectoral fin length of fish
- Vertical eye diameter of fish
- Wet weight of fish
-
-
- 2024-07-09T01:33:06+00:00dataset
- Verhelst, P.; Buysse, D.; Baeyens, R.; De Maerteleire, N.; Desmet, P.; Gelaude, E.; Jacobs, Y.; Milotic, T.; Mouton, A.; Reyserhove, L.; Robberechts, K.; Coeck, J.; (2020): 2012_LEOPOLDKANAAL - Acoustic telemetry data for European eel (Anguilla anguilla) in a polder area in Flanders (Belgium). Marine Data Archive. https://dx.doi.org/10.14284/428
-
-
- Online dataset
- UTF-8
-
-
- HTML
-
-
-
-
- https://rshiny.lifewatch.be/etn-data/
-
-
-
-
- Metadata
- UTF-8
-
-
- HTML
-
-
-
-
- https://www.vliz.be//en/imis?dasid=5873
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/data/2013_ALBERTKANAAL/raw/eml.xml b/data/2013_ALBERTKANAAL/raw/eml.xml
deleted file mode 100644
index 10a6ccb..0000000
--- a/data/2013_ALBERTKANAAL/raw/eml.xml
+++ /dev/null
@@ -1,305 +0,0 @@
-
-
-
- 2013_ALBERTKANAAL - Acoustic telemetry data for European eel (Anguilla anguilla) and hatched Salmon (Salmo salar) in the Albert canal (Belgium)
-
-
-
- Raf
- Baeyens
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
- 0000-0002-0651-3056
-
-
-
- Jenna
- Vergeynst
-
- Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
-
- BE
-
- isolde.degrem@ugent.be
- 0000-0001-8959-0884
-
-
-
- Nico
- De Maerteleire
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- nico.demaerteleire@inbo.be
-
-
-
- Peter
- Desmet
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- 0000-0002-8442-8025
-
-
-
- Emilie
- Gelaude
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
-
-
-
- Tanja
- Milotic
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
- 0000-0002-3129-6196
-
-
-
- Ans
- Mouton
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
-
-
-
- Ine
- Pauwels
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- ine.pauwels@inbo.be
- 0000-0002-2856-8787
-
-
-
- Sébastien
- Pieters
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
-
-
-
- Lien
- Reyserhove
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- lien.reyserhove@inbo.be
- 0000-0001-7484-9267
-
-
-
- Karen
- Robberecht
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- Karen.Robberechts@inbo.be
-
-
-
- Pieterjan
- Verhelst
-
- Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
-
- BE
-
- isolde.degrem@ugent.be
- 0000-0002-2610-6941
-
-
-
- Johan
- Coeck
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
- 0000-0003-2732-7428
-
-
-
-
- Flanders Marine Institute (VLIZ)
-
- BE
-
- info@vliz.be
- https://www.vliz.be
-
-
- 2020-11-20
- en
-
- (https://lifewatch.be/en/fish-acoustic-receiver-network) for the project/study 2013_albertkanaal, using VEMCO tags (V7, V9, V13) and receivers (VR2AR, VR2Tx, VR2W). In total 161 female individuals of European eel (Anguilla anguilla) and 134 (hatched) smolts of Atlantic salmon (Salmo salar) were captured, tagged and released between 2013 and 2017, to study the effect of shipping locks and hydropower plants on their downstream migration in the Albert canal.]]>
-
-
- Navigation locks play an important role for ship navigation on canals and other regulated waterways worldwide. Unfortunately, these structures may severely impact the aquatic ecosystem and freshwater fish in particular. In Belgium (Europe), the Albert canal connecting the Meuse river to the Scheldt river, is an important migration route for European eel (critically endangered) and Atlantic salmon (vulnerable). During their downstream migration these fish are hampered by six subsequent navigation lock complexes present in the canal. Three of which are by-passed by a small channel leading to a hydropower plant with large Archimedes screw turbines. In the coming years, three more such hydropower plants are to be installed next to three of six ship lock complexes. The Archimedes screws function both as pump and turbine (hydropower generator). Two dimensional fine scale positioning, as well as impact assessment through assessment of fish injury and mortality at the Archimedes screws, was performed to better understand the overall impact of these anthropogenic structures on diadromous fish, such as eel and salmon.
-
-This dataset was collected using infrastructure provided by VLIZ and INBO funded by the Research Foundation - Flanders (FWO) as part of the Belgian contribution to LifeWatch. The study was commissioned by the Vlaamse Waterweg NV. Data were exported from the European Tracking Network data portal (http://www.lifewatch.be/etn) developed by VLIZ using the ETN R package (https://inbo.github.io/etn/) developed by INBO. Field definitions can be found at https://inbo.github.io/etn/articles/etn_fields.html.
]]>
-
-
- Acoustic telemetry
- ASFA Thesaurus List
-
-
- Acoustic Telemetry
- ETN Context
-
-
- Animal movement
- Animal tracking
- Biologging
- Hydropower
- Impact assessment
- LifeWatch
- Migration barriers
- Shipping canals
- VEMCO
-
-
- Migration
- CSA Technology Research Database Master Thesaurus
-
-
-
- To the extent possible under law, the publisher has waived all rights to these data and has dedicated them to the Public Domain (CC0 1.0). Users may copy, modify, distribute and use the work, including for commercial purposes, without restriction.
-
-
-
- ANE, Western Scheldt
- Belgium, Albert Canal
- Belgium, Flanders
- Belgium, Meuse Basin
- Belgium, Zeeschelde, Antwerp Harbour
-
-
- 2013-10-18
- 2019-05-10
-
-
-
- urn:lsid:marinespecies.org:taxname:126281
-
- species
- Anguilla anguilla (Linnaeus, 1758)
-
-
-
- urn:lsid:marinespecies.org:taxname:127186
-
- species
- Salmo salar Linnaeus, 1758
-
-
-
-
-
-
- unkown
-
-
-
- Ine
- Pauwels
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- ine.pauwels@inbo.be
- 0000-0002-2856-8787
-
-
-
-
- Extra metadata added by VLIZ to add parameter, platform info, as well as GBIF fields
-
- Fish detections
- Fish lifestage
- Fish sex
- Fish total length
- Horizontal eye diameter of fish
- Pectoral fin length of fish
- Vertical eye diameter of fish
- Wet weight of fish
-
-
- 2024-07-09T01:33:06+00:00dataset
- Baeyens, R.; Vergeynst, J.; De Maerteleire, N.; Desmet, P.; Gelaude, E.; Milotic, T.; Mouton, A.; Pauwels, I.; Pieters, S.; Reyserhove, L.; Robberechts, K.; Verhelst, P.; Coeck, J.; (2020): 2013_ALBERTKANAAL - Acoustic telemetry data for European eel (Anguilla anguilla) and hatched Salmon (Salmo salar) in the Albert canal (Belgium). Marine Data Archive. https://dx.doi.org/10.14284/431
-
-
- Online dataset
- UTF-8
-
-
- HTML
-
-
-
-
- https://rshiny.lifewatch.be/etn-data/
-
-
-
-
- Metadata
- UTF-8
-
-
- HTML
-
-
-
-
- https://www.vliz.be//en/imis?dasid=5868
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/data/2014_DEMER/raw/eml.xml b/data/2014_DEMER/raw/eml.xml
deleted file mode 100644
index 653f286..0000000
--- a/data/2014_DEMER/raw/eml.xml
+++ /dev/null
@@ -1,287 +0,0 @@
-
-
-
- 2014_DEMER - Acoustic telemetry data for four fish species in the Demer river (Belgium)
-
-
-
- Ine
- Pauwels
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- ine.pauwels@inbo.be
- 0000-0002-2856-8787
-
-
-
- Raf
- Baeyens
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
- 0000-0002-0651-3056
-
-
-
- Nico
- De Maerteleire
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- nico.demaerteleire@inbo.be
-
-
-
- Peter
- Desmet
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- 0000-0002-8442-8025
-
-
-
- Emilie
- Gelaude
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
-
-
-
- Tanja
- Milotic
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
- 0000-0002-3129-6196
-
-
-
- Sébastien
- Pieters
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
-
-
-
- Lien
- Reyserhove
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- lien.reyserhove@inbo.be
- 0000-0001-7484-9267
-
-
-
- Karen
- Robberechts
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- karen.robberechts@inbo.be
-
-
-
- Pieterjan
- Verhelst
-
- Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
-
- BE
-
- isolde.degrem@ugent.be
- 0000-0002-2610-6941
-
-
-
- Johan
- Coeck
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
- 0000-0003-2732-7428
-
-
-
-
- Flanders Marine Institute (VLIZ)
-
- BE
-
- info@vliz.be
- https://www.vliz.be
-
-
- 2020-11-23
- en
-
- (https://lifewatch.be/en/fish-acoustic-receiver-network) for the project/study 2014_demer, using VEMCO tags (V7, V13) and receivers (VR2W). In total 16 adult individuals of four local wild fish species (Petromyzon marinus, Rutilus rutilus, Silurus glanis, Squalius cephalus) were captured, tagged and released in 2014, to study the effect of a specific barrier on their upstream/downstream migration in the Demer basin.]]>
-
-
- Longitudinal and lateral connectivity of rivers is necessary for fish to successfully fulfill their life cycle. In Flanders, fish are obstructed in their essential free migrations by weirs, sluices, mills, and pumping stations, which are needed to control the water level. The Demer river drains the eastern part of the Scheldt basin. Fish migrating from the sea to the Demer river are obstructed by three hydraulic constructions. In this study we aimed to evaluate the possibilities for fish migration around the most upstream of these three constructions, the Grote Steunbeer in the city of Diest. Therefore, behaviour of two sea lamprey (Petromyzon marinus), two roach (Rutilus rutilus), nine Wels catfish (Silurus glanis) and three chub (Squalius cephalus) was investigated by acoustic telemetry in the areas up-, downstream and around the fish migration barrier. The results indicated that free upstream fish migration in the Demer river is obstructed by the Grote Steunbeer barrier in its current state, and that adaptations to this barrier should get priority as the tributary of the Zwarte beek only partly offers an alternative route for fish to qualitative spawning habitats upstream.
-
-This dataset was collected using infrastructure provided by VLIZ and INBO funded by the Research Foundation - Flanders (FWO) as part of the Belgian contribution to LifeWatch. The study was commissioned by the Flemish Environment Agency (VMM). Data were exported from the European Tracking Network data portal (http://www.lifewatch.be/etn) developed by VLIZ using the ETN R package (https://inbo.github.io/etn/) developed by INBO. Field definitions can be found at https://inbo.github.io/etn/articles/etn_fields.html.]]>
-
-
- Acoustic telemetry
- ASFA Thesaurus List
-
-
- Acoustic Telemetry
- ETN Context
-
-
- Animal movement
- Animal tracking
- Biologging
- Impact assessment
- LifeWatch
- Migration barriers
- VEMCO
-
-
- Migration
- CSA Technology Research Database Master Thesaurus
-
-
-
- To the extent possible under law, the publisher has waived all rights to these data and has dedicated them to the Public Domain (CC0 1.0). Users may copy, modify, distribute and use the work, including for commercial purposes, without restriction.
-
-
-
- Belgium, Demer R.
- Belgium, Flanders
-
-
- 2014-04-18
- 2018-09-15
-
-
-
- urn:lsid:marinespecies.org:taxname:101174
-
- species
- Petromyzon marinus Linnaeus, 1758
-
-
-
- urn:lsid:marinespecies.org:taxname:154333
-
- species
- Rutilus rutilus (Linnaeus, 1758)
-
-
-
- urn:lsid:marinespecies.org:taxname:154677
-
- species
- Silurus glanis Linnaeus, 1758
-
-
-
- urn:lsid:marinespecies.org:taxname:282855
-
- species
- Squalius cephalus (Linnaeus, 1758)
-
-
-
-
-
-
- unkown
-
-
-
- Ine
- Pauwels
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- ine.pauwels@inbo.be
- 0000-0002-2856-8787
-
-
-
-
- Extra metadata added by VLIZ to add parameter, platform info, as well as GBIF fields
-
- Fish detections
- Fish sex
- Fish total length
- Wet weight of fish
-
-
- 2024-07-09T01:33:06+00:00dataset
- Pauwels, I.; Baeyens, R.; De Maerteleire, N.; Desmet, P.; Gelaude, E.; Milotic, T.; Pieters, S.; Reyserhove, L.; Robberechts, K.; Verhelst, P.; Coeck, J.; (2020): 2014_DEMER - Acoustic telemetry data for four fish species in the Demer river (Belgium). Marine Data Archive. https://dx.doi.org/10.14284/432
-
-
- Online dataset
- UTF-8
-
-
- HTML
-
-
-
-
- https://rshiny.lifewatch.be/etn-data/
-
-
-
-
- Metadata
- UTF-8
-
-
- HTML
-
-
-
-
- https://www.vliz.be//en/imis?dasid=5871
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/data/2011_RIVIERPRIK/processed/eml.xml b/data/processed/2011_RIVIERPRIK/eml.xml
similarity index 100%
rename from data/2011_RIVIERPRIK/processed/eml.xml
rename to data/processed/2011_RIVIERPRIK/eml.xml
diff --git a/data/2015_DIJLE/processed/eml.xml b/data/processed/2015_DIJLE/eml.xml
similarity index 100%
rename from data/2015_DIJLE/processed/eml.xml
rename to data/processed/2015_DIJLE/eml.xml
diff --git a/src/eml_for_gbif.Rmd b/src/eml_for_gbif.Rmd
index bbeeb5d..99c3bed 100644
--- a/src/eml_for_gbif.Rmd
+++ b/src/eml_for_gbif.Rmd
@@ -34,7 +34,7 @@ metadata_provider <- person(
## Read and clean EML
```{r}
-eml <- EML::read_eml(here::here("data", project_id, "raw", "eml.xml"))
+eml <- EML::read_eml(here::here("data", "raw", project_id, "eml.xml"))
```
### Basic Metadata
From 66d5638f378f93c3d369bf0d3112355655bae20c Mon Sep 17 00:00:00 2001
From: Sanne Govaert <44606923+sannegovaert@users.noreply.github.com>
Date: Wed, 22 Jan 2025 18:10:40 +0100
Subject: [PATCH 17/19] read eml directly from IMIS url
---
src/eml_for_gbif.Rmd | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/eml_for_gbif.Rmd b/src/eml_for_gbif.Rmd
index 99c3bed..5a563fb 100644
--- a/src/eml_for_gbif.Rmd
+++ b/src/eml_for_gbif.Rmd
@@ -23,6 +23,7 @@ library(stringr)
```{r}
project_id <- "2011_RIVIERPRIK"
+imis_url <- "https://www.vliz.be/en/imis?dasid=5867&doiid=429"
metadata_provider <- person(
given = "Peter",
family = "Desmet",
@@ -34,7 +35,7 @@ metadata_provider <- person(
## Read and clean EML
```{r}
-eml <- EML::read_eml(here::here("data", "raw", project_id, "eml.xml"))
+eml1 <- EML::read_eml(paste0(imis_url, "&show=eml"))
```
### Basic Metadata
From 9793eeafabd9918b4ec49d63718ec010704a74f2 Mon Sep 17 00:00:00 2001
From: Sanne Govaert <44606923+sannegovaert@users.noreply.github.com>
Date: Wed, 22 Jan 2025 18:16:51 +0100
Subject: [PATCH 18/19] set all mailAdresses to NULL, because of off emails
---
src/eml_for_gbif.Rmd | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/src/eml_for_gbif.Rmd b/src/eml_for_gbif.Rmd
index 5a563fb..0a74049 100644
--- a/src/eml_for_gbif.Rmd
+++ b/src/eml_for_gbif.Rmd
@@ -35,7 +35,7 @@ metadata_provider <- person(
## Read and clean EML
```{r}
-eml1 <- EML::read_eml(paste0(imis_url, "&show=eml"))
+eml <- EML::read_eml(paste0(imis_url, "&show=eml"))
```
### Basic Metadata
@@ -53,10 +53,7 @@ Clean resource contacts and resource creators:
```{r}
update_contact <- function(contact) {
- if (
- !is.null(contact$electronicMailAddress) && contact$electronicMailAddress == "info@inbo.be") {
- contact$electronicMailAddress <- NULL
- }
+ contact$electronicMailAddress <- NULL
if (!is.null(contact$organizationName) && contact$organizationName == "Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek") {
contact$organizationName <- "Research Institute for Nature and Forest (INBO)"
}
From 3e21b9ac5e3c7196ee0d77b03963ad969ffd4c8f Mon Sep 17 00:00:00 2001
From: Sanne Govaert <44606923+sannegovaert@users.noreply.github.com>
Date: Wed, 22 Jan 2025 18:22:02 +0100
Subject: [PATCH 19/19] update processed eml
---
data/processed/2010_PHD_REUBENS/eml.xml | 304 +++++++++
data/processed/2011_RIVIERPRIK/eml.xml | 102 ++-
data/processed/2012_LEOPOLDKANAAL/eml.xml | 295 ++++++++
data/processed/2013_ALBERTKANAAL/eml.xml | 384 +++++++++++
data/processed/2014_DEMER/eml.xml | 360 ++++++++++
data/processed/2015_DIJLE/eml.xml | 681 ++++++++++---------
data/processed/2015_PHD_VERHELST_COD/eml.xml | 301 ++++++++
data/processed/2015_PHD_VERHELST_EEL/eml.xml | 394 +++++++++++
8 files changed, 2511 insertions(+), 310 deletions(-)
create mode 100644 data/processed/2010_PHD_REUBENS/eml.xml
create mode 100644 data/processed/2012_LEOPOLDKANAAL/eml.xml
create mode 100644 data/processed/2013_ALBERTKANAAL/eml.xml
create mode 100644 data/processed/2014_DEMER/eml.xml
create mode 100644 data/processed/2015_PHD_VERHELST_COD/eml.xml
create mode 100644 data/processed/2015_PHD_VERHELST_EEL/eml.xml
diff --git a/data/processed/2010_PHD_REUBENS/eml.xml b/data/processed/2010_PHD_REUBENS/eml.xml
new file mode 100644
index 0000000..dc054ce
--- /dev/null
+++ b/data/processed/2010_PHD_REUBENS/eml.xml
@@ -0,0 +1,304 @@
+
+
+
+
+ Extra metadata added by VLIZ to add parameter, platform info, as well as GBIF fields
+
+
+
+ Reubens, J.; Degraer, S.; Desmet, P.; Moens, T.; Reyserhove, L.; Vincx, M.; (2020): 2010_PHD_REUBENS - Acoustic telemetry data for Atlantic cod (Gadus morhua) in the C-Power wind farm in the southern North Sea (Belgium). Marine Data Archive. https://dx.doi.org/10.14284/437https://doi.org/10.14284/437
+ 2025-01-08T10:51:47+01:00
+ dataset
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://emodnet.ec.europa.eu/geonetwork/srv/eng/catalog.search#/metadata/6d617269-6e65-696e-666f-000000005846
+
+
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.eurobis.org/toolbox/en/download/occurrence/dataset/5846
+
+
+
+
+ GBIF dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.gbif.org/dataset/06d9eb55-ab67-45da-a697-18cc42e7cd3c
+
+
+
+
+ IPT
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://ipt.inbo.be/archive?r=2010_phd_reubens
+
+
+
+
+ IPT
+ UTF-8
+
+
+ HTML
+
+
+
+
+ http://ipt.inbo.be/resource?r=2010_phd_reubens
+
+
+
+
+ IPT
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://ipt.vliz.be/eurobis/resource?r=2010_phd_reubens
+
+
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://obis.org/dataset/63061840-e725-4c74-bdbc-65f31a8e28c8
+
+
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://rshiny.lifewatch.be/etn-data/
+
+
+
+
+ Metadata
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.vliz.be//en/imis?dasid=5846
+
+
+
+
+ Fish detections
+ Fish total length
+
+
+
+ Acoustic telemetry data for Atlantic cod (Gadus morhua) in the C-Power wind farm in the southern North Sea (Belgium)
+
+
+ Jan
+ Reubens
+
+ Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
+
+ BE
+
+ 0000-0002-9823-5670
+
+
+
+ Steven
+ Degraer
+
+ Koninklijk Belgisch Instituut voor Natuurwetenschappen; Operationele Directie Natuurlijk Milieu
+
+ BE
+
+ 0000-0002-3159-5751
+
+
+
+ Peter
+ Desmet
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-8442-8025
+
+
+
+ Tom
+ Moens
+
+ Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
+
+ BE
+
+ 0000-0001-6544-9210
+
+
+
+ Lien
+ Reyserhove
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0001-7484-9267
+
+
+
+ Magda
+ Vincx
+
+ Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
+
+ BE
+
+
+
+
+ Peter
+ Desmet
+
+ peter.desmet@inbo.be
+ 0000-0002-8442-8025
+
+ 2024-08-30
+ en
+
+ (https://lifewatch.be/en/fish-acoustic-receiver-network) for the project/study 2010_phd_Reubens, using VEMCO tags (V9) and receivers (VR2W). In total 41 individuals of Atlantic cod (Gadus morhua) were captured, tagged and released in 2010 and 2011 in the C-Power wind farm in the Belgian part of the North Sea, to study their movement behaviour and assess the impacts of offshore wind farms on their movement ecology. This dataset also includes the data of the synchronisation tags present in the study. To calculate exact 2D positions using acoustic telemetry, the time difference of arrival of signals at different receivers is used. Therefore sync tags are needed to account for clock drift in the receivers.]]>
+ Gadus morhua). The results of this study will be useful for management measures for the conservation and restoration of the cod population.]]>
+ This study was funded by Research Foundation - Flanders (FWO).
+ Data have been standardized to Darwin Core using the <a href="https://inbo.github.io/etn/">etn</a> package and are downsampled to the first detection per hour. The original data are managed in the European Tracking Network data platform (<a href="https://lifewatch.be/etn/">https://lifewatch.be/etn/</a>) and are available in Reubens et al. (2020, <a href="https://doi.org/10.14284/437">https://doi.org/10.14284/437</a>).
+
+
+ Acoustic telemetry
+ Home range
+ ASFA Thesaurus List
+
+
+ Acoustic Telemetry
+ ETN Context
+
+
+ Animal movement
+ Animal tracking
+ Biologging
+ Impact assessment
+ VEMCO
+ N/A
+
+
+ Data
+ Assemble KO Types
+
+
+ This work is licensed under a Creative Commons Attribution (CC-BY) 4.0 License.
+
+
+
+ ANE, Belgium, Belgian Coast
+
+
+ ANE, Belgium, Zeeland Banks, Thornton Bank
+
+
+ ANE, North Sea
+
+
+ EurOBIS calculated BBOX > station Bounding Box
+
+ 2.92157
+ 2.953
+ 51.552
+ 51.53766667
+
+
+
+
+
+ 2010-08-06
+
+
+ 2015-08-31
+
+
+
+
+
+ species
+ Gadus morhua Linnaeus, 1758
+
+
+
+
+
+
+
+ Not planned
+
+
+
+ Jan
+ Reubens
+
+ Vlaams Instituut voor de Zee
+
+ BE
+
+ 0000-0002-9823-5670
+
+
+
diff --git a/data/processed/2011_RIVIERPRIK/eml.xml b/data/processed/2011_RIVIERPRIK/eml.xml
index 69fd4e3..6290841 100644
--- a/data/processed/2011_RIVIERPRIK/eml.xml
+++ b/data/processed/2011_RIVIERPRIK/eml.xml
@@ -7,8 +7,92 @@
Buysse, D.; Mouton, A.; Baeyens, R.; De Maerteleire, N.; Desmet, P.; Gelaude, E.; Jacobs, Y.; Pauwels, I.; Reyserhove, L.; Coeck, J.; (2020): 2011_RIVIERPRIK - Acoustic telemetry data for river lamprey (Lampetra fluviatilis) in the upper Scheldt river (Belgium). Marine Data Archive. https://dx.doi.org/10.14284/429https://doi.org/10.14284/429
- 2024-07-09T01:33:06+00:00
+ 2025-01-08T10:53:03+01:00
dataset
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://emodnet.ec.europa.eu/geonetwork/srv/eng/catalog.search#/metadata/6d617269-6e65-696e-666f-000000005867
+
+
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.eurobis.org/toolbox/en/download/occurrence/dataset/5867
+
+
+
+
+ GBIF dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.gbif.org/dataset/365dcf96-b8ba-49dd-91b8-4aaaa0a0a1a7
+
+
+
+
+ IPT
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://ipt.inbo.be/archive.do?r=2011_rivierprik
+
+
+
+
+ IPT
+ UTF-8
+
+
+ HTML
+
+
+
+
+ http://ipt.inbo.be/resource?r=2011_rivierprik
+
+
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://obis.org/dataset/384580a6-e811-427d-a7a0-1319f6d013a8
+
+
+
Online dataset
UTF-8
@@ -87,7 +171,6 @@
BE
- nico.demaerteleire@inbo.be
@@ -129,7 +212,6 @@
BE
- ine.pauwels@inbo.be
0000-0002-2856-8787
@@ -141,7 +223,6 @@
BE
- lien.reyserhove@inbo.be
0000-0001-7484-9267
@@ -163,13 +244,13 @@
peter.desmet@inbo.be
0000-0002-8442-8025
- 2020-11-19
+ 2024-11-27
en
(https://lifewatch.be/en/fish-acoustic-receiver-network) for the project/study 2011_rivierprik, using VEMCO tags (V7, V8) and receivers (VR2, VR2W). In total 39 adult individuals of river lamprey (Lampetra fluviatilis) were captured, tagged and released in 2011 and 2012, to study the effect of weirs and shipping locks on their upstream spawning migration in the tidal and/or non-tidal part of the Scheldt river and its tributaries.]]>
The disruption of longitudinal and lateral connectivity of rivers has led to ecological catastrophes such as the extinction of several diadromous fish species. River lamprey is an important indicator species for the integrity of ecosystems and connectivity within and between catchment areas. In the highly fragmented Scheldt river basin first restoration actions are undertaken, such as the building of nature-like bypasses. The migration patterns in the river catchment and their behaviour at a tidal barrier, lock-weir complexes and fish bypasses (passage timing and delay) in the upper Scheldt river show that the disrupted water management of the river and in consequence of its barriers and bypasses are one keys to (un)successful spawning migration in the catchment, beside spawning habitat deterioration.
The study was commissioned by the Vlaamse Waterweg NV.
- Data were exported from the European Tracking Network data portal <a href="http://www.lifewatch.be/etn"> (http://www.lifewatch.be/etn) </a> developed by VLIZ using the ETN R package <a href="https://inbo.github.io/etn/"> (https://inbo.github.io/etn/) </a> developed by INBO. Field definitions can be found at <a href="https://inbo.github.io/etn/articles/etn_fields.html">https://inbo.github.io/etn/articles/etn_fields.html</a>.
+ Data have been standardized to Darwin Core using the <a href="https://inbo.github.io/etn/">etn</a> package and are downsampled to the first detection per hour. The original data are managed in the European Tracking Network data platform (<a href="https://lifewatch.be/etn/">https://lifewatch.be/etn/</a>) and are available in Buysse et al. (2020, <a href="https://doi.org/10.14284/429">https://doi.org/10.14284/429</a>).
Acoustic telemetry
@@ -204,6 +285,15 @@
Belgium, Scheldt
+
+ EurOBIS calculated BBOX > station Bounding Box
+
+ 3.4313904305
+ 4.1060977142
+ 51.1042459773
+ 50.7917709035
+
+
diff --git a/data/processed/2012_LEOPOLDKANAAL/eml.xml b/data/processed/2012_LEOPOLDKANAAL/eml.xml
new file mode 100644
index 0000000..d1a6027
--- /dev/null
+++ b/data/processed/2012_LEOPOLDKANAAL/eml.xml
@@ -0,0 +1,295 @@
+
+
+
+
+ Extra metadata added by VLIZ to add parameter, platform info, as well as GBIF fields
+
+
+
+ Verhelst, P.; Buysse, D.; Baeyens, R.; De Maerteleire, N.; Desmet, P.; Gelaude, E.; Jacobs, Y.; Milotic, T.; Mouton, A.; Reyserhove, L.; Robberechts, K.; Coeck, J.; (2020): 2012_LEOPOLDKANAAL - Acoustic telemetry data for European eel (Anguilla anguilla) in a polder area in Flanders (Belgium). Marine Data Archive. https://dx.doi.org/10.14284/428https://doi.org/10.14284/428
+ 2024-07-09T01:33:06+00:00
+ dataset
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://rshiny.lifewatch.be/etn-data/
+
+
+
+
+ Metadata
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.vliz.be//en/imis?dasid=5873
+
+
+
+
+ Fish age
+ Fish detections
+ Fish lifestage
+ Fish sex
+ Fish total length
+ Horizontal eye diameter of fish
+ Pectoral fin length of fish
+ Vertical eye diameter of fish
+ Wet weight of fish
+
+
+
+ 2012_LEOPOLDKANAAL - Acoustic telemetry data for European eel (Anguilla anguilla) in a polder area in Flanders (Belgium)
+
+
+ Pieterjan
+ Verhelst
+
+ Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
+
+ BE
+
+ isolde.degrem@ugent.be
+ 0000-0002-2610-6941
+
+
+
+ David
+ Buysse
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-4437-5678
+
+
+
+ Raf
+ Baeyens
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-0651-3056
+
+
+
+ Nico
+ De Maerteleire
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ nico.demaerteleire@inbo.be
+
+
+
+ Peter
+ Desmet
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-8442-8025
+
+
+
+ Emilie
+ Gelaude
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Yves
+ Jacobs
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Tanja
+ Milotic
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-3129-6196
+
+
+
+ Ans
+ Mouton
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Lien
+ Reyserhove
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ lien.reyserhove@inbo.be
+ 0000-0001-7484-9267
+
+
+
+ Karen
+ Robberechts
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ karen.robberechts@inbo.be
+
+
+
+ Johan
+ Coeck
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0003-2732-7428
+
+
+
+ Peter
+ Desmet
+
+ peter.desmet@inbo.be
+ 0000-0002-8442-8025
+
+ 2020-11-19
+ en
+
+ https://lifewatch.be/en/fish-acoustic-receiver-network) for the project/study 2012_leopoldkanaal, using VEMCO tags (V7, V13) and receivers (VR2AR, VR2W). In total 104 female individuals of European eel (Anguilla anguilla) were captured, tagged and released in 2011 and 2012, to study their movement behaviour during the yellow eel stage and migration behaviour during the silver eel stage for 4 years in Meetjesland, a polder area in Flanders, Belgium.]]>
+ Polder areas are lowland systems below sea level that are drained for agricultural and urbanization purposes. Hence, they are characterised by water regulating structures such as dykes, water pumping stations and weirs. They are characterised by a network of canals, connected ponds and ditches, resulting in a high habitat diversity and thus many potential growth areas. When the water level rises beyond a certain threshold during precipitation events, water is pumped from the polder area into the sea to maintain a specific water level. Not only does this result in irregular water flows, water pumping stations have already shown to negatively affect fish passing through them by various injuries and mortalities. In this tracking study, we investigated the movement and ranging behaviour of resident, yellow eels to understand their spatio-temporal habitat use in the polder. Second, we analysed what routes migrating silver eels take, what environmental factors influence this migration and to what extent they are delayed by the migration barriers.
+ This dataset was collected using infrastructure provided by VLIZ and INBO funded by the Research Foundation - Flanders (FWO) as part of the Belgian contribution to LifeWatch. The study was commissioned by the Agency of Nature and Forest (ANB).
+ Data have been standardized to Darwin Core using the <a href="https://inbo.github.io/etn/">etn</a> package and are downsampled to the first detection per hour. The original data are managed in the European Tracking Network data platform (<a href="https://lifewatch.be/etn/">https://lifewatch.be/etn/</a>) and are available in Verhelst et al. (2020, <a href="https://doi.org/10.14284/428">https://doi.org/10.14284/428</a>).
+
+
+ Acoustic telemetry
+ Home range
+ ASFA Thesaurus List
+
+
+ Acoustic Telemetry
+ ETN Context
+
+
+ Animal movement
+ Animal tracking
+ Biologging
+ Impact assessment
+ LifeWatch
+ Migration barriers
+ VEMCO
+ N/A
+
+
+ Migration
+ CSA Technology Research Database Master Thesaurus
+
+
+ To the extent possible under law, the publisher has waived all rights to these data and has dedicated them to the Public Domain (CC0 1.0). Users may copy, modify, distribute and use the work, including for commercial purposes, without restriction.
+
+
+
+ ANE, Western Scheldt
+
+
+ Belgium, Belgian Coast
+
+
+ Belgium, Flanders
+
+
+ Belgium, Leopoldkanaal
+
+
+ Belgium, Meetjesland
+
+
+
+
+ 2012-07-03
+
+
+ 2020-09-28
+
+
+
+
+
+ species
+ Anguilla anguilla (Linnaeus, 1758)
+
+
+
+
+
+
+
+ Not planned
+
+
+
+ Johan
+ Coeck
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0003-2732-7428
+
+
+
+
+ Durif index
+
+
+
+
+
+ Entire sampling area
+
+
+
+ Durif index
+
+
+
+
+
diff --git a/data/processed/2013_ALBERTKANAAL/eml.xml b/data/processed/2013_ALBERTKANAAL/eml.xml
new file mode 100644
index 0000000..f345bdd
--- /dev/null
+++ b/data/processed/2013_ALBERTKANAAL/eml.xml
@@ -0,0 +1,384 @@
+
+
+
+
+ Extra metadata added by VLIZ to add parameter, platform info, as well as GBIF fields
+
+
+
+ Baeyens, R.; Vergeynst, J.; De Maerteleire, N.; Desmet, P.; Gelaude, E.; Milotic, T.; Mouton, A.; Pauwels, I.; Pieters, S.; Reyserhove, L.; Robberechts, K.; Verhelst, P.; Coeck, J.; (2020): 2013_ALBERTKANAAL - Acoustic telemetry data for European eel (Anguilla anguilla) and hatched Salmon (Salmo salar) in the Albert canal (Belgium). Marine Data Archive. https://dx.doi.org/10.14284/431https://doi.org/10.14284/431
+ 2025-01-08T10:54:21+01:00
+ dataset
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://emodnet.ec.europa.eu/geonetwork/srv/eng/catalog.search#/metadata/6d617269-6e65-696e-666f-000000005868
+
+
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.eurobis.org/toolbox/en/download/occurrence/dataset/5868
+
+
+
+
+ GBIF dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.gbif.org/dataset/47360f99-2f92-4e48-9898-1e4976d09d71
+
+
+
+
+ IPT
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://ipt.inbo.be/archive.do?r=2013_albertkanaal
+
+
+
+
+ IPT
+ UTF-8
+
+
+ HTML
+
+
+
+
+ http://ipt.inbo.be/resource?r=2013_albertkanaal
+
+
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://obis.org/dataset/724eb292-104f-4e8f-8f26-ffa45a1a3be5
+
+
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://rshiny.lifewatch.be/etn-data/
+
+
+
+
+ Metadata
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.vliz.be//en/imis?dasid=5868
+
+
+
+
+ Fish detections
+ Fish lifestage
+ Fish sex
+ Fish total length
+ Horizontal eye diameter of fish
+ Pectoral fin length of fish
+ Vertical eye diameter of fish
+ Wet weight of fish
+
+
+
+ 2013_ALBERTKANAAL - Acoustic telemetry data for European eel (Anguilla anguilla) and hatched Salmon (Salmo salar) in the Albert canal (Belgium)
+
+
+ Raf
+ Baeyens
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-0651-3056
+
+
+
+ Jenna
+ Vergeynst
+
+ Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
+
+ BE
+
+ 0000-0001-8959-0884
+
+
+
+ Nico
+ De Maerteleire
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Peter
+ Desmet
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-8442-8025
+
+
+
+ Emilie
+ Gelaude
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Tanja
+ Milotic
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-3129-6196
+
+
+
+ Ans
+ Mouton
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Ine
+ Pauwels
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-2856-8787
+
+
+
+ Sébastien
+ Pieters
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Lien
+ Reyserhove
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0001-7484-9267
+
+
+
+ Karen
+ Robberecht
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Pieterjan
+ Verhelst
+
+ Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
+
+ BE
+
+ 0000-0002-2610-6941
+
+
+
+ Johan
+ Coeck
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0003-2732-7428
+
+
+
+ Peter
+ Desmet
+
+ peter.desmet@inbo.be
+ 0000-0002-8442-8025
+
+ 2024-11-27
+ en
+
+ (https://lifewatch.be/en/fish-acoustic-receiver-network) for the project/study 2013_albertkanaal, using VEMCO tags (V7, V9, V13) and receivers (VR2AR, VR2Tx, VR2W). In total 161 female individuals of European eel (Anguilla anguilla) and 134 (hatched) smolts of Atlantic salmon (Salmo salar) were captured, tagged and released between 2013 and 2017, to study the effect of shipping locks and hydropower plants on their downstream migration in the Albert canal.]]>
+ Navigation locks play an important role for ship navigation on canals and other regulated waterways worldwide. Unfortunately, these structures may severely impact the aquatic ecosystem and freshwater fish in particular. In Belgium (Europe), the Albert canal connecting the Meuse river to the Scheldt river, is an important migration route for European eel (critically endangered) and Atlantic salmon (vulnerable). During their downstream migration these fish are hampered by six subsequent navigation lock complexes present in the canal. Three of which are by-passed by a small channel leading to a hydropower plant with large Archimedes screw turbines. In the coming years, three more such hydropower plants are to be installed next to three of six ship lock complexes. The Archimedes screws function both as pump and turbine (hydropower generator). Two dimensional fine scale positioning, as well as impact assessment through assessment of fish injury and mortality at the Archimedes screws, was performed to better understand the overall impact of these anthropogenic structures on diadromous fish, such as eel and salmon.
+ This dataset was collected using infrastructure provided by VLIZ and INBO funded by the Research Foundation - Flanders (FWO) as part of the Belgian contribution to LifeWatch. The study was commissioned by the Vlaamse Waterweg NV.
+ Data have been standardized to Darwin Core using the <a href="https://inbo.github.io/etn/">etn</a> package and are downsampled to the first detection per hour. The original data are managed in the European Tracking Network data platform (<a href="https://lifewatch.be/etn/">https://lifewatch.be/etn/</a>) and are available in Baeyens et al. (2020, <a href="https://doi.org/10.14284/431">https://doi.org/10.14284/431</a>).
+
+
+ Acoustic telemetry
+ ASFA Thesaurus List
+
+
+ Acoustic Telemetry
+ ETN Context
+
+
+ Animal movement
+ Animal tracking
+ Biologging
+ Hydropower
+ Impact assessment
+ LifeWatch
+ Migration barriers
+ Shipping canals
+ VEMCO
+ N/A
+
+
+ Migration
+ CSA Technology Research Database Master Thesaurus
+
+
+ To the extent possible under law, the publisher has waived all rights to these data and has dedicated them to the Public Domain (CC0 1.0). Users may copy, modify, distribute and use the work, including for commercial purposes, without restriction.
+
+
+
+ ANE, Western Scheldt
+
+
+ Belgium, Albert Canal
+
+
+ Belgium, Flanders
+
+
+ Belgium, Meuse Basin
+
+
+ Belgium, Zeeschelde, Antwerp Harbour
+
+
+ EurOBIS calculated BBOX > station Bounding Box
+
+ -2.0931643
+ 5.996046
+ 60.12330281
+ 48.5703243
+
+
+
+
+
+ 2013-10-18
+
+
+ 2019-05-10
+
+
+
+
+
+ species
+ Anguilla anguilla (Linnaeus, 1758)
+
+
+
+
+ species
+ Salmo salar Linnaeus, 1758
+
+
+
+
+
+
+
+ Not planned
+
+
+
+ Ine
+ Pauwels
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-2856-8787
+
+
+
diff --git a/data/processed/2014_DEMER/eml.xml b/data/processed/2014_DEMER/eml.xml
new file mode 100644
index 0000000..45c4b84
--- /dev/null
+++ b/data/processed/2014_DEMER/eml.xml
@@ -0,0 +1,360 @@
+
+
+
+
+ Extra metadata added by VLIZ to add parameter, platform info, as well as GBIF fields
+
+
+
+ Pauwels, I.; Baeyens, R.; De Maerteleire, N.; Desmet, P.; Gelaude, E.; Milotic, T.; Pieters, S.; Reyserhove, L.; Robberechts, K.; Verhelst, P.; Coeck, J.; (2020): 2014_DEMER - Acoustic telemetry data for four fish species in the Demer river (Belgium). Marine Data Archive. https://dx.doi.org/10.14284/432https://doi.org/10.14284/432
+ 2025-01-08T10:55:26+01:00
+ dataset
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://emodnet.ec.europa.eu/geonetwork/srv/eng/catalog.search#/metadata/6d617269-6e65-696e-666f-000000005871
+
+
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.eurobis.org/toolbox/en/download/occurrence/dataset/5871
+
+
+
+
+ GBIF dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.gbif.org/dataset/8be8dcf1-6e83-4172-a7b7-c2032b933d23
+
+
+
+
+ IPT
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://ipt.inbo.be/archive.do?r=2014_demer
+
+
+
+
+ IPT
+ UTF-8
+
+
+ HTML
+
+
+
+
+ http://ipt.inbo.be/resource?r=2014_demer
+
+
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://obis.org/dataset/4961ff53-d090-497f-9ddb-39b6c485bb66
+
+
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://rshiny.lifewatch.be/etn-data/
+
+
+
+
+ Metadata
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.vliz.be//en/imis?dasid=5871
+
+
+
+
+ Fish detections
+ Fish sex
+ Fish total length
+ Wet weight of fish
+
+
+
+ 2014_DEMER - Acoustic telemetry data for four fish species in the Demer river (Belgium)
+
+
+ Ine
+ Pauwels
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-2856-8787
+
+
+
+ Raf
+ Baeyens
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-0651-3056
+
+
+
+ Nico
+ De Maerteleire
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Peter
+ Desmet
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-8442-8025
+
+
+
+ Emilie
+ Gelaude
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Tanja
+ Milotic
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-3129-6196
+
+
+
+ Sébastien
+ Pieters
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Lien
+ Reyserhove
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0001-7484-9267
+
+
+
+ Karen
+ Robberechts
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Pieterjan
+ Verhelst
+
+ Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
+
+ BE
+
+ 0000-0002-2610-6941
+
+
+
+ Johan
+ Coeck
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0003-2732-7428
+
+
+
+ Peter
+ Desmet
+
+ peter.desmet@inbo.be
+ 0000-0002-8442-8025
+
+ 2024-11-27
+ en
+
+ (https://lifewatch.be/en/fish-acoustic-receiver-network) for the project/study 2014_demer, using VEMCO tags (V7, V13) and receivers (VR2W). In total 16 adult individuals of four local wild fish species (Petromyzon marinus, Rutilus rutilus, Silurus glanis, Squalius cephalus) were captured, tagged and released in 2014, to study the effect of a specific barrier on their upstream/downstream migration in the Demer basin.]]>
+ Petromyzon marinus), two roach (Rutilus rutilus), nine Wels catfish (Silurus glanis) and three chub (Squalius cephalus) was investigated by acoustic telemetry in the areas up-, downstream and around the fish migration barrier. The results indicated that free upstream fish migration in the Demer river is obstructed by the Grote Steunbeer barrier in its current state, and that adaptations to this barrier should get priority as the tributary of the Zwarte beek only partly offers an alternative route for fish to qualitative spawning habitats upstream.]]>
+ This dataset was collected using infrastructure provided by VLIZ and INBO funded by the Research Foundation - Flanders (FWO) as part of the Belgian contribution to LifeWatch. The study was commissioned by the Flemish Environment Agency (VMM).
+ Data have been standardized to Darwin Core using the <a href="https://inbo.github.io/etn/">etn</a> package and are downsampled to the first detection per hour. The original data are managed in the European Tracking Network data platform (<a href="https://lifewatch.be/etn/">https://lifewatch.be/etn/</a>) and are available in Pauwels et al. (2020, <a href="https://doi.org/10.14284/432">https://doi.org/10.14284/432</a>).
+
+
+ Acoustic telemetry
+ ASFA Thesaurus List
+
+
+ Acoustic Telemetry
+ ETN Context
+
+
+ Animal movement
+ Animal tracking
+ Biologging
+ Impact assessment
+ LifeWatch
+ Migration barriers
+ VEMCO
+ N/A
+
+
+ Migration
+ CSA Technology Research Database Master Thesaurus
+
+
+ To the extent possible under law, the publisher has waived all rights to these data and has dedicated them to the Public Domain (CC0 1.0). Users may copy, modify, distribute and use the work, including for commercial purposes, without restriction.
+
+
+
+ Belgium, Demer R.
+
+
+ Belgium, Flanders
+
+
+ EurOBIS calculated BBOX > station Bounding Box
+
+ 3.96965
+ 5.0780232
+ 51.242076
+ 50.98197
+
+
+
+
+
+ 2014-04-18
+
+
+ 2018-09-15
+
+
+
+
+
+ species
+ Petromyzon marinus Linnaeus, 1758
+
+
+
+
+ species
+ Rutilus rutilus (Linnaeus, 1758)
+
+
+
+
+ species
+ Silurus glanis Linnaeus, 1758
+
+
+
+
+ species
+ Squalius cephalus (Linnaeus, 1758)
+
+
+
+
+
+
+
+ Not planned
+
+
+
+ Ine
+ Pauwels
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-2856-8787
+
+
+
diff --git a/data/processed/2015_DIJLE/eml.xml b/data/processed/2015_DIJLE/eml.xml
index 95ac037..935376d 100644
--- a/data/processed/2015_DIJLE/eml.xml
+++ b/data/processed/2015_DIJLE/eml.xml
@@ -1,304 +1,377 @@
-
-
-
- 2015_DIJLE - Acoustic telemetry data for five fish species in the Dijle river (Belgium)
-
-
-
- Sophie
- Vermeersch
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
-
-
-
- Ine
- Pauwels
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- ine.pauwels@inbo.be
- 0000-0002-2856-8787
-
-
-
- Raf
- Baeyens
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
- 0000-0002-0651-3056
-
-
-
- Nico
- De Maerteleire
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- nico.demaerteleire@inbo.be
-
-
-
- Peter
- Desmet
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- 0000-0002-8442-8025
-
-
-
- Emilie
- Gelaude
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
-
-
-
- Tanja
- Milotic
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
- 0000-0002-3129-6196
-
-
-
- Sébastien
- Pieters
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
-
-
-
- Lien
- Reyserhove
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- lien.reyserhove@inbo.be
- 0000-0001-7484-9267
-
-
-
- Karen
- Robberechts
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- karen.robberechts@inbo.be
-
-
-
- Pieterjan
- Verhelst
-
- Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
-
- BE
-
- isolde.degrem@ugent.be
- 0000-0002-2610-6941
-
-
-
- Johan
- Coeck
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
- 0000-0003-2732-7428
-
-
-
-
- Flanders Marine Institute (VLIZ)
-
- BE
-
- info@vliz.be
- https://www.vliz.be
-
-
- 2020-11-20
- en
-
- (https://lifewatch.be/en/fish-acoustic-receiver-network) for the project/study 2015_dijle, using VEMCO tags (V7, V13) and receivers (VR2AR, VR2W). In total 26 adult individuals of five local wild fish species (Anguilla anguilla, Cyprinus carpio, Platichthys flesus, Rutilus rutilus, Silurus glanis) were captured, tagged and released in 2015, to study the effect of a specific barrier on their upstream/downstream migration in the Dijle basin.]]>
-
-
- Fish migrating from the sea to the Dijle river (or vice versa) are obstructed by a weir in the city of Mechelen which is designed to prevent tides from entering further inland. To mitigate this problem, fish-friendly weir management was implemented, the effect of which was measured in this study with acoustic telemetry. In 2015, 26 individuals of five fish species - European eel (Anguilla anguilla), common carp (Cyprinus carpio), flounder (Platichthys flesus), roach (Rutilus rutilus) and wels catfish (Silurus glanis) - were captured, tagged and tracked in the areas up- and downstream of the weir. 3 wels catfish tagged for the 2014_demer study were also detected. Results of the evaluated weir passages by fish showed that 21 of 29 fish were able to pass the weir at specific hydrological conditions and weir management options. The number of passages differed between species, but happened always in the periods that higher passage could be expected following their lifestyle. The study indicates the importance and benefits of a fish-friendly weir management.
-
-This dataset was collected using infrastructure provided by VLIZ and INBO funded by the Research Foundation - Flanders (FWO) as part of the Belgian contribution to LifeWatch. The study was commissioned by the Vlaamse Waterweg NV. Data were exported from the European Tracking Network data portal (http://www.lifewatch.be/etn) developed by VLIZ using the ETN R package (https://inbo.github.io/etn/) developed by INBO. Field definitions can be found at https://inbo.github.io/etn/articles/etn_fields.html.
]]>
-
-
- Acoustic telemetry
- ASFA Thesaurus List
-
-
- Acoustic Telemetry
- ETN Context
-
-
- Animal movement
- Animal tracking
- Biologging
- Impact assessment
- LifeWatch
- Migration barriers
- VEMCO
-
-
- Migration
- CSA Technology Research Database Master Thesaurus
-
-
-
- To the extent possible under law, the publisher has waived all rights to these data and has dedicated them to the Public Domain (CC0 1.0). Users may copy, modify, distribute and use the work, including for commercial purposes, without restriction.
-
-
-
- Belgium, Dijle R.
- Belgium, Flanders
- Belgium, Scheldt
-
-
- 2015-04-22
- 2018-06-28
-
-
-
- urn:lsid:marinespecies.org:taxname:126281
-
- species
- Anguilla anguilla (Linnaeus, 1758)
-
-
-
- urn:lsid:marinespecies.org:taxname:154582
-
- species
- Cyprinus carpio Linnaeus, 1758
-
-
-
- urn:lsid:marinespecies.org:taxname:127141
-
- species
- Platichthys flesus (Linneaus, 1758)
-
-
-
- urn:lsid:marinespecies.org:taxname:154333
-
- species
- Rutilus rutilus (Linnaeus, 1758)
-
-
-
- urn:lsid:marinespecies.org:taxname:154677
-
- species
- Silurus glanis Linnaeus, 1758
-
-
-
-
-
-
- unkown
-
-
-
- Sophie
- Vermeersch
-
- Vlaamse overheid; Beleidsdomein Omgeving; Instituut voor Natuur- en Bosonderzoek
-
- BE
-
- info@inbo.be
-
-
-
-
- Extra metadata added by VLIZ to add parameter, platform info, as well as GBIF fields
-
- Fish detections
- Fish total length
- Wet weight of fish
-
-
- 2024-07-09T01:33:06+00:00dataset
- Vermeersch, S.; Pauwels, I.; Baeyens, R.; De Maerteleire, N.; Desmet, P.; Gelaude, E.; Milotic, T.; Pieters, S.; Reyserhove, L.; Robberechts, K.; Verhelst, P.; Coeck, J.; (2020): 2015_DIJLE - Acoustic telemetry data for five fish species in the Dijle river (Belgium). Marine Data Archive. https://dx.doi.org/10.14284/430
-
-
- Online dataset
- UTF-8
-
-
- HTML
-
-
-
-
- https://rshiny.lifewatch.be/etn-data/
-
-
-
-
- Metadata
- UTF-8
-
-
- HTML
-
-
-
-
- https://www.vliz.be//en/imis?dasid=5872
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+ Extra metadata added by VLIZ to add parameter, platform info, as well as GBIF fields
+
+
+
+ Vermeersch, S.; Pauwels, I.; Baeyens, R.; De Maerteleire, N.; Desmet, P.; Gelaude, E.; Milotic, T.; Pieters, S.; Reyserhove, L.; Robberechts, K.; Verhelst, P.; Coeck, J.; (2020): 2015_DIJLE - Acoustic telemetry data for five fish species in the Dijle river (Belgium). Marine Data Archive. https://dx.doi.org/10.14284/430https://doi.org/10.14284/430
+ 2025-01-08T10:56:27+01:00
+ dataset
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://emodnet.ec.europa.eu/geonetwork/srv/eng/catalog.search#/metadata/6d617269-6e65-696e-666f-000000005872
+
+
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.eurobis.org/toolbox/en/download/occurrence/dataset/5872
+
+
+
+
+ GBIF dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.gbif.org/dataset/0d9718f4-de6d-4115-b2f0-e3ec6aa088ab
+
+
+
+
+ IPT
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://ipt.inbo.be/archive.do?r=2015_dijle
+
+
+
+
+ IPT
+ UTF-8
+
+
+ HTML
+
+
+
+
+ http://ipt.inbo.be/resource?r=2015_dijle
+
+
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://obis.org/dataset/64e038e6-795c-418e-b617-7c81e4dcb293
+
+
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://rshiny.lifewatch.be/etn-data/
+
+
+
+
+ Metadata
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.vliz.be//en/imis?dasid=5872
+
+
+
+
+ Fish detections
+ Fish total length
+ Wet weight of fish
+
+
+
+ 2015_DIJLE - Acoustic telemetry data for five fish species in the Dijle river (Belgium)
+
+
+ Sophie
+ Vermeersch
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Ine
+ Pauwels
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-2856-8787
+
+
+
+ Raf
+ Baeyens
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-0651-3056
+
+
+
+ Nico
+ De Maerteleire
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Peter
+ Desmet
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-8442-8025
+
+
+
+ Emilie
+ Gelaude
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Tanja
+ Milotic
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-3129-6196
+
+
+
+ Sébastien
+ Pieters
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Lien
+ Reyserhove
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0001-7484-9267
+
+
+
+ Karen
+ Robberechts
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Pieterjan
+ Verhelst
+
+ Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
+
+ BE
+
+ 0000-0002-2610-6941
+
+
+
+ Johan
+ Coeck
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0003-2732-7428
+
+
+
+ Peter
+ Desmet
+
+ peter.desmet@inbo.be
+ 0000-0002-8442-8025
+
+ 2024-11-27
+ en
+
+ (https://lifewatch.be/en/fish-acoustic-receiver-network) for the project/study 2015_dijle, using VEMCO tags (V7, V13) and receivers (VR2AR, VR2W). In total 26 adult individuals of five local wild fish species (Anguilla anguilla, Cyprinus carpio, Platichthys flesus, Rutilus rutilus, Silurus glanis) were captured, tagged and released in 2015, to study the effect of a specific barrier on their upstream/downstream migration in the Dijle basin.]]>
+ Anguilla anguilla), common carp (Cyprinus carpio), flounder (Platichthys flesus), roach (Rutilus rutilus) and wels catfish (Silurus glanis) - were captured, tagged and tracked in the areas up- and downstream of the weir. 3 wels catfish tagged for the 2014_demer study were also detected. Results of the evaluated weir passages by fish showed that 21 of 29 fish were able to pass the weir at specific hydrological conditions and weir management options. The number of passages differed between species, but happened always in the periods that higher passage could be expected following their lifestyle. The study indicates the importance and benefits of a fish-friendly weir management.]]>
+ This dataset was collected using infrastructure provided by VLIZ and INBO funded by the Research Foundation - Flanders (FWO) as part of the Belgian contribution to LifeWatch. The study was commissioned by the Vlaamse Waterweg NV.
+ Data have been standardized to Darwin Core using the <a href="https://inbo.github.io/etn/">etn</a> package and are downsampled to the first detection per hour. The original data are managed in the European Tracking Network data platform (<a href="https://lifewatch.be/etn/">https://lifewatch.be/etn/</a>) and are available in Vermeersch et al. (2020, <a href="https://doi.org/10.14284/430">https://doi.org/10.14284/430</a>).
+
+
+ Acoustic telemetry
+ ASFA Thesaurus List
+
+
+ Acoustic Telemetry
+ ETN Context
+
+
+ Animal movement
+ Animal tracking
+ Biologging
+ Impact assessment
+ LifeWatch
+ Migration barriers
+ VEMCO
+ N/A
+
+
+ Migration
+ CSA Technology Research Database Master Thesaurus
+
+
+ To the extent possible under law, the publisher has waived all rights to these data and has dedicated them to the Public Domain (CC0 1.0). Users may copy, modify, distribute and use the work, including for commercial purposes, without restriction.
+
+
+
+ Belgium, Dijle R.
+
+
+ Belgium, Flanders
+
+
+ Belgium, Scheldt
+
+
+ EurOBIS calculated BBOX > station Bounding Box
+
+ 2.78573
+ 4.72155
+ 51.64202
+ 50.970103
+
+
+
+
+
+ 2015-04-22
+
+
+ 2018-06-28
+
+
+
+
+
+ species
+ Anguilla anguilla (Linnaeus, 1758)
+
+
+
+
+ species
+ Cyprinus carpio Linnaeus, 1758
+
+
+
+
+ species
+ Platichthys flesus (Linneaus, 1758)
+
+
+
+
+ species
+ Rutilus rutilus (Linnaeus, 1758)
+
+
+
+
+ species
+ Silurus glanis Linnaeus, 1758
+
+
+
+
+
+
+
+ Not planned
+
+
+
+ Sophie
+ Vermeersch
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
diff --git a/data/processed/2015_PHD_VERHELST_COD/eml.xml b/data/processed/2015_PHD_VERHELST_COD/eml.xml
new file mode 100644
index 0000000..9099fe5
--- /dev/null
+++ b/data/processed/2015_PHD_VERHELST_COD/eml.xml
@@ -0,0 +1,301 @@
+
+
+
+
+ Extra metadata added by VLIZ to add parameter, platform info, as well as GBIF fields
+
+
+
+ Verhelst, P.; Reubens, J.; Desmet, P.; Reyserhove, L.; Moens, T.; (2020): 2015_PHD_VERHELST_COD - Acoustic telemetry data for Atlantic cod (Gadus morhua) in the Scheldt estuary and southern North Sea (Belgium). Marine Data Archive. https://dx.doi.org/10.14284/435https://doi.org/10.14284/435
+ 2025-01-08T10:57:13+01:00
+ dataset
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://emodnet.ec.europa.eu/geonetwork/srv/eng/catalog.search#/metadata/6d617269-6e65-696e-666f-000000006581
+
+
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.eurobis.org/toolbox/en/download/occurrence/dataset/6581
+
+
+
+
+ GBIF dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.gbif.org/dataset/aaf715aa-35c0-4bca-a9f1-03f8c11c2c76
+
+
+
+
+ IPT
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://ipt.inbo.be/archive?r=2015_phd_verhelst_cod
+
+
+
+
+ IPT
+ UTF-8
+
+
+ HTML
+
+
+
+
+ http://ipt.inbo.be/resource?r=2015_phd_verhelst_cod
+
+
+
+
+ IPT
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://ipt.vliz.be/eurobis/resource?r=2015_phd_verhelst_cod
+
+
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://obis.org/dataset/5b7fb48c-80ce-4126-bf4d-8b68e1862139
+
+
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://rshiny.lifewatch.be/etn-data/
+
+
+
+
+ Metadata
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.vliz.be//en/imis?dasid=6581
+
+
+
+
+ Fish detections
+ Fish total length
+
+
+
+ 2015_PHD_VERHELST_COD - Acoustic telemetry data for Atlantic cod (Gadus morhua) in the Scheldt estuary and southern North Sea (Belgium)
+
+
+ Pieterjan
+ Verhelst
+
+ Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
+
+ BE
+
+ 0000-0002-2610-6941
+
+
+
+ Jan
+ Reubens
+
+ Vlaams Instituut voor de Zee
+
+ BE
+
+ 0000-0002-9823-5670
+
+
+
+ Peter
+ Desmet
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-8442-8025
+
+
+
+ Lien
+ Reyserhove
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0001-7484-9267
+
+
+
+ Tom
+ Moens
+
+ Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
+
+ BE
+
+ 0000-0001-6544-9210
+
+
+
+ Peter
+ Desmet
+
+ peter.desmet@inbo.be
+ 0000-0002-8442-8025
+
+ 2024-09-19
+ en
+
+ (https://lifewatch.be/en/fish-acoustic-receiver-network) for the project/study 2015_phd_verhelst_cod, using VEMCO tags (V9, V13, V13AP) and receivers (VR2AR, VR2C, VR2Tx, VR2W). In total 106 individuals of Atlantic cod (Gadus morhua) were captured, tagged and released between 2014 and 2018 in the Scheldt estuary and Belgian Part of the North Sea, to study movement behaviour between the estuary, sand bars, shipwrecks and wind farms.]]>
+ Gadus morhua) as an economically important indicator species for marine fish species, to assess the importance of estuarine and coastal areas as a key habitat for this species. The results of this study will be useful for management measures for the conservation and restoration of the cod population.]]>
+ This dataset was collected using infrastructure provided by VLIZ and INBO funded by the Research Foundation - Flanders (FWO) as part of the Belgian contribution to LifeWatch.
+ Data have been standardized to Darwin Core using the <a href="https://inbo.github.io/etn/">etn</a> package and are downsampled to the first detection per hour. The original data are managed in the European Tracking Network data platform (<a href="https://lifewatch.be/etn/">https://lifewatch.be/etn/</a>) and are available in Verhelst et al. (2020, <a href="https://doi.org/10.14284/435">https://doi.org/10.14284/435</a>).
+
+
+ Acoustic telemetry
+ Home range
+ ASFA Thesaurus List
+
+
+ Acoustic Telemetry
+ ETN Context
+
+
+ Animal movement
+ Animal tracking
+ Biologging
+ Impact assessment
+ LifeWatch
+ VEMCO
+ N/A
+
+
+ Migration
+ CAB Thesaurus
+
+
+ To the extent possible under law, the publisher has waived all rights to these data and has dedicated them to the Public Domain (CC0 1.0). Users may copy, modify, distribute and use the work, including for commercial purposes, without restriction.
+
+
+
+ ANE, Belgium, Belgian Coast
+
+
+ ANE, Belgium, Zeeland Banks, Thornton Bank
+
+
+ ANE, North Sea
+
+
+ ANE, Western Scheldt
+
+
+ Belgium, Flanders
+
+
+ EurOBIS calculated BBOX > station Bounding Box
+
+ 2.156
+ 5.07174981
+ 60.12336149
+ 51.160167
+
+
+
+
+
+ 2014-07-11
+
+
+ 2019-06-04
+
+
+
+
+
+ species
+ Gadus morhua Linnaeus, 1758
+
+
+
+
+
+
+
+ Not planned
+
+
+
+ Pieterjan
+ Verhelst
+
+ Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
+
+ BE
+
+ 0000-0002-2610-6941
+
+
+
diff --git a/data/processed/2015_PHD_VERHELST_EEL/eml.xml b/data/processed/2015_PHD_VERHELST_EEL/eml.xml
new file mode 100644
index 0000000..a593922
--- /dev/null
+++ b/data/processed/2015_PHD_VERHELST_EEL/eml.xml
@@ -0,0 +1,394 @@
+
+
+
+
+ Extra metadata added by VLIZ to add parameter, platform info, as well as GBIF fields
+
+
+
+ Verhelst, P.; Reubens, J.; Coeck, J.; De Maerteleire, N.; Desmet, P.; Gelaude, E.; Mouton, A.; Pieters, S.; Reyserhove, L.; Robberechts, K.; Moens, T.; (2020): 2015_PHD_VERHELST_EEL - Acoustic telemetry data for European eel (Anguilla anguilla) in the Scheldt estuary and southern North Sea (Belgium). Marine Data Archive. https://dx.doi.org/10.14284/434https://doi.org/10.14284/434
+ 2025-01-08T10:49:50+01:00
+ dataset
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://emodnet.ec.europa.eu/geonetwork/srv/eng/catalog.search#/metadata/6d617269-6e65-696e-666f-000000005850
+
+
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.eurobis.org/toolbox/en/download/occurrence/dataset/5850
+
+
+
+
+ GBIF dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.gbif.org/dataset/638cc552-4ca9-43c0-8cad-d3f570a4572e
+
+
+
+
+ IPT
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://ipt.inbo.be/archive?r=2015_phd_verhelst_eel
+
+
+
+
+ IPT
+ UTF-8
+
+
+ HTML
+
+
+
+
+ http://ipt.inbo.be/resource?r=2015_phd_verhelst_eel
+
+
+
+
+ IPT
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://ipt.vliz.be/eurobis/resource?r=2015_phd_verhelst_eel
+
+
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://obis.org/dataset/05d3a928-d9de-4855-ac9c-137d12d3a3cb
+
+
+
+
+ Online dataset
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://rshiny.lifewatch.be/etn-data/
+
+
+
+
+ Metadata
+ UTF-8
+
+
+ HTML
+
+
+
+
+ https://www.vliz.be//en/imis?dasid=5850
+
+
+
+
+ Fish age
+ Fish detections
+ Fish lifestage
+ Fish sex
+ Fish total length
+ Horizontal eye diameter of fish
+ Pectoral fin length of fish
+ Vertical eye diameter of fish
+ Wet weight of fish
+
+
+
+ 2015_PHD_VERHELST_EEL - Acoustic telemetry data for European eel (Anguilla anguilla) in the Scheldt estuary and southern North Sea (Belgium)
+
+
+ Pieterjan
+ Verhelst
+
+ Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
+
+ BE
+
+ 0000-0002-2610-6941
+
+
+
+ Jan
+ Reubens
+
+ Vlaams Instituut voor de Zee
+
+ BE
+
+ 0000-0002-9823-5670
+
+
+
+ Johan
+ Coeck
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0003-2732-7428
+
+
+
+ Nico
+ De Maerteleire
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Peter
+ Desmet
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0002-8442-8025
+
+
+
+ Emilie
+ Gelaude
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Ans
+ Mouton
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Sébastien
+ Pieters
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Lien
+ Reyserhove
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+ 0000-0001-7484-9267
+
+
+
+ Karen
+ Robberechts
+
+ Research Institute for Nature and Forest (INBO)
+
+ BE
+
+
+
+
+ Tom
+ Moens
+
+ Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
+
+ BE
+
+ 0000-0001-6544-9210
+
+
+
+ Peter
+ Desmet
+
+ peter.desmet@inbo.be
+ 0000-0002-8442-8025
+
+ 2025-01-07
+ en
+
+ (https://lifewatch.be/en/fish-acoustic-receiver-network) for the project/study 2015_phd_verhelst_eel, using VEMCO tags (V13) and receivers (VR2AR, VR2Tx, VR2W). In total 136 female individuals of European eel (Anguilla anguilla) were captured, tagged and released between 2015 and 2018 in the Scheldt estuary, to study their migration behaviour - especially their use of selective tidal stream transport - in a tidal system without migration barriers.]]>
+ Large estuaries with a complete salinity gradient from a tidal freshwater zone to marine have become rare due to water regulating constructions such as sluices, shipping locks, water pumping stations and dams. However, the Scheldt estuary in Belgium still has an extensive estuary of ca 160 km. Diadromous fish have to overcome substantial distances which come with a high energetic cost. Due to the high energetic cost of migration and the low adult survival, some of these species have developed semelparity. Consequently, a bioenergetic trade-off between migration and reproduction may exist for semelparous fish species, especially since many will stop feeding during migration: the smaller the energy expenditure during migration, the larger the amount of energy that may remain available for gonad maturation. An example where migration can have important bioenergetic repercussions is migration through strong tidal systems. To reduce energy loss in such systems, fish may perform selective tidal stream transport (STST): an animal ascends into the water column with the appropriate tide and rests on or in the bottom during the opposite tide. However, the use of STST by silver European eels is still controversial. In this study, we found strong evidence that silver European eels apply STST. The results illustrate that eels can distinguish between ebb and flood and suggest that tides play a role in orientation, either directly or indirectly. The general migration speed was higher in the downstream part of the estuary compared to the upstream part, while tidal migration speed was equal in both parts, indicating that eels migrated more consistently in the downstream part. The results of this study give insight in how a diadromous species migrates through an estuary and underline the importance of the tides.
+ This dataset was collected using infrastructure provided by VLIZ and INBO funded by the Research Foundation - Flanders (FWO) as part of the Belgian contribution to LifeWatch.
+ Data have been standardized to Darwin Core using the <a href="https://inbo.github.io/etn/">etn</a> package and are downsampled to the first detection per hour. The original data are managed in the European Tracking Network data platform (<a href="https://lifewatch.be/etn/">https://lifewatch.be/etn/</a>) and are available in Verhelst et al. (2020, <a href="https://doi.org/10.14284/434">https://doi.org/10.14284/434</a>).
+
+
+ Acoustic telemetry
+ ASFA Thesaurus List
+
+
+ Acoustic Telemetry
+ ETN Context
+
+
+ Animal movement
+ Animal tracking
+ Biologging
+ LifeWatch
+ VEMCO
+ N/A
+
+
+ Data
+ Assemble KO Types
+
+
+ Migration
+ CSA Technology Research Database Master Thesaurus
+
+
+ To the extent possible under law, the publisher has waived all rights to these data and has dedicated them to the Public Domain (CC0 1.0). Users may copy, modify, distribute and use the work, including for commercial purposes, without restriction.
+
+
+
+ ANE, Belgium, Belgian Coast
+
+
+ ANE, North Sea
+
+
+ ANE, Western Scheldt
+
+
+ Belgium, Dijle R.
+
+
+ Belgium, Flanders
+
+
+ Belgium, Scheldt
+
+
+ Belgium, Zeeschelde, Antwerp Harbour
+
+
+ EurOBIS calculated BBOX > station Bounding Box
+
+ 2.573
+ 5.109196
+ 51.667924
+ 51.00164
+
+
+
+
+
+ 2015-04-18
+
+
+ 2020-08-08
+
+
+
+
+
+ species
+ Anguilla anguilla (Linnaeus, 1758)
+
+
+
+
+
+
+
+ Not planned
+
+
+
+ Pieterjan
+ Verhelst
+
+ Universiteit Gent; Faculteit Wetenschappen; Vakgroep Biologie; Onderzoeksgroep Mariene Biologie
+
+ BE
+
+ 0000-0002-2610-6941
+
+
+
+
+ Durif index
+
+
+
+
+
+ Entire sampling area
+
+
+
+ Durif index
+
+
+
+
+