query-b8b42e76579674ae740cadd7c890e2be
(P376)located on astronomical body (P625)coordinate location
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX psv: <http://www.wikidata.org/prop/statement/value/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?locatedOn ?locatedOnLabel ?coordinatesGlobe ?coordinatesGlobeLabel
{
?item wdt:P376 ?locatedOn.
?item p:P625 ?coordinatesStatement.
?coordinatesStatement a wikibase:BestRank.
?coordinatesStatement psv:P625 / wikibase:geoGlobe ?coordinatesGlobe.
FILTER (?locatedOn != ?coordinatesGlobe)
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("?coordinatesGlobe"):::projected
v4("?coordinatesStatement")
v3("?item"):::projected
v1("?locatedOn"):::projected
a1((" "))
c8(["bd:serviceParam"]):::iri
c4(["wikibase:BestRank"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["?locatedOn != ?coordinatesGlobe"]]
f0 --> v1
f0 --> v2
v3 --"p:direct/P376"--> v1
v3 --"p:P625"--> v4
v4 --"a"--> c4
v4 --"p:statement/value/P625"--> a1
a1 --"wikibase:geoGlobe"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end