mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-01-22 12:28:03 +00:00
Add check that min is less than max. Fixes #40
This commit is contained in:
parent
9e162e6f8f
commit
a0693446d5
@ -1051,6 +1051,11 @@ int main(int argc, char **argv) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (minzoom >= maxzoom) {
|
||||||
|
fprintf(stderr, "minimum zoom -Z cannot be greater than maxzoom -z\n");
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
|
||||||
if (full_detail <= 0) {
|
if (full_detail <= 0) {
|
||||||
// ~0.5m accuracy at whatever zoom
|
// ~0.5m accuracy at whatever zoom
|
||||||
// 12 bits (4096 units) at z14
|
// 12 bits (4096 units) at z14
|
||||||
|
Loading…
Reference in New Issue
Block a user