next
previous
items

Data table via SPARQL

GHG 2012 non ETS emissions

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

geo year value
"AT" "2012"^^<http://www.w3.org/2001/XMLSchema#int> "51.62"^^<http://www.w3.org/2001/XMLSchema#decimal>
"BE" "2012"^^<http://www.w3.org/2001/XMLSchema#int> "73.49"^^<http://www.w3.org/2001/XMLSchema#decimal>
"BG" "2012"^^<http://www.w3.org/2001/XMLSchema#int> "25.96"^^<http://www.w3.org/2001/XMLSchema#decimal>
"CY" "2012"^^<http://www.w3.org/2001/XMLSchema#int> "4.85"^^<http://www.w3.org/2001/XMLSchema#decimal>
"CZ" "2012"^^<http://www.w3.org/2001/XMLSchema#int> "62.14"^^<http://www.w3.org/2001/XMLSchema#decimal>
"DE" "2012"^^<http://www.w3.org/2001/XMLSchema#int> "484.61"^^<http://www.w3.org/2001/XMLSchema#decimal>
"DK" "2012"^^<http://www.w3.org/2001/XMLSchema#int> "33.32"^^<http://www.w3.org/2001/XMLSchema#decimal>
"EE" "2012"^^<http://www.w3.org/2001/XMLSchema#int> "5.64"^^<http://www.w3.org/2001/XMLSchema#decimal>
"ES" "2012"^^<http://www.w3.org/2001/XMLSchema#int> "202.03"^^<http://www.w3.org/2001/XMLSchema#decimal>
"FI" "2012"^^<http://www.w3.org/2001/XMLSchema#int> "31.27"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 27 rows in 0.014 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/ghg-non-ets-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 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#>

SELECT 
?geo
2012 as ?year
round(( sum(?unfccc_crf_all_sectors) - sum(?CITL_v16)/1000 - sum(?unfccc_crf_1_a_3_a) )/10)/100.0 as ?value
WHERE {
  { 
    GRAPH <http://r.eionet.europa.eu/rdfdumps/clrtap_nec_unfccc/unfccc_crf.rdf.gz> 
    {
      _:unfccc_crf clrtap_nec_unfccc:country_code ?country_code .
      _:unfccc_crf clrtap_nec_unfccc:year ?year . FILTER (?year in ('2012'))
      {
        _: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: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:emissions ?unfccc_crf_all_sectors .
      } UNION {
        _:unfccc_crf clrtap_nec_unfccc:unit ?unit . FILTER (?unit = 'Gg')
        _:unfccc_crf clrtap_nec_unfccc:pollutant_name ?pollutant_name . 
        FILTER (?pollutant_name = 'CO2')
        _:unfccc_crf clrtap_nec_unfccc:sector_code ?sector_code . 
        FILTER (?sector_code in (sector:1.A.3.A))
        _:unfccc_crf clrtap_nec_unfccc:emissions ?unfccc_crf_1_a_3_a .

      }
      
    }
    ?country_code rdf-schema:label ?geo .
  } UNION {

  GRAPH <http://semantic.eea.europa.eu/project/indicators/gap_filling_data/CITL_v16.tsv> 
  {
  _:CITL_v16 CITL_v16:country_code ?geo .
  _:CITL_v16 CITL_v16:main_activity_sector_name ?main_activity_sector_name . FILTER (?main_activity_sector_name = '20-99 All installations')
  _:CITL_v16 CITL_v16:ETS_information ?ETS_information . FILTER (?ETS_information in ('Verified emissions'))
  _:CITL_v16 CITL_v16:year ?year . FILTER (?year = 2012)
  _:CITL_v16 CITL_v16:value ?CITL_v16 .
  _:CITL_v16 CITL_v16:unit ?unit .
  } 
 }
}
GROUP BY ?geo
HAVING ( sum(?unfccc_crf_all_sectors) - sum(?CITL_v16)/1000 - sum(?unfccc_crf_1_a_3_a) )  > 0
ORDER BY ?year ?geo


Permalinks

Document Actions