diff --git a/README.Rmd b/README.Rmd index 86c15d5..29dd285 100644 --- a/README.Rmd +++ b/README.Rmd @@ -51,7 +51,10 @@ All available services are contained in the tibble returned by `emodnet_wfs()`. ```{r, echo=FALSE} library(emodnet.wfs) -knitr::kable(emodnet_wfs()) +services <- emodnet_wfs() +class(services) +names(services) +services$service_name ``` To explore available services you can use: diff --git a/README.md b/README.md index f61b71c..6614a38 100644 --- a/README.md +++ b/README.md @@ -51,25 +51,25 @@ options("emodnet.wfs.quiet" = TRUE) All available services are contained in the tibble returned by `emodnet_wfs()`. -| service_name | service_url | -|:----------------------------------------------------------------|:------------------------------------------------------------------------------| -| bathymetry | | -| biology | | -| biology_occurrence_data | | -| chemistry_cdi_data_discovery_and_access_service | | -| chemistry_cdi_distribution_observations_per_category_and_region | | -| chemistry_contaminants | | -| chemistry_marine_litter | | -| geology_coastal_behavior | | -| geology_events_and_probabilities | | -| geology_marine_minerals | | -| geology_sea_floor_bedrock | | -| geology_seabed_substrate_maps | | -| geology_submerged_landscapes | | -| human_activities | | -| physics | | -| seabed_habitats_general_datasets_and_products | | -| seabed_habitats_individual_habitat_map_and_model_datasets | | + #> [1] "data.frame" + #> [1] "service_name" "service_url" + #> [1] "bathymetry" + #> [2] "biology" + #> [3] "biology_occurrence_data" + #> [4] "chemistry_cdi_data_discovery_and_access_service" + #> [5] "chemistry_cdi_distribution_observations_per_category_and_region" + #> [6] "chemistry_contaminants" + #> [7] "chemistry_marine_litter" + #> [8] "geology_coastal_behavior" + #> [9] "geology_events_and_probabilities" + #> [10] "geology_marine_minerals" + #> [11] "geology_sea_floor_bedrock" + #> [12] "geology_seabed_substrate_maps" + #> [13] "geology_submerged_landscapes" + #> [14] "human_activities" + #> [15] "physics" + #> [16] "seabed_habitats_general_datasets_and_products" + #> [17] "seabed_habitats_individual_habitat_map_and_model_datasets" To explore available services you can use: