next
previous
items

Data table via SPARQL

WASTE003 - Trend in the amount of WEEE collected from households

Data table via SPARQL Published 30 Apr 2015 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 collected_from_private_households_2006 collected_from_private_households_2008 collected_from_private_households_2010 collected_from_private_households_2012 collection_target
"Austria" "7.423"^^<http://www.w3.org/2001/XMLSchema#double> "8.797"^^<http://www.w3.org/2001/XMLSchema#double> "8.722"^^<http://www.w3.org/2001/XMLSchema#double> "9.088"^^<http://www.w3.org/2001/XMLSchema#double> "4"^^<http://www.w3.org/2001/XMLSchema#int>
"Belgium" "7.219"^^<http://www.w3.org/2001/XMLSchema#double> "8.118"^^<http://www.w3.org/2001/XMLSchema#double> "9.32"^^<http://www.w3.org/2001/XMLSchema#double> "10.06"^^<http://www.w3.org/2001/XMLSchema#double> "4"^^<http://www.w3.org/2001/XMLSchema#int>
"Bulgaria" "" "5.233"^^<http://www.w3.org/2001/XMLSchema#double> "6.045"^^<http://www.w3.org/2001/XMLSchema#double> "5.158"^^<http://www.w3.org/2001/XMLSchema#double> "4"^^<http://www.w3.org/2001/XMLSchema#int>
"Cyprus" "" "2.876"^^<http://www.w3.org/2001/XMLSchema#double> "3.109"^^<http://www.w3.org/2001/XMLSchema#double> "2.819"^^<http://www.w3.org/2001/XMLSchema#double> "4"^^<http://www.w3.org/2001/XMLSchema#int>
"Czech Republic" "" "4.296"^^<http://www.w3.org/2001/XMLSchema#double> "4.976"^^<http://www.w3.org/2001/XMLSchema#double> "4.945"^^<http://www.w3.org/2001/XMLSchema#double> "4"^^<http://www.w3.org/2001/XMLSchema#int>
"Germany" "8.616"^^<http://www.w3.org/2001/XMLSchema#double> "7.822"^^<http://www.w3.org/2001/XMLSchema#double> "8.836"^^<http://www.w3.org/2001/XMLSchema#double> "7.723"^^<http://www.w3.org/2001/XMLSchema#double> "4"^^<http://www.w3.org/2001/XMLSchema#int>
"Denmark" "10.816"^^<http://www.w3.org/2001/XMLSchema#double> "13.854"^^<http://www.w3.org/2001/XMLSchema#double> "14.803"^^<http://www.w3.org/2001/XMLSchema#double> "13.436"^^<http://www.w3.org/2001/XMLSchema#double> "4"^^<http://www.w3.org/2001/XMLSchema#int>
"Estonia" "4.307"^^<http://www.w3.org/2001/XMLSchema#double> "4.408"^^<http://www.w3.org/2001/XMLSchema#double> "4.186"^^<http://www.w3.org/2001/XMLSchema#double> "4.064"^^<http://www.w3.org/2001/XMLSchema#double> "4"^^<http://www.w3.org/2001/XMLSchema#int>
"Greece" "0.863"^^<http://www.w3.org/2001/XMLSchema#double> "3.961"^^<http://www.w3.org/2001/XMLSchema#double> "3.994"^^<http://www.w3.org/2001/XMLSchema#double> "3.236"^^<http://www.w3.org/2001/XMLSchema#double> "4"^^<http://www.w3.org/2001/XMLSchema#int>
"Spain" "3.583"^^<http://www.w3.org/2001/XMLSchema#double> "6.228"^^<http://www.w3.org/2001/XMLSchema#double> "3.189"^^<http://www.w3.org/2001/XMLSchema#double> "3.127"^^<http://www.w3.org/2001/XMLSchema#double> "4"^^<http://www.w3.org/2001/XMLSchema#int>

Received 31 rows in 0.001 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/waste003-trend-in-the-amount-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 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 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
sum(xsd:double(?v2006)) as ?collected_from_private_households_2006
sum(xsd:double(?v2008)) as ?collected_from_private_households_2008
sum(xsd:double(?v2010)) as ?collected_from_private_households_2010
sum(xsd:double(?v2012)) as ?collected_from_private_households_2012
4 as ?collection_target

WHERE { 
 GRAPH <http://rdfdata.eionet.europa.eu/eurostat/data/env_waselee.rdf.gz> { 
        
        _:env_waselee sdmx-attribute:unitMeasure unit:KG_HAB .
        _:env_waselee property:waste waste:TOTAL .
        _:env_waselee sdmx-dimension:refArea ?geo .
        _:env_waselee property:wst_oper wst_oper:COL_HH .
        { 
        _:env_waselee sdmx-measure:obsValue ?v2006 .
        _:env_waselee sdmx-dimension:timePeriod ?date . FILTER (year(?date) = 2006)
        } UNION { 
        _:env_waselee sdmx-measure:obsValue ?v2008 .
        _:env_waselee sdmx-dimension:timePeriod ?date . FILTER (year(?date) = 2008)
        } UNION { 
        _:env_waselee sdmx-measure:obsValue ?v2010 .        
        _:env_waselee sdmx-dimension:timePeriod ?date . FILTER (year(?date) = 2010)
        } UNION { 
        _:env_waselee sdmx-measure:obsValue ?v2012 .        
        _:env_waselee sdmx-dimension:timePeriod ?date . FILTER (year(?date) = 2012)
        } 
  } 
  #?geo skos:prefLabel ?country .
  ?geo rdfs:label ?ugeo .
}  group by ?ugeo ?geo order by ?geo


Document Actions