next
previous
items

Data table via SPARQL

Share of renewable energy in gross final energy consumption

Data table via SPARQL Published 23 Mar 2016 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)

ugeo date obsValue
"Austria" "2004" "23"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Austria" "2005" "24"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Austria" "2006" "25"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Austria" "2007" "27"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Austria" "2008" "28"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Austria" "2009" "30"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Austria" "2010" "31"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Austria" "2011" "31"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Austria" "2012" "32"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Austria" "2013" "32"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 373 rows in 0.038 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/share-of-renewable-energy-in-gross/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



http://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 geo: <http://dd.eionet.europa.eu/vocabulary/eurostat/geo/>

SELECT
bif:either(?geo = geo:DE, 'Germany', ?ugeo) as ?ugeo
bif:either(?date = 'TARGET','Target 2020', bif:either(?date != 'TARGET', substr(xsd:string(?date), 1,4) , ?date)) as ?date


sum(?obsValue) as ?obsValue
WHERE { 
 GRAPH <http://rdfdata.eionet.europa.eu/eurostat/data/t2020_31.rdf.gz> 
  { 
    _:t2020_31 sdmx-dimension:timePeriod ?date . 
    #FILTER (xsd:string(?date) in ('2004-01-01', '2014-01-01', 'TARGET'))
    _:t2020_31 property:indic_eu _:indic_eu . 
    _:t2020_31 sdmx-dimension:refArea ?geo . 
    _:t2020_31 sdmx-attribute:unitMeasure _:unit . 
    _:t2020_31 sdmx-measure:obsValue ?obsValue .
  }
  _:unit skos:notation ?unit . 
  _:indic_eu skos:notation ?indic_eu . 
  ?geo rdfs:label ?ugeo .
}
GROUP BY ?date ?geo ?ugeo
ORDER BY ?ugeo ?date


Document Actions