-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmerge_tiles.py
executable file
·62 lines (45 loc) · 1.82 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
59
60
61
62
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 = bd_latlng2xy(zoom, lat_start, lon_start)
x_stop, y_stop = bd_latlng2xy(zoom, lat_stop, lon_stop)
x_start = int(x_start/256)
y_start = int(y_start/256)
x_stop = int(x_stop/256)
y_stop = int(y_stop/256)
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))
root_save="tiles"
for x in range(x_start, x_stop):
for y in range(y_start, y_stop):
filename = "%d_%d_%d_%s.%s" % (zoom, x, y, TYPE, ext)
filename=os.path.join(root_save,filename)
if not os.path.exists(filename):
print("-- missing", filename)
continue
x_paste = (x - x_start) * 256
y_paste = (y_stop - y-1) * 256
try:
i = Image.open(filename)
except Exception as 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 = 29.373026, 106.25131
lat_stop, lon_stop = 29.755033, 106.72734
merge_tiles(zoom, lat_start, lat_stop, lon_start, lon_stop, satellite=False)