Skip to content

Commit

Permalink
fix: Make Rijksmonumenten name optional (#1449)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddeboer authored Oct 31, 2024
1 parent c11cba6 commit 1161ecc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,18 @@ CONSTRUCT {
WHERE {
VALUES ?uri { ?uris }

?uri schema:name ?naam ;
schema:identifier ?rijksmonumentnummer ;
?uri schema:identifier ?rijksmonumentnummer ;
schema:category ?monumentaard ;
schema:postalCode ?postcode ;
schema:additionalType ?functie ;
schema:addressLocality ?woonplaats ;
schema:addressRegion ?provincie ;
schema:sameAs ?monument_url .

OPTIONAL {
?uri schema:name ?naam .
}

BIND(CONCAT("Rijksmonumentnummer ", ?rijksmonumentnummer) as ?rijksmonumentnummer_tn)

# Aggregate and get the minimum address as ?adres2
Expand All @@ -38,8 +41,8 @@ WHERE {

BIND(
CONCAT(
"Naam: ", STR(?naam),
" / Oorspronkelijke functie: ", STR(?functie),
IF(BOUND(?naam), CONCAT("Naam: ", STR(?naam), " / "), ""),
"Oorspronkelijke functie: ", STR(?functie),
" / Type monument: ", STR(?monumentaard)
) AS ?scopeNote
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,18 @@ WHERE {
FILTER(CONTAINS(LCASE(?label), LCASE(?query)))
VALUES ?predicate { schema:addressLocality schema:identifier schema:address schema:name schema:addressRegion }

?uri schema:name ?naam ;
schema:identifier ?rijksmonumentnummer ;
?uri schema:identifier ?rijksmonumentnummer ;
schema:category ?monumentaard ;
schema:postalCode ?postcode ;
schema:additionalType ?functie ;
schema:addressLocality ?woonplaats ;
schema:addressRegion ?provincie ;
schema:sameAs ?monument_url .

OPTIONAL {
?uri schema:name ?naam .
}

BIND(CONCAT("Rijksmonumentnummer ", ?rijksmonumentnummer) as ?rijksmonumentnummer_tn)

# Aggregate and get the minimum address as ?adres2
Expand All @@ -40,8 +43,8 @@ WHERE {

BIND(
CONCAT(
"Naam: ", STR(?naam),
" / Oorspronkelijke functie: ", STR(?functie),
IF(BOUND(?naam), CONCAT("Naam: ", STR(?naam), " / "), ""),
"Oorspronkelijke functie: ", STR(?functie),
" / Type monument: ", STR(?monumentaard)
) AS ?scopeNote
)
Expand Down

0 comments on commit 1161ecc

Please sign in to comment.