Skip to content

Instantly share code, notes, and snippets.

@tommorris
Created August 23, 2013 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tommorris/6320399 to your computer and use it in GitHub Desktop.
Save tommorris/6320399 to your computer and use it in GitHub Desktop.
PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>
select distinct ?obj ?lat ?long
where {
?obj a <http://dbpedia.org/class/yago/Locations> .
?obj geo:lat ?lat .
?obj geo:long ?long .
FILTER(?lat > 50)
FILTER(?lat < 52)
FILTER(?long > -1)
FILTER(?long < 1)
}
LIMIT 500
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment