next
previous
items

Data table via SPARQL

Electric and electronic equipment put on the market, WEEE collected and recycled/reused

Data table via SPARQL Published 05 Aug 2016 Last modified 27 Oct 2016

Download this dataset

Dataset preview

(Live Query)

date country wst_oper_label obsValue collection_target
"2013"^^<http://www.w3.org/2001/XMLSchema#int> "Austria" "Products put on the market" "18.4"^^<http://www.w3.org/2001/XMLSchema#decimal> "4"^^<http://www.w3.org/2001/XMLSchema#int>
"2013"^^<http://www.w3.org/2001/XMLSchema#int> "Austria" "Waste collected" "9.1"^^<http://www.w3.org/2001/XMLSchema#decimal> "4"^^<http://www.w3.org/2001/XMLSchema#int>
"2013"^^<http://www.w3.org/2001/XMLSchema#int> "Austria" "Waste collected from households" "9"^^<http://www.w3.org/2001/XMLSchema#decimal> "4"^^<http://www.w3.org/2001/XMLSchema#int>
"2013"^^<http://www.w3.org/2001/XMLSchema#int> "Austria" "Total recycling and reuse" "7.2"^^<http://www.w3.org/2001/XMLSchema#decimal> "4"^^<http://www.w3.org/2001/XMLSchema#int>
"2013"^^<http://www.w3.org/2001/XMLSchema#int> "Belgium" "Products put on the market" "27.6"^^<http://www.w3.org/2001/XMLSchema#decimal> "4"^^<http://www.w3.org/2001/XMLSchema#int>
"2013"^^<http://www.w3.org/2001/XMLSchema#int> "Belgium" "Waste collected" "10.8"^^<http://www.w3.org/2001/XMLSchema#decimal> "4"^^<http://www.w3.org/2001/XMLSchema#int>
"2013"^^<http://www.w3.org/2001/XMLSchema#int> "Belgium" "Waste collected from households" "10.3"^^<http://www.w3.org/2001/XMLSchema#decimal> "4"^^<http://www.w3.org/2001/XMLSchema#int>
"2013"^^<http://www.w3.org/2001/XMLSchema#int> "Belgium" "Total recycling and reuse" "8.5"^^<http://www.w3.org/2001/XMLSchema#decimal> "4"^^<http://www.w3.org/2001/XMLSchema#int>
"2013"^^<http://www.w3.org/2001/XMLSchema#int> "Bulgaria" "Products put on the market" "7.8"^^<http://www.w3.org/2001/XMLSchema#decimal> "4"^^<http://www.w3.org/2001/XMLSchema#int>
"2013"^^<http://www.w3.org/2001/XMLSchema#int> "Bulgaria" "Waste collected" "4.8"^^<http://www.w3.org/2001/XMLSchema#decimal> "4"^^<http://www.w3.org/2001/XMLSchema#int>

Received 114 rows in 0.035 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/electric-and-electronic-equipment-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 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 DISTINCT
year(?date) as ?date
?ugeo AS ?country
?wst_oper_label
(round(?obsValue*10))/10.0 as ?obsValue
4 as ?collection_target
WHERE {
    {
        GRAPH <http://rdfdata.eionet.europa.eu/eurostat/data/env_waselee.rdf.gz> {
          {
            _:env_waselee sdmx-dimension:timePeriod ?date .
            _: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 .
            _:env_waselee sdmx-measure:obsValue ?obsValue  .
            FILTER (?wst_oper in (wst_oper:RCY_REU, wst_oper:COL_HH, wst_oper:COL, wst_oper:MKT))
            FILTER (year(?date) = 2013)
          }
        }
        ?geo rdfs:label ?ugeo .
        ?wst_oper rdfs:label ?wst_oper_label .
  }
  ?geo skos:exactMatch ?eeauri .
  ?eeauri skos:inScheme <http://dd.eionet.europa.eu/vocabulary/common/countries/> .
  ?eeauri rdfs:label ?ugeo .
}
ORDER BY ?ugeo


Document Actions