You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to get to the bottom of an error whilst converting mbtiles to pmtiles. It seems my mbtiles file has some negative row values for zoom level 4
select tile_row from tiles where zoom_level = 4 and tile_column = 8;
-48
-1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Why would these occur?
The mbtiles file and the script used to generate it can be seen here: protomaps/go-pmtiles#56
The text was updated successfully, but these errors were encountered:
Thanks, i worked around the issue by just deleting the odd rows with
DELETE FROM tiles WHERE tile_row < 0
I checked the tilemaker source, but found not mention of rows with -48, the data for these rows was empty. So guessing they were created when some warnings were fixed during generation.
I'm trying to get to the bottom of an error whilst converting mbtiles to pmtiles. It seems my mbtiles file has some negative row values for zoom level 4
Why would these occur?
The mbtiles file and the script used to generate it can be seen here: protomaps/go-pmtiles#56
The text was updated successfully, but these errors were encountered: