knitr::opts_chunk$set( collapse = TRUE, comment = "#>", warning = FALSE, message = FALSE )
Hydrometeo data collected at stations along the Belgian coast and off-shore along the Flemish Banks.
Click to see the columns available after log in
# Get the abstract and/or description from IMIS and print here library(jsonlite) dasid <- fromJSON("https://www.vliz.be/en/imis?module=dataset&dasid=59&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)
You can find more information at: https://www.vliz.be/en/imis?module=dataset&dasid=59
Please acknowledge as: This work makes use of the LifeWatch observation data and infrastructure (provided by MOW and 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 TAW (from Dutch: Tweede Algemeene Waterpassing) is a term used only in Belgium; it is a horizontal water level reference level. Source: proz.com
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.