next
previous
items

Data table via SPARQL

Co2 emissions by country according to unfccc

Data table via SPARQL Published 16 Oct 2020 Last modified 23 Jan 2021

Download this dataset

Dataset preview

(Live Query)

date country_code country_code_iso2 geo unfccc_crf
"2018-01-01"^^<http://www.w3.org/2001/XMLSchema#date> <http://reference.eionet.europa.eu/clrtap_nec_unfccc/country/AT> "AT" <http://dd.eionet.europa.eu/vocabulary/eurostat/geo/AT> "6909.16571"^^<http://www.w3.org/2001/XMLSchema#double>
"2017-01-01"^^<http://www.w3.org/2001/XMLSchema#date> <http://reference.eionet.europa.eu/clrtap_nec_unfccc/country/AT> "AT" <http://dd.eionet.europa.eu/vocabulary/eurostat/geo/AT> "7840.67482"^^<http://www.w3.org/2001/XMLSchema#double>
"2016-01-01"^^<http://www.w3.org/2001/XMLSchema#date> <http://reference.eionet.europa.eu/clrtap_nec_unfccc/country/AT> "AT" <http://dd.eionet.europa.eu/vocabulary/eurostat/geo/AT> "7146.48224"^^<http://www.w3.org/2001/XMLSchema#double>
"2015-01-01"^^<http://www.w3.org/2001/XMLSchema#date> <http://reference.eionet.europa.eu/clrtap_nec_unfccc/country/AT> "AT" <http://dd.eionet.europa.eu/vocabulary/eurostat/geo/AT> "7352.9188"^^<http://www.w3.org/2001/XMLSchema#double>
"2014-01-01"^^<http://www.w3.org/2001/XMLSchema#date> <http://reference.eionet.europa.eu/clrtap_nec_unfccc/country/AT> "AT" <http://dd.eionet.europa.eu/vocabulary/eurostat/geo/AT> "6337.12106"^^<http://www.w3.org/2001/XMLSchema#double>
"2013-01-01"^^<http://www.w3.org/2001/XMLSchema#date> <http://reference.eionet.europa.eu/clrtap_nec_unfccc/country/AT> "AT" <http://dd.eionet.europa.eu/vocabulary/eurostat/geo/AT> "7855.13763"^^<http://www.w3.org/2001/XMLSchema#double>
"2012-01-01"^^<http://www.w3.org/2001/XMLSchema#date> <http://reference.eionet.europa.eu/clrtap_nec_unfccc/country/AT> "AT" <http://dd.eionet.europa.eu/vocabulary/eurostat/geo/AT> "8850.8173"^^<http://www.w3.org/2001/XMLSchema#double>
"2011-01-01"^^<http://www.w3.org/2001/XMLSchema#date> <http://reference.eionet.europa.eu/clrtap_nec_unfccc/country/AT> "AT" <http://dd.eionet.europa.eu/vocabulary/eurostat/geo/AT> "10362.52143"^^<http://www.w3.org/2001/XMLSchema#double>
"2010-01-01"^^<http://www.w3.org/2001/XMLSchema#date> <http://reference.eionet.europa.eu/clrtap_nec_unfccc/country/AT> "AT" <http://dd.eionet.europa.eu/vocabulary/eurostat/geo/AT> "10748.86614"^^<http://www.w3.org/2001/XMLSchema#double>
"2009-01-01"^^<http://www.w3.org/2001/XMLSchema#date> <http://reference.eionet.europa.eu/clrtap_nec_unfccc/country/AT> "AT" <http://dd.eionet.europa.eu/vocabulary/eurostat/geo/AT> "9502.48031"^^<http://www.w3.org/2001/XMLSchema#double>

Received 1063 rows in 0.102 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/co2-emissions-by-country-according/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



https://semantic.eea.europa.eu/sparql

