forked from nst/gmap_tiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmerge_tiles.py
executable file
·58 lines (39 loc) · 1.61 KB
/
merge_tiles.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from PIL import Image
import sys, os
from gmap_utils import *
def merge_tiles(zoom, lat_start, lat_stop, lon_start, lon_stop, satellite=True):
TYPE, ext = 'r', 'png'
if satellite:
TYPE, ext = 's', 'jpg'
x_start, y_start = latlon2xy(zoom, lat_start, lon_start)
x_stop, y_stop = latlon2xy(zoom, lat_stop, lon_stop)
print "x range", x_start, x_stop
print "y range", y_start, y_stop
w = (x_stop - x_start) * 256
h = (y_stop - y_start) * 256
print "width:", w
print "height:", h
result = Image.new("RGBA", (w, h))
for x in xrange(x_start, x_stop):
for y in xrange(y_start, y_stop):
filename = "%d_%d_%d_%s.%s" % (zoom, x, y, TYPE, ext)
if not os.path.exists(filename):
print "-- missing", filename
continue
x_paste = (x - x_start) * 256
y_paste = h - (y_stop - y) * 256
try:
i = Image.open(filename)
except Exception, e:
print "-- %s, removing %s" % (e, filename)
trash_dst = os.path.expanduser("~/.Trash/%s" % filename)
os.rename(filename, trash_dst)
continue
result.paste(i, (x_paste, y_paste))
del i
result.save("map_%s.%s" % (TYPE, ext))
if __name__ == "__main__":
zoom = 15
lat_start, lon_start = 46.53, 6.6
lat_stop, lon_stop = 46.49, 6.7
merge_tiles(zoom, lat_start, lat_stop, lon_start, lon_stop, satellite=True)