The goal of emodnet.wcs is to allow interrogation of and access to EMODnet geographic raster data in R though the EMODnet Web Coverage Services. See below for available Services. This package was developed by Sheffield University as part of EMODnet Biology WP4.
Web Coverage services (WCS)is a standard created by the OGC that refers to the receiving of geospatial information as ‘coverages’: digital geospatial information representing space-varying phenomena. One can think of it as Web Feature Service (WFS) for raster data. It gets the ‘source code’ of the map, but in this case it’s not raw vectors but raw imagery.
An important distinction must be made between WCS and Web Map Service (WMS). They are similar, and can return similar formats, but a WCS is able to return more information, including valuable metadata and more formats. It additionally allows more precise queries, potentially against multi-dimensional backend formats.
You can install the development version of emodnet.wcs from GitHub with:
# install.packages("pak")
pak::pak("EMODnet/emodnet.wcs")
Load the library
library(emodnet.wcs)
#> Loading ISO 19139 XML schemas...
#> Loading ISO 19115-3 XML schemas...
#> Loading ISO 19139 codelists...
If you want to avoid reading messages from emodnet.wcs such as “WCS
client created successfully”, set the "emodnet.wcs.quiet"
option to
TRUE
.
options("emodnet.wcs.quiet" = TRUE)
All available services are contained in the tibble returned by
emdn_wcs()
.
service_name | service_url |
---|---|
bathymetry | https://ows.emodnet-bathymetry.eu/wcs |
biology | https://geo.vliz.be/geoserver/Emodnetbio/wcs |
human_activities | https://ows.emodnet-humanactivities.eu/wcs |
seabed_habitats | https://ows.emodnet-seabedhabitats.eu/geoserver/emodnet_open_maplibrary/wcs |
To explore available services in your R session use:
View(emdn_wcs())
Create new WCS Client. Specify the service using theservice
argument.
wcs <- emdn_init_wcs_client(service = "biology")
#> ✔ WCS client created succesfully
#> ℹ Service: <https://geo.vliz.be/geoserver/Emodnetbio/wcs>
#> ℹ Service: "2.0.1"
Get service level and a subset of coverage level metadata, compiled for
easy review by supplying a WCSClient
object to emdn_get_wcs_info
.
emdn_get_wcs_info(wcs)
#> Loading required package: sf
#> Linking to GEOS 3.12.2, GDAL 3.10.3, PROJ 9.4.1; sf_use_s2() is FALSE
#> No encoding supplied: defaulting to UTF-8.
#> No encoding supplied: defaulting to UTF-8.
#> No encoding supplied: defaulting to UTF-8.
#> No encoding supplied: defaulting to UTF-8.
#> No encoding supplied: defaulting to UTF-8.
#> No encoding supplied: defaulting to UTF-8.
#> No encoding supplied: defaulting to UTF-8.
#> No encoding supplied: defaulting to UTF-8.
#> No encoding supplied: defaulting to UTF-8.
#> No encoding supplied: defaulting to UTF-8.
#> $data_source
#> [1] "emodnet_wcs"
#>
#> $service_name
#> [1] "biology"
#>
#> $service_url
#> [1] "https://geo.vliz.be/geoserver/Emodnetbio/wcs"
#>
#> $service_title
#> [1] "EMODnet Biology"
#>
#> $service_abstract
#> [1] "The EMODnet Biology products include a set of gridded map layers showing the average abundance of marine species for different time windows (seasonal, annual) using geospatial modelling. The spatial modelling tool used to calculate the gridded abundance maps is based on DIVA. DIVA (Data-Interpolating Variational Analysis) is a tool to create gridded data sets from discrete point measurements of the ocean. For the representation of time dynamics, it was decided to produce gridded maps for sliding time windows, e.g. combining one or more years in one gridded map, so that relatively smooth animated GIF presentations can be produced that show the essential change over time. EMODnet Biology’s data products include the Operational Ocean Products and Services (OOPS), harvested by ICES."
#>
#> $service_access_constraits
#> [1] "NONE"
#>
#> $service_fees
#> [1] "NONE"
#>
#> $service_type
#> [1] "urn:ogc:service:wcs"
#>
#> $coverage_details
#> # A tibble: 10 × 9
#> coverage_id dim_n dim_names extent crs wgs84_bbox temporal_extent
#> <chr> <int> <chr> <chr> <chr> <chr> <chr>
#> 1 Emodnetbio__ratio_la… 3 lat(deg)… -75.0… EPSG… -75.05, 3… 1958-02-16T01:…
#> 2 Emodnetbio__aca_spp_… 3 lat(deg)… -75.0… EPSG… -75.05, 3… 1958-02-16T01:…
#> 3 Emodnetbio__cal_fin_… 3 lat(deg)… -75.0… EPSG… -75.05, 3… 1958-02-16T01:…
#> 4 Emodnetbio__cal_hel_… 3 lat(deg)… -75.0… EPSG… -75.05, 3… 1958-02-16T01:…
#> 5 Emodnetbio__met_luc_… 3 lat(deg)… -75.0… EPSG… -75.05, 3… 1958-02-16T01:…
#> 6 Emodnetbio__oit_spp_… 3 lat(deg)… -75.0… EPSG… -75.05, 3… 1958-02-16T01:…
#> 7 Emodnetbio__tem_lon_… 3 lat(deg)… -75.0… EPSG… -75.05, 3… 1958-02-16T01:…
#> 8 Emodnetbio__chli_195… 3 lat(deg)… -75.0… EPSG… -75.05, 3… 1958-02-16T01:…
#> 9 Emodnetbio__tot_lar_… 3 lat(deg)… -75.0… EPSG… -75.05, 3… 1958-02-16T01:…
#> 10 Emodnetbio__tot_sma_… 3 lat(deg)… -75.0… EPSG… -75.05, 3… 1958-02-16T01:…
#> # ℹ 2 more variables: vertical_extent <chr>, subtype <chr>
Info can also be extracted using a service name instead of a WCSClient
object.
emdn_get_wcs_info(service = "biology")
#> ✔ WCS client created succesfully
#> ℹ Service: <https://geo.vliz.be/geoserver/Emodnetbio/wcs>
#> ℹ Service: "2.0.1"
#> No encoding supplied: defaulting to UTF-8.
#> No encoding supplied: defaulting to UTF-8.
#> No encoding supplied: defaulting to UTF-8.
#> No encoding supplied: defaulting to UTF-8.
#> No encoding supplied: defaulting to UTF-8.
#> No encoding supplied: defaulting to UTF-8.
#> No encoding supplied: defaulting to UTF-8.
#> No encoding supplied: defaulting to UTF-8.
#> No encoding supplied: defaulting to UTF-8.
#> No encoding supplied: defaulting to UTF-8.
#> $data_source
#> [1] "emodnet_wcs"
#>
#> $service_name
#> [1] "biology"
#>
#> $service_url
#> [1] "https://geo.vliz.be/geoserver/Emodnetbio/wcs"
#>
#> $service_title
#> [1] "EMODnet Biology"
#>
#> $service_abstract
#> [1] "The EMODnet Biology products include a set of gridded map layers showing the average abundance of marine species for different time windows (seasonal, annual) using geospatial modelling. The spatial modelling tool used to calculate the gridded abundance maps is based on DIVA. DIVA (Data-Interpolating Variational Analysis) is a tool to create gridded data sets from discrete point measurements of the ocean. For the representation of time dynamics, it was decided to produce gridded maps for sliding time windows, e.g. combining one or more years in one gridded map, so that relatively smooth animated GIF presentations can be produced that show the essential change over time. EMODnet Biology’s data products include the Operational Ocean Products and Services (OOPS), harvested by ICES."
#>
#> $service_access_constraits
#> [1] "NONE"
#>
#> $service_fees
#> [1] "NONE"
#>
#> $service_type
#> [1] "urn:ogc:service:wcs"
#>
#> $coverage_details
#> # A tibble: 10 × 9
#> coverage_id dim_n dim_names extent crs wgs84_bbox temporal_extent
#> <chr> <int> <chr> <chr> <chr> <chr> <chr>
#> 1 Emodnetbio__ratio_la… 3 lat(deg)… -75.0… EPSG… -75.05, 3… 1958-02-16T01:…
#> 2 Emodnetbio__aca_spp_… 3 lat(deg)… -75.0… EPSG… -75.05, 3… 1958-02-16T01:…
#> 3 Emodnetbio__cal_fin_… 3 lat(deg)… -75.0… EPSG… -75.05, 3… 1958-02-16T01:…
#> 4 Emodnetbio__cal_hel_… 3 lat(deg)… -75.0… EPSG… -75.05, 3… 1958-02-16T01:…
#> 5 Emodnetbio__met_luc_… 3 lat(deg)… -75.0… EPSG… -75.05, 3… 1958-02-16T01:…
#> 6 Emodnetbio__oit_spp_… 3 lat(deg)… -75.0… EPSG… -75.05, 3… 1958-02-16T01:…
#> 7 Emodnetbio__tem_lon_… 3 lat(deg)… -75.0… EPSG… -75.05, 3… 1958-02-16T01:…
#> 8 Emodnetbio__chli_195… 3 lat(deg)… -75.0… EPSG… -75.05, 3… 1958-02-16T01:…
#> 9 Emodnetbio__tot_lar_… 3 lat(deg)… -75.0… EPSG… -75.05, 3… 1958-02-16T01:…
#> 10 Emodnetbio__tot_sma_… 3 lat(deg)… -75.0… EPSG… -75.05, 3… 1958-02-16T01:…
#> # ℹ 2 more variables: vertical_extent <chr>, subtype <chr>
Get more detailed coverage metadata about specific coverage.
emdn_get_coverage_info(
wcs,
coverage_ids = "Emodnetbio__aca_spp_19582016_L1"
)
#> # A tibble: 1 × 21
#> data_source service_name service_url coverage_id band_description band_uom
#> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 emodnet_wcs https://geo.vli… biology Emodnetbio… relative_abunda… W.m-2.S…
#> # ℹ 15 more variables: constraint <chr>, nil_value <dbl>, dim_n <int>,
#> # dim_names <chr>, grid_size <chr>, resolution <chr>, extent <chr>,
#> # crs <chr>, wgs84_extent <chr>, temporal_extent <chr>,
#> # vertical_extent <chr>, subtype <chr>, fn_seq_rule <chr>,
#> # fn_start_point <chr>, fn_axis_order <chr>
Note
To minimize the number of requests sent to webservices, these functions use
memoise
to cache results inside the active R session. To clear the cache, re-start R or runmemoise::forget(emdn_get_wcs_info)
/memoise::forget(emdn_get_coverage_info)
The package also offers a number of functions for extracting individual metadata in more usable forms. e.g.
emdn_get_coverage_ids(wcs)
#> [1] "Emodnetbio__ratio_large_to_small_19582016_L1_err"
#> [2] "Emodnetbio__aca_spp_19582016_L1"
#> [3] "Emodnetbio__cal_fin_19582016_L1_err"
#> [4] "Emodnetbio__cal_hel_19582016_L1_err"
#> [5] "Emodnetbio__met_luc_19582016_L1_err"
#> [6] "Emodnetbio__oit_spp_19582016_L1_err"
#> [7] "Emodnetbio__tem_lon_19582016_L1_err"
#> [8] "Emodnetbio__chli_19582016_L1_err"
#> [9] "Emodnetbio__tot_lar_19582016_L1_err"
#> [10] "Emodnetbio__tot_sma_19582016_L1_err"
For more details, please refer to the Getting metadata about Services &
Coverages
article in the emodnet.wcs
online documentation.
The package also provides a function to download full or subsets of coverages from emodnet.wcs services.
The following example downloads a spatial subset of a coverage using a bounding box.
cov <- emdn_get_coverage(
wcs,
coverage_id = "Emodnetbio__aca_spp_19582016_L1",
bbox = c(xmin = 0, ymin = 40, xmax = 5, ymax = 45),
nil_values_as_na = TRUE
)
#> ── Downloading coverage "Emodnetbio__aca_spp_19582016_L1" ──────────────────────
#> <GMLEnvelope>
#> ....|-- lowerCorner: 40 0 "1958-02-16T01:00:00"
#> ....|-- upperCorner: 45 5 "2016-11-16T01:00:00"
#> ✔ Coverage "Emodnetbio__aca_spp_19582016_L1" downloaded succesfully as a
#> terra <SpatRaster>
#> ✔ nil values 9.96920996838687e+36 converted to NA on all bands.
cov
#> class : SpatRaster
#> size : 50, 50, 1 (nrow, ncol, nlyr)
#> resolution : 0.1, 0.1 (x, y)
#> extent : 0.05, 5.05, 39.95, 44.95 (xmin, xmax, ymin, ymax)
#> coord. ref. : lon/lat WGS 84 (EPSG:4326)
#> source(s) : memory
#> varname : Emodnetbio__aca_spp_19582016_L1_2016-11-16T01_00_00_40,0,45,5
#> name : Emodnetbio__aca_spp_19582016_L1_2016-11-16T01_00_00_40,0,45,5
#> min value : NaN
#> max value : NaN
terra::plot(cov)
For more details on downloading coverages, please refer to the Download
Coverages
article in the emodnet.wcs
online documentation.
To cite emodnet.wcs, please use the output from
citation(package = "emodnet.wcs")
.
citation(package = "emodnet.wcs")
#> To cite package 'emodnet.wcs' in publications use:
#>
#> Krystalli A (????). _emodnet.wcs: Access EMODnet Web Coverage Service
#> data through R_. R package version 0.0.0.9012. Integrated data
#> products created under the European Marine Observation Data Network
#> (EMODnet) Biology project (EASME/EMFF/2017/1.3.1.2/02/SI2.789013),
#> funded by the European Union under Regulation (EU) No 508/2014 of the
#> European Parliament and of the Council of 15 May 2014 on the European
#> Maritime and Fisheries Fund,
#> <https://github.com/EMODnet/emodnet.wcs>.
#>
#> A BibTeX entry for LaTeX users is
#>
#> @Manual{,
#> title = {{emodnet.wcs}: Access EMODnet Web Coverage Service data through R},
#> author = {Anna Krystalli},
#> note = {R package version 0.0.0.9012. Integrated data products created under the European Marine Observation Data Network (EMODnet) Biology project (EASME/EMFF/2017/1.3.1.2/02/SI2.789013), funded by the European Union under Regulation (EU) No 508/2014 of the European Parliament and of the Council of 15 May 2014 on the European Maritime and Fisheries Fund},
#> url = {https://github.com/EMODnet/emodnet.wcs},
#> }
Please note that the emodnet.wcs project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.