''' Entities near xxx within 1km SELECT ?place ?placeLabel ?location ?instanceLabel ?placeDescription 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 ''' SELECT distinct ?item ?itemLabel WHERE { ?item wdt:P625 ?geo . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }