Last active
November 20, 2016 10:47
-
-
Save northernjamie/1e7593e1c9b1f786226b2eb566d7807a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PREFIX dcat: <http://www.w3.org/ns/dcat#> | |
PREFIX dcterms: <http://purl.org/dc/terms/> | |
PREFIX owl: <http://www.w3.org/2002/07/owl#> | |
PREFIX qb: <http://purl.org/linked-data/cube#> | |
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
PREFIX sdmx: <http://purl.org/linked-data/sdmx/2009/concept#> | |
PREFIX skos: <http://www.w3.org/2004/02/skos/core#> | |
PREFIX void: <http://rdfs.org/ns/void#> | |
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> | |
SELECT ?domaintext ?areaname ?councilname ?rank | |
WHERE { | |
?s rdf:type qb:Observation ; | |
qb:dataSet <http://statistics.gov.scot/data/scottish-index-of-multiple-deprivation-2016> ; | |
<http://purl.org/linked-data/sdmx/2009/dimension#refArea> ?areacode ; | |
<http://statistics.gov.scot/def/dimension/simdDomain> ?domain ; | |
<http://statistics.gov.scot/def/measure-properties/rank> ?rank . | |
?domain rdfs:label ?domaintext . | |
?areacode rdfs:label ?areaname ; | |
<http://statistics.gov.scot/def/hierarchy/best-fit#council-area> ?council . | |
?council rdfs:label ?councilname . | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment