mvt timeout error creation script

This commit is contained in:
Simon Martín 2017-11-03 17:21:01 +01:00
parent da87a95dd9
commit ac153232d0
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1 @@
'\x1aZ\n\x14errorTileSquareLayer\x12\x1b\x12\x06\x00\x00\x01\x01\x02\x02\x18\x03"\x0f\t\x00\x80@\x1a\x00\xff?\x80@\x00\x00\x80@\x0f\x1a\x03foo\x1a\x03uid\x1a\x03cat"\x05\n\x03bar"\x02 {"\x06\n\x04flew(\x80 x\x01\x1aD\n\x03air\x12\x15\x12\x06\x00\x00\x01\x01\x02\x02\x18\x02"\t\t\xbe\x02\xb6\x03\n\x81\x1b\x00\x1a\x03foo\x1a\x03uid\x1a\x03cat"\x05\n\x03bar"\x03 \xd2\t"\x06\n\x04flew(\x80 x\x01'

31
scripts/mvt-timeout-error.py Executable file
View File

@ -0,0 +1,31 @@
#!/usr/bin/env python
import mapbox_vector_tile
tile = mapbox_vector_tile.encode([
{
"name": "errorTileSquareLayer",
"features": [{
"geometry":"POLYGON ((0 0, 0 4096, 4096 4096, 4096 0, 0 0))",
"properties":{
"uid":123,
"foo":"bar",
"cat":"flew"
}
}]
},
{
"name": "air",
"features": [{
"geometry":"LINESTRING(159 3877, -1570 3877)",
"properties":{
"uid":1234,
"foo":"bar",
"cat":"flew"
}
}]
}
])
with open('./assets/render-timeout-fallback.mvt', 'w+') as f:
f.write(repr(tile))