next
previous
items

Data table via SPARQL

Development of MSW management in 32 European countries 2001-2012

Data table via SPARQL Published 28 Jul 2014 Last modified 29 Jan 2016

Download this dataset

Dataset preview

(Live Query)

date generation recycling incineration landfilling no_information
"2001"^^<http://www.w3.org/2001/XMLSchema#int> "290"^^<http://www.w3.org/2001/XMLSchema#decimal> "70"^^<http://www.w3.org/2001/XMLSchema#decimal> "43"^^<http://www.w3.org/2001/XMLSchema#decimal> "160"^^<http://www.w3.org/2001/XMLSchema#decimal> "18"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2002"^^<http://www.w3.org/2001/XMLSchema#int> "294"^^<http://www.w3.org/2001/XMLSchema#decimal> "76"^^<http://www.w3.org/2001/XMLSchema#decimal> "44"^^<http://www.w3.org/2001/XMLSchema#decimal> "156"^^<http://www.w3.org/2001/XMLSchema#decimal> "18"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2003"^^<http://www.w3.org/2001/XMLSchema#int> "289"^^<http://www.w3.org/2001/XMLSchema#decimal> "77"^^<http://www.w3.org/2001/XMLSchema#decimal> "44"^^<http://www.w3.org/2001/XMLSchema#decimal> "150"^^<http://www.w3.org/2001/XMLSchema#decimal> "17"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2004"^^<http://www.w3.org/2001/XMLSchema#int> "290"^^<http://www.w3.org/2001/XMLSchema#decimal> "81"^^<http://www.w3.org/2001/XMLSchema#decimal> "47"^^<http://www.w3.org/2001/XMLSchema#decimal> "142"^^<http://www.w3.org/2001/XMLSchema#decimal> "20"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2005"^^<http://www.w3.org/2001/XMLSchema#int> "294"^^<http://www.w3.org/2001/XMLSchema#decimal> "85"^^<http://www.w3.org/2001/XMLSchema#decimal> "51"^^<http://www.w3.org/2001/XMLSchema#decimal> "135"^^<http://www.w3.org/2001/XMLSchema#decimal> "23"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2006"^^<http://www.w3.org/2001/XMLSchema#int> "297"^^<http://www.w3.org/2001/XMLSchema#decimal> "89"^^<http://www.w3.org/2001/XMLSchema#decimal> "55"^^<http://www.w3.org/2001/XMLSchema#decimal> "135"^^<http://www.w3.org/2001/XMLSchema#decimal> "19"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2007"^^<http://www.w3.org/2001/XMLSchema#int> "300"^^<http://www.w3.org/2001/XMLSchema#decimal> "95"^^<http://www.w3.org/2001/XMLSchema#decimal> "55"^^<http://www.w3.org/2001/XMLSchema#decimal> "134"^^<http://www.w3.org/2001/XMLSchema#decimal> "15"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2008"^^<http://www.w3.org/2001/XMLSchema#int> "298"^^<http://www.w3.org/2001/XMLSchema#decimal> "99"^^<http://www.w3.org/2001/XMLSchema#decimal> "58"^^<http://www.w3.org/2001/XMLSchema#decimal> "125"^^<http://www.w3.org/2001/XMLSchema#decimal> "14"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2009"^^<http://www.w3.org/2001/XMLSchema#int> "295"^^<http://www.w3.org/2001/XMLSchema#decimal> "100"^^<http://www.w3.org/2001/XMLSchema#decimal> "59"^^<http://www.w3.org/2001/XMLSchema#decimal> "124"^^<http://www.w3.org/2001/XMLSchema#decimal> "11"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2010"^^<http://www.w3.org/2001/XMLSchema#int> "292"^^<http://www.w3.org/2001/XMLSchema#decimal> "101"^^<http://www.w3.org/2001/XMLSchema#decimal> "61"^^<http://www.w3.org/2001/XMLSchema#decimal> "119"^^<http://www.w3.org/2001/XMLSchema#decimal> "11"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 12 rows in 0.001 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/development-of-msw-management-in/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 property: <http://rdfdata.eionet.europa.eu/eurostat/property#> 
PREFIX unit: <http://dd.eionet.europa.eu/vocabulary/eurostat/unit/> 
PREFIX wst: <http://dd.eionet.europa.eu/vocabulary/eurostat/wst_oper/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>

SELECT
year(?date) as ?date
round(sum(?GEN)/1000) as ?generation
round(sum(?RCY)/1000) as ?recycling
round(sum(?INC_RCV)/1000) as ?incineration
round(sum(?DSP_D)/1000) as ?landfilling
round(( sum(?GEN) - (sum(?RCY) + sum(?DSP_D) + sum(?INC_RCV) ))/1000)  as ?no_information

WHERE { 
 GRAPH <http://rdfdata.eionet.europa.eu/eurostat/data/env_wasmun.rdf.gz> 
  { 
        _:env_wasmun sdmx-dimension:timePeriod ?date . FILTER (year(?date) > 2000)
	_:env_wasmun sdmx-dimension:refArea ?ugeo .
        _:env_wasmun sdmx-attribute:unitMeasure unit:THS_T .
        { 
	  _:env_wasmun property:wst_oper wst:GEN .
          _:env_wasmun sdmx-measure:obsValue ?GEN . 
	} UNION { 
	  _:env_wasmun property:wst_oper ?wst_oper FILTER (?wst_oper in (wst:RCY_M, wst:RCY_OC)) . 
          _:env_wasmun sdmx-measure:obsValue ?RCY . 
        } UNION { 
	  _:env_wasmun property:wst_oper wst:INC_RCV . 
          _:env_wasmun sdmx-measure:obsValue ?INC_RCV . 
	} UNION { 
	  _:env_wasmun property:wst_oper wst:DSP_D .
          _:env_wasmun sdmx-measure:obsValue ?DSP_D .
	} 
  } 
  ?ugeo skos:notation ?geo . FILTER (?geo in ('EU27', 'HR', 'IS', 'NO', 'TR', 'CH'))
} 
GROUP BY ?date


Permalinks

Document Actions