<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://oscibio.inbo.be/feed.xml" rel="self" type="application/atom+xml" /><link href="https://oscibio.inbo.be/" rel="alternate" type="text/html" /><updated>2026-03-24T08:29:02+00:00</updated><id>https://oscibio.inbo.be/feed.xml</id><title type="html">Open science lab for biodiversity</title><subtitle>OSCIBIO website</subtitle><author><name>oscibio team members</name></author><entry><title type="html">etn 3.0.0</title><link href="https://oscibio.inbo.be/blog/etn-3-0-0/" rel="alternate" type="text/html" title="etn 3.0.0" /><published>2026-03-03T00:00:00+00:00</published><updated>2026-03-03T00:00:00+00:00</updated><id>https://oscibio.inbo.be/blog/etn-3.0.0</id><content type="html" xml:base="https://oscibio.inbo.be/blog/etn-3-0-0/"><![CDATA[<p>We just released a new major version (3.0.0) of our R package <strong>etn</strong>.</p>

<p>With etn you can query metadata (animals, tags, deployments, receivers, projects) and data (acoustic detections, sensor data) from the <a href="https://www.lifewatch.be/etn/">European Tracking Network (ETN)</a> database and use these in your analyses. Data access requires user credentials and is subject to a <a href="https://europeantrackingnetwork.org/en/4-data-policy-permissions-citation-guidelines-and-data-use">data policy</a>.</p>

<p>Because of connection restrictions, previous versions of the package could only be used on the <a href="https://rstudio4.vliz.be/">VLIZ RStudio server</a>. That is now no longer the case! 🎉</p>

<h2 id="use-etn-on-your-computer">Use etn on your computer</h2>

<ul>
  <li>etn now connects to the ETN database with an API provided by the <a href="https://github.com/inbo/etnservice">etnservice</a> package. This means you can use the package from your own computer. Note that this will be slower than running it from the <a href="https://rstudio.europeantrackingnetwork.org">ETN RStudio server</a>.</li>
  <li>etn will automatically switch to a local database connection when available (e.g. the ETN RStudio server). Use <code class="language-plaintext highlighter-rouge">Sys.setenv(ETN_PROTOCOL = "opencpu")</code> to override this behaviour and force the package to use the API.</li>
  <li>Queries via the API and the ETN RStudio Server will return the same results.</li>
  <li>When using a local database connection, etn will check if the installed helper package etnservice that is used to place these queries is up to date with the one deployed via the API. This is to ensure that queries placed via the API and via the local database connection always result in consistent results. If the installed version of etnservice is older, you will be prompted to install a newer version.</li>
</ul>

<h2 id="credentials">Credentials</h2>

<p class="alert alert-warning"><strong>Breaking change! Action required</strong></p>

<p>Your credentials (username and password) to connect to the ETN database are no longer passed via the <code class="language-plaintext highlighter-rouge">connection</code> argument. They are asked or retrieved from your <code class="language-plaintext highlighter-rouge">.Renviron</code> file every time you run a function.</p>

<ul>
  <li>New authentication mechanism.</li>
  <li>New vignette <a href="https://inbo.github.io/etn/articles/authentication.html"><code class="language-plaintext highlighter-rouge">vignette("authentication")</code></a>.</li>
  <li><code class="language-plaintext highlighter-rouge">connection</code> argument is deprecated in all functions.</li>
  <li><a href="https://inbo.github.io/etn/reference/connect_to_etn.html"><code class="language-plaintext highlighter-rouge">connect_to_etn()</code></a> is deprecated.</li>
</ul>

<p>Here is how you can migrate:</p>

