query-f76503f2657e5d5a1825c874acc30011

rq turtle/ttl

Question de filtreBjr, je ne comprends pas pourquoi le filter, ici grisé, de cette requête ne produit pas l'effet escompté ? (ne garder que si latitude plus grande que 35,89°)

Use at

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX psv: <http://www.wikidata.org/prop/statement/value/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?ligne_Sakai ?ligne_SakaiLabel ?lat ?lon ?coordonnées_géographiques WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  ?ligne_Sakai wdt:P16 wd:Q5370577; 
    wdt:P625 ?coordonnées_géographiques;
    p:P625 _:b18.
  _:b18 rdf:type wikibase:BestRank;
    ps:P625 ?coord;
    psv:P625 ?cValue.
  ?cValue wikibase:geoLatitude ?lat. 

  ?cValue wikibase:geoLongitude ?lon.

 #FILTER( ?lat >= "35.89"^^xsd:decimal).
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?cValue") v3("?coord") v2("?coordonnées_géographiques"):::projected v5("?lat"):::projected v1("?ligne_Sakai"):::projected v6("?lon"):::projected a1((" ")) c10(["wikibase:BestRank"]):::iri c2(["bd:serviceParam"]):::iri c6(["wd:Q5370577"]):::iri c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end v1 --"p:direct/P16"--> c6 v1 --"p:direct/P625"--> v2 v1 --"p:P625"--> a1 a1 --"a"--> c10 a1 --"p:statement/P625"--> v3 a1 --"p:statement/value/P625"--> v4 v4 --"wikibase:geoLatitude"--> v5 v4 --"wikibase:geoLongitude"--> v6