Windshaft-cartodb/scripts/mvt-timeout-error.py

31 lines
727 B
Python
Raw Normal View History

2017-11-04 00:21:01 +08:00
#!/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": "errorTileStripesLayer",
2017-11-04 00:21:01 +08:00
"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(tile)