next
previous
items

Data table via SPARQL

Trend in WEEE recycled/reused

Data table via SPARQL Published 18 Jun 2013 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
fig3: http://www.eea.europa.eu/data-and-maps/figures/trend-in-weee-recycled-reused-1

Download this dataset

Dataset preview

(Live Query)

country reuse_and_recycling_2006 reuse_and_recycling_2008 reuse_and_recycling_2010
"AT" "6.0"^^<http://www.w3.org/2001/XMLSchema#double> "7.1"^^<http://www.w3.org/2001/XMLSchema#double> "7.1"^^<http://www.w3.org/2001/XMLSchema#double>
"BE" "5.5"^^<http://www.w3.org/2001/XMLSchema#double> "6.4"^^<http://www.w3.org/2001/XMLSchema#double> "7.8"^^<http://www.w3.org/2001/XMLSchema#double>
"BG" "" "3.5"^^<http://www.w3.org/2001/XMLSchema#double> "4.8"^^<http://www.w3.org/2001/XMLSchema#double>
"CH" "13.2"^^<http://www.w3.org/2001/XMLSchema#double> "" "14.0"^^<http://www.w3.org/2001/XMLSchema#double>
"CY" "" "" "2.3"^^<http://www.w3.org/2001/XMLSchema#double>
"CZ" "" "3.3"^^<http://www.w3.org/2001/XMLSchema#double> "4.4"^^<http://www.w3.org/2001/XMLSchema#double>
"DE" "7.3"^^<http://www.w3.org/2001/XMLSchema#double> "6.8"^^<http://www.w3.org/2001/XMLSchema#double> "7.9"^^<http://www.w3.org/2001/XMLSchema#double>
"DK" "8.9"^^<http://www.w3.org/2001/XMLSchema#double> "12.8"^^<http://www.w3.org/2001/XMLSchema#double> "12.5"^^<http://www.w3.org/2001/XMLSchema#double>
"EE" "" "3.7"^^<http://www.w3.org/2001/XMLSchema#double> "3.5"^^<http://www.w3.org/2001/XMLSchema#double>
"EL" "0.8"^^<http://www.w3.org/2001/XMLSchema#double> "3.5"^^<http://www.w3.org/2001/XMLSchema#double> "4.0"^^<http://www.w3.org/2001/XMLSchema#double>

Received 30 rows in 0.046 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/waste003-trend-in-weee-recycled/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/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 skos: <http://www.w3.org/2004/02/skos/core#> 
PREFIX property: <http://rdfdata.eionet.europa.eu/eurostat/property#> 
PREFIX wo: <http://rdfdata.eionet.europa.eu/eurostat/dic/wst_oper#> 
PREFIX w: <http://rdfdata.eionet.europa.eu/eurostat/dic/waste#> 
PREFIX u: <http://rdfdata.eionet.europa.eu/eurostat/dic/unit#> 

SELECT 

?geo as ?country
sum(xsd:double(?v2006)) as ?reuse_and_recycling_2006
sum(xsd:double(?v2008)) as ?reuse_and_recycling_2008
sum(xsd:double(?v2010)) as ?reuse_and_recycling_2010

WHERE { 
    {
      GRAPH <http://rdfdata.eionet.europa.eu/eurostat/data/env_waselee.rdf.gz> { 
        { 
        _:env_waselee_2006 sdmx-attribute:unitMeasure u:KG_HAB .
        _:env_waselee_2006 property:waste w:TOTAL .
        _:env_waselee_2006 property:geo ?ugeo .
        _:env_waselee_2006 property:wst_oper wo:RCY_REU .        
        _:env_waselee_2006 sdmx-measure:obsValue ?v2006 .
        _:env_waselee_2006 sdmx-dimension:timePeriod "2006-01-01"^^xsd:date, ?date .
        } UNION {
        _:env_waselee_2008 sdmx-attribute:unitMeasure u:KG_HAB .
        _:env_waselee_2008 property:waste w:TOTAL .
        _:env_waselee_2008 property:geo ?ugeo .
        _:env_waselee_2008 property:wst_oper wo:RCY_REU .
        _:env_waselee_2008 sdmx-measure:obsValue ?v2008 .
        _:env_waselee_2008 sdmx-dimension:timePeriod "2008-01-01"^^xsd:date, ?date .
        } UNION { 
        _:env_waselee_2010 sdmx-attribute:unitMeasure u:KG_HAB .
        _:env_waselee_2010 property:waste w:TOTAL .
        _:env_waselee_2010 property:geo ?ugeo .
        _:env_waselee_2010 property:wst_oper wo:RCY_REU .
        _:env_waselee_2010 sdmx-measure:obsValue ?v2010 .        
        _:env_waselee_2010 sdmx-dimension:timePeriod "2010-01-01"^^xsd:date, ?date .
        } 
    } 
    ?ugeo skos:notation ?geo .
  } UNION {
      GRAPH <http://semantic.eea.europa.eu/project/indicators/gap_filling_data/env_waselee_CH_gap_filling_WEE_reused_recycled.csv> {
        _:env_waselee_gap_filling tableFile:country_code ?geo
        OPTIONAL { _:env_waselee_gap_filling tableFile:reuse_and_recycling_2006 ?v2006 }
        OPTIONAL { _:env_waselee_gap_filling tableFile:reuse_and_recycling_2008 ?c2008 }
        OPTIONAL { _:env_waselee_gap_filling tableFile:reuse_and_recycling_2010 ?v2010 }
    }
  }
}   order by ?geo


Permalinks

Document Actions