hot questions tagged wikipedia+api - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T04:30:30Z http://stackoverflow.com/feeds/tag?tagnames=wikipedia%2bapi&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1400717/reverse-wikipedia-geotagging-lookup 8 Reverse wikipedia geotagging lookup bjarkef 2009-09-09T16:30:37Z 2009-11-10T10:25:37Z <p>Wikipedia is <a href="http://en.wikipedia.org/wiki/Geotagging" rel="nofollow">geotagging</a> a <a href="http://en.wikipedia.org/wiki/Aalborg" rel="nofollow">lot</a> <a href="http://en.wikipedia.org/wiki/British%5FIsles" rel="nofollow">of</a> <a href="http://en.wikipedia.org/wiki/Kent%27s%5FCavern" rel="nofollow">its</a> <a href="http://en.wikipedia.org/wiki/Aalborghus%5FCastle" rel="nofollow">articles</a>. (Look in the top right corner of the page.)</p> <p>Is there any API for querying all <a href="http://en.wikipedia.org/wiki/Wikipedia%3AWikiProject%5FGeographical%5Fcoordinates" rel="nofollow">geotagged pages</a> within a specified radius of a geographical position?</p> <p><strong>Update</strong></p> <p>Okay, so based on lost-theory's answer I tried this (on <a href="http://dbpedia.org/snorql/" rel="nofollow">dbpedia query explorer</a>):</p> <pre><code>PREFIX geo: &lt;http://www.w3.org/2003/01/geo/wgs84_pos#&gt; SELECT ?subject ?label ?lat ?long WHERE { ?subject geo:lat ?lat. ?subject geo:long ?long. ?subject rdfs:label ?label. FILTER(xsd:float(?lat) - 57.03185 &lt;= 0.05 &amp;&amp; 57.03185 - xsd:float(?lat) &lt;= 0.05 &amp;&amp; xsd:float(?long) - 9.94513 &lt;= 0.05 &amp;&amp; 9.94513 - xsd:float(?long) &lt;= 0.05 &amp;&amp; lang(?label) = "en" ). } LIMIT 20 </code></pre> <p>This is very close to what I want, except it returns results within a (<a href="http://en.wikipedia.org/wiki/Local%5Fproperty" rel="nofollow">local</a>) square around the point and not a circle. Also I would like if the results where sorted based on the distance from the point. (If possible.)</p> <p><strong>Update 2</strong></p> <p>I am trying to determine the euclidean distance as an approximation of the true distance, But I am having trouble on squaring a number in sparql. (<a href="http://stackoverflow.com/questions/1401401/power-in-sparql-and-other-math-functions">Question opened here</a>.) When I get something useful I will update the question, but in the meantime I will appreciate any suggestions on alternative approaches.</p> <p><strong>Update 3</strong></p> <p>A final update. I gave up on using sparql trough dbpedia. I have written a simple parser which fetches the wikipedia article text nightly database dump and parses all articles for geocodes. It works rather nicely and it allows me to store information about geotagged articles however I wish.</p> <p>This is probably the solution I will continue using, and if I get around to create a nice interface to it I might consider allowing public API access and/or publishing the source to the parser.</p> <p>Thanks for all the suggestions, comments and help!</p> http://stackoverflow.com/questions/1603681/truncate-mediawiki 0 Truncate mediawiki Pierre 2009-10-21T21:12:20Z 2009-11-16T20:32:02Z <p>Hi all, I'm working with the mediawiki API ( e.g. <a href="http://en.wikipedia.org/w/api.php" rel="nofollow">http://en.wikipedia.org/w/api.php</a>) and I would like to be able to 'truncate' the mysql tables in order to reset the local installation while keeping some tables (users, ?...). What would be the SQL queries ? </p> <p>I would say: tuncate all the tables but ${PREFIX}_user and update ${PREFIX}_user set user_editcount=0 ?</p> <p>Any other(safer) suggestion ?</p> http://stackoverflow.com/questions/1467336/downloading-images-from-wikimedia-commons 0 Downloading Images from WikiMedia Commons tomvon 2009-09-23T17:00:09Z 2009-09-24T09:56:01Z <p>Is anyone aware of a way to programatically download images from WikiMedia Commons without registering for a Bot account? It seems like the only way to get approval for a Bot account is if it adds to or edits information already on Wikimedia. If you try to download any images, without a bot account, using some of the api libraries out there you get error messages instead of the images. Seems like they block anyone not coming in from a browser. It seems like WikiMedia Commons is somewhat of a walled garden despite the feel good free vibe they try to portray. "Free" content goes in but you can't get it out. Anyone else have any experience with this? Am I missing something here?</p> http://stackoverflow.com/questions/1126760/recusive-transformations-using-xslt-xpathdocument-and-mediawiki 0 Recusive transformations using xslt, xpath:document() and mediawiki Pierre 2009-07-14T17:13:35Z 2009-07-14T18:32:15Z <p>I want to use the <a href="http://en.wikipedia.org/w/api.php" rel="nofollow">wikipedia API</a> to find the French pages including the ''<strong>Template:Infobox Scientifique</strong>'' missing in the english version. So, my idea was to process the following document with xproc:</p> <p><a href="http://fr.wikipedia.org/w/api.php?action=query&amp;format=xml&amp;list=embeddedin&amp;eititle=Template:Infobox%20Scientifique&amp;eilimit=400" rel="nofollow">http://fr.wikipedia.org/w/api.php?action=query&amp;format=xml&amp;list=embeddedin&amp;eititle=Template:Infobox%20Scientifique&amp;eilimit=400</a></p> <p>and the following xslt stylesheet:</p> <pre><code>&lt;?xml version='1.0' ?&gt; &lt;xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform' version='1.0' &gt; &lt;xsl:output method='text' indent="yes"/&gt; &lt;xsl:template match="/"&gt; &lt;xsl:apply-templates select="api"/&gt; &lt;/xsl:template&gt; &lt;xsl:template match="api"&gt; &lt;xsl:for-each select="query/embeddedin/ei"&gt; &lt;xsl:variable name="title" select="translate(@title,&amp;apos; &amp;apos;,&amp;apos;_&amp;apos;)"/&gt; &lt;xsl:variable name="english-title"&gt; &lt;xsl:call-template name="englishTitle"&gt;&lt;xsl:with-param name="title" select="@title"/&gt;&lt;/xsl:call-template&gt; &lt;/xsl:variable&gt; &lt;xsl:value-of select="$english-title"/&gt;&lt;xsl:text&gt; &lt;/xsl:text&gt; &lt;/xsl:for-each&gt; &lt;/xsl:template&gt; &lt;xsl:template name="englishTitle"&gt; &lt;xsl:param name="title"/&gt; &lt;xsl:variable name="uri1" select="concat(&amp;apos;http://fr.wikipedia.org/w/api.php?action=query&amp;amp;format=xml&amp;amp;prop=langlinks&amp;amp;lllimit=500&amp;amp;titles=&amp;apos;,translate($title,&amp;apos; &amp;apos;,&amp;apos;_&amp;apos;))"/&gt; &lt;xsl:message&gt;&lt;xsl:value-of select="$uri1"/&gt;&lt;/xsl:message&gt; &lt;xsl:message&gt;count=&lt;xsl:value-of select="count(document($uri1,/api/query/pages/page/langlinks/ll))"/&gt;&lt;/xsl:message&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>The XSLT extract all the articles containing the Template and for each article I wanted to call wikipedia to get the links between the wikis. Here, the template <strong>englishTitle</strong> calls the xpath function <strong>document()</strong> .</p> <p>But it always says that <code>count(ll)=1</code> whereas there are plenty nodes. (e.g. <a href="http://fr.wikipedia.org/w/api.php?action=query&amp;format=xml&amp;prop=langlinks&amp;lllimit=500&amp;titles=Carl%5FSagan" rel="nofollow">http://fr.wikipedia.org/w/api.php?action=query&amp;format=xml&amp;prop=langlinks&amp;lllimit=500&amp;titles=Carl_Sagan</a> ).</p> <p>Can't I process the nodes returned by the <strong>document()</strong> function ?</p> http://stackoverflow.com/questions/964454/how-to-use-wikipedia-api-if-it-exists -1 How to use wikipedia api if it exists? chris 2009-06-08T11:29:07Z 2009-06-08T12:12:45Z <p>Hi,</p> <p>I'm trying to find out if there's a wikipedia api (I Think it is related to the mediawiki?). </p> <p>If so, I would like to know how I would tell wikipedia to give me an article about the new york yankees for example.</p> <p>What would the REST url be for this example?</p> <p>All the docs on this subject seem fairly complicated.</p> http://stackoverflow.com/questions/773029/c-webrequest-to-connect-to-wikipedia-api 2 c# WebRequest to connect to wikipedia API NickJ 2009-04-21T15:02:22Z 2009-04-21T19:05:05Z <p>Hey, </p> <p>This may be a pathetically simple problem but I cannot seem to format the post webrequest/response to get data from the wikipedia api. I have posted my code below if anyone can help me see my problem. </p> <pre><code>string pgTitle = txtPageTitle.Text; Uri address = new Uri("http://en.wikipedia.org/w/api.php"); HttpWebRequest request = WebRequest.Create(address) as HttpWebRequest; request.Method = "POST"; request.ContentType = "application/x-www-form-urlencoded"; string action = "query"; string query = pgTitle; StringBuilder data = new StringBuilder(); data.Append("action=" + HttpUtility.UrlEncode(action)); data.Append("&amp;query=" + HttpUtility.UrlEncode(query)); byte[] byteData = UTF8Encoding.UTF8.GetBytes(data.ToString()); request.ContentLength = byteData.Length; using (Stream postStream = request.GetRequestStream()) { postStream.Write(byteData, 0, byteData.Length); } using (HttpWebResponse response = request.GetResponse() as HttpWebResponse) { // Get the response stream StreamReader reader = new StreamReader(response.GetResponseStream()); divWikiData.InnerText = reader.ReadToEnd(); } </code></pre> http://stackoverflow.com/questions/627594/is-there-a-wikipedia-api 4 Is there a Wikipedia API? nzpcmad 2009-03-09T19:04:49Z 2009-03-09T19:08:45Z <p>On my Wikipedia user page, I run a Wikipedia script that displays my statistics (number of pages edited, number of new pages, monthly activity etc.).</p> <p>I'd like to put this info on my blog. </p> <p>Can anyone recommend any API's that would allow me to do something like this?</p> http://stackoverflow.com/questions/794245/which-google-api-search-module-for-perl 0 Which Google API search module for Perl? Mike 2009-04-27T16:20:54Z 2009-05-07T08:22:51Z <p>Which Google API search module for Perl do you recommend?</p> <p>REST::Google::Search <a href="http://search.cpan.org/~ejs/REST-Google-1.0.5/lib/REST/Google/Search.pod" rel="nofollow">http://search.cpan.org/~ejs/REST-Google-1.0.5/lib/REST/Google/Search.pod</a></p> <p>or</p> <p>Google::Search <a href="http://search.cpan.org/~rkrimen/Google-Search-0.022/lib/Google/Search.pm#Google::Search-" rel="nofollow">http://search.cpan.org/~rkrimen/Google-Search-0.022/lib/Google/Search.pm#Google::Search-</a>>Web(...)</p> <p>Ease of use is important because I only really need to get the top 2, maybe 3 results from the web search.</p> <p>Also, is there a module that one knows of for getting things from wikipedia. Again easy of use is important.</p>