next
previous
items

Data table via SPARQL

GHG PROXY 2014 non ETS emissions

Data table via SPARQL Published 08 Dec 2015 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
"Austria" "2014 ESD emissions (proxy)" "48.09"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Belgium" "2014 ESD emissions (proxy)" "71.67"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Bulgaria" "2014 ESD emissions (proxy)" "24.27"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Croatia" "2014 ESD emissions (proxy)" "16.25"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Cyprus" "2014 ESD emissions (proxy)" "3.98"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Czech Republic" "2014 ESD emissions (proxy)" "61.99"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Denmark" "2014 ESD emissions (proxy)" "32.36"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Estonia" "2014 ESD emissions (proxy)" "5.53"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Finland" "2014 ESD emissions (proxy)" "31.13"^^<http://www.w3.org/2001/XMLSchema#decimal>
"France" "2014 ESD emissions (proxy)" "349.88"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 28 rows in 0.001 seconds.


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



http://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_v19: <http://semantic.eea.europa.eu/project/indicators/gap_filling_data/CITL_v19.tsv#>
PREFIX proxy_2014: <http://semantic.eea.europa.eu/project/proxy/proxy_2014.txt#>

SELECT 
?ugeo as ?geo
'2014 ESD emissions (proxy)' as ?year

#sum(?unfccc_crf_all_sectors) as ?unfccc_crf_all_sectors
#sum(?CITL_v19) as ?CITL_v19
#sum(xsd:decimal(?proxy)) as ?proxy
#sum(?unfccc_crf_1_a_3_a) as ?unfccc_crf_1_a_3_a

round(( sum(xsd:decimal(?proxy)) - sum(?CITL_v19)/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 ?geo .       
      FILTER (?geo != geo:EU28)
      _:unfccc_crf clrtap_nec_unfccc:year ?year . FILTER (?year in ('2013'))
      {
        _: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: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 .
      }
    }
  } UNION {  

  GRAPH <http://semantic.eea.europa.eu/project/proxy/proxy_2014.txt> 
  {
      _:proxy_2014 proxy_2014:country_code ?geo . 
      FILTER (?geo != geo:EU28)
      _:proxy_2014 proxy_2014:year ?year .
      _:proxy_2014 proxy_2014:total ?proxy .
  } 
  } UNION {  

  GRAPH <http://semantic.eea.europa.eu/project/indicators/gap_filling_data/CITL_v19.tsv> 
  {
    _:CITL_v19 CITL_v19:country_code ?geo .
    _:CITL_v19 CITL_v19:main_activity_sector_name ?main_activity_sector_name . 
    FILTER (?main_activity_sector_name = '20-99 All stationary installations')
    _:CITL_v19 CITL_v19:ETS_information ?ETS_information . 
    FILTER (?ETS_information in ('2. Verified emissions'))
    _:CITL_v19 CITL_v19:year ?year . FILTER (?year = '2014')
    _:CITL_v19 CITL_v19:value ?CITL_v19 .
    _:CITL_v19 CITL_v19:unit ?unit .
  } 
 }
?geo rdf-schema:label ?ugeo .
FILTER (?geo != geo:NO and ?geo != geo:LI and ?geo != geo:IS)
}
GROUP BY ?ugeo

ORDER BY ?year ?ugeo


Permalinks

Document Actions