All official European Union website addresses are in the europa.eu domain.
See all EU institutions and bodiesDo something for our planet, print this page only if needed. Even a small action can make an enormous difference when millions of people do it!
Data table via SPARQL
Received 1209 rows in 0.053 seconds.
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.
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX sdmx-measure: <http://purl.org/linked-data/sdmx/2009/measure#>
PREFIX sdmx-dimension: <http://purl.org/linked-data/sdmx/2009/dimension#>
PREFIX sdmx-attribute: <http://purl.org/linked-data/sdmx/2009/attribute#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX property: <http://rdfdata.eionet.europa.eu/eurostat/property#>
PREFIX geo: <http://dd.eionet.europa.eu/vocabulary/eurostat/geo/>
PREFIX unit: <http://dd.eionet.europa.eu/vocabulary/eurostat/unit/>
PREFIX product: <http://dd.eionet.europa.eu/vocabulary/eurostat/product/>
PREFIX siec: <http://dd.eionet.europa.eu/vocabulary/eurostat/siec/>
PREFIX nrg_bal: <http://dd.eionet.europa.eu/vocabulary/eurostat/nrg_bal/>
PREFIX measure: <http://purl.org/linked-data/sdmx/2009/measure#>
SELECT DISTINCT
?date
#?ugeo
?geo
#?siec
SUM(?TI_EHG_MAPE_E) AS ?TI_EHG_MAPE_E
SUM(?TI_EHG_MAPCHP_E) AS ?TI_EHG_MAPCHP_E
SUM(?TI_EHG_MAPH_E) AS ?TI_EHG_MAPH_E
SUM(?TI_EHG_APE_E) AS ?TI_EHG_APE_E
SUM(?TI_EHG_APCHP_E) AS ?TI_EHG_APCHP_E
SUM(?TI_EHG_APH_E) AS ?TI_EHG_APH_E
SUM(?GHP_MAPCHP) AS ?GHP_MAPCHP
SUM(?GHP_MAPH) AS ?GHP_MAPH
SUM(?GEP_APCHP) AS ?GEP_APCHP
SUM(?GEP_MAPCHP) AS ?GEP_MAPCHP
WHERE {
{
GRAPH <http://rdfdata.eionet.europa.eu/eurostat/data/nrg_bal_c.rdf.gz>
{{
_:nrg_bal_c sdmx-dimension:timePeriod ?date .
_:nrg_bal_c sdmx-attribute:unitMeasure unit:KTOE .
#unit:KTOE .
_:nrg_bal_c sdmx-dimension:refArea ?geo .
_:nrg_bal_c property:siec ?siec .
FILTER (?siec IN (siec:C0000X0350-0370, siec:C0350-0370,
siec:G3000, siec:O4000XBIO,
siec:P1000, siec:S2000,
siec:W6100_6220
))
{
_:nrg_bal_c property:nrg_bal nrg_bal:TI_EHG_MAPE_E .
_:nrg_bal_c measure:obsValue ?TI_EHG_MAPE_E .
} UNION {
_:nrg_bal_c property:nrg_bal nrg_bal:TI_EHG_MAPCHP_E .
_:nrg_bal_c measure:obsValue ?TI_EHG_MAPCHP_E .
} UNION {
_:nrg_bal_c property:nrg_bal nrg_bal:TI_EHG_MAPH_E .
_:nrg_bal_c measure:obsValue ?TI_EHG_MAPH_E .
} UNION {
_:nrg_bal_c property:nrg_bal nrg_bal:TI_EHG_APE_E .
_:nrg_bal_c measure:obsValue ?TI_EHG_APE_E .
} UNION {
_:nrg_bal_c property:nrg_bal nrg_bal:TI_EHG_APCHP_E .
_:nrg_bal_c measure:obsValue ?TI_EHG_APCHP_E .
} UNION {
_:nrg_bal_c property:nrg_bal nrg_bal:TI_EHG_APH_E .
_:nrg_bal_c measure:obsValue ?TI_EHG_APH_E .
} UNION {
_:nrg_bal_c property:nrg_bal nrg_bal:GHP_MAPCHP .
_:nrg_bal_c measure:obsValue ?GHP_MAPCHP .
} UNION {
_:nrg_bal_c property:nrg_bal nrg_bal:GHP_MAPH .
_:nrg_bal_c measure:obsValue ?GHP_MAPH .
} UNION {
_:nrg_bal_c property:nrg_bal nrg_bal:CHP_APH .
_:nrg_bal_c measure:obsValue ?CHP_APH .
} UNION {
_:nrg_bal_c property:nrg_bal nrg_bal:GEP_APCHP .
_:nrg_bal_c measure:obsValue ?GEP_APCHP .
} UNION {
_:nrg_bal_c property:nrg_bal nrg_bal:GEP_MAPCHP .
_:nrg_bal_c measure:obsValue ?GEP_MAPCHP .
}
}}
}
#?geo rdfs:label ?ugeo .
#FILTER (?geo = geo:EU27_2019)
#FILTER (?geo = geo:EU28)
#FILTER (year(?date) >= 2018)
#FILTER (year(?date) = 1990)
}
ORDER BY DESC(?date)
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 1201, in do_open
r = h.getresponse(buffering=True)
File "/usr/local/lib/python2.7/httplib.py", line 1148, in getresponse
response.begin()
File "/usr/local/lib/python2.7/httplib.py", line 448, in begin
version, status, reason = self._read_status()
File "/usr/local/lib/python2.7/httplib.py", line 404, in _read_status
line = self.fp.readline(_MAXLINE + 1)
File "/usr/local/lib/python2.7/socket.py", line 480, in readline
data = self._sock.recv(self._rbufsize)
File "/plone/buildout-cache/eggs/eventlet-0.21.0-py2.7.egg/eventlet/green/ssl.py", line 194, in recv
return self._base_recv(buflen, flags, into=False)
File "/plone/buildout-cache/eggs/eventlet-0.21.0-py2.7.egg/eventlet/green/ssl.py", line 227, in _base_recv
read = self.read(nbytes)
File "/plone/buildout-cache/eggs/eventlet-0.21.0-py2.7.egg/eventlet/green/ssl.py", line 139, in read
super(GreenSSLSocket, self).read, *args, **kwargs)
File "/plone/buildout-cache/eggs/eventlet-0.21.0-py2.7.egg/eventlet/green/ssl.py", line 119, in _call_trampolining
timeout_exc=timeout_exc('timed out'))
File "/plone/buildout-cache/eggs/eventlet-0.21.0-py2.7.egg/eventlet/hubs/__init__.py", line 163, in trampoline
return hub.switch()
File "/plone/buildout-cache/eggs/eventlet-0.21.0-py2.7.egg/eventlet/hubs/hub.py", line 295, in switch
return self.greenlet.switch()
SSLError: ('timed out',)
For references, please go to https://eea.europa.eu./data-and-maps/daviz/sds/emissions-by-country-for-electricity or scan the QR code.
PDF generated on 23 Nov 2024, 07:54 AM
Engineered by: EEA Web Team
Software updated on 26 September 2023 08:13 from version 23.8.18
Software version: EEA Plone KGS 23.9.14
Document Actions
Share with others