RDFizing and Interlinking the EuroStat Data Set Effort - riese

A LinkingOpenData project


Note: On 2008-01-31, riese has been launched, cf. http://riese.joanneum.at/

This page is the main resource for the "RDFizing and interlinking the EuroStat data set" - riese project, an effort in the realm of the SWEO LinkingOpenData project.

1. Introduction

While the US census data is already more or less available, the European equivalent is still not totally RDFized and interlinked. A first attempt was made at the FU Berlin.

We aim at RDFizing the whole EuroStat data. Just to give you an idea: We're talking about some -- conservatively estimated -- 4.000.000.000 (or 4 billion) RDF triple. This estimation is based on the EuroStat TOC, assuming some 10 triples per item value.

2. Design

2.1. Schemas

In a first step, the existing EuroStat data schema is recreated in RDF (using RDF-S), along with a mapping to an RDF graph.

The riese core schema v0.1 - 2007-08-29

The riese geo schema v0.1 - 2007-08-29

YvesRaimond's comments:

Michael's answers to YvesRaimond's comments:


@prefix riese: <http://riese.joanneum.at/core#>.
@prefix event: <http://purl.org/NET/c4dm/event.owl#>.
@prefix time: <http://purl.org/NET/c4dm/timeline.owl#>.
@prefix dic: <http://riese.joanneum.at/core#>.
@prefix : <>.

# Ontology
riese:Item rdfs:subClassOf event:Event.
riese:value rdfs:subPropertyOf event:literal_factor.
riese:unit rdfs:subPropertyOf event:factor;rdfs:subPropertyOf riese:dic.
riese:s_adj rdfs:subPropertyOf event:factor. # and so on for each DIC...

# Some instance data 
#  http://europa.eu.int/estatref/info/notes/en/read_me.htm
:data a riese:Item;
   riese:value "11148";
   riese:unit "mio-eur"; # are these properties operating over a discrete space? in this case we should consider creating individuals for these, and we could just use riese:dic
   riese:s_adj "nsa";
   riese:partner "ext_eurozone";
   riese:flow "net";
   riese:indic "bp-100";
   event:place <http://dbpedia.org/resource/Europe>;
   event:time  :int2004m05; # or just [time:at "2004-05"^^xsd:YearMonth]
   .

:int2004m05 a time:Interval;
   time:at "2004-05"^^xsd:YearMonth;
   .


What do you think? The good think is that it is extensible - if we happen to access more things on how these values are captured, we can still attach them to the event...

2.2. Observations

3. Resources

4. Publications and Presentations

5. People Interested in the Area

Please add yourself here in case you want to contribute (in terms of schema, mapping, development, testing, UI, etc.).

Note: The main discussion forum is the #swig channel at freenode, seeAlso log at http://swig.xmlhack.com/.

SweoIG/TaskForces/CommunityProjects/LinkingOpenData/EuroStat (last edited 2008-01-31 15:04:03 by MichaelHausenblas)