Skip to content

Instantly share code, notes, and snippets.

@davidsbatista
Last active January 19, 2023 23:00
Show Gist options
  • Save davidsbatista/3eca48c03865413f724fb703dea49244 to your computer and use it in GitHub Desktop.
Save davidsbatista/3eca48c03865413f724fb703dea49244 to your computer and use it in GitHub Desktop.
Get all dams in Portugal with the latitude and longitude
#defaultView:Map
SELECT DISTINCT ?dam ?coords ?lat ?long WHERE {
?dam wdt:P31/wdt:P279* wd:Q12323 .
?dam wdt:P17 wd:Q45 .
?dam p:P625 ?coordinataes .
?coordinataes ps:P625 ?coords;
psv:P625 [
wikibase:geoLatitude ?lat;
wikibase:geoLongitude ?long
] .
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment