I have a tile server based on tirex, postgres and mapnik. All metatiles are in /var/lib/tirex/tiles/. How can I get statistics on how many of the metatiles for a certain zoomlevel have been (pre)rendered, and how many are missing? I use tirex-batch to prerender most tiles and want to make sure I do not miss any tiles accidentically. asked 29 Apr '15, 14:12 jnachtigall |
If your use case is "find missing tiles, and pre-render them", then you can do
or something like it; the If you just want to know how many are missing, you can do a
You'd expect to see 4**(z-3) meta tiles on each zoom level fully rendered. answered 29 Apr '15, 14:55 Frederik Ramm ♦ |