Results 1 to 4 of 4

Thread: wget failed to download image from URL

  1. #1
    Join Date
    Jan 2011
    Beans
    3

    wget failed to download image from URL

    I tried to download some images from google using wget:

    where wget cbk0.google.com/cbk?output=tile&panoid=2dAJGQJisD1hxp_U0xlokA&zoom =5&x=0&y=0

    However, I get the following erros:

    --2011-01-21 04:39:05-- http://cbk0.google.com/cbk?output=tile
    Resolving cbk0.google.com... 209.85.143.100, 209.85.143.101
    Connecting to cbk0.google.com|209.85.143.100|:80... connected.
    HTTP request sent, awaiting response... 404 Not Found
    2011-01-21 04:39:05 ERROR 404: Not Found.

    I'm very sure the image is there by paste the URL on my browser and the image pop up correctly.

    I need to download a sequence of tiles on google panorama for my project, but each panorama view containing up to 338 pictures. I simply can not do by hand...

  2. #2
    Join Date
    Aug 2006
    Beans
    282

    Re: wget failed to download image from URL

    Try:
    Code:
    wget "cbk0.google.com/cbk?output=tile&panoid=2dAJGQJisD1hxp_U0xlokA&zoom=5&x=0&y=0"
    (Note the quotation marks.) The shell is interpreting the first & as "put this process in the background".

  3. #3
    Join Date
    Aug 2006
    Beans
    282

    Re: wget failed to download image from URL

    Try:
    Code:
    wget "cbk0.google.com/cbk?output=tile&panoid=2dAJGQJisD1hxp_U0xlokA&zoom=5&x=0&y=0"
    (Note the quotation marks.) The shell is interpreting the first & as "put this process in the background".

    (oops - multipost)

  4. #4
    Join Date
    Jan 2011
    Beans
    3

    Re: wget failed to download image from URL

    It solved thank you very much!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •