next
previous
items

Data table via SPARQL

SES2 indicators data snapshot

Data table via SPARQL Published 24 Apr 2013 Last modified 22 Apr 2024
The query is looking for all the "Data" obejects used in the last version of the indicator specifications - used for periodical reporting to smt.

Download this dataset

Dataset preview

(Live Query)

codes d_label d_owner d_geographicCoverage d_temporalCoverage d
"AIR004" "Corine Land Cover 2006 raster data"@en "http://www.eea.europa.eu" "" "2006" <http://www.eea.europa.eu/data-and-maps/data/clc-2006-raster-3>
"CLIM048" "Fluorinated greenhouse gases 2020"@en "http://www.eea.europa.eu" "" "2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019" <http://www.eea.europa.eu/data-and-maps/data/fluorinated-greenhouse-gases-aggregated-data-2>
"CLIM049" "Ozone-depleting substances 2021"@en "http://www.eea.europa.eu" "" "2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020" <http://www.eea.europa.eu/data-and-maps/data/ozone-depleting-substances>
"CLIM050" "Greenhouse gas emissions under the Effort Sharing Decision (ESD)"@en "http://ec.europa.eu/index_en.htm" "" "2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016" <http://www.eea.europa.eu/data-and-maps/data/esd-2>
"CLIM050" "European Union Emissions Trading System (EU ETS) data from EUTL"@en "http://www.eea.europa.eu" "" "2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021" <http://www.eea.europa.eu/data-and-maps/data/european-union-emissions-trading-scheme-16>
"CLIM050" "European Union Emissions Trading System (EU ETS) data from EUTL"@en "http://ec.europa.eu/index_en.htm" "" "2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021" <http://www.eea.europa.eu/data-and-maps/data/european-union-emissions-trading-scheme-16>
"CLIM050" "Greenhouse gas emissions under the Effort Sharing Decision (ESD)"@en "http://www.eea.europa.eu" "" "2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016" <http://www.eea.europa.eu/data-and-maps/data/esd-2>
"CLIM050" "Member States' greenhouse gas (GHG) emission projections"@en "http://www.eea.europa.eu" "" "2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040" <http://www.eea.europa.eu/data-and-maps/data/greenhouse-gas-emission-projections-for-8>
"CLIM056" "Member States' greenhouse gas (GHG) emission projections"@en "http://www.eea.europa.eu" "" "2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040" <http://www.eea.europa.eu/data-and-maps/data/greenhouse-gas-emission-projections-for-8>
"CLIM057" "Member States' greenhouse gas (GHG) emission projections"@en "http://www.eea.europa.eu" "" "2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040" <http://www.eea.europa.eu/data-and-maps/data/greenhouse-gas-emission-projections-for-8>

Received 87 rows in 0.003 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/ses2_indicators_data_snapshot/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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX dcterms: <http://purl.org/dc/terms/> 
PREFIX rdf-syntax: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX s: <http://www.eea.europa.eu/portal_types/Specification#>
PREFIX d: <http://www.eea.europa.eu/portal_types/Data#>

SELECT
?codes
?d_label
?d_owner
sql:group_concat(?d_geographicCoverage,' ') AS ?d_geographicCoverage
?d_temporalCoverage
?d
{{
  SELECT 
  ?codes
  ?d_label
  ?d_owner
  sql:group_concat(?d_temporalCoverage,' ') AS ?d_temporalCoverage
  ?d_geographicCoverage
  ?d
  {{
  SELECT DISTINCT
    ?codes
    ?d_label
    ?d_owner
    ?d_temporalCoverage
    ?d_geographicCoverage
    ?d
  WHERE {
        ?s rdf-syntax:type s:Specification .
        ?s s:codes ?codes .
	OPTIONAL { ?s dcterms:isReplacedBy ?isReplacedBy . }   FILTER (!bound(?isReplacedBy)) 
	?s s:relatedItems ?d .
	OPTIONAL { ?d rdf-syntax:type ?d_type } FILTER (?d_type = d:Data)
	OPTIONAL { ?d rdfs:label ?d_label }
	OPTIONAL { ?d d:dataOwner ?d_owner }
	OPTIONAL { ?d d:temporalCoverage ?d_temporalCoverage }  
	OPTIONAL { ?d d:geographicCoverage ?d_geographicCoverage  }
	} ORDER BY ?d_temporalCoverage
  }} GROUP BY ?d ?codes ?d_label ?d_owner ?d_geographicCoverage ORDER BY ?d_geographicCoverage
}} 
GROUP BY ?d ?codes ?d_label ?d_owner ?d_temporalCoverage 
ORDER BY ?codes

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 435, in open
    response = meth(req, response)
  File "/usr/local/lib/python2.7/urllib2.py", line 548, in http_response
    'http', request, response, code, msg, hdrs)
  File "/usr/local/lib/python2.7/urllib2.py", line 473, in error
    return self._call_chain(*args)
  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 556, in http_error_default
    raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
HTTPError: HTTP Error 308: Permanent Redirect


Permalinks

Document Actions