next
previous
items

Data table via SPARQL

GHG emissions targets

Data table via SPARQL Published 15 Jun 2016 Last modified 14 Dec 2016

Download this dataset

Dataset preview

(Live Query)

year target_20 target_40 target_80 target_95
"2020"^^<http://www.w3.org/2001/XMLSchema#int> "4590.4"^^<http://www.w3.org/2001/XMLSchema#decimal> "" "" ""
"2030"^^<http://www.w3.org/2001/XMLSchema#int> "" "3442.8"^^<http://www.w3.org/2001/XMLSchema#decimal> "" ""
"2050"^^<http://www.w3.org/2001/XMLSchema#int> "" "" "1147.6"^^<http://www.w3.org/2001/XMLSchema#decimal> "286.9"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 3 rows in 0.021 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/ghg-emissions-targets/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 sectors: <http://reference.eionet.europa.eu/clrtap_nec_unfccc/unfccc_crf_sector/Sectors/>
PREFIX sector: <http://reference.eionet.europa.eu/clrtap_nec_unfccc/unfccc_crf_sector/>
PREFIX rdf-schema: <http://www.w3.org/2000/01/rdf-schema#>

#this is an emergency fix. Please refer to the previous versions for the next excercise.

SELECT 
?year
bif:either(?year = 2020, ?unfccc_crf_domestic_scope*0.8, '') as ?target_20
bif:either(?year = 2030, ?unfccc_crf_domestic_scope*0.6, '') as ?target_40
bif:either(?year = 2050, ?unfccc_crf_domestic_scope*0.2, '') as ?target_80
bif:either(?year = 2050, ?unfccc_crf_domestic_scope*0.05, '') as ?target_95

{{
  SELECT DISTINCT
    ?year
    round(sum(xsd:integer(?unfccc_crf_domestic_scope))/1000) AS ?unfccc_crf_domestic_scope
  WHERE {
    { 
    {
      { SELECT 5738000 as ?unfccc_crf_domestic_scope {} }
      {
        SELECT DISTINCT 2020 as ?year  {} 
          } UNION { 
        SELECT DISTINCT 2030 as ?year  {} 
          } UNION {
        SELECT DISTINCT 2050 as ?year  {} 
      }
    }
   }
  }
 }
}


Permalinks

Document Actions