Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ElisabethDeVries committed Oct 22, 2024
2 parents f15f4a6 + f984a48 commit e7d2b85
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions code/actueel/NLCS_Query_Lijnweights.rq
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ PREFIX sh: <http://www.w3.org/ns/shacl#>

# Retrieves all Lijnweight information and stores it in the familiar Excel/CSV format from the SQL database

SELECT DISTINCT ?lijnweightURI ?id ?omschrijving ?lijngroep35 ?dunner ?dikker
SELECT DISTINCT ?lijnweightURI ?id ?omschrijving ?lijngroep35 ?dunner ?dikker ?microstation
WHERE {
?LijnweightTopConcept a owl:Class .
?LijnweightTopConcept skos:prefLabel "Lijnweight" .
Expand All @@ -32,4 +32,8 @@ WHERE {
?lijnweightURI ?dikkerProperty ?dikker .
?dikkerProperty skos:prefLabel "Dikker" .
}
} ORDER BY ?id
OPTIONAL {
?lijnweightURI ?microstationProperty ?microstation .
?microstationProperty skos:prefLabel "MicrostationNummer" .
}
} ORDER BY ?id
2 changes: 1 addition & 1 deletion code/actueel/NLCS_Query_Objects.rq
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ WHERE {
?objectURI rdfs:subClassOf ?kind_vanURI .
FILTER (?kind_vanURI != ?hoofdgroepURI) .
?kind_vanURI <http://digitalbuildingdata.tech/nlcs/def/b718adec73e04ce3ec720dd11a06a308> ?kind_van . # ?kind_vanURI ?idProperty ?kind_van . ?idProperty skos:prefLabel "ID" .
}
OPTIONAL {
?objectURI <http://digitalbuildingdata.tech/nlcs/def/231afe47f3f37d3808096b36c28b4ded> ?element . # ?objectURI ?elementProperty ?element . ?elementProperty skos:prefLabel "Element" .
}
}
OPTIONAL {
?objectURI <http://digitalbuildingdata.tech/nlcs/def/9c241815bb021ad8b7146ffb88dcf856> ?vrkl_kort . # ?objectURI ?vrkl_kortProperty ?vrkl_kort . ?vrkl_kortProperty skos:prefLabel "VRKL_KORT" .
Expand Down

0 comments on commit e7d2b85

Please sign in to comment.