knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  warning = FALSE,
  message = FALSE
)

Biodiversity data on microplankton in the Belgian part of the North Sea

How to interpret this dataset

Query options

Available columns

Abstract

# Get the abstract and/or description from IMIS and print here
library(jsonlite)

dasid <- fromJSON("https://www.vliz.be/en/imis?module=dataset&dasid=4688&show=json")

abstract <- dasid[["datasetrec"]][["EngAbstract"]]
description <- dasid[["datasetrec"]][["EngDescr"]]

if (is.null(abstract) & is.null(description)){

} else if(is.null(abstract) & !is.null(description)){
  out <- description
} else if(!is.null(abstract) & is.null(description)){
  out <- abstract
} else if(!is.null(abstract) & !is.null(description)){
  out <- paste0(abstract, "</br>", description)
}

cat(out)

Further information can be found in this link or in a Data Paper: LifeWatch observatory data: phytoplankton observations in the Belgian Part of the North Sea.

At the moment, corrections are being made to the FlowCAM dataset and pipeline. Most up-to-date information on sampling or processing protocols and taxonomic information of the classes used during validations can be found in the following links:

How to cite these data

library(jsonlite)

# Set base url 5251 4688
url <- "https://www.vliz.be/en/imis?module=dataset&dasid=4688"
dasid <- fromJSON(paste0(url, "&show=json"))

# Build citation. Get active DOI.
doi <- dasid[["dois"]]
doi <- subset(doi, doi$CurrentDOI == 1)$DOI
doi <- paste0("https://doi.org/", doi)
citation <- dasid[["datasetrec"]][["Citation"]]
citation <- paste0("> ", citation, " ", doi, 
                   ". Accessed through the LifeWatch Data Explorer / lwdataexplorer R package."
                   )

# Get license
license <- dasid[["datasetrec"]][["AccConstrDisplay"]]
cat(citation)
cat(paste0("<b>Availability:</b>", license))

Please acknowledge as: This work makes use of the LifeWatch observation data and infrastructure (provided by VLIZ) funded by Research Foundation - Flanders (FWO) as part of the Belgian contribution to LifeWatch.

These data are also available in the R language with the lwdataxplorer package.


1 The formula linked in the datapaper that describes these data is not used anymore. The corrected formula used during the aggregations is:

Density = ConcentrationSample x SampleVolume(L) / VolumeFiltered(L)

Density = Count x SampleVolume(L) / FluidVolumeImaged(L) x VolumeFiltered(L) x SampleDilutionFactor



lifewatch/lwdataexplorer documentation built on Aug. 24, 2024, 12:35 a.m.