Last active
January 19, 2023 23:00
-
-
Save davidsbatista/3eca48c03865413f724fb703dea49244 to your computer and use it in GitHub Desktop.
Get all dams in Portugal with the latitude and longitude
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
#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