next
previous
items

Data table via SPARQL

Presents domestic material consumption and raw material consumption, along with related imports and exports of goods

Data table via SPARQL Published 29 Feb 2016 Last modified 02 Mar 2016

Download this dataset

Dataset preview

(Live Query)

date sector_name obsvalue
"2000"^^<http://www.w3.org/2001/XMLSchema#int> "Domestic Extraction" "6552"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2000"^^<http://www.w3.org/2001/XMLSchema#int> "Raw Material Consumption" "7952"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2000"^^<http://www.w3.org/2001/XMLSchema#int> "Total Imports in Raw Material Equivalents" "3138"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2000"^^<http://www.w3.org/2001/XMLSchema#int> "Total Exports in Raw Material Equivalents" "1739"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2001"^^<http://www.w3.org/2001/XMLSchema#int> "Total Imports in Raw Material Equivalents" "3343"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2001"^^<http://www.w3.org/2001/XMLSchema#int> "Raw Material Consumption" "8106"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2001"^^<http://www.w3.org/2001/XMLSchema#int> "Domestic Extraction" "6540"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2001"^^<http://www.w3.org/2001/XMLSchema#int> "Total Exports in Raw Material Equivalents" "1777"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2002"^^<http://www.w3.org/2001/XMLSchema#int> "Extra EU Imports" "1482"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2002"^^<http://www.w3.org/2001/XMLSchema#int> "Total Imports in Raw Material Equivalents" "3358"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 95 rows in 0.002 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/presents-domestic-material-consumption-and-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 property: <http://rdfdata.eionet.europa.eu/eurostat/property#> 
PREFIX indic_nv: <http://dd.eionet.europa.eu/vocabulary/eurostat/indic_nv/>
PREFIX unit: <http://dd.eionet.europa.eu/vocabulary/eurostat/unit/>
PREFIX geo: <http://dd.eionet.europa.eu/vocabulary/eurostat/geo/>
PREFIX material: <http://dd.eionet.europa.eu/vocabulary/eurostat/material/>

SELECT DISTINCT
year(?date) as ?date
?sector_name
round(sum(?obsvalue)/1000) as ?obsvalue
WHERE {
 {  
   GRAPH <http://rdfdata.eionet.europa.eu/eurostat/data/env_ac_mfa.rdf.gz> 
   {
     _:env_ac_mfa sdmx-dimension:refArea geo:EU28 .
     _:env_ac_mfa sdmx-dimension:timePeriod ?date . FILTER (year(?date) >= 2000)
     _:env_ac_mfa sdmx-attribute:unitMeasure unit:THS_T .
     _:env_ac_mfa property:material material:TOTAL .
     _:env_ac_mfa property:indic_nv ?indic_nv . 
     FILTER (?indic_nv in (indic_nv:EXP_XEU, indic_nv:IMP_XEU, indic_nv:DMC))
     _:env_ac_mfa sdmx-measure:obsValue ?obsvalue .
   }
   } UNION {
 {
   GRAPH <http://rdfdata.eionet.europa.eu/eurostat/data/env_ac_rme.rdf.gz> 
   {
     _:env_ac_rme sdmx-dimension:refArea geo:EU27 .
     _:env_ac_rme sdmx-dimension:timePeriod ?date . FILTER (year(?date) >= 2000)
     _:env_ac_rme sdmx-attribute:unitMeasure unit:THS_T .
     _:env_ac_rme property:material material:TOTAL .
     _:env_ac_rme property:indic_nv ?indic_nv . 
     FILTER (?indic_nv in (indic_nv:EXP_RME, indic_nv:IMP_RME, indic_nv:DE, indic_nv:RMC))
     _:env_ac_rme sdmx-measure:obsValue ?obsvalue .
  }
 }
}
  ?indic_nv skos:prefLabel ?sector_name .
}
GROUP BY ?sector_name ?date
ORDER BY ?date


Document Actions