Returns a tibble describing each non-geometry field in a layer: name, type, width, and whether it's nullable.
wfs_fields(base_url, layer, driver = "auto", version = NULL, srs = NULL)Character. The service endpoint URL.
Character. Layer name.
Passed to wfs_connection().
A tibble::tibble with columns: name, type, width,
precision, is_nullable.
if (FALSE) { # \dontrun{
url <- wfs_example_url("list_tasmania")
wfs_fields(url, "Public_OpenDataWFS:LIST_Cadastral_Parcels",
version = "2.0.0", srs = "EPSG:28355")
} # }