How can I programmatically get the image on this page? - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T06:54:13Zhttp://stackoverflow.com/feeds/question/1372750http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1372750/how-can-i-programmatically-get-the-image-on-this-page0How can I programmatically get the image on this page?somedeveloperhttp://stackoverflow.com/users/1255402009-09-03T11:00:19Z2009-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&lat=7°27'&lon=50°49'&ns=North&ew=East&alt=150889769&img=learth.evif&date=1&imgsize=320&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#13727842Answer by Ravadre for How can I programmatically get the image on this page?Ravadrehttp://stackoverflow.com/users/1408432009-09-03T11:09:34Z2009-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>
<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#13727921Answer by Brad Bruce for How can I programmatically get the image on this page?Brad Brucehttp://stackoverflow.com/users/50082009-09-03T11:12:17Z2009-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#13727950Answer by Cristian Ciupitu for How can I programmatically get the image on this page?Cristian Ciupituhttp://stackoverflow.com/users/128922009-09-03T11:13:42Z2009-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#13729051Answer by pavium for How can I programmatically get the image on this page?paviumhttp://stackoverflow.com/users/1535452009-09-03T11:38:50Z2009-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 <img> 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#13729920Answer by somedeveloper for How can I programmatically get the image on this page?somedeveloperhttp://stackoverflow.com/users/1255402009-09-03T12:00:30Z2009-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>/dev/null | perl -0777 -nle 'if(m@<img \s+ src \s* = \s* "(/cgi-bin/Earth\?di= .*? )" @gsix) { print "$1\n" }' )
wget -O $tmpf $base/$liveurl &>/dev/null
</code></pre>