next
previous
items

Data table via SPARQL

Water use per capita and NUTS2 in 2007 (Eurostat demo_r_pjanaggr3 and env_n2_wu)

Data table via SPARQL Published 04 Jul 2012 Last modified 26 Sep 2023
This page was archived on 26 Sep 2023 with reason: Other (Content is outdated. SPARQL endpoint is deprecated.)

Download this dataset

Dataset preview

(Live Query)

nuts2code nuts2 population wateruse percapita

Received 0 rows in 0.024 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/eionet/data/eea-data/water-use-per-capita-and-nuts2-in-2007-eurostat-demo_r_pjanaggr3-and-env_n2_wu/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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX qb: <http://purl.org/linked-data/cube#>
PREFIX estat: <http://eurostat.linked-statistics.org/property#>
PREFIX sdmx-measure: <http://purl.org/linked-data/sdmx/2009/measure#>
PREFIX sdmx-dimension: <http://purl.org/linked-data/sdmx/2009/dimension#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX g: <http://eurostat.linked-statistics.org/ontologies/geographic.rdf#>
PREFIX dataset: <http://eurostat.linked-statistics.org/data/>

SELECT ?nuts2code ?nuts2
       SUM(xsd:decimal(?obsvalue)) AS ?population
       ?wateruse
       xsd:decimal(?wateruse)*1000000/SUM(xsd:decimal(?obsvalue)) AS ?percapita
WHERE {
  ?observation qb:dataSet dataset:demo_r_pjanaggr3 ;
        sdmx-dimension:timePeriod "2007-01-01"^^xsd:date;
        estat:age <http://eurostat.linked-statistics.org/dic/age#TOTAL>; 
        estat:sex <http://eurostat.linked-statistics.org/dic/sex#T>;
        estat:geo ?ugeo;
        sdmx-measure:obsValue ?obsvalue.
  ?ugeo g:hasParentRegion ?parent.
  ?parent rdfs:label ?nuts2;
          g:code ?nuts2code.
  ?wuregion qb:dataSet dataset:env_n2_wu ;
            estat:geo ?parent;
            estat:cons <http://eurostat.linked-statistics.org/dic/cons#W18_2_7_2>; 
            sdmx-dimension:timePeriod "2007-01-01"^^xsd:date;
        sdmx-measure:obsValue ?wateruse.
} GROUP BY ?nuts2 ?nuts2code ?wateruse ORDER BY DESC(?percapita)


Permalinks

Document Actions