0

urllibモジュールを使用してPythonでマップ イメージをダウンロードしようとしています。しかし、それは常に失敗しました。

  • urllib.urlopen()いくつかのパラメーターバリアントで使用しようとしています
  • 試したurllib.urlretrieve()

しかし、うまくいきません。
そして、画像URLのソースコードを見てみると、画像ファイルがありませんでした。画像は次のとおりです: https://maps.googleapis.com/maps/api/staticmap?center=31.0456,121.3997&zoom=12&size=320x385&sensor=false

ソースコード:

#-------------------------- PARSE IP ADDRESS  -------------------------------
import re
import urllib


try:
    mysite = urllib.urlopen('http://ip-api.com/line')
except urllib.HTTPError, e:
    print "Cannot retrieve URL: HTTP Error Code", e.code
except urllib.URLError, e:
   print "Cannot retrieve URL: " + e.reason[1]

list_of_params = mysite.read()
print list_of_params
ip_arr = list_of_params.splitlines()

#--------------------- HERE IS FIND MAP IMAGE --------------------------------------
try:
    map_page = urllib.urlopen('http://ip-api.com')
except urllib.HTTPError, e:
    print "Cannot retrieve URL: HTTP Error Code", e.code
except urllib.URLError, e:
    print "Cannot retrieve URL: " + e.reason[1]

#f = open("data.html", "w")
#f.write(str(mysite.read()))
#f.close()

#looking for this in page
pattern = re.findall(re.compile("url\(\'(https://maps\.googleapis\.com/maps/api/staticmap\?center=.*)\'"), page_get_map.read())
map_img_url = pattern[0].replace('&', '&')

#-------------------    DOWNLOAD MAP IMAGE And SAVE IT  ------------------------
#file_name = map_img_url.rsplit('/',1)[1]

try:
    get_map_img = urllib.urlretrieve(map_img_url, "staticmap.png")
except urllib.HTTPError, e:
    print "Cannot retrieve URL: HTTP Error Code", e.code
except urllib.URLError, e:
    print "Cannot retrieve URL: " + e.reason[1]


i = open("pict.png", "w")
i.write(get_map_img.read())
i.close()

print "End of file"
4

2 に答える 2

1

地図の URL を解析するのはなぜですか? 自分で構築します:

import json, urllib

query = '' # IP to get coordinates of, leave empty for current IP

geo = urllib.urlopen('http://ip-api.com/json/%s?fields=240' % query)
result = json.load(geo)
if result['zip']:
    zoom = 13
elif result['city']:
    zoom = 12
else:
    zoom = 6
map_img_url = "https://maps.googleapis.com/maps/api/staticmap?center=%s,%s&zoom=%i&size=320x385&sensor=false" % (result['lat'], result['lon'], zoom)
get_map_img = urllib.urlretrieve(map_img_url, "staticmap.png")
于 2013-09-04T11:24:01.480 に答える