Last active
July 24, 2017 14:47
-
-
Save bekicot/075f7d323863aff6711fb6ae4cf0a956 to your computer and use it in GitHub Desktop.
List of island that is located in the teritory of Indonesia
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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