64 rows where zoom_level = 3 sorted by tile_row

View and edit SQL

Suggested facets: tile_column, tile_row

zoom_level

Link rowid zoom_level tile_column tile_row ▼ tile_data
269 3 0 0
293 3 1 0
317 3 2 0
309 3 3 0
301 3 4 0
325 3 5 0
285 3 6 0
277 3 7 0
268 3 0 1
292 3 1 1
316 3 2 1
308 3 3 1
300 3 4 1
324 3 5 1
284 3 6 1
276 3 7 1
266 3 0 2
290 3 1 2
314 3 2 2
306 3 3 2
298 3 4 2
322 3 5 2
282 3 6 2
274 3 7 2
267 3 0 3
291 3 1 3
315 3 2 3
307 3 3 3
299 3 4 3
323 3 5 3
283 3 6 3
275 3 7 3
262 3 0 4
286 3 1 4
310 3 2 4
302 3 3 4
294 3 4 4
318 3 5 4
278 3 6 4
270 3 7 4
263 3 0 5
287 3 1 5
311 3 2 5
303 3 3 5
295 3 4 5
319 3 5 5
279 3 6 5
271 3 7 5
265 3 0 6
289 3 1 6
313 3 2 6
305 3 3 6
297 3 4 6
321 3 5 6
281 3 6 6
273 3 7 6
264 3 0 7
288 3 1 7
312 3 2 7
304 3 3 7
296 3 4 7
320 3 5 7
280 3 6 7
272 3 7 7

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);