Skip to content

Instantly share code, notes, and snippets.

@johl
Last active May 23, 2016 10:15
Show Gist options
  • Save johl/4a75166ff0afe95d25ad60f9ea071e84 to your computer and use it in GitHub Desktop.
Save johl/4a75166ff0afe95d25ad60f9ea071e84 to your computer and use it in GitHub Desktop.
#defaultView:Map
# "Abseits der Städte, in Dörfern, die mit 'ow' oder 'itz' enden" -- Grim104
SELECT ?item ?itemLabel ?coord
WHERE
{
?item wdt:P31/wdt:P279* wd:Q486972;
wdt:P17 wd:Q183;
rdfs:label ?itemLabel;
wdt:P625 ?coord;
FILTER (lang(?itemLabel) = "de").
FILTER regex (?itemLabel, "(ow|itz)$").
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment