next
previous
items

Data table via SPARQL

Change in total GHG emissions from transport

Data table via SPARQL Published 11 Jun 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 unfccc_crf_1990 unfccc_crf_2012 index
"Austria" "14029"^^<http://www.w3.org/2001/XMLSchema#decimal> "21636"^^<http://www.w3.org/2001/XMLSchema#decimal> "54.2"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Belgium" "20688"^^<http://www.w3.org/2001/XMLSchema#decimal> "24948"^^<http://www.w3.org/2001/XMLSchema#decimal> "20.6"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Bulgaria" "6794"^^<http://www.w3.org/2001/XMLSchema#decimal> "8420"^^<http://www.w3.org/2001/XMLSchema#decimal> "23.9"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Croatia" "4096"^^<http://www.w3.org/2001/XMLSchema#decimal> "5709"^^<http://www.w3.org/2001/XMLSchema#decimal> "39.4"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Cyprus" "1195"^^<http://www.w3.org/2001/XMLSchema#decimal> "2067"^^<http://www.w3.org/2001/XMLSchema#decimal> "73"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Czech Republic" "7756"^^<http://www.w3.org/2001/XMLSchema#decimal> "16909"^^<http://www.w3.org/2001/XMLSchema#decimal> "118"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Denmark" "10778"^^<http://www.w3.org/2001/XMLSchema#decimal> "12245"^^<http://www.w3.org/2001/XMLSchema#decimal> "13.6"^^<http://www.w3.org/2001/XMLSchema#decimal>
"EU15" "699874"^^<http://www.w3.org/2001/XMLSchema#decimal> "764711"^^<http://www.w3.org/2001/XMLSchema#decimal> "9.3"^^<http://www.w3.org/2001/XMLSchema#decimal>
"EU28" "782580"^^<http://www.w3.org/2001/XMLSchema#decimal> "893060"^^<http://www.w3.org/2001/XMLSchema#decimal> "14.1"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Estonia" "2460"^^<http://www.w3.org/2001/XMLSchema#decimal> "2279"^^<http://www.w3.org/2001/XMLSchema#decimal> "-7.4"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 30 rows in 0.001 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/change-in-total-ghg-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 sector: <http://reference.eionet.europa.eu/clrtap_nec_unfccc/unfccc_crf_sector/>


SELECT distinct
?country_name
sum(?unfccc_crf_1990) as ?unfccc_crf_1990
sum(?unfccc_crf_2012) as ?unfccc_crf_2012
(round(( ( sum(?unfccc_crf_2012) - sum(?unfccc_crf_1990) )/ sum(?unfccc_crf_1990) ) *1000))/10.0 as ?index

WHERE {
  { 
    GRAPH <http://r.eionet.europa.eu/rdfdumps/clrtap_nec_unfccc/unfccc_crf.rdf.gz> 
    {
      _:unfccc_crf clrtap_nec_unfccc:unit ?unit . FILTER (?unit = 'Gg CO2 equivalent')
      _:unfccc_crf clrtap_nec_unfccc:pollutant_name ?pollutant_name . 
      FILTER (?pollutant_name = 'All greenhouse gases - (CO2 equivalent)')
      
      _:unfccc_crf clrtap_nec_unfccc:country_code ?geo .
      _:unfccc_crf clrtap_nec_unfccc:sector_code sector:1.A.3 . 
      {
        _:unfccc_crf clrtap_nec_unfccc:year ?year . FILTER ((?year) = '1990')
        _:unfccc_crf clrtap_nec_unfccc:emissions ?unfccc_crf_1990 .
      } UNION {
        _:unfccc_crf clrtap_nec_unfccc:year ?year . FILTER ((?year) = '2012')
        _:unfccc_crf clrtap_nec_unfccc:emissions ?unfccc_crf_2012 .
      }
    }
    ?geo clrtap_nec_unfccc:country_name ?country_name .
  }
}
GROUP BY ?country_name
ORDER BY ?country_name


Permalinks

Document Actions