geopics does not download any pictures.
I guess this is due to a change on the GC page.
As far as I can see from a quick look at the geopics source, the problem is that the pictures are not anylonger enclosed in a '<span id=\ctl00_ContentBody_Images">'. :-(
removing the following lines makes it work for me
$contents =~ m|<span id=\"ctl00_ContentBody_Images\">(.*)$|is;
$contents = $1;