LATC / EU-data-cloud

EU Linked Open Data cloud
23 stars 9 forks source link

Component properties differ between DSDs and data files #11

Closed cygri closed 12 years ago

cygri commented 12 years ago

Comparing data http://eurostat.linked-statistics.org/data/med_en22.rdf

and corresponding DSD http://eurostat.linked-statistics.org/dsd/med_en22.ttl

there are a number of problems. The DSD lists the following components:

  qb:component
          [ qb:dimension property:nace_r2
          ] ;
  qb:component
          [ qb:measure property:OBS_VALUE
          ] ;
  qb:component
          [ qb:dimension property:geo
          ] ;
  qb:component
          [ qb:attribute property:OBS_STATUS
          ] ;
  qb:component
          [ qb:dimension property:FREQ
          ] ;
  qb:component
          [ qb:attribute property:TIME_FORMAT
          ] ;
  qb:component
          [ qb:dimension property:unit
          ] ;
  qb:component
          [ qb:dimension property:TIME_PERIOD
          ] ;

But a typical observation actually has the following properties:

<freq rdf:resource="/dic/freq#A"/>
<unit rdf:resource="/dic/unit#1000T"/>
<nace_r2 rdf:resource="/dic/nace_r2#B"/>
<geo rdf:resource="/dic/geo#DZ"/>
<time rdf:resource="/dic/time#2003"/>
<sdmx-measure:obsValue rdf:datatype="/dic/note#s">280238</sdmx-measure:obsValue>

These two lists should be identical in every respect (including namespaces and capitalization).

Some comments: