next
previous
items

Data table via SPARQL

Change of CO2 eq. emissions per main sectors

Data table via SPARQL Published 03 Dec 2015 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 start_yeay end_year difference
"1.A.1 - Energy Industries" "1659.9"^^<http://www.w3.org/2001/XMLSchema#decimal> "1331.3"^^<http://www.w3.org/2001/XMLSchema#decimal> "-328.6"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1.A.2 - Manufacturing Industries and Construction" "865.2"^^<http://www.w3.org/2001/XMLSchema#decimal> "503"^^<http://www.w3.org/2001/XMLSchema#decimal> "-362.2"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1.A.3 - Transport" "785.9"^^<http://www.w3.org/2001/XMLSchema#decimal> "887.5"^^<http://www.w3.org/2001/XMLSchema#decimal> "101.6"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1.A.4 - Other Sectors" "818.7"^^<http://www.w3.org/2001/XMLSchema#decimal> "703.9"^^<http://www.w3.org/2001/XMLSchema#decimal> "-114.8"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1.A.5 - Other Other Sectors" "23.4"^^<http://www.w3.org/2001/XMLSchema#decimal> "6.7"^^<http://www.w3.org/2001/XMLSchema#decimal> "-16.6"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1.B - Fugitive Emissions from Fuels" "203.1"^^<http://www.w3.org/2001/XMLSchema#decimal> "91.7"^^<http://www.w3.org/2001/XMLSchema#decimal> "-111.5"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1.D.1.a - International Aviation" "69.5"^^<http://www.w3.org/2001/XMLSchema#decimal> "134.2"^^<http://www.w3.org/2001/XMLSchema#decimal> "64.7"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1.D.1.b - International Navigation" "108.8"^^<http://www.w3.org/2001/XMLSchema#decimal> "139.6"^^<http://www.w3.org/2001/XMLSchema#decimal> "30.8"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2 - Industrial Processes and Product Use" "510.6"^^<http://www.w3.org/2001/XMLSchema#decimal> "360.2"^^<http://www.w3.org/2001/XMLSchema#decimal> "-150.4"^^<http://www.w3.org/2001/XMLSchema#decimal>
"3 - Agriculture" "569.2"^^<http://www.w3.org/2001/XMLSchema#decimal> "440.7"^^<http://www.w3.org/2001/XMLSchema#decimal> "-128.5"^^<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-1/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 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 DISTINCT
?sector 
round(sum(?start_year)/100)/10.0 as ?start_yeay
round(sum(?end_year)  /100)/10.0 as ?end_year
round(( sum(?end_year) - sum(?start_year) )/100)/10.0 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:2, sector:3, sector:5, 
               sector:1.D.1.a, sector:1.D.1.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 ('2013'))
        _:unfccc_crf clrtap_nec_unfccc:emissions ?end_year .
      }
    }
    ?sector_code rdf-schema:label ?sector .
  }
}
ORDER BY ?sector


Permalinks

Document Actions