next
previous
items

Data table via SPARQL

Change of CO2 eq. emissions per main sectors

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

sector 1990 2012 difference
"1.A.1. Energy Industries" "1676.232"^^<http://www.w3.org/2001/XMLSchema#decimal> "1408.894"^^<http://www.w3.org/2001/XMLSchema#decimal> "-267.338"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1.A.5. Other (Not elsewhere specified)" "28.761"^^<http://www.w3.org/2001/XMLSchema#decimal> "9"^^<http://www.w3.org/2001/XMLSchema#decimal> "-19.761"^^<http://www.w3.org/2001/XMLSchema#decimal>
"4. Agriculture" "617.158"^^<http://www.w3.org/2001/XMLSchema#decimal> "469.104"^^<http://www.w3.org/2001/XMLSchema#decimal> "-148.054"^^<http://www.w3.org/2001/XMLSchema#decimal>
"International aviation" "69.892"^^<http://www.w3.org/2001/XMLSchema#decimal> "134.588"^^<http://www.w3.org/2001/XMLSchema#decimal> "64.696"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1.A.4. Other Sectors" "820.725"^^<http://www.w3.org/2001/XMLSchema#decimal> "679.257"^^<http://www.w3.org/2001/XMLSchema#decimal> "-141.468"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1.A.3. Transport" "782.58"^^<http://www.w3.org/2001/XMLSchema#decimal> "893.06"^^<http://www.w3.org/2001/XMLSchema#decimal> "110.48"^^<http://www.w3.org/2001/XMLSchema#decimal>
"6. Waste" "205.579"^^<http://www.w3.org/2001/XMLSchema#decimal> "140.803"^^<http://www.w3.org/2001/XMLSchema#decimal> "-64.776"^^<http://www.w3.org/2001/XMLSchema#decimal>
"International maritime transport" "110.165"^^<http://www.w3.org/2001/XMLSchema#decimal> "145.625"^^<http://www.w3.org/2001/XMLSchema#decimal> "35.46"^^<http://www.w3.org/2001/XMLSchema#decimal>
"International Bunkers" "180.057"^^<http://www.w3.org/2001/XMLSchema#decimal> "280.213"^^<http://www.w3.org/2001/XMLSchema#decimal> "100.156"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1.A.2. Manufacturing Industries and Construction" "860.513"^^<http://www.w3.org/2001/XMLSchema#decimal> "533.06"^^<http://www.w3.org/2001/XMLSchema#decimal> "-327.453"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 11 rows in 0.001 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/change-absolute-change-of-co2-eq/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/>
PREFIX rdf-schema: <http://www.w3.org/2000/01/rdf-schema#>


SELECT 
?sector 
sum(?start_year)/1000 as ?1990 
sum(?end_year)/1000 as ?2012 
( sum(?end_year) - sum(?start_year) )/1000 as ?difference

WHERE {
  { 
    GRAPH <http://r.eionet.europa.eu/rdfdumps/clrtap_nec_unfccc/unfccc_crf.rdf.gz> 
    {
      _:unfccc_crf clrtap_nec_unfccc:country_code ?country_code . FILTER (?country_code in (geo:EU28 ))
      _:unfccc_crf clrtap_nec_unfccc:unit ?unit . FILTER (?unit = 'Gg CO2 equivalent')
   
      _:unfccc_crf clrtap_nec_unfccc:sector_code ?sector_code . 
      FILTER (?sector_code in (sector:1.A.1, sector:1.A.2, sector:1.A.3, sector:1.A.4, sector:1.A.5, sector:1.B, sector:4, sector:6, sector:1.C1, sector:1.C1.A, sector:1.C1.B))
      _:unfccc_crf clrtap_nec_unfccc:pollutant_name ?pollutant_name . 
      FILTER (?pollutant_name = 'All greenhouse gases - (CO2 equivalent)')

      {
        _:unfccc_crf clrtap_nec_unfccc:year ?year . FILTER (?year in ('1990'))
        _:unfccc_crf clrtap_nec_unfccc:emissions ?start_year .
      } UNION {
        _:unfccc_crf clrtap_nec_unfccc:year ?year . FILTER (?year in ('2012'))
        _:unfccc_crf clrtap_nec_unfccc:emissions ?end_year .
      }
    }
    ?sector_code rdf-schema:label ?sector .
  }
}




Permalinks

Document Actions