<ol>
  <li>Use the new ETN RStudio server (<a href="https://rstudio.europeantrackingnetwork.org">https://rstudio.europeantrackingnetwork.org</a>). The LifeWatch RStudio server (<a href="https://rstudio.lifewatch.be">https://rstudio.lifewatch.be</a>) won’t work with this version of etn and will be discontinued.</li>
  <li>Follow the steps in <a href="https://inbo.github.io/etn/articles/authentication.html"><code class="language-plaintext highlighter-rouge">vignette("authentication")</code></a> to look up and store your credentials.</li>
  <li>
    <p>Update your scripts:</p>

    <div class="language-r highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="c1"># Good</span><span class="w">
</span><span class="n">get_animals</span><span class="p">(</span><span class="n">animal_id</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="m">305</span><span class="p">)</span><span class="w">

</span><span class="c1"># Bad</span><span class="w">
</span><span class="n">connect_to_etn</span><span class="p">()</span><span class="w">
</span><span class="n">get_animals</span><span class="p">(</span><span class="n">con</span><span class="p">,</span><span class="w"> </span><span class="n">animal_id</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="m">305</span><span class="p">)</span><span class="w">
</span><span class="n">get_animals</span><span class="p">(</span><span class="n">connection</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="n">con</span><span class="p">,</span><span class="w"> </span><span class="n">animal_id</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="m">305</span><span class="p">)</span><span class="w">
</span></code></pre></div>    </div>
  </li>
</ol>

<h2 id="accessing-data">Accessing data</h2>

<ul>
  <li><a href="https://inbo.github.io/etn/reference/get_acoustic_detections.html"><code class="language-plaintext highlighter-rouge">get_acoustic_detections()</code></a> now uses a different protocol to retrieve data. It can now reliably return 10M+ detections without timeouts.</li>
  <li><a href="https://inbo.github.io/etn/reference/get_acoustic_detections.html"><code class="language-plaintext highlighter-rouge">get_acoustic_detections()</code></a> now returns a progress bar for large queries.</li>
  <li><a href="https://inbo.github.io/etn/reference/get_acoustic_detections.html"><code class="language-plaintext highlighter-rouge">get_acoustic_detections()</code></a> now has a <code class="language-plaintext highlighter-rouge">deployment_id</code> filter argument.</li>
  <li><a href="https://inbo.github.io/etn/reference/get_acoustic_detections.html"><code class="language-plaintext highlighter-rouge">get_acoustic_detections()</code></a> now has a <code class="language-plaintext highlighter-rouge">tag_serial_number</code> argument, which is more reliable than <code class="language-plaintext highlighter-rouge">acoustic_tag_id</code> (which is still supported). Thanks <a href="https://github.com/lottepohl">@lottepohl</a> for the suggestion.</li>
  <li><a href="https://inbo.github.io/etn/reference/get_acoustic_detections.html"><code class="language-plaintext highlighter-rouge">get_acoustic_detections()</code></a> may return fewer (erroneous) detections than before, due to fixes in the database.</li>
  <li><a href="https://inbo.github.io/etn/reference/get_animals.html"><code class="language-plaintext highlighter-rouge">get_animals()</code></a> now includes <code class="language-plaintext highlighter-rouge">type_type = "archival"</code> data.</li>
</ul>

<h2 id="changes-for-developers">Changes for developers</h2>

<ul>
  <li>New vignette <a href="https://inbo.github.io/etn/articles/options.html"><code class="language-plaintext highlighter-rouge">vignette("options")</code></a> describes some developer options.</li>
  <li>Contributors can change the default domain of the API to the URL of a test server via the environmental variable <code class="language-plaintext highlighter-rouge">ETN_TEST_API</code>.</li>
  <li>Tests make use of <a href="https://docs.ropensci.org/vcr"><code class="language-plaintext highlighter-rouge">{vcr}</code></a> to record and replay HTTP requests to the API. These results are stored in <code class="language-plaintext highlighter-rouge">/tests/fixtures</code>.</li>
  <li>Tests have new helper functions, including <code class="language-plaintext highlighter-rouge">skip_if_not_localdb()</code>, <code class="language-plaintext highlighter-rouge">skip_if_http_error()</code> and <code class="language-plaintext highlighter-rouge">expect_protocol_agnostic()</code>. The latter is used to compare SQL vs API calls in <code class="language-plaintext highlighter-rouge">test-protocol_agnostic.R</code>.</li>
  <li>Tests for <code class="language-plaintext highlighter-rouge">download_acoustic_datasets()</code> are updated for archival tags and SQL vs API calls and makes use of markdown snapshots.</li>
  <li>pkgdown website is now automatically build by a GitHub Action and is served from the <code class="language-plaintext highlighter-rouge">gh-pages</code> branch. The <code class="language-plaintext highlighter-rouge">docs/</code> directory has been removed.</li>
  <li><code class="language-plaintext highlighter-rouge">vignette("acoustic-telemetry")</code> is precompiled with <code class="language-plaintext highlighter-rouge">vignettes/precompile.R</code>, so it doesn’t run for every build.</li>
</ul>

<h2 id="miscellaneous">Miscellaneous</h2>

<ul>
  <li>etn now relies on R &gt;= 4.1.0 (because of <a href="https://github.com/apache/arrow/"><code class="language-plaintext highlighter-rouge">{arrow}</code></a> and <a href="https://docs.ropensci.org/vcr"><code class="language-plaintext highlighter-rouge">{vcr}</code></a> dependencies) and uses base pipes (<code class="language-plaintext highlighter-rouge">|&gt;</code> rather than <code class="language-plaintext highlighter-rouge">%&gt;%</code>).</li>
  <li><code class="language-plaintext highlighter-rouge">write_dwc()</code> now invisibly returns the transformed data as a list of data frames (rather than a data frame).</li>
  <li>Previously deprecated functions <code class="language-plaintext highlighter-rouge">get_deployments()</code>, <code class="language-plaintext highlighter-rouge">get_detections()</code>, <code class="language-plaintext highlighter-rouge">get_projects()</code>, <code class="language-plaintext highlighter-rouge">get_receivers()</code>, <code class="language-plaintext highlighter-rouge">list_network_project_codes()</code> are now removed.</li>
  <li><code class="language-plaintext highlighter-rouge">vignette("etn_fields")</code> was outdated and has been removed.</li>
</ul>

<h2 id="how-to-install-etn">How to install etn?</h2>

<p>Want to use etn in your work? The package is available on GitHub and can be installed with:</p>

<div class="language-R highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="c1"># install.packages("pak")</span><span class="w">
</span><span class="n">pak</span><span class="o">::</span><span class="n">pak</span><span class="p">(</span><span class="s2">"inbo/etn"</span><span class="p">)</span><span class="w">
</span></code></pre></div></div>

<p>For more information, see the <a href="https://inbo.github.io/etn/">package documentation</a>. Found a bug? Please <a href="https://github.com/inbo/etn/issues">report an issue</a>.</p>]]></content><author><name>Pieter Huybrechts</name></author><category term="software" /><category term="R" /><summary type="html"><![CDATA[We released a new version of our R package etn.]]></summary></entry><entry><title type="html">movepub 0.4.0</title><link href="https://oscibio.inbo.be/blog/movepub-0-4-0/" rel="alternate" type="text/html" title="movepub 0.4.0" /><published>2025-08-28T00:00:00+00:00</published><updated>2025-08-28T00:00:00+00:00</updated><id>https://oscibio.inbo.be/blog/movepub-0.4.0</id><content type="html" xml:base="https://oscibio.inbo.be/blog/movepub-0-4-0/"><![CDATA[<p>We just released a new version (0.4.0) of our R package <strong>movepub</strong>.</p>

<p>With movepub you prepare animal tracking data from <a href="https://www.movebank.org/">Movebank</a> for publication in a research repository. You can document data with metadata following the <a href="https://specs.frictionlessdata.io/">Data Package</a> standard and transform these to <a href="https://dwc.tdwg.org">Darwin Core</a> and Ecological Metadata Language (<a href="https://eml.ecoinformatics.org/">EML</a>) for publication to the Global Biodiversity Information Facility (<a href="https://www.gbif.org">GBIF</a>) and the Ocean Biodiversity Information System (<a href="https://obis.org">OBIS</a>).</p>

<h2 id="what-has-changed">What has changed?</h2>

<p>We added two new functions:</p>

<ul>
  <li><a href="https://inbo.github.io/movepub/reference/write_eml.html"><code class="language-plaintext highlighter-rouge">write_eml()</code></a> is now a separate function from <a href="https://inbo.github.io/movepub/reference/write_dwc.html"><code class="language-plaintext highlighter-rouge">write_dwc()</code></a>. <code class="language-plaintext highlighter-rouge">write_eml()</code> now formats the <code class="language-plaintext highlighter-rouge">derived_paragraph</code> as DocBook (rather than HTML), a format supported by EML and the GBIF IPT.</li>
  <li><a href="https://inbo.github.io/movepub/reference/html_to_docbook.html"><code class="language-plaintext highlighter-rouge">html_to_docbook()</code></a> allows to convert a string or character vector from HTML to DocBook. You can use this to convert descriptions in order to have valid EML.</li>
</ul>

<p>We also updated <a href="https://inbo.github.io/movepub/reference/write_dwc.html"><code class="language-plaintext highlighter-rouge">write_dwc()</code></a>:</p>

