query-7637d075c8e9e562e7c5d3854b5ec4f2

rq turtle/ttl

Places in Antarctica more than 3000km away from the South Pole

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX geof: <http://www.opengis.net/def/function/geosparql/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title: Places in Antarctica over 3000km away from the South Pole
#defaultView:Map
SELECT ?place ?placeLabel ?location WHERE {
  wd:Q933 wdt:P625 ?southPole.                         # coordinates of south pole
  ?place wdt:P30 wd:Q51;                               # continent: antarctica
         wdt:P625 ?location.
  FILTER(geof:distance(?location, ?southPole) > 3000). # over 3000km away from south pole
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?location"):::projected v3("?place"):::projected v2("?southPole") c7(["bd:serviceParam"]):::iri c2(["wd:Q933"]):::iri c5(["wd:Q51"]):::iri c9(["en"]):::literal f0[["http://www.opengis.net/def/function/geosparql/distance(?location,?southPole) > '3000^^xsd:integer'"]] f0 --> v1 f0 --> v2 c2 --"wdt:P625"--> v2 v3 --"wdt:P30"--> c5 v3 --"wdt:P625"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end