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

Data from buoys installed in the Belgian Part of the North Sea.

How to interpret this dataset

Query options

Available columns

Abstract

The Flanders Marine Institute within it’s remit and scope in RIs such as ICOS and Lifewatch, is operating 4 fixed point research and monitoring stations. Three of them are in the Oostende Spuikom and harbor and one is in the Thornton Bank. The stations have capacity for robust and frequent (e.g. 1 hr sync interval) near real time (NRT) transmission of data and are equipped with in situ sensors, for physical and biogeochemical parameters. Data from these stations are also available through the ICOS Carbon Portal and the Spuikom monitoring website

How to cite these data

library(jsonlite)

# Set base url 5251 4688
url <- "https://www.vliz.be/en/imis?module=dataset&dasid=5252"
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.



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