View source: R/SDMXServiceProvider-methods.R
addSDMXServiceProvider | R Documentation |
function that allows configuring a new SDMXServiceProvider as part of the list of providers known by rsdmx, hence by readSDMX
addSDMXServiceProvider(provider)
provider |
an object of class "SDMXServiceProvider" |
Emmanuel Blondel, emmanuel.blondel1@gmail.com
getSDMXServiceProviders findSDMXServiceProvider readSDMX
#create a provider
myBuilder <- SDMXREST20RequestBuilder(regUrl = "http://www.myorg.org/registry",
repoUrl = "http://www.myorg.org/repository",
compliant = TRUE)
myProvider <- SDMXServiceProvider(
agencyId = "MYORG", name = "My Organization",
builder = myBuilder
)
#add it
addSDMXServiceProvider(myProvider)
#check out the list of existing provider (only list the agency Ids)
sapply(slot(getSDMXServiceProviders(), "providers"), function(x){slot(x, "agencyId")})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.