diff options
Diffstat (limited to 'bin/misc/mvt_decode.py')
-rwxr-xr-x | bin/misc/mvt_decode.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/bin/misc/mvt_decode.py b/bin/misc/mvt_decode.py new file mode 100755 index 0000000..7c9ac89 --- /dev/null +++ b/bin/misc/mvt_decode.py | |||
@@ -0,0 +1,11 @@ | |||
1 | #! /bin/env python3 | ||
2 | |||
3 | import mapbox_vector_tile | ||
4 | import sys | ||
5 | |||
6 | mvt = sys.argv[1] | ||
7 | |||
8 | with open(mvt, 'rb') as f: | ||
9 | data = f.read() | ||
10 | decoded_data = mapbox_vector_tile.decode(data) | ||
11 | print(decoded_data) | ||