query-191b21eb5eb12767a7f00eaa1d283ea5
Propertiesinstance of (P31)coordinate location (P625)
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#>
SELECT ?item ?itemLabel (COUNT(?coords) AS ?count)
WHERE {
?item wdt:P31 wd:Q262166.
?item wdt:P625 ?coords.
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en". }
}
GROUP BY ?item ?itemLabel
HAVING (?count > 1)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?coords"):::projected
v4("?count")
v2("?item"):::projected
c6(["bd:serviceParam"]):::iri
c3(["wd:Q262166"]):::iri
c8(["de,en"]):::literal
f0[["?count > '1^^xsd:integer'"]]
f0 --> v4
v2 --"wdt:P31"--> c3
v2 --"wdt:P625"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end
bind2[/"count(?coords)"/]
v3 --o bind2
bind2 --as--o v4