-
Notifications
You must be signed in to change notification settings - Fork 3
/
houseType_all.rq
25 lines (23 loc) · 1.05 KB
/
houseType_all.rq
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#+ summary: Number of housing types according to residence status, location and year
#+ tags:
#+ - houseType
#+ pagination: 100
PREFIX cedar: <http://lod.cedar-project.nl:8888/cedar/resource/>
PREFIX maritalstatus: <http://lod.cedar-project.nl/vocab/cedar-maritalstatus#>
PREFIX sdmx-dimension: <http://purl.org/linked-data/sdmx/2009/dimension#>
PREFIX sdmx-code: <http://purl.org/linked-data/sdmx/2009/code#>
PREFIX cedarterms: <http://lod.cedar-project.nl/vocab/cedar#>
PREFIX qb: <http://purl.org/linked-data/cube#>
PREFIX gg: <http://www.gemeentegeschiedenis.nl/amco/>
SELECT ?location ?kom ?year ?residenceStatus ?houseType (SUM(?pop) AS ?tot) FROM <urn:graph:cedar-mini:release> WHERE {
?obs a qb:Observation.
?obs sdmx-dimension:refArea ?location.
?obs cedarterms:Kom ?kom.
?obs cedarterms:population ?pop.
?slice a qb:Slice.
?slice qb:observation ?obs.
?slice sdmx-dimension:refPeriod ?year.
OPTIONAL { ?obs cedarterms:residenceStatus ?residenceStatus. }
?obs cedarterms:houseType ?houseType.
FILTER (NOT EXISTS {?obs cedarterms:isTotal ?total })
}