next
previous
items

Data table via SPARQL

Path to 40% GHG reduction target and proxy

Data table via SPARQL Published 13 Oct 2014 Last modified 29 Jan 2016

Download this dataset

Dataset preview

(Live Query)

date 40_target proxy
"2012"^^<http://www.w3.org/2001/XMLSchema#int> "" "4678.8"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2013"^^<http://www.w3.org/2001/XMLSchema#int> "4599"^^<http://www.w3.org/2001/XMLSchema#int> "4599"^^<http://www.w3.org/2001/XMLSchema#int>
"2030"^^<http://www.w3.org/2001/XMLSchema#int> "3417.7"^^<http://www.w3.org/2001/XMLSchema#decimal> ""

Received 3 rows in 0.018 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/path-to-40-ghg-reduction-target/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



semantic.eea.europa.eu/sparql

PREFIX rdf-schema: <http://www.w3.org/2000/01/rdf-schema#>
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 sector: <http://reference.eionet.europa.eu/clrtap_nec_unfccc/unfccc_crf_sector/>


SELECT DISTINCT
xsd:integer(?date) as ?date
?target as ?40_target
?proxy

WHERE
{ 
  ?s foaf:page ?page .
  {
    SELECT distinct
      '2012' as ?date
      #round(sum(?target)/100)/10.0 as ?target
      round(sum(?target)/100)/10.0 as ?proxy
      WHERE {
      { 
       GRAPH <http://r.eionet.europa.eu/rdfdumps/clrtap_nec_unfccc/unfccc_crf.rdf.gz> 
        {
          _:unfccc_crf clrtap_nec_unfccc:year ?date . FILTER (?date in ('2012'))
          _:unfccc_crf clrtap_nec_unfccc:country_code geo:EU28 .
          _:unfccc_crf clrtap_nec_unfccc:sector_code ?sector_code . 
          FILTER (?sector_code in (sector:NT_excl,sector:1.C1.A))
          _:unfccc_crf clrtap_nec_unfccc:pollutant_name ?pollutant_name . 
          FILTER (?pollutant_name= 'All greenhouse gases - (CO2 equivalent)')
          _:unfccc_crf clrtap_nec_unfccc:emissions ?target .
        } 
       }
      }
  } UNION {
    SELECT distinct
      '2013' as ?date
      4599 as ?target
      4599 as ?proxy
      WHERE {
      { 
       GRAPH <http://r.eionet.europa.eu/rdfdumps/clrtap_nec_unfccc/unfccc_crf.rdf.gz> 
        {
          _:unfccc_crf clrtap_nec_unfccc:year ?date . FILTER (?date in ('2012'))
          _:unfccc_crf clrtap_nec_unfccc:country_code geo:EU28 .
          _:unfccc_crf clrtap_nec_unfccc:sector_code ?sector_code . 
          FILTER (?sector_code in (sector:NT_excl,sector:1.C1.A))
          _:unfccc_crf clrtap_nec_unfccc:pollutant_name ?pollutant_name . 
          FILTER (?pollutant_name= 'All greenhouse gases - (CO2 equivalent)')
          _:unfccc_crf clrtap_nec_unfccc:emissions ?target .
        } 
       }
      }
  } UNION {
    SELECT distinct
      '2030' as ?date
      round(sum(?target*0.6)/100)/10.0 as ?target
      WHERE {
      { 
       GRAPH <http://r.eionet.europa.eu/rdfdumps/clrtap_nec_unfccc/unfccc_crf.rdf.gz> 
        {
          _:unfccc_crf clrtap_nec_unfccc:year ?date . FILTER (?date in ('1990'))
          _:unfccc_crf clrtap_nec_unfccc:country_code geo:EU28 .
          _:unfccc_crf clrtap_nec_unfccc:sector_code ?sector_code . 
          FILTER (?sector_code in (sector:NT_excl,sector:1.C1.A))
          _:unfccc_crf clrtap_nec_unfccc:pollutant_name ?pollutant_name . 
          FILTER (?pollutant_name= 'All greenhouse gases - (CO2 equivalent)')
          _:unfccc_crf clrtap_nec_unfccc:emissions ?target .
        } 
       }
      }
  }
}


Permalinks

Document Actions