next
previous
items

Data table via SPARQL

Final energy intensity of services sector (2000=100), EU28

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

date sector index nrg_100a nama_nace10_k
"2000"^^<http://www.w3.org/2001/XMLSchema#int> "Services" "100"^^<http://www.w3.org/2001/XMLSchema#decimal> "260912.2"^^<http://www.w3.org/2001/XMLSchema#decimal> "44790967"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2001"^^<http://www.w3.org/2001/XMLSchema#int> "Services" "107"^^<http://www.w3.org/2001/XMLSchema#decimal> "286238"^^<http://www.w3.org/2001/XMLSchema#decimal> "45917438.3"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2002"^^<http://www.w3.org/2001/XMLSchema#int> "Services" "103"^^<http://www.w3.org/2001/XMLSchema#decimal> "280865.8"^^<http://www.w3.org/2001/XMLSchema#decimal> "46693850.4"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2003"^^<http://www.w3.org/2001/XMLSchema#int> "Services" "108"^^<http://www.w3.org/2001/XMLSchema#decimal> "298709.6"^^<http://www.w3.org/2001/XMLSchema#decimal> "47551543.6"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2004"^^<http://www.w3.org/2001/XMLSchema#int> "Services" "107"^^<http://www.w3.org/2001/XMLSchema#decimal> "303025.2"^^<http://www.w3.org/2001/XMLSchema#decimal> "48638613.1"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2005"^^<http://www.w3.org/2001/XMLSchema#int> "Services" "108"^^<http://www.w3.org/2001/XMLSchema#decimal> "312994"^^<http://www.w3.org/2001/XMLSchema#decimal> "49900880.9"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2006"^^<http://www.w3.org/2001/XMLSchema#int> "Services" "107"^^<http://www.w3.org/2001/XMLSchema#decimal> "322653.8"^^<http://www.w3.org/2001/XMLSchema#decimal> "51536590.1"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2007"^^<http://www.w3.org/2001/XMLSchema#int> "Services" "99"^^<http://www.w3.org/2001/XMLSchema#decimal> "306628.8"^^<http://www.w3.org/2001/XMLSchema#decimal> "53355075.6"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2008"^^<http://www.w3.org/2001/XMLSchema#int> "Services" "103"^^<http://www.w3.org/2001/XMLSchema#decimal> "323339.2"^^<http://www.w3.org/2001/XMLSchema#decimal> "54080458.3"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2009"^^<http://www.w3.org/2001/XMLSchema#int> "Services" "103"^^<http://www.w3.org/2001/XMLSchema#decimal> "317308.4"^^<http://www.w3.org/2001/XMLSchema#decimal> "52826986.1"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 14 rows in 0.001 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/final-energy-intensity-of-services/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/>
PREFIX indic_na: <http://dd.eionet.europa.eu/vocabulary/eurostat/indic_na/>
PREFIX nace_r2: <http://dd.eionet.europa.eu/vocabulary/eurostat/nace_r2/>

SELECT DISTINCT
year(?date) as ?date
'Services' as ?sector
round(( ( sum(?nrg_100a)/sum(?nama_nace10_k) ) / ( sum(?nrg_100a_idx)/sum(?nama_nace10_k_idx) ) )*100) as ?index 
sum(?nrg_100a) as ?nrg_100a 
sum(?nama_nace10_k) as ?nama_nace10_k

WHERE {
  { 
  GRAPH <http://rdfdata.eionet.europa.eu/eurostat/data/nama_nace10_k.rdf.gz> 
    {
      _:nama_nace10_k sdmx-dimension:timePeriod ?date .
      _:nama_nace10_k sdmx-dimension:refArea geo:EU28 . 
      _:nama_nace10_k property:indic_na indic_na:B1G . 
      _:nama_nace10_k sdmx-attribute:unitMeasure unit:MIO_EUR_CLV2005 . 
      _:nama_nace10_k property:nace_r2 ?nace_r2 . 
      FILTER (?nace_r2 in (nace_r2:G-I, nace_r2:J, nace_r2:K, nace_r2:L, nace_r2:M_N, nace_r2:O-Q, nace_r2:R-U))
      _:nama_nace10_k sdmx-measure:obsValue ?nama_nace10_k .

      _:nama_nace10_k_idx sdmx-dimension:timePeriod ?date_idx . FILTER (year(?date_idx) = 2000)
      _:nama_nace10_k_idx sdmx-dimension:refArea geo:EU28 . 
      _:nama_nace10_k_idx property:indic_na indic_na:B1G . 
      _:nama_nace10_k_idx sdmx-attribute:unitMeasure unit:MIO_EUR_CLV2005 . 
      _:nama_nace10_k_idx property:nace_r2 ?nace_r2_idx . 
      FILTER (?nace_r2_idx in (nace_r2:G-I, nace_r2:J, nace_r2:K, nace_r2:L, nace_r2:M_N, nace_r2:O-Q, nace_r2:R-U))
      _:nama_nace10_k_idx sdmx-measure:obsValue ?nama_nace10_k_idx .

    }
  } UNION {
  GRAPH <http://rdfdata.eionet.europa.eu/eurostat/data/nrg_100a.rdf.gz>
    {
      _:nrg_100a sdmx-dimension:timePeriod ?date .
      _:nrg_100a sdmx-attribute:unitMeasure unit:1000TOE .
      _:nrg_100a sdmx-dimension:refArea geo:EU28 .
      _:nrg_100a property:product product:0000 .
      _:nrg_100a property:indic_nrg ?indic_nrg .
      FILTER (?indic_nrg IN (indic_nrg:B_102035, indic_nrg:B_102040))
      _:nrg_100a sdmx-measure:obsValue ?nrg_100a .

      _:nrg_100a_idx sdmx-dimension:timePeriod ?date_idx . FILTER (year(?date_idx) = 2000)
      _:nrg_100a_idx sdmx-attribute:unitMeasure unit:1000TOE .
      _:nrg_100a_idx sdmx-dimension:refArea geo:EU28 .
      _:nrg_100a_idx property:product product:0000 .
      _:nrg_100a_idx property:indic_nrg ?indic_nrg_idx .
      FILTER (?indic_nrg_idx IN (indic_nrg:B_102035, indic_nrg:B_102040))
      _:nrg_100a_idx sdmx-measure:obsValue ?nrg_100a_idx .

      } 
  }

  FILTER (year(?date) >= 2000)
}
GROUP BY year(?date)
ORDER BY ?date


Permalinks

Document Actions