Skip to contents

Get layer attribute description

Usage

layer_attribute_descriptions(
  wfs = NULL,
  service = NULL,
  service_version = NULL,
  layer
)

Arguments

wfs

A WFSClient R6 object with methods for interfacing an OGC Web Feature Service.

service

the EMODnet OGC WFS service name. For available services, see emodnet_wfs().

service_version

[Deprecated] the WFS service version. Now always "2.0.0".

layer

character sting of layer name. To get info on layers, including layer_name use emodnet_get_wfs_info().

Value

data.frame containing layer attribute descriptions (metadata).

Examples

# \dontrun{
layer_attribute_descriptions(
  service = "biology",
  layer = "mediseh_zostera_m_pnt"
)
#>  WFS client created successfully
#>  Service: "https://geo.vliz.be/geoserver/Emodnetbio/wfs"
#>  Version: "2.0.0"
#>       name      type minOccurs maxOccurs nillable geometry
#> 1       id   integer         0         1     TRUE    FALSE
#> 2  country character         0         1     TRUE    FALSE
#> 3 the_geom     Point         0         1     TRUE     TRUE
# }