query-4602f4cedad9d578a4b421b82d83b28f
Items inside an geo box
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX geo: <http://www.opengis.net/ont/geosparql#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?place ?placeLabel ?location ?continent WHERE {
SERVICE wikibase:box {
?place wdt:P625 ?location .
bd:serviceParam wikibase:cornerSouthWest "Point(136 -90)"^^geo:wktLiteral .
bd:serviceParam wikibase:cornerNorthEast "Point(142 -60)"^^geo:wktLiteral .
}
OPTIONAL { ?place wdt:P30 ?continent }
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr,en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?continent"):::projected
v2("?location"):::projected
v1("?place"):::projected
c3(["bd:serviceParam"]):::iri
c5([sPoint(136 -90)^^<http://www.opengis.net/ont/geosparql#wktLiteral>"]):::literal
c11(["fr,en"]):::literal
c7([sPoint(142 -60)^^<http://www.opengis.net/ont/geosparql#wktLiteral>"]):::literal
subgraph s1["http://wikiba.se/ontology#box"]
style s1 stroke-width:4px;
v1 --"wdt:P625"--> v2
c3 --"wikibase:cornerSouthWest"--> c5
c3 --"wikibase:cornerNorthEast"--> c7
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P30".-> v3
end
subgraph s2["http://wikiba.se/ontology#label"]
style s2 stroke-width:4px;
c3 --"wikibase:language"--> c11
end