Get all the Marine Regions sources
Value
a data frame with three columns:
sourceID
: the identifier of the source in the Marine Regions Gazetteer database.source
: the name of the source.sourceURL
: if available, the URL of the source.
Details
gaz_search() is a memoised function from gaz_rest_search(). See memoise::memoise()
.
Examples
# \donttest{
# This
gaz_rest_sources()
#> # A tibble: 697 × 3
#> sourceID source sourceURL
#> <int> <chr> <chr>
#> 1 1 SAIL http://w…
#> 2 2 ASFA thesaurus http://w…
#> 3 4 Nationaal Instituut voor de Statistiek (NIS) / National S… http://s…
#> 4 5 Oosthoek Times Wereldatlas NA
#> 5 6 Lausch, E. (2000). Atlas van de oceanen: met de dieptekaa… NA
#> 6 7 (2001). The Times comprehensive atlas of the world. 10th … NA
#> 7 8 IHO-IOC GEBCO Gazetteer of Undersea Feature Names (2002-1… http://w…
#> 8 9 BIOMARE http://w…
#> 9 10 (1953). Limits of oceans and seas. 3rd edition. IHO Speci… NA
#> 10 11 Nomenclature des espaces maritimes/List of maritime areas NA
#> # ℹ 687 more rows
# is the same as
gaz_sources()
#> # A tibble: 697 × 3
#> sourceID source sourceURL
#> <int> <chr> <chr>
#> 1 1 SAIL http://w…
#> 2 2 ASFA thesaurus http://w…
#> 3 4 Nationaal Instituut voor de Statistiek (NIS) / National S… http://s…
#> 4 5 Oosthoek Times Wereldatlas NA
#> 5 6 Lausch, E. (2000). Atlas van de oceanen: met de dieptekaa… NA
#> 6 7 (2001). The Times comprehensive atlas of the world. 10th … NA
#> 7 8 IHO-IOC GEBCO Gazetteer of Undersea Feature Names (2002-1… http://w…
#> 8 9 BIOMARE http://w…
#> 9 10 (1953). Limits of oceans and seas. 3rd edition. IHO Speci… NA
#> 10 11 Nomenclature des espaces maritimes/List of maritime areas NA
#> # ℹ 687 more rows
# }