next
previous
items

Data table via SPARQL

Change in Greenhouse gas emissions by EU Member State,2000,2011

Data table via SPARQL Published 07 May 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_name difference 2010 2011
"EU15" "-153.23"^^<http://www.w3.org/2001/XMLSchema#decimal> "3803200"^^<http://www.w3.org/2001/XMLSchema#int> "3649967"^^<http://www.w3.org/2001/XMLSchema#int>
"EU28" "-147.81"^^<http://www.w3.org/2001/XMLSchema#decimal> "4751060"^^<http://www.w3.org/2001/XMLSchema#int> "4603245"^^<http://www.w3.org/2001/XMLSchema#int>
"United Kingdom" "-42.84"^^<http://www.w3.org/2001/XMLSchema#decimal> "605592"^^<http://www.w3.org/2001/XMLSchema#int> "562753"^^<http://www.w3.org/2001/XMLSchema#int>
"France" "-26.44"^^<http://www.w3.org/2001/XMLSchema#decimal> "516447"^^<http://www.w3.org/2001/XMLSchema#int> "490010"^^<http://www.w3.org/2001/XMLSchema#int>
"Germany" "-17.69"^^<http://www.w3.org/2001/XMLSchema#decimal> "946388"^^<http://www.w3.org/2001/XMLSchema#int> "928695"^^<http://www.w3.org/2001/XMLSchema#int>
"Netherlands" "-14.22"^^<http://www.w3.org/2001/XMLSchema#decimal> "209286"^^<http://www.w3.org/2001/XMLSchema#int> "195064"^^<http://www.w3.org/2001/XMLSchema#int>
"Italy" "-12.76"^^<http://www.w3.org/2001/XMLSchema#decimal> "499359"^^<http://www.w3.org/2001/XMLSchema#int> "486601"^^<http://www.w3.org/2001/XMLSchema#int>
"Belgium" "-10.46"^^<http://www.w3.org/2001/XMLSchema#decimal> "130611"^^<http://www.w3.org/2001/XMLSchema#int> "120146"^^<http://www.w3.org/2001/XMLSchema#int>
"Finland" "-7.54"^^<http://www.w3.org/2001/XMLSchema#decimal> "74397"^^<http://www.w3.org/2001/XMLSchema#int> "66861"^^<http://www.w3.org/2001/XMLSchema#int>
"Denmark" "-4.88"^^<http://www.w3.org/2001/XMLSchema#decimal> "61402"^^<http://www.w3.org/2001/XMLSchema#int> "56518"^^<http://www.w3.org/2001/XMLSchema#int>

Received 30 rows in 0.031 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/change-in-greenhouse-gas-emissions/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 clrtap_nec_unfccc: <http://reference.eionet.europa.eu/clrtap_nec_unfccc/schema/>
PREFIX geo: <http://reference.eionet.europa.eu/clrtap_nec_unfccc/country/>
PREFIX sector: <http://reference.eionet.europa.eu/clrtap_nec_unfccc/unfccc_crf_sector/>

SELECT
?country_name
(round(( sum(?end_year)-sum(?start_year) )/10))/100.0 as ?difference
(round(sum(?start_year)*10))/10 as ?2010
(round(sum(?end_year)*10))/10 as ?2011
WHERE {
  { 
    GRAPH <http://r.eionet.europa.eu/rdfdumps/clrtap_nec_unfccc/unfccc_crf.rdf.gz> 
    {
      _:unfccc_crf clrtap_nec_unfccc:country_code ?country_code .
      _:unfccc_crf clrtap_nec_unfccc:unit ?unit . 
      _:unfccc_crf clrtap_nec_unfccc:pollutant_name ?pollutant_name .
      _:unfccc_crf clrtap_nec_unfccc:sector_code ?sector_code . 

      {
        _:unfccc_crf clrtap_nec_unfccc:year ?year . FILTER (?year in ('2010'))
        _:unfccc_crf clrtap_nec_unfccc:emissions ?start_year .
      } UNION {
        _:unfccc_crf clrtap_nec_unfccc:year ?year . FILTER (?year in ('2011'))
        _:unfccc_crf clrtap_nec_unfccc:emissions ?end_year .
      }
    } 
  }
  ?country_code rdfs:label ?country_name .
  FILTER (?sector_code in (sector:NT_excl))
  FILTER (?unit = 'Gg CO2 equivalent')
  FILTER (?pollutant_name = 'All greenhouse gases - (CO2 equivalent)') 
}
GROUP BY ?country_name
ORDER BY ?difference


Permalinks

Document Actions