Skip to content

Commit

Permalink
support #199
Browse files Browse the repository at this point in the history
  • Loading branch information
eblondel committed Aug 26, 2024
1 parent 898da2b commit 02ebcd3
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: rsdmx
Version: 0.6-4
Date: 2024-01-24
Date: 2024-08-26
Title: Tools for Reading SDMX Data and Metadata
Authors@R: c(
person("Emmanuel", "Blondel", role = c("aut", "cre"), email = "[email protected]", comment = c(ORCID = "0000-0002-5870-5762")),
Expand Down
17 changes: 14 additions & 3 deletions R/SDMXServiceProvider-methods.R
Original file line number Diff line number Diff line change
Expand Up @@ -292,13 +292,24 @@ setSDMXServiceProviders <- function(){ # nocov start
)
)

#ISTAT - LEGACY (Italy)
ISTAT_LEGACY <- SDMXServiceProvider(
agencyId = "ISTAT_LEGACY", name = "Istituto nazionale di statistica (Italia)",
scale = "national", country = "ITA",
builder = SDMXREST21RequestBuilder(
regUrl = "http://sdmx.istat.it/SDMXWS/rest",
repoUrl = "http://sdmx.istat.it/SDMXWS/rest",
compliant = TRUE
)
)

#ISTAT (Italy)
ISTAT <- SDMXServiceProvider(
agencyId = "ISTAT", name = "Istituto nazionale di statistica (Italia)",
scale = "national", country = "ITA",
builder = SDMXREST21RequestBuilder(
regUrl = "http://sdmx.istat.it/SDMXWS/rest",
repoUrl = "http://sdmx.istat.it/SDMXWS/rest",
regUrl = "https://esploradati.istat.it/SDMXWS/rest",
repoUrl = "https://esploradati.istat.it/SDMXWS/rest",
compliant = TRUE
)
)
Expand Down Expand Up @@ -549,7 +560,7 @@ setSDMXServiceProviders <- function(){ # nocov start
#international
BIS, ECB, ESTAT,ESTAT_COMEXT, ESTAT_COMP, ESTAT_GROW, ESTAT_EMPL, IMF, OECD, UNICEF, CD2030, UNSD, ILO_Legacy, ILO, WBG_WITS, WB, PDH,
#national
ABS, NBB, INSEE, INEGI, ISTAT, NOMIS, LSD, NCSI, STAT_EE, BBK,
ABS, NBB, INSEE, INEGI, ISTAT_LEGACY, ISTAT, NOMIS, LSD, NCSI, STAT_EE, BBK,
#others
KNOEMA
)
Expand Down

0 comments on commit 02ebcd3

Please sign in to comment.