mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-04-06 02:26:39 +00:00
Bail if the tile size is larger than the uploader will accept
This commit is contained in:
parent
3170616f6d
commit
dd8f43a697
6
tile.cc
6
tile.cc
@ -205,7 +205,11 @@ void write_tile(struct index *start, struct index *end, char *metabase, unsigned
|
||||
|
||||
tile.SerializeToString(&s);
|
||||
compress(s, compressed);
|
||||
//std::cout << compressed;
|
||||
|
||||
if (compressed.size() > 500000) {
|
||||
fprintf(stderr, "tile %d/%u/%u size is %lld, >500000\n", z, tx, ty, (long long) compressed.size());
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
const char *prefix = "tiles";
|
||||
char path[strlen(prefix) + 200];
|
||||
|
Loading…
x
Reference in New Issue
Block a user