Skip to content

Instantly share code, notes, and snippets.

@bekicot
Last active July 24, 2017 14:47
Show Gist options
  • Select an option

  • Save bekicot/075f7d323863aff6711fb6ae4cf0a956 to your computer and use it in GitHub Desktop.

Select an option

Save bekicot/075f7d323863aff6711fb6ae4cf0a956 to your computer and use it in GitHub Desktop.
List of island that is located in the teritory of Indonesia
SELECT DISTINCT ?island ?islandLabel ?administrativeLabel ?negaraLabel ?coordinate
WHERE {
?island wdt:P31/wdt:P279* wd:Q23442.
{
{
?wilayahDiIndonesia wdt:P279 wd:Q1434505.
?administrative wdt:P31/wdt:P279* ?wilayahDiIndonesia.
?island wdt:P131 ?administrative.
} UNION {
?island wdt:P17 wd:Q252
}
}
OPTIONAL {
?island wdt:P17 ?negara.
}
OPTIONAL {
?island wdt:P625 ?coordinate.
}
OPTIONAL {
?island wdt:P131 ?administrative
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "id,en". }
} ORDER BY ?island
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment