summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authortypebrook <typebrook@gmail.com>2019-08-20 20:09:38 +0800
committertypebrook <typebrook@gmail.com>2019-08-20 20:09:38 +0800
commit97c948ebd3e013cc2aabe54bf83a78bc89f860bb (patch)
tree54e598fb391db21611427ac0b9ddeae97822b06f
parent23fc54d63889592e20e6accfde82959226bc1fd0 (diff)
update
-rw-r--r--scripts/mvt_decode.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/mvt_decode.py b/scripts/mvt_decode.py
index dfc36bb..0f661dd 100644
--- a/scripts/mvt_decode.py
+++ b/scripts/mvt_decode.py
@@ -8,5 +8,4 @@ mvt = sys.argv[1]
8with open(mvt, 'rb') as f: 8with open(mvt, 'rb') as f:
9 data = f.read() 9 data = f.read()
10 decoded_data = mapbox_vector_tile.decode(data) 10 decoded_data = mapbox_vector_tile.decode(data)
11 with open(mvt + '_decode.txt', 'w') as f: 11 print(decoded_data)
12 print(decoded_data)