query-bdf917bd26a28df20aaf28a7c9571fe9

rq turtle/ttl

Requêtes SPARQL pour trouver des entrées sans photos

Use at

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ées d'une entrée proche de Q16682060
  wd:Q16682060 wdt:P625 ?UniversiteLoc .
  SERVICE wikibase:around {
    ?place wdt:P625 ?location .
    bd:serviceParam wikibase:center ?UniversiteLoc .
# À 1 km de rayon autour de l'entrée
    bd:serviceParam wikibase:radius "1" . 
  } .

# 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("?UniversiteLoc") v4("?location"):::projected v1("?pic") v3("?place"):::projected c1(["wd:Q16682060"]):::iri c7(["1"]):::literal c4(["bd:serviceParam"]):::iri c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal 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