forked from tarwirdur/mbtiles2osmand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcut.py
104 lines (93 loc) · 3.33 KB
/
cut.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
import sqlite3
import time
from pathlib import Path
import click
from .cli import cli
from .utils import _remove_file, coordinates_to_tile_position
@cli.command(
help="Extracts a rectangular section of a map from a .sqlitedb file into a separate map."
)
@click.argument(
"input_file",
type=click.Path(exists=True, dir_okay=False, path_type=Path),
)
@click.argument("output_file", type=click.Path(dir_okay=False, path_type=Path))
@click.option(
"-l",
"--upper-left",
"upper_left_coordinates",
required=True,
nargs=2,
type=float,
help="Coordinates of the upper-left corner of the section to be extracted.",
)
@click.option(
"-r",
"--bottom-right",
"bottom_right_coordinates",
required=True,
nargs=2,
type=float,
help="Coordinates of the bottom-right corner of the section to be extracted.",
)
@click.option(
"-f",
"--force",
is_flag=True,
default=False,
help="Override the output file if it exists.",
)
def cut_sqlitedb_map(
input_file: Path,
output_file: Path,
upper_left_coordinates: tuple[float, float],
bottom_right_coordinates: tuple[float, float],
replace_file: bool,
) -> None:
latitude1, longitude1 = upper_left_coordinates
latitude2, longitude2 = bottom_right_coordinates
if not (latitude1 > latitude2 and longitude1 < longitude2):
print("Enter the coordinates of the upper left and bottom right corners correctly")
exit(1)
_remove_file(
output_file, "Output file %s already exists. Add -f option for overwrite", replace_file
)
source = sqlite3.connect(input_file)
destination = sqlite3.connect(output_file)
source_cursor = source.cursor()
destination_cursor = destination.cursor()
destination_cursor.execute(
"CREATE TABLE tiles (x INT, y INT, z INT, s INT, image BLOB, PRIMARY KEY (x, y, z, s))"
)
destination_cursor.execute("CREATE TABLE info (maxzoom INT, minzoom INT)")
min_zoom, max_zoom = source_cursor.execute("SELECT minzoom, maxzoom FROM info").fetchone()
total_tiles_count = 0
start_time = time.perf_counter()
for zoom in range(min_zoom, max_zoom + 1):
min_x_tile, min_y_tile = coordinates_to_tile_position(latitude1, longitude1, zoom)
max_x_tile, max_y_tile = coordinates_to_tile_position(latitude2, longitude2, zoom)
input_data = source_cursor.execute(
"SELECT x, y, z, image "
"FROM tiles "
"WHERE z = ? AND ? <= x AND x <= ? AND ? <= y AND y <= ?",
(17 - zoom, min_x_tile, max_x_tile, min_y_tile, max_y_tile),
)
tiles_count = 0
for row in input_data:
x_tile, y_tile, zoom, image = row
destination_cursor.execute(
"INSERT INTO tiles (x, y, z, s, image) VALUES (?, ?, ?, ?, ?)",
(x_tile, y_tile, zoom, 0, sqlite3.Binary(image)),
)
tiles_count += 1
total_tiles_count += tiles_count
current_time = time.perf_counter()
print(f"Zoom {zoom}: {tiles_count} tiles ({current_time - start_time:.3f} s)")
start_time = current_time
destination_cursor.execute(
"INSERT INTO info (maxzoom, minzoom) VALUES(?, ?)", (max_zoom, min_zoom)
)
destination.commit()
print(f"Total tiles count: {total_tiles_count}")
if __name__ == "__main__":
cut_sqlitedb_map()