next
previous
items

Data table via SPARQL

Member states progress towards indicative national energy efficiency targets for 2020

Data table via SPARQL Published 12 Jun 2019 Last modified 24 Jun 2020
Topics:

Download this dataset

Dataset preview

(Live Query)

date ugeo total target distance percentage_distance
"2017"^^<http://www.w3.org/2001/XMLSchema#int> "Finland" "25.3"^^<http://www.w3.org/2001/XMLSchema#decimal> "26.7"^^<http://www.w3.org/2001/XMLSchema#decimal> "-1.411117"^^<http://www.w3.org/2001/XMLSchema#decimal> "-5.3"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2017"^^<http://www.w3.org/2001/XMLSchema#int> "Hungary" "18.5"^^<http://www.w3.org/2001/XMLSchema#decimal> "14.4"^^<http://www.w3.org/2001/XMLSchema#decimal> "4.106495"^^<http://www.w3.org/2001/XMLSchema#decimal> "28.5"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2017"^^<http://www.w3.org/2001/XMLSchema#int> "Lithuania" "5.3"^^<http://www.w3.org/2001/XMLSchema#decimal> "4.3"^^<http://www.w3.org/2001/XMLSchema#decimal> "1.047055"^^<http://www.w3.org/2001/XMLSchema#decimal> "24.4"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2017"^^<http://www.w3.org/2001/XMLSchema#int> "Turkey" "107.1"^^<http://www.w3.org/2001/XMLSchema#decimal> "" "" ""
"2017"^^<http://www.w3.org/2001/XMLSchema#int> "Luxembourg" "4.2"^^<http://www.w3.org/2001/XMLSchema#decimal> "4.2"^^<http://www.w3.org/2001/XMLSchema#decimal> "-0.015668"^^<http://www.w3.org/2001/XMLSchema#decimal> "-0.4"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2017"^^<http://www.w3.org/2001/XMLSchema#int> "Slovenia" "4.9"^^<http://www.w3.org/2001/XMLSchema#decimal> "5.1"^^<http://www.w3.org/2001/XMLSchema#decimal> "-0.236548"^^<http://www.w3.org/2001/XMLSchema#decimal> "-4.6"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2017"^^<http://www.w3.org/2001/XMLSchema#int> "Greece" "16.8"^^<http://www.w3.org/2001/XMLSchema#decimal> "18.4"^^<http://www.w3.org/2001/XMLSchema#decimal> "-1.648484"^^<http://www.w3.org/2001/XMLSchema#decimal> "-9"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2017"^^<http://www.w3.org/2001/XMLSchema#int> "Romania" "23.2"^^<http://www.w3.org/2001/XMLSchema#decimal> "30.3"^^<http://www.w3.org/2001/XMLSchema#decimal> "-7.094755"^^<http://www.w3.org/2001/XMLSchema#decimal> "-23.4"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2017"^^<http://www.w3.org/2001/XMLSchema#int> "Spain" "84.3"^^<http://www.w3.org/2001/XMLSchema#decimal> "80.1"^^<http://www.w3.org/2001/XMLSchema#decimal> "4.234622"^^<http://www.w3.org/2001/XMLSchema#decimal> "5.3"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2017"^^<http://www.w3.org/2001/XMLSchema#int> "France" "148.9"^^<http://www.w3.org/2001/XMLSchema#decimal> "131.4"^^<http://www.w3.org/2001/XMLSchema#decimal> "17.546951"^^<http://www.w3.org/2001/XMLSchema#decimal> "13.4"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 31 rows in 0.003 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/member-states-progress-towards-indicative-3/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 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 property: <http://rdfdata.eionet.europa.eu/eurostat/property#>
PREFIX siec: <http://dd.eionet.europa.eu/vocabulary/eurostat/siec/>
PREFIX nrg_bal: <http://dd.eionet.europa.eu/vocabulary/eurostat/nrg_bal/>
PREFIX geo: <http://dd.eionet.europa.eu/vocabulary/eurostat/geo/>
PREFIX unit: <http://dd.eionet.europa.eu/vocabulary/eurostat/unit/>
PREFIX tableFile: <http://semantic.eea.europa.eu/project/indicators/gap_filling_data/ENER/national_energy_efficiency_targets_2020_2017.txt#>

SELECT
year(?date) as ?date
bif:either(?geo = geo:DE, 'Germany', ?ugeo) as ?ugeo
round(sum(?obsValue)/100)/10.0 as ?total
round(sum(xsd:integer(?final ))/100)/10.0 as ?target
(( sum(?obsValue)-sum(xsd:integer(?final)) )/100)/10.0 as ?distance

round(( sum(?obsValue) - sum(xsd:integer(?final )) ) / sum(xsd:integer(?final )) * 1000)/10.0 as ?percentage_distance

WHERE {
  { 
 GRAPH <http://rdfdata.eionet.europa.eu/eurostat/data/nrg_bal_c.rdf.gz> {
    ?nrg_bal_c sdmx-dimension:refArea ?geo .
    ?nrg_bal_c sdmx-attribute:unitMeasure unit:KTOE .
    ?nrg_bal_c sdmx-dimension:timePeriod ?date .
    ?nrg_bal_c property:siec siec:TOTAL .

    ?nrg_bal_c property:nrg_bal nrg_bal:FEC2020-2030 .
    ?nrg_bal_c sdmx-measure:obsValue ?obsValue .

{SELECT
       xsd:date(?date) as ?date
       iri(?geo) as ?geo
       xsd:double(?primary) as ?primary
       xsd:double(?final ) as ?final 
     WHERE {
       { 
       GRAPH <http://semantic.eea.europa.eu/project/indicators/gap_filling_data/ENER/national_energy_efficiency_targets_2020_2017.txt> 
         {
           _:rec tableFile:date ?date .
           _:rec tableFile:geo ?geo .
           _:rec tableFile:primary ?primary .
           _:rec tableFile:final ?final .
         }
       }
     }
    }
  } 
  
 }
?geo rdfs:label ?ugeo
FILTER (year(?date) = 2017)
}
GROUP BY year(?date) ?ugeo ?geo


Permalinks

Geographic coverage

Temporal coverage

Topics

Topics:

Tags

Filed under:
Filed under: targets, energy efficiency
Document Actions