<ul>
  <li><code class="language-plaintext highlighter-rouge">write_dwc()</code> can now be used for an unpublished dataset (i.e. without metadata on DataCite, which was required for the previously build-in <code class="language-plaintext highlighter-rouge">write_eml()</code> functionality). Some record-level terms (e.g. <code class="language-plaintext highlighter-rouge">dwc:datasetName</code>) can be provided as arguments.</li>
  <li><code class="language-plaintext highlighter-rouge">write_dwc()</code> (and <code class="language-plaintext highlighter-rouge">write_eml()</code>) no longer writes to <code class="language-plaintext highlighter-rouge">"."</code> by default, since this is not allowed by CRAN policies. The user needs to explicitly define a directory.</li>
  <li><code class="language-plaintext highlighter-rouge">write_dwc()</code> now writes the output file as <code class="language-plaintext highlighter-rouge">occurrence.csv</code> (previously <code class="language-plaintext highlighter-rouge">dwc_occurrence.csv</code>) and adds a <code class="language-plaintext highlighter-rouge">meta.xml</code> file. The sex and life stage of the animal are - in addition to <code class="language-plaintext highlighter-rouge">dwc:sex</code> and <code class="language-plaintext highlighter-rouge">dwc:lifeStage</code> in <code class="language-plaintext highlighter-rouge">occurrence.csv</code> - expressed in an extended measurement or facts file (<code class="language-plaintext highlighter-rouge">emof.csv</code>), for better support with OBIS.</li>
  <li><code class="language-plaintext highlighter-rouge">write_dwc()</code> provides a message regarding the matching of scientific names with WoRMS Aphia IDs. These IDs are now clickable URLs, making it easier to verify the match.</li>
  <li><code class="language-plaintext highlighter-rouge">write_dwc()</code> is now more modular, facilitating extension for non-GPS tracking data.</li>
</ul>

<p>And there are other changes:</p>

<ul>
  <li>movepub now relies on R &gt;= 4.1.0 (because of move2 dependency) and uses base pipes (<code class="language-plaintext highlighter-rouge">|&gt;</code> rather than <code class="language-plaintext highlighter-rouge">%&gt;%</code>) (#98).</li>
  <li>Many functions of <a href="https://docs.ropensci.org/frictionless/">frictionless</a> are now reexported by movepub, so you no longer have to load that package to create Data Packages (#54).</li>
  <li><code class="language-plaintext highlighter-rouge">get_mvb_term()</code> is deprecated in favour of <code class="language-plaintext highlighter-rouge">move2::movebank_get_vocabulary()</code></li>
</ul>

<p>For a full overview of all the changes, see the <a href="https://inbo.github.io/movepub/news/index.html#movepub-040">CHANGELOG</a>.</p>

<h2 id="how-to-install-movepub">How to install movepub?</h2>

<p>Want to use movepub in your work? The package is available on GitHub and can be installed with:</p>

<div class="language-R highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="n">devtools</span><span class="o">::</span><span class="n">install_github</span><span class="p">(</span><span class="s2">"inbo/movepub"</span><span class="p">)</span><span class="w">
</span></code></pre></div></div>

<p>For more information, see the <a href="https://inbo.github.io/movepub/">package documentation</a>. Found a bug? Please <a href="https://github.com/inbo/movepub/issues">report an issue</a>.</p>]]></content><author><name>Sanne Govaert</name></author><category term="DTO-BioFlow" /><category term="software" /><category term="R" /><summary type="html"><![CDATA[We released a new version of our R package movepub.]]></summary></entry><entry><title type="html">camtrapdp 0.4.0</title><link href="https://oscibio.inbo.be/blog/camtrapdp-0-4-0/" rel="alternate" type="text/html" title="camtrapdp 0.4.0" /><published>2025-06-11T00:00:00+00:00</published><updated>2025-06-11T00:00:00+00:00</updated><id>https://oscibio.inbo.be/blog/camtrapdp-0.4.0</id><content type="html" xml:base="https://oscibio.inbo.be/blog/camtrapdp-0-4-0/"><![CDATA[<p>We just released a new version (0.4.0) of our R package <strong>camtrapdp</strong>.</p>

<p>With camtrapdp you can read and manipulate Camera Trap Data Packages (Camtrap DP). <a href="https://camtrap-dp.tdwg.org">Camtrap DP</a> is a data exchange format for camera trap data. The R package supports reading, filtering and transforming data (including to <a href="https://dwc.tdwg.org">Darwin Core</a>) before further analysis in e.g. <a href="https://inbo.github.io/camtraptor/">camtraptor</a> or <a href="https://cran.r-project.org/package=camtrapR">camtrapR</a>.</p>

<h2 id="what-has-changed">What has changed?</h2>

<p>We added two long-requested functions:</p>

<ul>
  <li><a href="https://inbo.github.io/camtrapdp/reference/write_camtrapdp.html"><code class="language-plaintext highlighter-rouge">write_camtrapdp()</code></a> to write a Camtrap DP dataset to disk.</li>
  <li><a href="https://inbo.github.io/camtrapdp/reference/merge_camtrapdp.html"><code class="language-plaintext highlighter-rouge">merge_camtrapdp()</code></a> to merge two datasets, allowing you to combine data from multiple studies.</li>
</ul>

<p>We also added new functions to:</p>

<ul>
  <li>Update (or clean) data: <a href="https://inbo.github.io/camtrapdp/reference/round_coordinates.html"><code class="language-plaintext highlighter-rouge">round_coordinates()</code></a>, <a href="https://inbo.github.io/camtrapdp/reference/shift_time.html"><code class="language-plaintext highlighter-rouge">shift_time()</code></a>, <a href="https://inbo.github.io/camtrapdp/reference/update_taxon.html"><code class="language-plaintext highlighter-rouge">update_taxon()</code></a>.</li>
  <li>Extract data: <a href="https://inbo.github.io/camtrapdp/reference/contributors.html"><code class="language-plaintext highlighter-rouge">contributors()</code></a>, <a href="https://inbo.github.io/camtrapdp/reference/individuals.html"><code class="language-plaintext highlighter-rouge">individuals()</code></a>.</li>
</ul>

<p>The Darwin Core processing was also improved, allowing <a href="https://www.gbif.org">GBIF</a> to ingest Camtrap DP datasets. This includes a new function <a href="https://inbo.github.io/camtrapdp/reference/write_eml.html"><code class="language-plaintext highlighter-rouge">write_eml()</code></a> to better populate dataset landing pages with metadata.</p>

<p>For a full overview of all the changes, see the <a href="https://inbo.github.io/camtrapdp/news/index.html#camtrapdp-040">CHANGELOG</a>.</p>

<h2 id="how-to-install-camtrapdp">How to install camtrapdp?</h2>

