next
previous
items

Data table via SPARQL

Municipal waste on total recycling - treatment of waste

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

Download this dataset

Dataset preview

(Live Query)

date type share
"2004"^^<http://www.w3.org/2001/XMLSchema#int> "Municipal waste on totalrecycling" "27.8"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2005"^^<http://www.w3.org/2001/XMLSchema#int> "Municipal waste on totalrecycling" "28.8"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2006"^^<http://www.w3.org/2001/XMLSchema#int> "Municipal waste on totalrecycling" "29.8"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2007"^^<http://www.w3.org/2001/XMLSchema#int> "Municipal waste on totalrecycling" "31.8"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2008"^^<http://www.w3.org/2001/XMLSchema#int> "Municipal waste on totalrecycling" "33.4"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2009"^^<http://www.w3.org/2001/XMLSchema#int> "Municipal waste on totalrecycling" "34"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2010"^^<http://www.w3.org/2001/XMLSchema#int> "Municipal waste on totalrecycling" "34.6"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2011"^^<http://www.w3.org/2001/XMLSchema#int> "Municipal waste on totalrecycling" "35.7"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2012"^^<http://www.w3.org/2001/XMLSchema#int> "Municipal waste on totalrecycling" "37.3"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 9 rows in 0.033 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/municipal-waste-on-total-recycling/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 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 rdf-schema: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX geo: <http://dd.eionet.europa.eu/vocabulary/eurostat/geo/>
PREFIX unit: <http://dd.eionet.europa.eu/vocabulary/eurostat/unit/>

SELECT DISTINCT
year(?date) as ?date
'Municipal waste on totalrecycling' as ?type
#sum(?generated_waste) as ?generated_waste
#sum(?material_recycling) as ?material_recycling
round((sum(?material_recycling)/sum(?generated_waste))*1000)/10.0 as ?share

WHERE {{
    GRAPH <http://rdfdata.eionet.europa.eu/eurostat/data/env_wasmun.rdf.gz> 
    {{
      _:env_wasmun sdmx-dimension:timePeriod ?date . FILTER (year(?date) >= 2004) 
      _:env_wasmun sdmx-dimension:refArea ?geo . FILTER (?geo in (geo:EU27, geo:LI, geo:NO, geo:HR, geo:CH, geo:TR))
      _:env_wasmun sdmx-attribute:unitMeasure unit:THS_T . 
      {
        _:env_wasmun property:wst_oper ?wst_oper . FILTER (?wst_oper in (wst_oper:GEN)) .
        _:env_wasmun sdmx-measure:obsValue ?generated_waste .
      } UNION {
        _:env_wasmun property:wst_oper ?wst_oper . FILTER (?wst_oper in (wst_oper:RCY_M, wst_oper:RCY_OC)) .
        _:env_wasmun sdmx-measure:obsValue ?material_recycling .
      }
    }}
    ?geo rdf-schema:label ?ugeo .
}}
GROUP BY ?date
ORDER BY ?date


Permalinks

Document Actions