WikiData Demo Places

We query locations with SPARQL from the WikiData api then create a page with these locations mapped. github

See More WikiData Demo

- Places within 1km of the Empire State Building. wiki - Items: Empire State Building (Q9188) - Properties: coordinate location (P625) instance of (P31)

SELECT ?place ?placeLabel ?location ?instanceLabel WHERE { wd:Q9188 wdt:P625 ?loc . SERVICE wikibase:around { ?place wdt:P625 ?location . bd:serviceParam wikibase:center ?loc . bd:serviceParam wikibase:radius ".1" . } OPTIONAL { ?place wdt:P31 ?instance } SERVICE wikibase:label { bd:serviceParam wikibase:language "en" } BIND(geof:distance(?loc, ?location) as ?dist) } ORDER BY ?dist

http://ward.dojo.fed.wiki/assets/pages/wikidata-demo/places.html HEIGHT 50