next
previous
items

Data table via SPARQL

Trend in WEEE recycled/reused

Data table via SPARQL Published 12 Jun 2014 Last modified 26 Aug 2017
This is an old version, kept for reference only.

Go to latest version
This page was archived on 26 Aug 2017 with reason: A new version has been published

Download this dataset

Dataset preview

(Live Query)

country reuse_and_recycling_2006 reuse_and_recycling_2008 reuse_and_recycling_2010
"" "13.1"^^<http://www.w3.org/2001/XMLSchema#decimal> "14"^^<http://www.w3.org/2001/XMLSchema#decimal> "15.6"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Austria" "6"^^<http://www.w3.org/2001/XMLSchema#decimal> "7.2"^^<http://www.w3.org/2001/XMLSchema#decimal> "7.1"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Belgium" "5.5"^^<http://www.w3.org/2001/XMLSchema#decimal> "6.4"^^<http://www.w3.org/2001/XMLSchema#decimal> "7.8"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Bulgaria" "" "3.5"^^<http://www.w3.org/2001/XMLSchema#decimal> "4.8"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Cyprus" "" "" "2.3"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Czech Republic" "" "3.3"^^<http://www.w3.org/2001/XMLSchema#decimal> "4.4"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Denmark" "8.9"^^<http://www.w3.org/2001/XMLSchema#decimal> "12.8"^^<http://www.w3.org/2001/XMLSchema#decimal> "12.5"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Estonia" "" "3.8"^^<http://www.w3.org/2001/XMLSchema#decimal> "3.5"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Finland" "5.9"^^<http://www.w3.org/2001/XMLSchema#decimal> "8.5"^^<http://www.w3.org/2001/XMLSchema#decimal> "8.4"^^<http://www.w3.org/2001/XMLSchema#decimal>
"France" "0.1"^^<http://www.w3.org/2001/XMLSchema#decimal> "3.6"^^<http://www.w3.org/2001/XMLSchema#decimal> "5.2"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 30 rows in 0.021 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/waste003-trend-in-weee-recycled-1/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 tableFile: <http://semantic.eea.europa.eu/project/indicators/gap_filling_data/wst003/2014/env_waselee_CH_gap_filling_WEE_reused_recycled.csv#>
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> 
PREFIX property: <http://rdfdata.eionet.europa.eu/eurostat/property#> 
PREFIX wst_oper: <http://dd.eionet.europa.eu/vocabulary/eurostat/wst_oper/>
PREFIX waste: <http://dd.eionet.europa.eu/vocabulary/eurostat/waste/>
PREFIX unit: <http://dd.eionet.europa.eu/vocabulary/eurostat/unit/>
PREFIX geo: <http://dd.eionet.europa.eu/vocabulary/eurostat/geo/>

SELECT 

bif:either(?geo = geo:DE, 'Germany', ?ugeo) AS ?country 
(round(sum(xsd:double(?v2006))*10))/10.0 as ?reuse_and_recycling_2006
(round(sum(xsd:double(?v2008))*10))/10.0 as ?reuse_and_recycling_2008
(round(sum(xsd:double(?v2010))*10))/10.0 as ?reuse_and_recycling_2010

WHERE { 
    {
      GRAPH <http://rdfdata.eionet.europa.eu/eurostat/data/env_waselee.rdf.gz> { 
        { 
        _:env_waselee_2006 sdmx-dimension:timePeriod ?date . FILTER (year(?date) = 2006)
        _:env_waselee_2006 sdmx-attribute:unitMeasure unit:KG_HAB .
        _:env_waselee_2006 property:waste waste:TOTAL .
        _:env_waselee_2006 sdmx-dimension:refArea ?geo .
        _:env_waselee_2006 property:wst_oper wst_oper:RCY_REU .        
        _:env_waselee_2006 sdmx-measure:obsValue ?v2006 .
        } UNION {
        _:env_waselee_2008 sdmx-dimension:timePeriod ?date . FILTER (year(?date) = 2008)
        _:env_waselee_2008 sdmx-attribute:unitMeasure unit:KG_HAB .
        _:env_waselee_2008 property:waste waste:TOTAL .
        _:env_waselee_2008 sdmx-dimension:refArea ?geo .
        _:env_waselee_2008 property:wst_oper wst_oper:RCY_REU .
        _:env_waselee_2008 sdmx-measure:obsValue ?v2008 .
        } UNION { 
        _:env_waselee_2010 sdmx-dimension:timePeriod ?date . FILTER (year(?date) = 2010)
        _:env_waselee_2010 sdmx-attribute:unitMeasure unit:KG_HAB .
        _:env_waselee_2010 property:waste waste:TOTAL .
        _:env_waselee_2010 sdmx-dimension:refArea ?geo .
        _:env_waselee_2010 property:wst_oper wst_oper:RCY_REU .
        _:env_waselee_2010 sdmx-measure:obsValue ?v2010 .      

        } 
    } 
    ?geo rdfs:label ?ugeo .
  } UNION {
      GRAPH <http://semantic.eea.europa.eu/project/indicators/gap_filling_data/wst003/2014/env_waselee_CH_gap_filling_WEE_reused_recycled.csv> {
        _:env_waselee_gap_filling tableFile:country ?geo
        OPTIONAL { _:env_waselee_gap_filling tableFile:reuse_and_recycling_2006 ?v2006 }
        OPTIONAL { _:env_waselee_gap_filling tableFile:reuse_and_recycling_2008 ?v2008 }
        OPTIONAL { _:env_waselee_gap_filling tableFile:reuse_and_recycling_2010 ?v2010 }
    }
  }
}   order by ?ugeo


Permalinks

Document Actions