How can I programmatically get the image on this page? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T06:54:13Z http://stackoverflow.com/feeds/question/1372750 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1372750/how-can-i-programmatically-get-the-image-on-this-page 0 How can I programmatically get the image on this page? somedeveloper http://stackoverflow.com/users/125540 2009-09-03T11:00:19Z 2009-09-03T16:59:57Z <p>The URL <a href="http://www.fourmilab.ch/cgi-bin/Earth" rel="nofollow">http://www.fourmilab.ch/cgi-bin/Earth</a> shows a live map of the Earth.</p> <p>If I issue this URL in my browser (FF), the image shows up just fine. But when I try 'wget' to fetch the same page, I fail! </p> <p>Here's what I tried first:</p> <pre><code>wget -p http://www.fourmilab.ch/cgi-bin/Earth </code></pre> <p>Thinking, that probably all other form fields are required too, I did a 'View Source' on the above page, noted down the various field values, and then issued the following URL:</p> <pre><code>wget --post-data "opt=-p&amp;lat=7°27'&amp;lon=50°49'&amp;ns=North&amp;ew=East&amp;alt=150889769&amp;img=learth.evif&amp;date=1&amp;imgsize=320&amp;daynight=-d" http://www.fourmilab.ch/cgi-bin/Earth </code></pre> <p>Still no image!</p> <p>Can someone please tell me what is going on here...? Are there any 'gotchas' with CGI and/or form-POST based wgets? Where (book or online resource) would such concepts be explained?</p> http://stackoverflow.com/questions/1372750/how-can-i-programmatically-get-the-image-on-this-page/1372784#1372784 2 Answer by Ravadre for How can I programmatically get the image on this page? Ravadre http://stackoverflow.com/users/140843 2009-09-03T11:09:34Z 2009-09-03T11:09:34Z <p>If you will inspect the page's source code, there's a link with img inside, that contains the image of earth. For example:</p> <pre> &lt;img src="/cgi-bin/Earth?di=570C6ABB1F33F13E95631EFF088262D5E20F2A10190A5A599229" ismap="ismap" usemap="#zoommap" width="320" height="320" border="0" alt="" /> </pre> <p>Without giving the 'di' parameter, you are just asking for whole web page, with references to this image, not for the image itself.</p> <p>Edit: 'Di' parameter encodes which "part" of the earth you want to receive, anyway, try for example <pre> wget <a href="http://www.fourmilab.ch/cgi-bin/Earth?di=F5AEC312B69A58973CCAB756A12BCB7C47A9BE99E3DDC5F63DF746B66C122E4E4B28ADC1EFADCC43752B45ABE2585A62E6FB304ACB6354E2796D9D3CEF7A1044FA32907855BA5C8F" rel="nofollow">http://www.fourmilab.ch/cgi-bin/Earth?di=F5AEC312B69A58973CCAB756A12BCB7C47A9BE99E3DDC5F63DF746B66C122E4E4B28ADC1EFADCC43752B45ABE2585A62E6FB304ACB6354E2796D9D3CEF7A1044FA32907855BA5C8F</a> </pre></p> http://stackoverflow.com/questions/1372750/how-can-i-programmatically-get-the-image-on-this-page/1372792#1372792 1 Answer by Brad Bruce for How can I programmatically get the image on this page? Brad Bruce http://stackoverflow.com/users/5008 2009-09-03T11:12:17Z 2009-09-03T11:12:17Z <p>Use GET instead of POST. They're completely different for the CGI program in the background.</p> http://stackoverflow.com/questions/1372750/how-can-i-programmatically-get-the-image-on-this-page/1372795#1372795 0 Answer by Cristian Ciupitu for How can I programmatically get the image on this page? Cristian Ciupitu http://stackoverflow.com/users/12892 2009-09-03T11:13:42Z 2009-09-03T16:59:57Z <p>What you are downloading is the whole HTML page and not the image. To download the image and other elements too, you'll need to use the <code>--page-requisites</code> (and possibly <code>--convert-links</code>) parameter(s). Unfortunately because <em>robots.txt</em> disallows access to URLs under <code>/cgi-bin/</code>, wget will not download the image which is located under <code>/cgi-bin/</code>. AFAIK there's no parameter to disable the robots protocol.</p> http://stackoverflow.com/questions/1372750/how-can-i-programmatically-get-the-image-on-this-page/1372905#1372905 1 Answer by pavium for How can I programmatically get the image on this page? pavium http://stackoverflow.com/users/153545 2009-09-03T11:38:50Z 2009-09-03T11:38:50Z <p>Following on from Ravadre, </p> <pre><code>wget -p http://www.fourmilab.ch/cgi-bin/Earth </code></pre> <p>downloads an XHTML file which contain an &lt;img&gt; tag.</p> <p>I edited the XHTML to remove everything but the img tag and turned it into a bash script containing another wget -p command, escaping the ? and =</p> <p>When I executed this I got a 14kB file which I renamed earth.jpg</p> <p>Not really <em>programmatic</em>, the way I did it, but I think it could be done.</p> <p>But as @somedeveloper said, the di value is changing (since it depends on time).</p> http://stackoverflow.com/questions/1372750/how-can-i-programmatically-get-the-image-on-this-page/1372992#1372992 0 Answer by somedeveloper for How can I programmatically get the image on this page? somedeveloper http://stackoverflow.com/users/125540 2009-09-03T12:00:30Z 2009-09-03T12:00:30Z <p>Guys, here's what I finally did. Not fully happy with this solution, as I was (and am still) hoping for a better way... one that gets the image on the first wget itself... giving me the same user experience I get when browsing via firefox.</p> <pre><code>#!/bin/bash tmpf=/tmp/delme.jpeg base=http://www.fourmilab.ch liveurl=$(wget -O - $base/cgi-bin/Earth?opt=-p 2&gt;/dev/null | perl -0777 -nle 'if(m@&lt;img \s+ src \s* = \s* "(/cgi-bin/Earth\?di= .*? )" @gsix) { print "$1\n" }' ) wget -O $tmpf $base/$liveurl &amp;&gt;/dev/null </code></pre>