next
previous
items

Data table via SPARQL

National emissions (non-ETS)/EU

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

year difference unfccc_crf CITL
"2005"^^<http://www.w3.org/2001/XMLSchema#int> "3056"^^<http://www.w3.org/2001/XMLSchema#decimal> "5148"^^<http://www.w3.org/2001/XMLSchema#decimal> "2092"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2006"^^<http://www.w3.org/2001/XMLSchema#int> "3035"^^<http://www.w3.org/2001/XMLSchema#decimal> "5142"^^<http://www.w3.org/2001/XMLSchema#decimal> "2107"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2007"^^<http://www.w3.org/2001/XMLSchema#int> "2858"^^<http://www.w3.org/2001/XMLSchema#decimal> "5086"^^<http://www.w3.org/2001/XMLSchema#decimal> "2228"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2008"^^<http://www.w3.org/2001/XMLSchema#int> "2875"^^<http://www.w3.org/2001/XMLSchema#decimal> "4975"^^<http://www.w3.org/2001/XMLSchema#decimal> "2100"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2009"^^<http://www.w3.org/2001/XMLSchema#int> "2753"^^<http://www.w3.org/2001/XMLSchema#decimal> "4613"^^<http://www.w3.org/2001/XMLSchema#decimal> "1860"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2010"^^<http://www.w3.org/2001/XMLSchema#int> "2803"^^<http://www.w3.org/2001/XMLSchema#decimal> "4722"^^<http://www.w3.org/2001/XMLSchema#decimal> "1920"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2011"^^<http://www.w3.org/2001/XMLSchema#int> "2689"^^<http://www.w3.org/2001/XMLSchema#decimal> "4575"^^<http://www.w3.org/2001/XMLSchema#decimal> "1885"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2012"^^<http://www.w3.org/2001/XMLSchema#int> "2669"^^<http://www.w3.org/2001/XMLSchema#decimal> "4518"^^<http://www.w3.org/2001/XMLSchema#decimal> "1849"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 8 rows in 0.001 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/national-emissions-non-ets-eu/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#>
PREFIX CITL_v16: <http://semantic.eea.europa.eu/project/indicators/gap_filling_data/CITL_v16.tsv#>
PREFIX country: <http://reference.eionet.europa.eu/clrtap_nec_unfccc/country/>

SELECT
?year

round((( sum(?unfccc_crf_eu28) -sum(?unfccc_crf_hr)) - sum(?CITL_corrected) )/1000) as ?difference
round( (sum(?unfccc_crf_eu28) -sum(?unfccc_crf_hr))/1000 ) as ?unfccc_crf
#round(sum(?unfccc_crf)/1000) as ?unfccc_crf
round(sum(?CITL_corrected)/1000) as ?CITL
{{
SELECT
xsd:integer(?year) as ?year
?geo
round(sum(?value)/1000) as ?CITL

sum(?unfccc_crf_eu28) as ?unfccc_crf_eu28
sum(?unfccc_crf_hr) as ?unfccc_crf_hr
#sum(?unfccc_crf) as ?unfccc_crf
(round((sum(?value) + sum(?value_ve) - sum(?value_sc) )/1000)) as ?CITL_corrected

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:sector_code ?sector_code . 
      FILTER (?sector_code in (sector:1, sector:2, sector:3, sector:4, sector:6, sector:7))
      _: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 ('2005','2006','2007','2008','2009','2010','2011','2012'))
      {
        _:unfccc_crf clrtap_nec_unfccc:country_code country:EU28 . 
        _:unfccc_crf clrtap_nec_unfccc:emissions ?unfccc_crf_eu28 .
      } UNION {
        _:unfccc_crf clrtap_nec_unfccc:country_code country:HR . 
        _:unfccc_crf clrtap_nec_unfccc:emissions ?unfccc_crf_hr .
      }
    }
    _:unfccc_crf clrtap_nec_unfccc:country_code ?country_code .
    ?country_code rdf-schema:label ?geo .
  
  } UNION {

  GRAPH <http://semantic.eea.europa.eu/project/indicators/gap_filling_data/CITL_v16.tsv> 
  {
  _:CITL_v16_bn CITL_v16:country_code ?geo .
  _:CITL_v16_bn CITL_v16:main_activity_sector_name ?main_activity_sector_name . 
  _:CITL_v16_bn CITL_v16:ETS_information ?ETS_information . 
  _:CITL_v16_bn CITL_v16:year ?year . FILTER (?year <= 2012)  
  _:CITL_v16_bn CITL_v16:value ?value .

  _:CITL_v16_ve CITL_v16:country_code ?geo .
  _:CITL_v16_ve CITL_v16:main_activity_sector_name ?main_activity_sector_name . 
  _:CITL_v16_ve CITL_v16:ETS_information ?ETS_information_ve . 
  _:CITL_v16_ve CITL_v16:year ?year_ve . FILTER (?year_ve = 2012)  
  _:CITL_v16_ve CITL_v16:value ?value_ve . 

  FILTER (?ETS_information in ('Verified emissions (scope corrected)'))

  _:CITL_v16_sc CITL_v16:country_code ?geo .
  _:CITL_v16_sc CITL_v16:main_activity_sector_name ?main_activity_sector_name . 
  _:CITL_v16_sc CITL_v16:ETS_information ?ETS_information . 
  _:CITL_v16_sc CITL_v16:year ?year_ve . FILTER (?year_ve = 2012)  
  _:CITL_v16_sc CITL_v16:value ?value_sc .

  FILTER (?ETS_information_ve in ('Verified emissions'))

  FILTER (?main_activity_sector_name = '20-99 All installations')    
  FILTER (?geo in   ('AT','BE','BG','CY','CZ','DE','DK','EE','ES','FI','FR','GB','GR','HU','IE','IT','LT','LU','LV','MT','NL','PL','PT','RO','SE','SI','SK'))
  } 
 }
}
GROUP BY ?year ?geo
ORDER BY  ?year
}}
GROUP BY ?year


Permalinks

Document Actions