144 rows where zoom_level = 7 sorted by tile_row descending

View and edit SQL

zoom_level

Link rowid zoom_level tile_column tile_row ▲ tile_data
51 7 117 74
63 7 109 74
75 7 107 74
87 7 108 74
99 7 112 74
111 7 115 74
123 7 114 74
135 7 113 74
7 7 116 73
19 7 111 73
31 7 118 73
43 7 110 73
55 7 117 73
67 7 109 73
79 7 107 73
91 7 108 73
103 7 112 73
115 7 115 73
127 7 114 73
139 7 113 73
6 7 116 72
18 7 111 72
30 7 118 72
42 7 110 72
54 7 117 72
66 7 109 72
78 7 107 72
90 7 108 72
102 7 112 72
114 7 115 72
126 7 114 72
138 7 113 72
5 7 116 71
17 7 111 71
29 7 118 71
41 7 110 71
53 7 117 71
65 7 109 71
77 7 107 71
89 7 108 71
101 7 112 71
113 7 115 71
125 7 114 71
137 7 113 71

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

CREATE TABLE tiles (
            zoom_level integer,
            tile_column integer,
            tile_row integer,
            tile_data blob);
CREATE UNIQUE INDEX tile_index on tiles
        (zoom_level, tile_column, tile_row);