1TILESTACHE-LIST(1) General Commands Manual TILESTACHE-LIST(1)
2
3
4
6 tilestache-list - generates list of tiles based on geographic or other
7 criteria
8
10 tilestache-list [options] [zoom...]
11
13 This manual page documents briefly the tilestache-list command.
14
15 tilestache-list generates a list of tiles based on geographic or other
16 criteria.
17
18 No images are created and no Tilestache configuration is read, but a
19 list of tile coordinates in Z/X/Y form compatible with tilestache-seed
20 --tile-list output.
21
22 Example:
23
24 tilestache-list.py -b 52.55 13.28 52.46 13.51 11 12 13
25
26 Protip: seed a cache in parallel on 8 CPUs with split and xargs like
27 this:
28
29 tilestache-list.py 12 13 14 15 | split -l 20 - tiles/list-
30 ls -1 tiles/list-* | xargs -n1 -P8 tilestache-seed.py -c
31 tilestache.cfg -l osm --tile-list
32
34 -b, --bbox lat lon lat lon
35 Bounding box in floating point geographic coordinates: south
36 west north east.
37
38 -p, --padding number
39 Extra margin of tiles to add around bounded area.
40
41 --from-mbtiles file
42 Optional input file for tiles, will be read as an MBTiles 1.1
43 tileset. See http://mbtiles.org for more information. Over‐
44 rides --bbox and --padding.
45
47 TileStache was written by Michal Migurski <mike@stamen.com>.
48
49
50
51 Nov 10, 2010 TILESTACHE-LIST(1)