Returns a tibble of known, tested public services that work with readwfs. This isn't exhaustive – it's a starting point. If you find a good one, open an issue.
wfs_services()A tibble::tibble with columns: name, url, driver,
region, description, srs, notes.
wfs_services()
#> # A tibble: 2 × 7
#> name url driver region description srs notes
#> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 LIST Tasmania https://services… WFS Tasma… Cadastral … EPSG… Rich…
#> 2 Esri SampleWorldCities https://samplese… WFS Global Continents… EPSG… Alwa…
# Try one
if (FALSE) { # \dontrun{
svc <- wfs_services()
wfs_layers(svc$url[1])
} # }