query-9d9eb2cf61e675e6b05e6cc21d624cee

rq turtle/ttl

en-wiki coords differ from wikidata coords I extracted the en-wiki coordinates with the following query and then compared them with what was in Wikidata. DBPedia SPARQL endpointUsing the

Use at

PREFIX : <http://dbpedia.org/resource/>
PREFIX coord: <http://www.w3.org/2003/01/geo/wgs84_pos#>
SELECT DISTINCT ?lake ?title ?lat ?long ?geometry ?prov WHERE {
  VALUES ?title {
    "Big_Creek_Lake_(Iowa)"   
  } 
  BIND(URI(CONCAT(STR(:),?title)) AS ?lake)
?lake coord:lat ?lat.
?lake coord:long ?long.
?lake coord:geometry ?geometry.
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?geometry"):::projected v2("?lake"):::projected v3("?lat"):::projected v4("?long"):::projected v1("?title"):::projected bind0[/VALUES ?title/] bind0-->v1 bind00(["Big_Creek_Lake_(Iowa)"]) bind00 --> bind0 bind1[/"concat(str(http://dbpedia.org/resource/),?title)"/] v1 --o bind1 bind1 --as--o v2 v2 --http://www.w3.org/2003/01/geo/wgs84_pos#lat--> v3 v2 --http://www.w3.org/2003/01/geo/wgs84_pos#long--> v4 v2 --http://www.w3.org/2003/01/geo/wgs84_pos#geometry--> v5