query-d3f61867f3f16ae74149131205e180af
Trouver des entrées sans photos autour de chez soi
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Map
SELECT ?place ?placeLabel ?location
WHERE
{
# Coordonnéer d'une entrée proche de la maison (ex: Église Saint-Vincent-Ferrier dans Villeray: Q64507299)
wd:Q64507299 wdt:P625 ?MaisonLoc .
SERVICE wikibase:around {
?place wdt:P625 ?location .
bd:serviceParam wikibase:center ?MaisonLoc .
# À 1 km de rayon autour de l'entrée
bd:serviceParam wikibase:radius "2" .
} .
# On filtre pour les entrées qui n'ont pas de photos
OPTIONAL { ?place wdt:P18 ?pic }
FILTER(# Pas de photo
!BOUND(?pic)
)
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" .
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?MaisonLoc")
v4("?location"):::projected
v1("?pic")
v3("?place"):::projected
c7(["2"]):::literal
c4(["bd:serviceParam"]):::iri
c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c1(["wd:Q64507299"]):::iri
f0[["not bound(?pic)"]]
f0 --> v1
c1 --"wdt:P625"--> v2
subgraph s1["http://wikiba.se/ontology#around"]
style s1 stroke-width:4px;
v3 --"wdt:P625"--> v4
c4 --"wikibase:center"--> v2
c4 --"wikibase:radius"--> c7
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P18".-> v1
end
subgraph s2["http://wikiba.se/ontology#label"]
style s2 stroke-width:4px;
c4 --"wikibase:language"--> c11
end