Is it possible, using the existing Wikipedia API's to get a list of articles around a Geo-location? Sort of like how Google maps does it?

I would like to say that I am "here" and find out what is around me on Wikipedia.

I can see on articles like this you can see the "Coordinates" on the right hand side, so I would like to do a query on these coordinates...

any thoughts?

link|improve this question

70% accept rate
You might even be able to use Google maps's API to get results from their Wikipedia layer. – Benny Jobigan Nov 16 '10 at 4:51
2  
just found this: geonames.org/export/… which might help me out... – Mark Nov 16 '10 at 5:00
feedback

4 Answers

It seems like there is no Wikipedia API for this, but this Wikipedia page describes how others make use of this information:

All coordinates are available for download in Wikipedia database dumps. To get the coordinates from the XML format dump of all articles (enwiki-latest-pages-articles.xml.bz2, 4 GB), the dump needs to be parsed for pages containing coordinates in the entry formats listed above. Most articles in Wikipedia conform to these formats and coordinates are easy to parse from the wikitext with regular expressions for simple character sequences. As all coordinates link to the same PHP tool, they may also be found from the SQL format table of external links (enwiki-latest-externallinks.sql.gz, 725MB). This second method will however not include all available information about the coordinates, such as their position between the article body and the title area.

link|improve this answer
Thanks Philipp, I did manage to get some DB dumps, its a pity that you have to go down this path. But like I commented, I might just use the geonames.org/export/… service for now... – Mark Nov 16 '10 at 6:32
feedback

Don't reinvent the wheel, use DBpedia.
Sample page with "lat" and "lon" data extracted.
And it can be queried with SPARQL.

link|improve this answer
Interesting, I did not know that project even existed! Thanks Ill take a good look at it :) – Mark Nov 18 '10 at 2:27
feedback

Solution jquery and geonames API:

a,b = longitude, latitude, tweet -> html div

function getcontent(a,b) {
jQuery(function($) {
$.getJSON('http://api.geonames.org/findNearbyWikipediaJSON?formatted=true&lat='+ a +'&lng='+ b +'&username=username&style=full&lang=de&wikipediaUrl&thumbnailImg', function(json){

    for(var i = 0; i < json.geonames.length; i++)
    {
            $("#tweet").prepend('<span style="font-family: geneva, arial, helvetica, sans-serif;"><br><br><img src="wikilogo.gif"><br>' + json.geonames[i].summary + '<br><a href="http://'+ json.geonames[i].wikipediaUrl +'" target="_blank">'+ json.geonames[i].wikipediaUrl +'</a><br></span>');
    }
    }); }); }
link|improve this answer
feedback

Have a look at Wikilocation, might be useful.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.