next
previous
items

Data table via SPARQL

Average annual growth rates for different fuels

Data table via SPARQL Published 16 Dec 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)

product_label 2005_2012 1995_2012 2011_2012 1990_2012
"Gas" "-1.75"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.99"^^<http://www.w3.org/2001/XMLSchema#decimal> "-2.63"^^<http://www.w3.org/2001/XMLSchema#decimal> "1.35"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Nuclear heat" "-1.74"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.01"^^<http://www.w3.org/2001/XMLSchema#decimal> "-2.69"^^<http://www.w3.org/2001/XMLSchema#decimal> "0.47"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Renewable energies" "6.7"^^<http://www.w3.org/2001/XMLSchema#decimal> "4.78"^^<http://www.w3.org/2001/XMLSchema#decimal> "9.23"^^<http://www.w3.org/2001/XMLSchema#decimal> "4.42"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Solid fuels" "-1.13"^^<http://www.w3.org/2001/XMLSchema#decimal> "-1.28"^^<http://www.w3.org/2001/XMLSchema#decimal> "2.25"^^<http://www.w3.org/2001/XMLSchema#decimal> "-1.97"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Total petroleum products" "-2.52"^^<http://www.w3.org/2001/XMLSchema#decimal> "-0.87"^^<http://www.w3.org/2001/XMLSchema#decimal> "-3.6"^^<http://www.w3.org/2001/XMLSchema#decimal> "-0.56"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 5 rows in 0.002 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/average-annual-growth-rates-for/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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
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 skos: <http://www.w3.org/2004/02/skos/core#> 
PREFIX property: <http://rdfdata.eionet.europa.eu/eurostat/property#> 
PREFIX geo: <http://dd.eionet.europa.eu/vocabulary/eurostat/geo/>
PREFIX unit: <http://dd.eionet.europa.eu/vocabulary/eurostat/unit/>
PREFIX product: <http://dd.eionet.europa.eu/vocabulary/eurostat/product/>
PREFIX indic_nrg: <http://dd.eionet.europa.eu/vocabulary/eurostat/indic_nrg/>

SELECT 
?product_label

round(((bif:power((sum(?2012)/sum(?2005)),(1/7.0)))-1)*10000)/100.0 as ?2005_2012 
round(((bif:power((sum(?2012)/sum(?1995)),(1/17.0)))-1)*10000)/100.0 as ?1995_2012 
round((((sum(?2012)/sum(?2011)))-1)*10000)/100.0 as ?2011_2012
round(((bif:power((sum(?2012)/sum(?1990)),(1/22.0)))-1)*10000)/100.0 as ?1990_2012
{{


SELECT
?product_label

bif:either (year(?date) = 1990, sum(?B_100900) - COALESCE(sum(?B_101600),0), 0) as ?1990 
bif:either (year(?date) = 1995, sum(?B_100900) - COALESCE(sum(?B_101600),0), 0) as ?1995
bif:either (year(?date) = 2005, sum(?B_100900) - COALESCE(sum(?B_101600),0), 0) as ?2005 
bif:either (year(?date) = 2010, sum(?B_100900) - COALESCE(sum(?B_101600),0), 0) as ?2010 
bif:either (year(?date) = 2011, sum(?B_100900) - COALESCE(sum(?B_101600),0), 0) as ?2011
bif:either (year(?date) = 2012, sum(?B_100900) - COALESCE(sum(?B_101600),0), 0) as ?2012

WHERE {
  {  
    GRAPH <http://rdfdata.eionet.europa.eu/eurostat/data/nrg_100a.rdf.gz> 
    {
    _:nrg_100a sdmx-dimension:refArea geo:EU28 .
    _:nrg_100a sdmx-attribute:unitMeasure unit:1000TOE .
    _:nrg_100a sdmx-dimension:timePeriod ?date .
    
    _:nrg_100a property:product ?product . 
    FILTER (?product in (product:2000, product:3000, product:4000, product:5100, product:5500))

    {
      _:nrg_100a property:indic_nrg indic_nrg:B_100900 .
      _:nrg_100a sdmx-measure:obsValue ?B_100900 .
    } UNION {
      _:nrg_100a property:indic_nrg indic_nrg:B_101600 .
      _:nrg_100a sdmx-measure:obsValue ?B_101600 .
    }

    } 
    ?product rdfs:label ?product_label .
  }
}

GROUP BY ?date ?product_label ?product

}}
ORDER BY  ?product_label


Permalinks

Document Actions