<p>Want to use camtrapdp in your work? The package is available on CRAN and can be installed with:</p>

<div class="language-R highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="n">install.packages</span><span class="p">(</span><span class="s2">"camtrapdp"</span><span class="p">)</span><span class="w">
</span></code></pre></div></div>

<p>For more information, see the <a href="https://inbo.github.io/camtrapdp/">package documentation</a>. Found a bug? Please <a href="https://github.com/inbo/camtrapdp/issues">report an issue</a>.</p>]]></content><author><name>Peter Desmet</name></author><category term="LifeWatch" /><category term="BIG_PICTURE" /><category term="software" /><category term="R" /><summary type="html"><![CDATA[We released a new version of our R package camtrapdp.]]></summary></entry><entry><title type="html">European data on animals aloft now publicly available</title><link href="https://oscibio.inbo.be/blog/aloft-data-paper/" rel="alternate" type="text/html" title="European data on animals aloft now publicly available" /><published>2025-03-05T00:00:00+00:00</published><updated>2025-03-05T00:00:00+00:00</updated><id>https://oscibio.inbo.be/blog/aloft-data-paper</id><content type="html" xml:base="https://oscibio.inbo.be/blog/aloft-data-paper/"><![CDATA[<p class="alert alert-info">This post was originally published on <a href="https://communities.springernature.com/posts/european-data-on-animals-aloft-now-publicly-available">Springer Nature Research Communities</a>.</p>

<p>Billions of flying animals move through the air, day and night. Due to the scale, volume and high altitudes, the scope of these movements are hard to study through observations or biologgers. Weather radars however continuously monitor the sky across large areas, registering not only weather, but also the movements of animals in the air. Archives of weather radar data are therefore goldmines for biological monitoring, providing an overview of the year-round activity of animals in the air in a way no other method can. Even though weather radar networks exist in many countries, they are usually operated on a national basis so combining biological data from several such networks across Europe has been a decade-long challenge.</p>

<p>We have now processed and published the first large-scale datasets of biological activity in the air, derived from weather radars across a large part of Europe. The radar data were obtained from the Operational Programme for the Exchange of Weather Radar Information (<a href="https://www.eumetnet.eu/activities/observations-programme/current-activities/opera/">OPERA</a>) at EUMETNET and three national meteorological services. The resulting datasets are a major milestone for the aeroecology community and the result of long-term interdisciplinary collaborations in the projects <a href="https://enram.eu/">ENRAM</a>, <a href="http://globam.science/">GloBAM</a> and <a href="http://hirad.science/">HiRAD</a>.</p>

<p><img src="/assets/images/2025-03-05-aloft-data-paper-crow-screenshot.png" alt="" />
<em>Visualization of biological activity in the air, derived from radar SEANG in Ängelholm, Sweden (see blue dot on map). The charts show data from October 14 to 16, 2024. The top chart depicts the number of birds flying over the location per hour. The bottom chart shows at what altitudes the birds are flying (yellow = high density). Explore the data yourself at <a href="https://crow.aloftdata.eu/#/?radar=seang&amp;date=2024-10-15&amp;interval=72&amp;timedisplay=radarLocal&amp;vpiMode=mtr&amp;vpColorScheme=viridis&amp;lang=en">crow.aloftdata.eu</a>.</em></p>

<p>The data consist of measures of all biological activity in the air surrounding the radar stations, stored as vertical profiles that describe the <strong>amount, speed and directions of animals at different altitudes</strong>. These were obtained by processing weather radar data with <a href="https://doi.org/10.1098/rsif.2010.0116">dedicated and validated methods</a> for detecting birds and especially bird migration, but the data in itself do not offer any distinction between birds, insects or bats, so it must be interpreted through biological knowledge of what species groups are expected to be moving during different periods and places. Likewise, careful consideration of the variation in data coverage and quality is necessary. For more information on the intricacies of this exciting new datasets, we have provided usage notes in our paper.</p>

<p>The paper describes two public datasets that collectively contain biological data from 141 radar stations in 18 European countries, from the years 2008 to 2023. You can download these data from Zenodo or explore and visualize them in our Aloft data portal at <a href="http://aloftdata.eu/">aloftdata.eu</a>. The portal is also updated daily with new data.</p>

<p>Weather radar data gives us a glimpse into life in the air, shedding light on the movements that take place above our heads. It has great potential to be used for conservation efforts, such as mapping where and how high birds fly in relation to anthropogenic threats, mapping diseases that spread along flyways, and highlighting periods of high bird activity for flight safety applications. These new datasets offer tremendous value for researchers studying flying animal movements and for enthusiasts simply witnessing these aerial spectacles. We look forward to seeing the creative, important and urgent applications that emerge as these biological data reach the wider scientific and conservation community in the coming years.</p>]]></content><author><name>[&quot;Peter Desmet&quot;, &quot;Bart Hoekstra&quot;, &quot;Silke Bauer&quot;, &quot;Pieter Huybrechts&quot;, &quot;Cecilia Nilsson&quot;]</name></author><category term="HiRAD" /><category term="GloBAM" /><category term="ENRAM" /><category term="open data" /><category term="weather radar" /><summary type="html"><![CDATA[Weather radars detect more than weather, they also continuously register the movements of billions of animals (birds, bats, insects) in the air. Those data are now publicly available for large parts of Europe, providing coverage of the aerial habitat in a way no other method can.]]></summary></entry><entry><title type="html">How I built Geolocator DP using open source code</title><link href="https://oscibio.inbo.be/blog/geolocator-dp/" rel="alternate" type="text/html" title="How I built Geolocator DP using open source code" /><published>2025-01-16T00:00:00+00:00</published><updated>2025-01-16T00:00:00+00:00</updated><id>https://oscibio.inbo.be/blog/geolocator-dp</id><content type="html" xml:base="https://oscibio.inbo.be/blog/geolocator-dp/"><![CDATA[<p class="alert alert-info">This is a guest post written by <a href="https://github.com/rafnuss">Raphaël Nussbaumer</a>.</p>

<p>Geolocators are essential tools for studying bird movement, enabling researchers to gain insights into migration and behavior. However, managing and sharing geolocator data consistently remains challenging. To address this, I developed the <a href="https://raphaelnussbaumer.com/GeoLocator-DP/">Geolocator Data Package (Geolocator DP)</a>, an extension of the <strong>Data Package</strong> standard, designed specifically for geolocator data.</p>