PREFIX skos: <http://www.w3.org/2004/02/skos/core#> 
PREFIX clrtap_nec_unfccc: <http://reference.eionet.europa.eu/clrtap_nec_unfccc/schema/>
PREFIX unfccc_geo: <http://reference.eionet.europa.eu/clrtap_nec_unfccc/country/>
PREFIX common_countries: <http://dd.eionet.europa.eu/vocabulary/common/countries/>
PREFIX sector: <http://reference.eionet.europa.eu/clrtap_nec_unfccc/unfccc_crf_sector/>
PREFIX geo: <http://dd.eionet.europa.eu/vocabulary/eurostat/geo/>

SELECT DISTINCT
  xsd:date(?year) as ?date
  ?country_code
  ?country_code_iso2
  URI(replace(replace(replace(replace(xsd:string(?country_code), 'http://reference.eionet.europa.eu/clrtap_nec_unfccc/country/', 'http://dd.eionet.europa.eu/vocabulary/eurostat/geo/'), 'EUX', 'EU27_2020'), 'GR', 'EL'), 'EUA', 'EU28')) AS ?geo
  SUM(?unfccc_crf) AS ?unfccc_crf
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 != '1985-1987')
      _:unfccc_crf clrtap_nec_unfccc:unit 'Gg' .
      _:unfccc_crf clrtap_nec_unfccc:pollutant_name 'CO2' .         
      _:unfccc_crf clrtap_nec_unfccc:sector_code sector:1.A.1.a . 
      _:unfccc_crf clrtap_nec_unfccc:emissions ?unfccc_crf .
    }
    ?country_code skos:notation ?country_code_iso2 .
  }
GROUP BY ?year ?country_code_iso2 ?country_code
ORDER BY ?country_code_iso2 DESC(?year)

Error when running query:

Error. Traceback (most recent call last):
  File "/plone/buildout-cache/eggs/Products.ZSPARQLMethod-2.3-py2.7.egg/Products/ZSPARQLMethod/Method.py", line 287, in run_with_timeout
    ret = func(*args, **kwargs)
  File "/plone/buildout-cache/eggs/Products.ZSPARQLMethod-2.3-py2.7.egg/Products/ZSPARQLMethod/Method.py", line 215, in query_and_get_result
    result = sparql.query(*args, timeout = kwargs.get("timeout", 0) or 0)
  File "/plone/buildout-cache/eggs/sparql_client-3.8-py2.7.egg/sparql.py", line 747, in query
    return s.query(query, timeout, raw=raw)
  File "/plone/buildout-cache/eggs/sparql_client-3.8-py2.7.egg/sparql.py", line 416, in query
    return q.query(query, timeout, raw=raw)
  File "/plone/buildout-cache/eggs/sparql_client-3.8-py2.7.egg/sparql.py", line 571, in query
    response = self._request(statement, timeout)
  File "/plone/buildout-cache/eggs/sparql_client-3.8-py2.7.egg/sparql.py", line 558, in _request
    response = self._build_response(query, opener, buf, timeout)
  File "/plone/buildout-cache/eggs/sparql_client-3.8-py2.7.egg/sparql.py", line 543, in _build_response
    timeout if timeout > 0 else None)
  File "/plone/buildout-cache/eggs/sparql_client-3.8-py2.7.egg/sparql.py", line 514, in _get_response
    response = opener.open(request, timeout=timeout)
  File "/usr/local/lib/python2.7/urllib2.py", line 429, in open
    response = self._open(req, data)
  File "/usr/local/lib/python2.7/urllib2.py", line 447, in _open
    '_open', req)
  File "/usr/local/lib/python2.7/urllib2.py", line 407, in _call_chain
    result = func(*args)
  File "/usr/local/lib/python2.7/urllib2.py", line 1241, in https_open
    context=self._context)
  File "/usr/local/lib/python2.7/urllib2.py", line 1198, in do_open
    raise URLError(err)
URLError: <urlopen error [Errno 113] EHOSTUNREACH>


Permalinks

Geographic coverage

Temporal coverage

Tags

Filed under:
Filed under: unfccc, air pollution
Document Actions