mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-02-23 18:40:17 +00:00
14 lines
275 B
Bash
Executable File
14 lines
275 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -rf /tmp/vec
|
|
../mbutil/mb-util --image_format=pbf $1 /tmp/vec
|
|
|
|
find /tmp/vec -name '*.pbf' -type f -print0 |
|
|
if xargs -0 python3 ../vector-tile-base/tests/test_decode_reencode.py
|
|
then :
|
|
else exit 1
|
|
fi
|
|
|
|
./tippecanoe-decode -x generator /tmp/vec
|
|
# rm -rf /tmp/$$
|