<p>The development of Geolocator DP was greatly facilitated by the <strong>Camera Trap Data Package (Camtrap DP)</strong>, which is also build upon the Data Package standard. Camtrap DP provided a robust foundation that I could adapt to the needs of geolocator data. I was also inspired by the Camtrap DP website to create a Geolocator DP website, reusing the same free <strong>Petridish</strong> theme.</p>

<p>To further enhance usability, I developed the R package <a href="https://raphaelnussbaumer.com/GeoLocatoR/">GeoLocatoR</a>. Just like the R package <strong>camtrapdp</strong>, it makes use of the R package <strong>frictionless</strong> to read and manipulate data. GeoLocatoR allows researchers to seamlessly create, manage, and validate geolocator data packages. It is designed to work in tandem with the geolocator analysis R package <a href="https://raphaelnussbaumer.com/GeoPressureR/">GeoPressureR</a>, which retrieves bird locations by combining light, activity, and pressure measurements. Together, GeoPressureR and GeoLocatoR provide a cohesive pipeline for analyzing geolocator data and publishing findings in movement ecology research.</p>

<p>I extend my gratitude to the individuals and teams behind the tools that made this work possible. In particular, I want to thanks the Research Institute for Nature and Forest (<a href="https://github.com/inbo">INBO</a>), <a href="https://github.com/frictionlessdata">Frictionless Data</a>, and Biodiversity Information Standards (<a href="https://github.com/tdwg">TDWG</a>) for releasing their software open source. Diving into source code is a really useful way to learn how functionality can be implemented and build upon. I also wish to express my gratitude to <a href="https://github.com/peterdesmet">Peter Desmet</a>, whose advice and contributions have been instrumental.</p>

<p>These efforts exemplify the power of open science and collaboration, enabling researchers to address data challenges effectively and advance movement ecology research.</p>

<h2 id="tools-used">Tools used</h2>

<table>
  <thead>
    <tr>
      <th>Name</th>
      <th>What</th>
      <th>I used this for</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a href="https://github.com/tdwg/camtrap-dp">Camtrap DP</a></td>
      <td>Standard co-maintained by <a href="/">Oscibio</a></td>
      <td>Geolocator DP</td>
    </tr>
    <tr>
      <td><a href="https://github.com/frictionlessdata/datapackage">Data Package</a></td>
      <td>Standard co-maintained by Oscibio</td>
      <td>Geolocator DP</td>
    </tr>
    <tr>
      <td><a href="https://github.com/inbo/camtrapdp">camtrapdp</a></td>
      <td>R package maintained by Oscibio</td>
      <td>GeoLocatoR</td>
    </tr>
    <tr>
      <td><a href="https://github.com/frictionlessdata/frictionless-r">frictionless</a></td>
      <td>R package maintained by Oscibio</td>
      <td>GeoLocatoR</td>
    </tr>
    <tr>
      <td><a href="https://github.com/peterdesmet/petridish">petridish</a></td>
      <td>Website theme maintained by Peter Desmet</td>
      <td><a href="https://raphaelnussbaumer.com/GeoLocator-DP/">Geolocator DP website</a></td>
    </tr>
  </tbody>
</table>]]></content><author><name>Raphaël Nussbaumer</name></author><category term="software" /><category term="R" /><summary type="html"><![CDATA[New standard and software for geolocator data was inspired by tools developed by the Open science lab of biodiversity.]]></summary></entry><entry><title type="html">frictionless 1.1.0</title><link href="https://oscibio.inbo.be/blog/frictionless-1-1-0/" rel="alternate" type="text/html" title="frictionless 1.1.0" /><published>2024-03-29T00:00:00+00:00</published><updated>2024-03-29T00:00:00+00:00</updated><id>https://oscibio.inbo.be/blog/frictionless-1.1.0</id><content type="html" xml:base="https://oscibio.inbo.be/blog/frictionless-1-1-0/"><![CDATA[<p>Our R package <strong>frictionless</strong> allows you to read and write Frictionless <a href="https://specs.frictionlessdata.io/data-package/">Data Packages</a>. A Data Package is a simple container format and standard to describe and package a collection of (tabular) data. It is typically used to publish <a href="https://www.go-fair.org/fair-principles/">FAIR</a> and open datasets. We use it in the <a href="/projects/#lifewatch">LifeWatch</a> project to publish our <a href="https://github.com/inbo/bird-tracking?tab=readme-ov-file#datasets">bird tracking</a>, <a href="https://github.com/inbo/etn-occurrences?tab=readme-ov-file#datasets">fish tracking</a> and <a href="https://camtrap-dp.tdwg.org/">camera trap data</a>.</p>

<p>We developed the R package <a href="https://docs.ropensci.org/frictionless/">frictionless</a> to facilitate our work, but it has since been picked up by other users and developers. Much of the feedback we gathered is now incorportated in a new release of the package: version 1.1.0.</p>

<h2 id="how-to-install-frictionless">How to install frictionless?</h2>

<p>The package is available on CRAN and can be installed with:</p>

<div class="language-R highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="n">install.packages</span><span class="p">(</span><span class="s2">"frictionless"</span><span class="p">)</span><span class="w">
</span></code></pre></div></div>

<p>For more information, see the <a href="https://docs.ropensci.org/frictionless/">package documentation</a>.</p>

<h2 id="what-has-changed">What has changed?</h2>

<p>Quite a lot. See the <a href="https://docs.ropensci.org/frictionless/news/index.html#frictionless-110">CHANGELOG</a>.</p>

<h2 id="what-is-next">What is next?</h2>

<p>The Data Package standard is currently <a href="https://frictionlessdata.io/blog/2023/11/15/frictionless-specs-update/">undergoing changes</a> to be released as a finalized product (Data Package v2), a process we are involved in. We plan to support these changes (and new features!) in an upcoming version of frictionless, so there’s more to come!</p>]]></content><author><name>Peter Desmet</name></author><category term="LifeWatch" /><category term="software" /><category term="R" /><summary type="html"><![CDATA[We released a new version of our R package frictionless.]]></summary></entry><entry><title type="html">Archiving animal movements as a record of biodiversity</title><link href="https://oscibio.inbo.be/blog/move2gbif/" rel="alternate" type="text/html" title="Archiving animal movements as a record of biodiversity" /><published>2023-01-03T00:00:00+00:00</published><updated>2023-01-03T00:00:00+00:00</updated><id>https://oscibio.inbo.be/blog/move2gbif</id><content type="html" xml:base="https://oscibio.inbo.be/blog/move2gbif/"><![CDATA[<p class="alert alert-info">This news item also appeared on the websites of <a href="https://www.ru.nl/animal/news-archive/animal-movements-record-biodiversity/">Radboud University</a>, <a href="https://www.movebank.org/cms/movebank-content/archiving-animal-movements-as-biodiversity-2023-01-04">Movebank</a> and <a href="https://www.obis.org/news/">OBIS</a>. It was used as the source for a news item by <a href="https://www.gbif.org/news/2djCgxEiwLOLUF4E4KViPP/animals-in-motion-enabling-data-sharing-from-movebank">GBIF</a>.</p>

<p>GPS trackers are used by ecologists to follow the movements of a wide range of animal species and gain unique insights into their behaviour. Thousands of researchers manage and share these data on <a href="https://movebank.org">Movebank</a>, a free data platform hosting more than 7,500 animal tracking studies, many of which have made their data available for anyone to view and download. These same data offer evidence of when and where species occur, information widely used for biodiversity research and assessments and found through the open data portals Global Biodiversity Information Facility (<a href="https://www.gbif.org/">GBIF</a>) and Ocean Biodiversity Information Facility (<a href="https://obis.org/">OBIS</a>). However, these platforms are not linked, and with few tracking datasets available through GBIF and OBIS, there is unmet potential for them to contribute to studies of biodiversity. To build connections between these data and disciplines, a team of researchers from Radboud University, Research Institute for Nature and Forest, Sovon, the Dutch Bryological and Lichenological Society, and the Max Planck Institute of Animal Behavior have developed an open-source workflow to publish animal tracking data stored on Movebank to GBIF and OBIS.</p>

<h2 id="oystercatchers-as-a-test-case">Oystercatchers as a test case</h2>

<p>The researchers demonstrated the new workflow using tracking data from Eurasian oystercatchers (<em>Haematopus ostralegus</em>), collected since 2008 as part of multiple projects, primarily based in the Wadden Sea. Across more than a decade, ecologists equipped over 200 oystercatchers with GPS trackers at their breeding and wintering grounds in the Netherlands and Belgium, resulting in an improved understanding of this species’ behaviour. “We always thought oystercatchers returned, almost stubbornly, to the exact same breeding and wintering location year after year,” says Henk-Jan van der Kolk, who was involved the study. “By following individuals over time with GPS, we discovered that although this was indeed true for many individuals, there were also others that visited a variety of different locations. This exploratory behaviour was especially clear in young individuals.” The tracking data, collected using the <a href="https://www.uva-bits.nl/">University of Amsterdam Bird Tracking System</a>, consist of a total of 6 million GPS locations and document oystercatchers migrating from the Netherlands to Scandinavian countries.</p>

<p><img src="/assets/images/2023-01-03-move2gbif-oystercatchers.jpg" alt="oystercatchers" />
<em>Oystercatchers on Vlieland, the Netherlands. The left individual is equipped with a GPS tracker and colour rings.</em></p>

<h2 id="technical-challenge">Technical challenge</h2>

<p>The key challenge to sharing data between platforms is not scientific, but technical. “They store slightly different information, in different formats, with many possible ways to ‘translate’ between them,” explains the project’s lead researcher, Peter Desmet. To make it easier for researchers to prepare data from Movebank for publication in GBIF and OBIS, the researchers developed an open-source software package, “<a href="https://inbo.github.io/movepub/">movepub</a>”, that automatically reads data in the Movebank format and converts it to files that can be imported to GBIF and OBIS. To offer one data transformation that can be applied to many studies and species, the researchers considered which information is most commonly collected in tracking studies, and which is most likely to be important for biodiversity research. For example, “our workflow reduces high-resolution GPS data to hourly positions per animal, in line with expected applications of those using GBIF and OBIS for their work,” describes Desmet. Using the new workflow, the oystercatcher tracking data are now publicly available on Movebank, GBIF and OBIS, and are described in a <a href="https://doi.org/10.3897/zookeys.1123.90623">scientific article</a> published in the journal ZooKeys.</p>

<p><img src="/assets/images/2023-01-03-move2gbif-data.png" alt="data" />
<em>Oystercatcher GPS tracks from Vlieland are available via Movebank, GBIF and OBIS.</em></p>

<h2 id="wider-use">Wider use</h2>

<p>The researchers hope that this approach will be adopted by other research groups, and eventually, build new connections between movement ecologists and biodiversity experts. Already, data for <a href="https://github.com/inbo/bird-tracking#datasets">several other bird species</a> have been published using the new workflow. “Increased access to animal tracking data offers the possibility to improve our understanding of biodiversity and contribute to assessments, policy decisions and conservation efforts,” says Sarah Davidson, the curator for Movebank. GBIF and OBIS have been used for thousands of biodiversity studies worldwide: as <a href="https://www.unep.org/news-and-stories/story/cop15-ends-landmark-biodiversity-agreement">global efforts</a> increase to protect biodiversity and animal populations, so does the value of this underrecognized source of information about species distributions and behavior.</p>

<h2 id="learn-more">Learn more</h2>

<p>The MOVE2GBIF project is funded by the <a href="https://www.nlbif.nl/">Netherlands Biodiversity Information Facility</a>. Further descriptions of the data and software published through this project are published at Zenodo (<a href="https://doi.org/10.5281/zenodo.7408643">https://doi.org/10.5281/zenodo.7408643</a>) and ZooKeys (<a href="https://doi.org/10.3897/zookeys.1123.90623">https://doi.org/10.3897/zookeys.1123.90623</a>).</p>

<p>Text: Henk-Jan van der Kolk (BLWG), Peter Desmet (INBO), Sarah Davidson (Movebank), Bruno Ens (Sovon) &amp; Eelke Jongejans (Radboud University)</p>

<p>Pictures: Henk-Jan van der Kolk</p>]]></content><author><name>Henk-Jan van der Kolk, Peter Desmet, Sarah Davidson, Bruno Ens, Eelke Jongejans</name></author><category term="MOVE2GBIF" /><category term="open data" /><category term="GBIF" /><category term="OBIS" /><summary type="html"><![CDATA[Tens of thousands of animals around the world are monitored using GPS trackers to protect wildlife and study animal behaviour. The collected data are also useful for biodiversity research, but are seldom available on platforms used for this purpose. Researchers have developed a workflow to make GPS tracking data available in biodiversity data portals, and applied it to publicly archive GPS tracking data for hundreds of birds across northwest Europe]]></summary></entry><entry><title type="html">Research data management workshop</title><link href="https://oscibio.inbo.be/blog/rdm-workshop/" rel="alternate" type="text/html" title="Research data management workshop" /><published>2022-08-29T00:00:00+00:00</published><updated>2022-08-29T00:00:00+00:00</updated><id>https://oscibio.inbo.be/blog/rdm-workshop</id><content type="html" xml:base="https://oscibio.inbo.be/blog/rdm-workshop/"><![CDATA[<p class="alert alert-warning">Registration for this workshop is closed.</p>

