missing place names

This commit is contained in:
Alessia Bardi 2022-08-11 20:28:52 +02:00
parent 03962666a6
commit d6e65c30c4
1 changed files with 18 additions and 0 deletions

View File

@ -166,3 +166,21 @@ PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
}
};
PREFIX aocat: <https://www.ariadne-infrastructure.eu/resource/ao/cat/1.1/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
INSERT {
GRAPH <https://ariadne-infrastructure.eu/api_________::ariadne_plus::zrc_zbiva::sites> {
?spatialRegion aocat:has_place_name "Name not provided" .
}
}
WHERE {
GRAPH <https://ariadne-infrastructure.eu/api_________::ariadne_plus::zrc_zbiva::sites> {
?s aocat:has_spatial_coverage ?spatialRegion .
MINUS {
?s aocat:has_spatial_coverage ?spatialRegion .
?spatialRegion aocat:has_place_name ?placeName .
}
}
};