next
previous
items

Data table via SPARQL

Resource productivity (GDP/DMC)

Data table via SPARQL Published 12 Mar 2014 Last modified 26 Aug 2017
This is an old version, kept for reference only.

Go to latest version
This page was archived on 26 Aug 2017 with reason: A new version has been published

Download this dataset

Dataset preview

(Live Query)

country 2000 2000_real 2002 2012 2012_real
"Austria" "1.21"^^<http://www.w3.org/2001/XMLSchema#decimal> "1.21"^^<http://www.w3.org/2001/XMLSchema#decimal> "1.2"^^<http://www.w3.org/2001/XMLSchema#decimal> "1.54"^^<http://www.w3.org/2001/XMLSchema#decimal> "1.54"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Belgium" "1.83"^^<http://www.w3.org/2001/XMLSchema#decimal> "1.83"^^<http://www.w3.org/2001/XMLSchema#decimal> "1.87"^^<http://www.w3.org/2001/XMLSchema#decimal> "2.08"^^<http://www.w3.org/2001/XMLSchema#decimal> "2.08"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Bulgaria" "0.18"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.18"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.18"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.21"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.21"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Croatia" "0.72"^^<http://www.w3.org/2001/XMLSchema#decimal> "0"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.66"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.86"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.86"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Cyprus" "0.76"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.76"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.71"^^<http://www.w3.org/2001/XMLSchema#decimal> "1.17"^^<http://www.w3.org/2001/XMLSchema#decimal> "1.17"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Czech Republic" "0.47"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.47"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.52"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.76"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.76"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Denmark" "1.48"^^<http://www.w3.org/2001/XMLSchema#decimal> "1.48"^^<http://www.w3.org/2001/XMLSchema#decimal> "1.69"^^<http://www.w3.org/2001/XMLSchema#decimal> "1.75"^^<http://www.w3.org/2001/XMLSchema#decimal> "1.75"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Estonia" "0.4"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.4"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.39"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.34"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.34"^^<http://www.w3.org/2001/XMLSchema#decimal>
"European Union (27 countries)" "1.34"^^<http://www.w3.org/2001/XMLSchema#decimal> "1.34"^^<http://www.w3.org/2001/XMLSchema#decimal> "1.4"^^<http://www.w3.org/2001/XMLSchema#decimal> "1.73"^^<http://www.w3.org/2001/XMLSchema#decimal> "1.73"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Finland" "0.79"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.79"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.81"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.92"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.92"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 33 rows in 0.001 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/resource-productivity-gdp-dmc/daviz.json

For system integrators

The following info can be used by a system developer / database administrator in order to retrieve this dataset programmatically over the web using a SPARQL client.

Are you new to Linked Data technology? visit http://linkeddata.org



semantic.eea.europa.eu/sparql

PREFIX sdmx-measure: <http://purl.org/linked-data/sdmx/2009/measure#> 
PREFIX sdmx-dimension: <http://purl.org/linked-data/sdmx/2009/dimension#> 
PREFIX sdmx-attribute: <http://purl.org/linked-data/sdmx/2009/attribute#> 
PREFIX property: <http://rdfdata.eionet.europa.eu/eurostat/property#> 
PREFIX rdf-schema: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX indic_nv: <http://dd.eionet.europa.eu/vocabulary/eurostat/indic_nv/>
PREFIX unit: <http://dd.eionet.europa.eu/vocabulary/eurostat/unit/>
PREFIX geo: <http://dd.eionet.europa.eu/vocabulary/eurostat/geo/>

SELECT
?country 
bif:either(sum(?2000) = 0, sum(xsd:decimal(?2001))/100, sum(xsd:decimal(?2000))/100) as ?2000 
sum(xsd:decimal(?2000)/100) as ?2000_real 
sum(xsd:decimal(?2002)/100) as ?2002
bif:either(sum(?2012) = 0, sum(xsd:decimal(?2011)/100), sum(xsd:decimal(?2012))/100) as ?2012 
sum(xsd:decimal(?2012)/100) as ?2012_real 

{{
SELECT 
bif:either(?geo = geo:DE, 'Germany', ?ugeo) as ?country 
bif:either(year(?date) = 2000, ?tsdpc100 * 100, 0.0) as ?2000
bif:either(year(?date) = 2001, ?tsdpc100 * 100, 0.0) as ?2001
bif:either(year(?date) = 2002, ?tsdpc100 * 100, 0.0) as ?2002
bif:either(year(?date) = 2011, ?tsdpc100 * 100, 0.0) as ?2011
bif:either(year(?date) = 2012, ?tsdpc100 * 100, 0.0) as ?2012


WHERE {
{  
  GRAPH <http://rdfdata.eionet.europa.eu/eurostat/data/tsdpc100.rdf.gz> 
  {
  _:tsdpc100 sdmx-dimension:refArea ?geo .
  _:tsdpc100 sdmx-dimension:timePeriod ?date .
  _:tsdpc100 sdmx-measure:obsValue ?tsdpc100  .
  _:tsdpc100 sdmx-attribute:unitMeasure unit:EUR_KG_CLV05 .
  } 
  ?geo rdf-schema:label ?ugeo .
 }
}

}}
GROUP BY ?country
ORDER BY ?country


Permalinks

Document Actions