missing place names

master
Alessia Bardi 2 years ago
parent 03962666a6
commit d6e65c30c4

@ -165,4 +165,22 @@ PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
FILTER(contains(str(?o), "."))
}
};
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 .
}
}
};
Loading…
Cancel
Save