next
previous
items

Data table via SPARQL

Bathing water data - province data

Data table via SPARQL Published 22 May 2014 Last modified 29 Jan 2016

Download this dataset

Dataset preview

(Live Query)

count year quality country region province
"11"^^<http://www.w3.org/2001/XMLSchema#int> "1990"^^<http://www.w3.org/2001/XMLSchema#int> "Compliant to mandatory values / Good or Sufficient" "Belgium" "VLAAMS GEWEST" "WEST VLAANDEREN"
"4"^^<http://www.w3.org/2001/XMLSchema#int> "1990"^^<http://www.w3.org/2001/XMLSchema#int> "Not compliant with mandatory values / Poor" "Belgium" "VLAAMS GEWEST" "WEST VLAANDEREN"
"21"^^<http://www.w3.org/2001/XMLSchema#int> "1990"^^<http://www.w3.org/2001/XMLSchema#int> "Compliant to guide values / Excellent" "Belgium" "VLAAMS GEWEST" "WEST VLAANDEREN"
"25"^^<http://www.w3.org/2001/XMLSchema#int> "1991"^^<http://www.w3.org/2001/XMLSchema#int> "Compliant to mandatory values / Good or Sufficient" "Belgium" "VLAAMS GEWEST" "WEST VLAANDEREN"
"6"^^<http://www.w3.org/2001/XMLSchema#int> "1991"^^<http://www.w3.org/2001/XMLSchema#int> "Not compliant with mandatory values / Poor" "Belgium" "VLAAMS GEWEST" "WEST VLAANDEREN"
"5"^^<http://www.w3.org/2001/XMLSchema#int> "1991"^^<http://www.w3.org/2001/XMLSchema#int> "Compliant to guide values / Excellent" "Belgium" "VLAAMS GEWEST" "WEST VLAANDEREN"
"27"^^<http://www.w3.org/2001/XMLSchema#int> "1992"^^<http://www.w3.org/2001/XMLSchema#int> "Compliant to mandatory values / Good or Sufficient" "Belgium" "VLAAMS GEWEST" "WEST VLAANDEREN"
"4"^^<http://www.w3.org/2001/XMLSchema#int> "1992"^^<http://www.w3.org/2001/XMLSchema#int> "Not compliant with mandatory values / Poor" "Belgium" "VLAAMS GEWEST" "WEST VLAANDEREN"
"5"^^<http://www.w3.org/2001/XMLSchema#int> "1992"^^<http://www.w3.org/2001/XMLSchema#int> "Compliant to guide values / Excellent" "Belgium" "VLAAMS GEWEST" "WEST VLAANDEREN"
"22"^^<http://www.w3.org/2001/XMLSchema#int> "1993"^^<http://www.w3.org/2001/XMLSchema#int> "Compliant to mandatory values / Good or Sufficient" "Belgium" "VLAAMS GEWEST" "WEST VLAANDEREN"

Received 16041 rows in 7.290 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/bathing-water%20-data-province-data/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 skos: <http://www.w3.org/2004/02/skos/core#> 
PREFIX bwd: <http://bwd.eea.europa.eu/schema.rdf#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdf-schema: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX measure: <http://purl.org/linked-data/sdmx/2009/measure#>
PREFIX dimension: <http://purl.org/linked-data/sdmx/2009/dimension#> 

SELECT
count(?obsvalue) as ?count
?year
?quality
?country
?region
?province

WHERE {
{  
  GRAPH <http://bwd.eea.europa.eu/bwd.rdf.gz> 
  {
  ?station a bwd:Station .
  ?station bwd:seawater true .
  ?station bwd:inRegion ?region_code .
  ?region_code rdf-schema:label ?region .
  ?station bwd:province ?province_code .
  ?province_code rdf-schema:label ?province . 
  ?station bwd:country ?country_code .
  ?country_code rdf-schema:label ?country .
  ?obs dimension:timePeriod ?year .
  ?obs dimension:refArea ?station . 
  ?obs measure:obsValue ?obsvalue .
  ?obsvalue rdfs:label ?quality . 
  } 
}


}
GROUP BY ?year ?quality ?country ?region ?province
ORDER BY ?country ?region ?year 


Permalinks

Document Actions