-
Notifications
You must be signed in to change notification settings - Fork 3
/
residenceStatus_all.rq
24 lines (22 loc) · 1.04 KB
/
residenceStatus_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
#+ summary: Number of inhabitants according to residence status, locatoin, sex, and year
#+ tags:
#+ - residenceStatus
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 ?year ?sex ?residenceStatus ?kom (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.
?obs sdmx-dimension:sex ?sex.
?obs cedarterms:residenceStatus ?residenceStatus.
FILTER (NOT EXISTS {?obs cedarterms:isTotal ?total })
}