<p><a href="https://www.lifewatch.be/">LifeWatch</a> and <a href="https://www.elixir-belgium.org/">Elixir Belgium</a> invite you to a hands-on workshop to manage and publish research data. The workshop is organized in the context of the <a href="https://www.biodiversity.be/4443">Empowering Biodiversity Research conference</a> and will cover data management plans, data cleaning and GitHub. If this is jargon you always wanted to know about (but were afraid to ask), then this workshop is for you!</p>

<h2 id="who">Who</h2>

<p>This workshop is aimed at environmental and life scientists that manage research data, from PhD students to senior scientists. It is an introductory workshop to data management, data cleaning and data publishing. We recommend participants to have a basic understanding of R and its data types. We can send resources for people who need an introduction to R before this workshop. The level of this workshop is from beginner to intermediate, we will not cover advanced materials.</p>

<h2 id="when">When</h2>

<p>Tuesday September 27, 2022</p>

<h2 id="where">Where</h2>

<p><a href="https://www.vlaanderen.be/vlaamse-overheid/gebouwen/herman-teirlinckgebouw">Herman Teirlinck building</a>, Havenlaan 88, 1000 Brussels (room 01.70, Ferdinand Peeters)</p>

<h2 id="requirements">Requirements</h2>

<p>Participants should bring a laptop with a Mac or Windows operating system (not a tablet, Chromebook, etc.) and administrative privileges. Please install the following programs beforehand:</p>
<ul>
  <li>a text editor (such as <a href="https://atom.io/">atom</a> or <a href="https://notepad-plus-plus.org/">notepad++</a>)</li>
  <li>a spreadsheet editor (excel or <a href="https://www.libreoffice.org/">libreoffice</a>)</li>
  <li><a href="https://rstudio.com/products/rstudio/#Desktop">RStudio</a> (open source desktop edition)</li>
  <li><a href="https://desktop.github.com/">GitHub Desktop</a></li>
</ul>

<h2 id="programme">Programme</h2>

<table>
  <tbody>
    <tr>
      <td>09:30</td>
      <td>Welcome &amp; registration</td>
      <td> </td>
    </tr>
    <tr>
      <td>09:45</td>
      <td>Good enough practices for research data management - Tanja Milotic (LifeWatch)</td>
      <td><a href="https://speakerdeck.com/milotictanja/good-enough-practices-for-research-data-management">Presentation</a></td>
    </tr>
    <tr>
      <td>10:15</td>
      <td>An introduction to ELIXIR’s tools for research data management - Flora D’Anna &amp; Rafael Buono (ELIXIR)</td>
      <td><a href="https://doi.org/10.5281/zenodo.7120492">Presentation</a> / <a href="https://rdmkit.elixir-europe.org/">RDMkit</a></td>
    </tr>
    <tr>
      <td>11:00</td>
      <td>Coffee break</td>
      <td> </td>
    </tr>
    <tr>
      <td>11:30</td>
      <td>Data cleaning and standardisation in R - Salvador Fernandez &amp; Laura Marquez (LifeWatch)</td>
      <td><a href="https://github.com/lifewatch/ebr-2022-data-cleaning-standarization/blob/bd9c6212d221ab94db1b55828b201675cbbd5add/slides/Datacleaning%26standardizationinR.pdf">Presentation</a></td>
    </tr>
    <tr>
      <td>12:30</td>
      <td>Lunch</td>
      <td> </td>
    </tr>
    <tr>
      <td>13:30</td>
      <td>Data cleaning and standardisation in R (continued)</td>
      <td><a href="https://github.com/lifewatch/ebr-2022-data-cleaning-standarization">Training materials</a></td>
    </tr>
    <tr>
      <td>14:30</td>
      <td>An introduction to GitHub - Damiano Oldoni &amp; Peter Desmet (LifeWatch)</td>
      <td><a href="https://inbo.github.io/git-course/static/presentations/git.pdf">Presentation on Git</a></td>
    </tr>
    <tr>
      <td>15:15</td>
      <td>Coffee break</td>
      <td> </td>
    </tr>
    <tr>
      <td>15:45</td>
      <td>An introduction to GitHub (continued)</td>
      <td><a href="https://inbo.github.io/git-course/static/presentations/github.pdf">Presentation on GitHub</a></td>
    </tr>
    <tr>
      <td>17:00</td>
      <td>End</td>
      <td> </td>
    </tr>
  </tbody>
</table>]]></content><author><name>Tanja Milotic</name></author><category term="LifeWatch" /><category term="workshop" /><summary type="html"><![CDATA[Free hands-on introductions to research data management and publication.]]></summary></entry><entry><title type="html">CROW: A new tool to watch bird migration in real time</title><link href="https://oscibio.inbo.be/blog/crow/" rel="alternate" type="text/html" title="CROW: A new tool to watch bird migration in real time" /><published>2021-03-09T00:00:00+00:00</published><updated>2021-03-09T00:00:00+00:00</updated><id>https://oscibio.inbo.be/blog/crow</id><content type="html" xml:base="https://oscibio.inbo.be/blog/crow/"><![CDATA[<p>Every spring and autumn, millions of birds migrate over our country. They mainly do this at high altitudes and at night, making this phenomenon largely invisible to us. But not for weather radars!</p>

<p>Today the <a href="https://oscibio.inbo.be">Open science lab for biodiversity</a> at the INBO and the Royal Meteorological Institute of Belgium (<a href="https://www.meteo.be/">RMI</a>) are launching a <a href="http://www.meteo.be/birddetection"><strong>web application</strong></a> allowing anyone to view this migration in real time across the Benelux. It shows that bird migration started exceptionally early this year, caused by the unusually warm weather in the second half of February. The development of the website was co-supervised by the Royal Belgian Institute of Natural Sciences (<a href="https://www.naturalsciences.be/">RBINS</a>) and financially supported by the <a href="https://www.belspo.be/">Federal Science Policy</a> (BelSPO valorisation project CROW).</p>

<p><a href="http://www.meteo.be/birddetection"><img src="/assets/images/2021-03-09-crow-screenshot.png" alt="" /></a>
<em>The new web application, showing the Helchteren radar for a three days period around February 21, 2021. Due to the exceptionally warm weather during that period, spring migration started earlier than normal. From the figure it is also clear that the most intense migration always takes place in the first half of the night. The birds reach heights of up to three kilometers (and sometimes even more).</em></p>

<p>What does meteorology have to do with bird migration? A lot, it turns out, and in both directions. Birds wait for the ideal weather conditions to start their long journey to their wintering grounds in the south and back to their breeding grounds in the other direction. But equally intriguing is the fact that one of the most important measuring instruments in meteorology today, the <strong>weather radar</strong>, can measure this migration in detail. Indeed: weather radars do not only detect water droplets in the atmosphere, but also birds moving through the air.</p>

<p>The <a href="http://www.meteo.be/birddetection">website</a> launched today offers a unique overview of bird migration across the Benelux, based on <strong>ten weather radars</strong> located in Belgium, the Netherlands, France and Germany. The graph that is shown first when loading the website is the so-called “MTR” (Migration Traffic Rate). This parameter expresses the number of birds that pass through the vicinity of the radar at a given moment, through an imaginary screen that is 1 km wide and “infinitely” high (in practice, 5 km is taken as maximum height). It can be compared with the “stream” or the “flux” of birds that “flows” through the air.</p>

<p>The colourful figure underneath shows how these birds are distributed across the vertical layers of the atmosphere. The parameter shown in this figure is the bird density, expressed as the number of birds per cubic kilometer. However, certain assumptions have to be made to arrive at this number (e.g. about the typical size of a migratory bird). It also excludes bird movements close to the ground, as radars are not able to detect those. More explanation about the correct interpretation is provided on the website itself.</p>

<p>As usual for our team, we developed this tool as <a href="https://github.com/inbo/crow">open source software</a>. We hope to extend it to visualize even more open bird migration data for the <a href="https://globam.science">GloBAM project</a>.</p>

<ul>
  <li><a href="https://www.vlaanderen.be/inbo/persberichten/tien-weerradars-detecteren-vogeltrek-over-de-benelux-en-jij-kan-meekijken">INBO press release (in Dutch)</a></li>
  <li><a href="https://youtu.be/uwvXKmOViws">Short video on radar aeroecology</a></li>
</ul>]]></content><author><name>Peter Desmet, Maarten Reyniers, Robin Brabant</name></author><category term="GloBAM" /><category term="visualization" /><category term="software" /><category term="weather radar" /><summary type="html"><![CDATA[We are launching an interactive visualization to follow bird migration detected by weather radars across the Benelux.]]></summary></entry><entry><title type="html">Join us now: Best practices for citizen science data</title><link href="https://oscibio.inbo.be/blog/best-practices-citizen-science-data/" rel="alternate" type="text/html" title="Join us now: Best practices for citizen science data" /><published>2020-10-19T00:00:00+00:00</published><updated>2020-10-19T00:00:00+00:00</updated><id>https://oscibio.inbo.be/blog/best-practices-citizen-science-data</id><content type="html" xml:base="https://oscibio.inbo.be/blog/best-practices-citizen-science-data/"><![CDATA[<p class="alert alert-info">This post was originally published on the <a href="https://eu-citizen.science/blog/2020/10/19/join-us-now-best-practices-citizen-science-data/">Eu-Citizen.Science blog</a>.</p>

<p>The vast majority of species distribution records come from citizen scientists. These data complement records from professional researchers and help global efforts to conserve biodiversity and understand the natural world. Invasive alien species policies heavily depend on citizen science data. Many invasive alien species related research and policy activities require pooling data. Therefore, open data publication, standardization and interoperability are particularly important. Without good data publishing practises, these data get lost or become useless. With time, the link between the data and the methods that were used to collect them gets lost. <a href="https://go-fair.org/fair-principles">The FAIR Principles</a> have become the gold standard for publishing scientific data. They ensure that the data are <strong>F</strong>indable, <strong>A</strong>ccessible, <strong>I</strong>nteroperable and <strong>R</strong>eusable, and can be used for science indefinitely. Nevertheless, these are generic principles for any kind of data and there is a need to further refine and tailor them specifically for biodiversity data collected by citizen scientists.</p>

<p>The primary place for publishing open biodiversity observation data is the Global Biodiversity Information Facility (<a href="https://www.gbif.org/">GBIF</a>). By publishing data through GBIF, many of the FAIR principles are met automatically. For example, a dataset published through GBIF is accompanied by a Digital Object Identifier (DOI) which makes the dataset findable using a searchable resource such as Google Dataset Search. GBIF also obliges users to conform to community standards, such as <a href="https://dwc.tdwg.org/">Darwin Core</a> and Ecological Metadata Language. This makes the data interoperable. Yet despite this, the richness of the metadata and attributes (principles F2 and R1, <a href="https://go-fair.org/fair-principles">https://go-fair.org/fair-principles</a>) associated with the dataset really depends on how well publishers implement these standards. Rich metadata should provide information about the context, quality and characteristics of the data and should allow a computer to accomplish routine sorting. However, the richness of metadata associated with citizen science datasets varies wildly, and it is not that we need to set the bar higher, it is that the bar is not visible. We need <strong>clear, achievable guidelines</strong> for these datasets. These guidelines should be simple and available in a diversity of languages, so that every researcher involved in alien species citizen science projects can understand and apply them.</p>

<p>Within Working Group 3 (Data Management and Standards) of the COST Action 17122 “Increasing understanding of alien species through citizen science” (<a href="https://alien-csi.eu">Alien CSI</a>), we aim to develop metadata guidelines for publishing citizen scientist datasets on alien species. However, these guidelines should be tailored to the needs of any citizen scientist and researcher. With this blogpost, we are looking for collaboration with citizen science researchers, project coordinators or citizen science system owners, although everyone is welcome to join us. More specifically, we are looking for contributions to (1) formulate metadata guidelines for publishing citizen science datasets, (2) generate an informative leaflet to be distributed amongst citizen scientists and (3) translate these recommendations to a multitude of languages. Discussions will be organized on a monthly basis via conference call. Knowledge exchange and acquisition can also be facilitated through a Short Time Scientific Mission (STSM). Anyone willing to contribute to this specific work or to engage in an STSM is highly welcome to join our working group. Please contact <a href="mailto:lien.reyserhove@inbo.be">lien.reyserhove@inbo.be</a> for further information.</p>]]></content><author><name>[&quot;Lien Reyserhove&quot;, &quot;Quentin Groom&quot;, &quot;Tim Adriaens&quot;, &quot;Jan Pergl&quot;, &quot;Toril Moen&quot;, &quot;Sofie Meeus&quot;]</name></author><category term="TrIAS" /><category term="AlienCSI" /><summary type="html"><![CDATA[Developing a best practice guide for FAIR data.]]></summary></entry></feed>