Statistical Data and Metadata eXchange (SDMX)

1.4k views Asked by At

I stuck myself in SDMX, Since i am not found enough resources to study(programming code) about SDMX.

Like:-

 Creating structure
 Reading Structure
 Writing data .. etc 

Yes there are some guideline in its personal website,But those are not enough to start ride on sdmx. So its my personal request to all u my friends if you have any experience please share.

Any help will appreciated

2

There are 2 answers

0
Tungurahua On

I found the SDMX Guidelines for the use of webservices helpful to get started. The Annex (chapter 6) lists some examples.

Another source of information is on the Eurostat website where you can find a documentation of their SDMX webservices.

They also have a portal site that provides tutorials on SDMX.

Hope that gets you started.

0
Christophe Roussy On

Here are few links about the topic:

Quick json format overview (xml is similar):

{   
         "header": { ... },
         Header is for technical information: prepared, sender, ...

         "errors": { ... },
         Errors is for error messages.

         "structure": { ... },
         Structure contains metadata: dimensions and attributes.

         "dataSets": [ ... ]
         DataSets contains the actual data.
 }

NOTE: In an effort to document it I also created the sdmx stackoverflow tag.