next
previous
items

Data table via SPARQL

EU historic emissions of greenhouse gas trends and projections until 2050

Data table via SPARQL Published 09 Oct 2014 Last modified 20 Apr 2016

Download this dataset

Dataset preview

(Live Query)

date eu_historic_emissions
"1990" "5696.2"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1991" "5590.7"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1992" "5399.3"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1993" "5302"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1994" "5280.4"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1995" "5339.9"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1996" "5451.5"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1997" "5356"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1998" "5323.6"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1999" "5221.4"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 23 rows in 0.001 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/eu-historic-emissions-of-greenhouse/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 rdf-schema: <http://www.w3.org/2000/01/rdf-schema#>
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 distinct
?date
round(sum(?emissions)/100)/10.0 as ?eu_historic_emissions
WHERE {
{ 
 GRAPH <http://r.eionet.europa.eu/rdfdumps/clrtap_nec_unfccc/unfccc_crf.rdf.gz> 
  {
    _:unfccc_crf clrtap_nec_unfccc:year ?date . FILTER (?date != 'Kyoto Base-year')
    _:unfccc_crf clrtap_nec_unfccc:country_code geo:EU28 .
    _:unfccc_crf clrtap_nec_unfccc:sector_code ?sector_code . 
    FILTER (?sector_code in (sector:NT_excl,sector:1.C1.A))
    _:unfccc_crf clrtap_nec_unfccc:pollutant_name ?pollutant_name . 
    FILTER (?pollutant_name= 'All greenhouse gases - (CO2 equivalent)')
    _:unfccc_crf clrtap_nec_unfccc:emissions ?emissions .
  } 
 }
}
GROUP BY ?date
ORDER BY ?date


Permalinks

Document Actions