servers {ckanr}R Documentation

CKAN server URLS and other info

Description

CKAN server URLS and other info

Usage

servers()

Details

Comes from the links at https://ckan.org/about/instances/

There were a number of other URLs for CKAN instances in the CKAN URL above, but some sites are now gone completely, or if they do exist, I can't figure out how to get access to the CKAN API on their instance.

Examples

## Not run: 
servers()
ckan_info(servers()[5])

# what version is each CKAN server running
out <- lapply(servers()[1:6], function(w) {
  cat(w, sep='\n') 
  ckan_info(w)
})
vapply(out, "[[", "", "ckan_version")

## End(Not run)

[Package ckanr version 0.7.0 Index]