next
previous
items

Data table via SPARQL

EU projections of greenhouse gas trends and projections until 2050

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

Download this dataset

Dataset preview

(Live Query)

date WAM WEM
"2010" "4872.4"^^<http://www.w3.org/2001/XMLSchema#decimal> "4872.4"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2011" "4800.8"^^<http://www.w3.org/2001/XMLSchema#decimal> "4823.3"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2012" "4765.3"^^<http://www.w3.org/2001/XMLSchema#decimal> "4800.6"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2013" "4681.3"^^<http://www.w3.org/2001/XMLSchema#decimal> "4734.2"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2014" "4613.7"^^<http://www.w3.org/2001/XMLSchema#decimal> "4682.9"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2015" "4550"^^<http://www.w3.org/2001/XMLSchema#decimal> "4634.5"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2016" "4488.9"^^<http://www.w3.org/2001/XMLSchema#decimal> "4597.8"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2017" "4444.6"^^<http://www.w3.org/2001/XMLSchema#decimal> "4577.4"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2018" "4398.6"^^<http://www.w3.org/2001/XMLSchema#decimal> "4555.5"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2019" "4358"^^<http://www.w3.org/2001/XMLSchema#decimal> "4538.7"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 13 rows in 0.001 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/eu-projections-of-greenhouse-gas/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 tableFile: <http://semantic.eea.europa.eu/project/ghg_projections/ghg_projections.tsv#>
PREFIX country: <http://reference.eionet.europa.eu/clrtap_nec_unfccc/country/>

SELECT DISTINCT
?date
round(sum(?WAM)/100)/10.0 as ?WAM 
round(sum(?WEM)/100)/10.0 as ?WEM 

FROM <http://semantic.eea.europa.eu/project/ghg_projections/ghg_projections.tsv>
WHERE {
 _:ghg_projections tableFile:country_code ?country_code .
 FILTER (?country_code != country:NO and ?country_code != country:CH and ?country_code != country:LI)
 _:ghg_projections tableFile:sector ?sector . 
 FILTER (?sector in ('Total (excl. LULUCF)', 'Internat.Bunkers: Aviation'))
 _:ghg_projections tableFile:year ?date . 
 FILTER (?date != 'Ref 2010' and ?date != 'Ref 2011' and ?date != 'Ref 2012')
 #FILTER (xsd:integer:(?date) <= 2021 and xsd:integer:(?date) = 2025 and and xsd:integer:(?date) = 2030)
 FILTER (?date in ('2010', '2011', '2012', '2013', '2014', '2015', '2016', '2017', '2018', '2019', '2020', '2025', '2030'))
 _:ghg_projections tableFile:pollutant_name ?pollutant_name . 
 FILTER (?pollutant_name = 'Total GHG (Gg CO2 equivalent)')
 {
   _:ghg_projections tableFile:scenario ?scenario . 
   FILTER (?scenario = 'WEM')
   _:ghg_projections tableFile:emissions ?WEM .
 } UNION {
   _:ghg_projections tableFile:scenario ?scenario . 
   FILTER (?scenario = 'WAM')
   _:ghg_projections tableFile:emissions ?WAM .
 }
}
GROUP BY ?date
ORDER BY ?date


Permalinks

Document Actions