Created
June 26, 2013 09:53
-
-
Save qoda/5866251 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Image | |
import urllib | |
import StringIO | |
from math import log, exp, tan, atan, pi, ceil | |
EARTH_RADIUS = 6378137 | |
EQUATOR_CIRCUMFERENCE = 2 * pi * EARTH_RADIUS | |
INITIAL_RESOLUTION = EQUATOR_CIRCUMFERENCE / 256.0 | |
ORIGIN_SHIFT = EQUATOR_CIRCUMFERENCE / 2.0 | |
def latlontopixels(lat, lon, zoom): | |
mx = (lon * ORIGIN_SHIFT) / 180.0 | |
my = log(tan((90 + lat) * pi/360.0))/(pi/180.0) | |
my = (my * ORIGIN_SHIFT) /180.0 | |
res = INITIAL_RESOLUTION / (2**zoom) | |
px = (mx + ORIGIN_SHIFT) / res | |
py = (my + ORIGIN_SHIFT) / res | |
return px, py | |
def pixelstolatlon(px, py, zoom): | |
res = INITIAL_RESOLUTION / (2**zoom) | |
mx = px * res - ORIGIN_SHIFT | |
my = py * res - ORIGIN_SHIFT | |
lat = (my / ORIGIN_SHIFT) * 180.0 | |
lat = 180 / pi * (2*atan(exp(lat*pi/180.0)) - pi/2.0) | |
lon = (mx / ORIGIN_SHIFT) * 180.0 | |
return lat, lon | |
upperleft = '-0.00,0.00' | |
lowerright = '-0.00,0.00' | |
zoom = 19 | |
ullat, ullon = map(float, upperleft.split(',')) | |
lrlat, lrlon = map(float, lowerright.split(',')) | |
# Set some important parameters | |
scale = 1 | |
maxsize = 640 | |
apikey = 'XXX' | |
# convert all these coordinates to pixels | |
ulx, uly = latlontopixels(ullat, ullon, zoom) | |
lrx, lry = latlontopixels(lrlat, lrlon, zoom) | |
# calculate total pixel dimensions of final image | |
dx, dy = lrx - ulx, uly - lry | |
# calculate rows and columns | |
cols, rows = int(ceil(dx / maxsize)), int(ceil(dy / maxsize)) | |
# calculate pixel dimensions of each small image | |
bottom = 120 | |
largura = int(ceil(dx/cols)) | |
altura = int(ceil(dy/rows)) | |
alturaplus = altura + bottom | |
final = Image.new("RGB", (int(dx), int(dy))) | |
for x in range(cols): | |
for y in range(rows): | |
dxn = largura * (0.5 + x) | |
dyn = altura * (0.5 + y) | |
latn, lonn = pixelstolatlon(ulx + dxn, uly - dyn - bottom / 2, zoom) | |
position = ','.join((str(latn), str(lonn))) | |
print x, y, position | |
urlparams = urllib.urlencode({ | |
'center': position, | |
'zoom': str(zoom), | |
'size': '%dx%d' % (largura, alturaplus), | |
'maptype': 'satellite', | |
'sensor': 'false', | |
'scale': scale, | |
'key': apikey | |
}) | |
url = 'http://maps.google.com/maps/api/staticmap?' + urlparams | |
image_file = urllib.urlopen(url) | |
img = Image.open(StringIO.StringIO(image_file.read())) | |
final.paste(img, (int(x*largura), int(y*altura))) | |
final.show() | |
final.save('final_img_highres.jpg') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment